/* Unfiltered — coming soon */
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("/fonts/InterDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("/fonts/InterDisplay-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("/fonts/InterDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #090909;
  --surface: #151515;
  --elevated: #202020;
  --border: #292929;
  --text: #F5F5F2;
  --muted: #929292;
  --accent: #C6FF00;
  --filtered: #8B5CF6;
  --warning: #FF4D5E;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.wordmark {
  font-family: "Inter Display", Inter, sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.wordmark .dot { color: var(--accent); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
nav.desktop { display: flex; gap: 28px; align-items: center; }
nav.desktop a { color: var(--muted); font-size: 14px; }
nav.desktop a:hover, nav.desktop a[aria-current="page"] { color: var(--text); }
nav.desktop a.cta,
nav.desktop a.cta:hover,
nav.desktop a.cta[aria-current="page"],
.mobile-nav a.cta,
.mobile-nav a.cta:hover {
  color: #111;
  background: var(--accent);
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #111;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
}
.cta:hover { filter: brightness(1.05); }
.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.menu-btn {
  display: none;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--bg);
  z-index: 39;
  padding: 24px 20px 40px;
}
.mobile-nav.open { display: flex; flex-direction: column; gap: 18px; }
.mobile-nav a { font-size: 20px; color: var(--text); }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 72px 0 40px;
}
h1, h2, h3 { font-family: "Inter Display", Inter, sans-serif; letter-spacing: -0.04em; margin: 0 0 16px; }
h1 { font-size: clamp(40px, 6vw, 72px); line-height: 0.96; font-weight: 700; }
h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.05; }
.lede { color: var(--muted); font-size: 18px; max-width: 38ch; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.slider {
  position: relative;
  height: min(62vh, 520px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  user-select: none;
  touch-action: none;
}
.slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slider .original { z-index: 1; }
.slider .filtered { z-index: 2; }
.slider div.filtered {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}
.slider div.filtered img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-handle {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  z-index: 4;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px #090909, 0 0 24px rgba(198,255,0,0.35);
}
.slider-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}
.slider-label {
  position: absolute;
  top: 14px;
  z-index: 5;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 8px;
  background: rgba(9,9,9,0.72);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.slider-label.left { left: 14px; color: var(--filtered); }
.slider-label.right { right: 14px; color: var(--accent); }

.waitlist {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  max-width: 440px;
}
.waitlist input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}
.waitlist input:focus { border-color: var(--accent); }
.waitlist .note, .form-msg { color: var(--muted); font-size: 13px; margin-top: 10px; }
.form-msg.ok { color: var(--accent); }

.section { padding: 88px 0; border-top: 1px solid var(--border); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.card figure { position: relative; aspect-ratio: 3 / 4; background: #111; }
.card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card .meta { padding: 16px 18px 18px; }
.card h3 { font-size: 16px; margin: 0 0 6px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-num { color: var(--accent); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }

.platforms { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  border: 1px solid var(--border);
  background: var(--elevated);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--muted);
}

.page { padding: 80px 0 120px; }
.page p { color: var(--muted); max-width: 58ch; font-size: 17px; }
.page a.mail { color: var(--accent); }

.notfound-mark {
  width: 56px;
  height: 56px;
  margin: 0 0 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
}
.notfound-hero {
  margin: 32px 0 28px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 16 / 10;
}
.notfound-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 13px;
}
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: var(--text); }

@media (max-width: 860px) {
  nav.desktop { display: none; }
  .menu-btn { display: inline-flex; }
  .hero, .grid-3, .steps, .error-grid { grid-template-columns: 1fr; }
  .error-lab { padding-top: 8px; }
  .error-frame-no { top: -8px; }
  .hero { padding-top: 36px; gap: 28px; }
  .waitlist { flex-direction: column; }
}


.error-page { background:
  radial-gradient(1200px 500px at 80% 0%, rgba(198,255,0,0.05), transparent 60%),
  var(--bg);
}
.error-lab { padding: 28px 0 0; }
.error-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: start;
  padding-bottom: 80px;
}
.error-copy { padding-top: 12px; }
.error-copy .lede { max-width: 42ch; }
.error-mark {
  width: 56px;
  height: 56px;
  margin: 0 0 22px;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(198,255,0,0.7);
  vertical-align: 1px;
  animation: livePulse 1.8s ease-in-out infinite;
}
.error-readout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 28px 0 22px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.error-readout div {
  padding: 12px 14px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.error-readout div:nth-child(2n) { border-right: 0; }
.error-readout div:nth-child(n+3) { border-bottom: 0; }
.error-readout dt {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 4px;
}
.error-readout dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}
.error-log {
  min-height: 1.4em;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}
