/* HITE — Cinematic nightshift landing */
:root {
  --bg: #0B0D10;
  --bg-1: #11141A;
  --bg-2: #171A21;
  --fg: #F4F1EA;
  --fg-dim: #BDB9B0;
  --muted: #76736A;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.11);
  --accent: oklch(0.85 0.14 182);        /* laser teal */
  --accent-hi: oklch(0.92 0.12 182);
  --accent-dim: oklch(0.85 0.14 182 / 0.45);
  --accent-faint: oklch(0.85 0.14 182 / 0.15);
  --accent-glow: oklch(0.85 0.14 182 / 0.35);
  --warm: oklch(0.82 0.14 62);           /* warm amber secondary */
  --warm-glow: oklch(0.82 0.14 62 / 0.30);
  --hit: oklch(0.68 0.21 25);            /* SF red */
  --paper: #EFECE4;
  --ink: #0A0C0F;
  --display: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --sans: 'Space Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  --serif: 'Fraunces', 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body { cursor: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; border: none; background: none; color: inherit; padding: 0; }
input, select, textarea { font-family: inherit; }

/* ————————————————————————— KITE CURSOR ————————————————————————— */
.cursor {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  width: 22px; height: 22px; transform: translate(-50%, -50%);
  transition: transform 0.12s ease-out;
  mix-blend-mode: difference;
  will-change: transform, left, top;
}
.cursor svg { width: 100%; height: 100%; }
.cursor.hover { transform: translate(-50%, -50%) scale(1.8) rotate(12deg); }
.cursor.hit .kite-fill { fill: var(--accent); }

/* ————————————————————————— GRID SYSTEM ————————————————————————— */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

/* Baseline grid overlay — part of the aesthetic */
.grid-overlay {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px);
  background-size: calc((min(1440px, 100vw) - 64px) / 12) 100%;
  background-position: 32px 0;
  pointer-events: none;
  opacity: 0.35;
  z-index: 1;
}

/* ————————————————————————— NAV ————————————————————————— */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(11, 13, 16, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.nav-brand svg { width: 20px; height: 20px; }
.nav-links { display: flex; gap: 32px; text-transform: uppercase; color: var(--muted); }
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11px; text-transform: uppercase;
}
.nav-status {
  display: flex; align-items: center; gap: 6px;
  color: var(--muted);
}
.status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.nav-mvp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-mvp:hover { background: var(--accent); color: var(--ink); }
.nav-mvp svg { width: 11px; height: 11px; flex: none; }

/* ————————————————————————— HERO ————————————————————————— */
.hero {
  position: relative; z-index: 2;
  padding: 180px 0 80px;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.82;
  letter-spacing: -0.055em;
  margin: 0;
  position: relative;
}
.hero-headline .row { display: block; position: relative; }
.hero-headline .word-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.hero-headline .word-accent { color: var(--accent); }
.hero-headline .word-stroke {
  -webkit-text-stroke: 2px var(--fg);
  color: transparent;
}
.hero-headline .kite-inline {
  display: inline-block; vertical-align: -0.08em;
  width: 0.85em; height: 0.85em;
  transform: rotate(-8deg);
}

.hero-tag-row {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
  margin-top: 64px; align-items: end;
}
.hero-prompt {
  grid-column: 1 / span 7;
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  padding: 18px 22px;
  font-family: var(--mono); font-size: 15px;
  display: flex; align-items: center; gap: 14px;
  position: relative;
}
.hero-prompt .prompt-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 8px; border: 1px solid var(--line-2);
  font-size: 10px; text-transform: uppercase; color: var(--muted);
  flex: none;
}
.hero-prompt .typed { flex: 1; color: var(--fg); min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.hero-prompt .typed::after {
  content: '▋'; color: var(--accent);
  animation: blink 0.9s steps(2, end) infinite;
  margin-left: 2px;
}
@keyframes blink { 50% { opacity: 0; } }
.hero-prompt .prompt-send {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  color: var(--accent); letter-spacing: 0.08em;
  flex: none;
}

.hero-sub {
  grid-column: 9 / span 4;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
  padding-left: 20px;
  border-left: 1px solid var(--line-2);
}
.hero-sub b { color: var(--fg); font-weight: 500; }

.waitlist-row {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
  align-items: center;
}
.waitlist-form {
  grid-column: 1 / span 8;
  display: flex;
  border: 1px solid var(--fg);
  height: 68px;
}
.waitlist-form input {
  flex: 1;
  background: transparent; border: none; outline: none;
  padding: 0 22px;
  font-family: var(--sans); font-size: 17px; color: var(--fg);
  cursor: none;
  min-width: 0;
}
.waitlist-form input::placeholder { color: var(--muted); }
.waitlist-form select {
  background: transparent; border: none; outline: none;
  border-left: 1px solid var(--line-2);
  padding: 0 20px;
  font-family: var(--mono); font-size: 12px; color: var(--fg);
  text-transform: uppercase; letter-spacing: 0.08em;
  cursor: none;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background-image: linear-gradient(45deg, transparent 50%, var(--fg) 50%), linear-gradient(135deg, var(--fg) 50%, transparent 50%);
  background-position: calc(100% - 16px) center, calc(100% - 10px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.waitlist-form select option { background: var(--bg); color: var(--fg); }
.waitlist-cta {
  background: var(--accent);
  color: var(--ink);
  padding: 0 36px;
  font-family: var(--display); font-weight: 700;
  font-size: 16px; text-transform: uppercase; letter-spacing: 0.04em;
  transition: background 0.15s ease;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  cursor: none;
}
.waitlist-cta:hover { background: var(--fg); }
.waitlist-cta svg { width: 14px; height: 14px; }

.waitlist-count {
  grid-column: 10 / span 3;
  font-family: var(--mono);
  text-align: right;
}
.waitlist-count .n {
  font-family: var(--display);
  font-size: 34px; font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  display: block; line-height: 1;
}
.waitlist-count .l {
  font-size: 10px; text-transform: uppercase;
  color: var(--muted); letter-spacing: 0.08em;
  margin-top: 6px; display: block;
}

/* floating chaos elements */
.chaos {
  position: absolute; pointer-events: none;
  font-family: var(--mono); font-size: 10px;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 3;
}
.chaos::before {
  content: ''; display: inline-block;
  width: 8px; height: 1px; background: var(--muted);
  margin-right: 6px; vertical-align: middle;
}
.chaos.c1 { top: 28%; right: 4%; transform: rotate(90deg); transform-origin: right top; }
.chaos.c2 { top: 52%; left: 1%; transform: rotate(-90deg); transform-origin: left top; }
.chaos.c3 { bottom: 4%; right: 8%; }

.hero-kite-big {
  position: absolute;
  right: -60px; top: 120px;
  width: 42vw; max-width: 620px;
  opacity: 0.08;
  pointer-events: none;
  transform: rotate(-12deg);
  z-index: 0;
}

/* ————————————————————————— SECTION SHELL ————————————————————————— */
.section {
  position: relative; z-index: 2;
  padding: 120px 0;
  border-top: 1px solid var(--line);
}
.section-label {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 40px;
}
.section-label .kite-dot { width: 10px; height: 10px; flex: none; }
.section-label .num { color: var(--fg); }
.section-label .line { flex: 1; height: 1px; background: var(--line-2); }

.section-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0 0 56px;
  max-width: 14ch;
}
.section-title .it {
  font-family: var(--serif); font-style: italic; font-weight: 900;
  letter-spacing: -0.03em;
}
.section-title .acc { color: var(--accent); }

/* ————————————————————————— BEFORE/AFTER ————————————————————————— */
.ba-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-1);
  overflow: hidden;
  border: 1px solid var(--line-2);
  cursor: none;
  user-select: none;
}
.ba-side {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.ba-before {
  background:
    repeating-linear-gradient(-45deg, var(--bg-2) 0 8px, var(--bg-1) 8px 16px);
}
.ba-after {
  background:
    radial-gradient(1200px 600px at 30% 40%, oklch(0.40 0.10 182 / 0.55) 0%, transparent 60%),
    radial-gradient(900px 500px at 75% 70%, oklch(0.42 0.14 62 / 0.45) 0%, transparent 55%),
    var(--bg);
  clip-path: inset(0 50% 0 0);
}
.ba-label {
  position: absolute; top: 20px;
  font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; padding: 6px 10px;
  background: rgba(11, 13, 16, 0.8); border: 1px solid var(--line-2);
  z-index: 2;
}
.ba-label.b { left: 20px; color: var(--muted); }
.ba-label.a { right: 20px; color: var(--accent); border-color: var(--accent); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; width: 2px;
  background: var(--fg);
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}
.ba-handle::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(45deg);
  width: 42px; height: 42px; background: var(--accent);
}
.ba-handle::after {
  content: '‹ ›'; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--mono); font-weight: 700;
  color: var(--ink); font-size: 16px;
  letter-spacing: -0.1em;
}
.ba-placeholder {
  font-family: var(--mono); font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); text-align: center;
}
.ba-placeholder .k { color: var(--fg); font-size: 18px; display: block; margin-bottom: 8px; }