.error-stage { position: relative; }
.error-frame-no {
  position: absolute;
  right: 8px;
  top: -18px;
  z-index: 0;
  margin: 0;
  font-family: "Inter Display", Inter, sans-serif;
  font-size: clamp(80px, 14vw, 160px);
  letter-spacing: -0.08em;
  line-height: 0.8;
  color: rgba(245,245,242,0.04);
  pointer-events: none;
}
.error-slider {
  position: relative;
  z-index: 1;
  height: auto;
  aspect-ratio: 4 / 5;
  max-height: min(68vh, 640px);
  cursor: ew-resize;
}
.error-slider img { object-position: center center; }
.logo-slider {
  aspect-ratio: 16 / 10;
  max-height: min(64vh, 620px);
}
.error-hint {
  margin: 12px 0 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.error-page { padding: 28px 0 0; }
.error-stage { margin-bottom: 8px; }
.slider.error-slider {
  height: auto;
  aspect-ratio: 16 / 10;
  min-height: 240px;
  cursor: ew-resize;
}
.error-num {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  font-family: "Inter Display", Inter, sans-serif;
  font-weight: 700;
  font-size: clamp(88px, 22vw, 240px);
  letter-spacing: -0.08em;
  line-height: 1;
  color: rgba(245,245,242,0.14);
  pointer-events: none;
  text-shadow: 0 0 40px rgba(9,9,9,0.45);
}
.error-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.error-ticker span { position: relative; }
.error-ticker span + span::before {
  content: "·";
  color: var(--accent);
  margin-right: 22px;
}
.error-copy { padding: 36px 0 120px; }
.error-copy .error-mark {
  width: 56px;
  height: 56px;
  margin: 0 0 22px;
  border-radius: 12px;
}
.error-meter {
  font-family: "Inter Display", Inter, sans-serif;
  color: var(--accent) !important;
  font-size: 14px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 18px !important;
}
.error-copy .actions { margin-top: 28px; }

@media (max-width: 860px) {
  .slider.error-slider { aspect-ratio: 4 / 3; }
}

.contact-sheet {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.contact-sheet li {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.contact-sheet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
}
.contact-sheet .missing {
  display: grid;
  place-items: center;
  border-color: var(--accent);
  background:
    repeating-linear-gradient(
      -45deg,
      #151515 0 8px,
      #090909 8px 16px
    );
  color: var(--accent);
  text-align: center;
}
.contact-sheet .missing span {
  font-family: "Inter Display", Inter, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.06em;
  line-height: 1;
}
.contact-sheet .missing small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (max-width: 860px) {
  .contact-sheet { grid-template-columns: repeat(3, 1fr); }
  .contact-sheet li:nth-child(4),
  .contact-sheet li:nth-child(5) { display: none; }
}

.code-403 .live-dot { background: var(--warning); box-shadow: 0 0 0 4px rgba(255,77,94,0.16); }
.code-403 .error-frame-no { color: rgba(255,77,94,0.16); }
.code-403 .slider-label.left { color: var(--warning); }

.slider.logo-slider {
  background: #090909;
}
.slider.logo-slider img {
  object-fit: cover;
  object-position: center;
}