.ba-caption {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
  margin-top: 24px;
  font-family: var(--mono); font-size: 12px;
}
.ba-caption .prompt { grid-column: 1 / span 8; color: var(--muted); }
.ba-caption .prompt b { color: var(--accent); font-weight: 500; }
.ba-caption .meta { grid-column: 10 / span 3; text-align: right; color: var(--muted); }

/* ————————————————————————— HOW IT WORKS ————————————————————————— */
.steps {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
  position: relative;
}
.step {
  grid-column: span 4;
  border-top: 1px solid var(--fg);
  padding-top: 28px;
  position: relative;
}
.step:nth-child(2) { transform: translateY(32px); }
.step:nth-child(3) { transform: translateY(64px); }
.step-num {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  color: var(--muted); letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.step-num .acc { color: var(--accent); }
.step-title {
  font-family: var(--display); font-weight: 700;
  font-size: 38px; line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
}
.step-title .it { font-family: var(--serif); font-style: italic; font-weight: 900; }
.step-body {
  font-size: 15px; color: var(--muted); line-height: 1.55;
  max-width: 34ch;
}
.step-body b { color: var(--fg); font-weight: 500; }
.step-visual {
  margin-top: 36px;
  height: 200px;
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  position: relative; overflow: hidden;
  font-family: var(--mono); font-size: 11px;
  color: var(--muted);
  padding: 16px;
}
.step-visual .v-label { font-size: 10px; color: var(--muted); }
.step-visual .v-queue { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.step-visual .v-queue .v-item {
  display: flex; justify-content: space-between;
  padding: 6px 8px; background: var(--bg); border: 1px solid var(--line);
}
.step-visual .v-queue .v-item .nm { color: var(--fg); }
.step-visual .v-progress { margin-top: 10px; color: var(--accent); }
.step-visual .v-brief { margin-top: 12px; color: var(--fg); font-size: 13px; line-height: 1.5; }
.step-visual .v-brief .arr { color: var(--accent); }
.step-visual .v-brief .casey { color: var(--accent); }
.step-visual .v-brief .render { background: var(--accent); color: var(--ink); padding: 0 2px; }
.step-visual .v-export-num {
  margin-top: 16px;
  font-family: var(--display); font-weight: 700;
  font-size: 32px; color: var(--fg);
  letter-spacing: -0.03em; line-height: 1;
}
.step-visual .v-export-num .sub { font-size: 14px; color: var(--muted); margin-left: 6px; font-weight: 400; letter-spacing: 0; }
.step-visual .v-export-specs {
  margin-top: 14px; font-size: 11px; color: var(--muted);
  display: flex; flex-direction: column; gap: 4px;
}
.step-visual .v-export-dl { margin-top: 14px; color: var(--accent); font-size: 11px; }

/* ————————————————————————— PROMPT GALLERY ————————————————————————— */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
}
.prompt-card {
  grid-column: span 4;
  background: var(--bg);
  padding: 28px 26px;
  position: relative;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background 0.2s ease;
  overflow: hidden;
}
.prompt-card:hover { background: var(--bg-1); }
.prompt-card.tall { min-height: 300px; }
.prompt-card .tag {
  font-family: var(--mono); font-size: 10px; text-transform: uppercase;
  color: var(--muted); letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 10px;
}
.prompt-card .tag .dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
}
.prompt-card .body {
  font-family: var(--display); font-weight: 600;
  font-size: 22px; line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 20px 0;
}
.prompt-card .body .quote { color: var(--muted); font-weight: 400; font-family: var(--serif); font-style: italic; }
.prompt-card .meta {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; color: var(--muted);
  letter-spacing: 0.08em;
}
.prompt-card .preview {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, oklch(0.50 0.14 182) 0%, oklch(0.42 0.14 62) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.prompt-card:hover .preview { opacity: 1; }
.prompt-card .preview-inner {
  color: var(--fg);
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  text-align: center;
  mix-blend-mode: difference;
}
.prompt-card .preview-inner .big {
  font-family: var(--display); font-weight: 800;
  font-size: 52px; letter-spacing: -0.04em;
  text-transform: none; line-height: 0.9;
  display: block; margin-bottom: 10px;
}
.gallery-intro {
  font-size: 17px; color: var(--muted);
  max-width: 52ch; margin-top: -32px; margin-bottom: 56px;
  line-height: 1.5;
}
.gallery-intro b { color: var(--fg); font-weight: 500; }

/* ————————————————————————— USE CASES ————————————————————————— */
.cases {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
}
.case {
  grid-column: span 3;
  padding: 36px 24px;
  border-right: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  transition: background 0.2s ease;
}
.case:nth-child(4) { border-right: none; }
.case:hover { background: var(--bg-1); }
.case:hover .case-arrow { transform: translate(4px, -4px); color: var(--accent); }
.case-num {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.1em;
}
.case-title {
  font-family: var(--display); font-weight: 700;
  font-size: 30px; line-height: 0.95; letter-spacing: -0.035em;
  margin: 16px 0 12px;
}
.case-body {
  font-size: 13px; color: var(--muted); line-height: 1.5;
}
.case-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 20px;
}
.case-tag {
  font-family: var(--mono); font-size: 9px;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 8px; border: 1px solid var(--line-2);
  color: var(--muted);
}
.case-arrow {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--mono); font-size: 18px;
  color: var(--muted);
  transition: all 0.2s ease;
}

/* ————————————————————————— PRICING ————————————————————————— */
.pricing {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
}
.plan {
  grid-column: span 6;
  border: 1px solid var(--line-2);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  min-height: 520px;
  position: relative;
  background: var(--bg);
}
.plan.featured {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-16px);
}
.plan.featured .plan-sub,
.plan.featured .plan-feat,
.plan.featured .plan-price-note { color: rgba(10, 12, 15, 0.7); }
.plan.featured .plan-feat .half-kite path { stroke: var(--ink); }
.plan.featured .plan-feat .half-kite .kite-fill { fill: var(--ink); }
.plan-tag {
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 24px;
}
.plan.featured .plan-tag { color: var(--ink); }
.plan-tag .badge {
  display: inline-block; padding: 3px 7px;
  background: var(--accent); color: var(--ink);
  margin-left: 8px;
}
.plan.featured .plan-tag .badge { background: var(--ink); color: var(--accent); }
.plan-name {
  font-family: var(--display); font-weight: 800;
  font-size: 56px; line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0 0 8px;
}
.plan-sub {
  font-size: 14px; color: var(--muted);
  margin-bottom: 32px;
}
.plan-price {
  font-family: var(--display); font-weight: 700;
  font-size: 44px; letter-spacing: -0.04em;
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 4px;
}
.plan-price .cur { font-size: 22px; color: var(--muted); }
.plan-price .per { font-size: 13px; color: var(--muted); font-weight: 400; letter-spacing: 0; }
.plan.featured .plan-price .cur, .plan.featured .plan-price .per { color: rgba(10, 12, 15, 0.7); }
.plan-price-note {
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 24px;
}
.plan-feats {
  flex: 1;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
  margin-bottom: 24px;
}
.plan.featured .plan-feats { border-top-color: rgba(10, 12, 15, 0.2); }
.plan-feat {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.plan.featured .plan-feat { border-bottom-color: rgba(10, 12, 15, 0.08); }
.plan-feat:last-child { border-bottom: none; }
.plan-feat .half-kite { width: 10px; height: 10px; margin-top: 3px; flex: none; }
.plan-cta {
  padding: 16px;
  border: 1px solid var(--fg);
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  text-align: center;
  transition: all 0.15s ease;
  display: block;
}
.plan-cta:hover { background: var(--fg); color: var(--ink); }
.plan.featured .plan-cta { border-color: var(--ink); }
.plan.featured .plan-cta:hover { background: var(--ink); color: var(--accent); }

/* ————————————————————————— FAQ ————————————————————————— */
.faq {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
}
.faq-side { grid-column: 1 / span 4; }
.faq-side .section-title { margin-bottom: 24px; }
.faq-side p {
  font-size: 14px; color: var(--muted);
  max-width: 32ch; line-height: 1.5; margin: 0;
}
.faq-side a {
  color: var(--accent); border-bottom: 1px solid var(--accent);
}
.faq-list { grid-column: 6 / span 7; }
.faq-item {
  border-top: 1px solid var(--line-2);
  padding: 24px 0;
  cursor: none;
}
.faq-item:last-child { border-bottom: 1px solid var(--line-2); }
.faq-q {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--display); font-weight: 600;
  font-size: 22px; line-height: 1.2;
  letter-spacing: -0.02em;
  gap: 24px;
}
.faq-q .mark {
  font-family: var(--mono); font-weight: 500;
  font-size: 14px; color: var(--muted);
  flex: none;
  transition: color 0.15s, transform 0.2s;
}
.faq-item.open .faq-q .mark { color: var(--accent); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, margin 0.35s ease;
  font-size: 15px; color: var(--muted); line-height: 1.55;
  max-width: 60ch;
}
.faq-item.open .faq-a {
  max-height: 400px;
  margin-top: 16px;
}

/* ————————————————————————— FINAL CTA ————————————————————————— */
.final {
  padding: 160px 0 120px;
  position: relative; z-index: 2;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.final-kite {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 90vw; max-width: 1200px;
  opacity: 0.06;
  pointer-events: none;
}
.final-inner { position: relative; z-index: 2; text-align: center; }
.final-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(80px, 14vw, 240px);
  line-height: 0.82;
  letter-spacing: -0.055em;
  margin: 0 0 40px;
}
.final-title .it { font-family: var(--serif); font-style: italic; font-weight: 900; }
.final-title .acc { color: var(--accent); }
.final-sub {
  font-family: var(--mono); font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 56px;
}
.final-form { max-width: 720px; margin: 0 auto; }
.final-note {
  margin-top: 24px;
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}

/* ————————————————————————— FOOTER ————————————————————————— */
.footer {
  position: relative; z-index: 2;
  padding: 48px 0 24px;
  border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted);
}
.footer-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
  margin-bottom: 40px;
}
.footer-col { grid-column: span 3; }
.footer-col h4 { color: var(--fg); font-size: 11px; margin: 0 0 16px; font-weight: 500; }
.footer-col a { display: block; padding: 4px 0; color: var(--muted); }
.footer-col a:hover { color: var(--fg); }
.footer-bot {
  display: flex; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.footer-mega {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(120px, 22vw, 320px);
  line-height: 0.85; letter-spacing: -0.06em;
  color: var(--line-2);
  margin: 20px 0 40px;
  white-space: nowrap;
  overflow: hidden;
}

.magnetic { display: inline-block; transition: transform 0.15s cubic-bezier(0.2, 0.8, 0.2, 1); }
.waitlist-form .magnetic { display: flex; }
.waitlist-form .waitlist-cta { height: 100%; }

/* ————————————————————————— STRIPE RETURN BANNER ————————————————————————— */
.stripe-banner {
  position: fixed; top: 80px; left: 50%; transform: translateX(-50%);
  z-index: 200;
  padding: 14px 22px;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  border: 1px solid var(--accent);
  background: rgba(11, 13, 16, 0.92);
  backdrop-filter: blur(10px);
  color: var(--accent);
  transition: opacity 0.8s ease;
}
.stripe-banner.cancelled { border-color: var(--warm); color: var(--warm); }
.stripe-banner.hide { opacity: 0; }

/* ————————————————————————— CAREERS PAGE ————————————————————————— */
.careers-body-page { padding-top: 100px; min-height: 100vh; display: flex; flex-direction: column; }
.careers-main {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 32px;
}
.careers-card {
  max-width: 720px; width: 100%;
  text-align: left;
}
.careers-eyebrow {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 32px;
  display: flex; align-items: center; gap: 14px;
}
.careers-eyebrow .line { flex: 1; height: 1px; background: var(--line-2); }
.careers-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.88; letter-spacing: -0.05em;
  margin: 0 0 32px;
}
.careers-title .it { font-family: var(--serif); font-style: italic; font-weight: 900; }
.careers-title .acc { color: var(--accent); }
.careers-body {
  font-size: 18px; line-height: 1.55; color: var(--muted);
  max-width: 56ch; margin-bottom: 48px;
}
.careers-body b { color: var(--fg); font-weight: 500; }
.careers-contact {
  border: 1px solid var(--line-2);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  transition: border-color 0.15s;
}
.careers-contact:hover { border-color: var(--accent); }
.careers-contact .label {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 8px;
}
.careers-contact .email {
  font-family: var(--display); font-weight: 700;
  font-size: 28px; letter-spacing: -0.02em;
  color: var(--fg);
  word-break: break-all;
}
.careers-contact:hover .email { color: var(--accent); }
.careers-contact .arrow {
  font-family: var(--mono); font-size: 24px; color: var(--accent);
  transition: transform 0.2s;
  flex: none;
}
.careers-contact:hover .arrow { transform: translate(4px, -4px); }
.careers-back {
  margin-top: 40px;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
}
.careers-back:hover { color: var(--fg); }

/* responsive trim */
@media (max-width: 900px) {
  body { cursor: auto; }
  button, a, input, select { cursor: pointer; }
  .cursor { display: none; }
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-cta .nav-status { display: none; }
  .nav-mvp { padding: 6px 10px; font-size: 10px; letter-spacing: 0.08em; }
  .container { padding: 0 20px; }
  .hero { padding: 120px 0 60px; }
  .hero-prompt, .hero-sub { grid-column: span 12; }
  .hero-sub { border-left: none; padding-left: 0; margin-top: 16px; }
  .waitlist-form { grid-column: span 12; flex-wrap: wrap; height: auto; }
  .waitlist-form input { width: 100%; padding: 18px 20px; border-bottom: 1px solid var(--line-2); }
  .waitlist-form select { width: 50%; padding: 18px 20px; border-left: none; }
  .waitlist-cta { flex: 1; padding: 18px; justify-content: center; }
  .waitlist-count { grid-column: span 12; text-align: left; margin-top: 20px; }
  .step, .plan, .case { grid-column: span 12; transform: none !important; }
  .case { border-right: none; }
  .prompt-card { grid-column: span 12; }
  .prompt-card.tall { min-height: 220px; }
  .faq-side, .faq-list { grid-column: span 12; }
  .footer-col { grid-column: span 6; }
  .section { padding: 80px 0; }
  .section-title { margin-bottom: 40px; }
  .ba-caption .prompt, .ba-caption .meta { grid-column: span 12; text-align: left; }
  .plan.featured { transform: none; }
}
