/* Studio partner page. Single dark theme, blueprint + signal orange. No inline styles anywhere (CSP). */

@font-face { font-family: "Archivo"; src: url("/assets/fonts/Archivo-var.woff2") format("woff2"); font-weight: 100 900; font-stretch: 62% 125%; font-display: swap; }
@font-face { font-family: "Plex Mono"; src: url("/assets/fonts/IBMPlexMono-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Plex Mono"; src: url("/assets/fonts/IBMPlexMono-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }

:root {
  --ink: #07090C;
  --ink-2: #0B0F15;
  --panel: #0E131B;
  --panel-2: #141B26;
  --paper: #F1EEE7;
  --muted: #A3ADBB;
  --blue: #7FB2FF;
  --accent: #FF7A2E;
  --accent-ink: #0B0C0E;
  --line: rgba(127, 178, 255, 0.10);
  --line-2: rgba(127, 178, 255, 0.22);
  --shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 18px 50px rgba(0,0,0,0.55), 0 2px 6px rgba(0,0,0,0.4);
  --shadow-lg: 0 1px 0 rgba(255,255,255,0.06) inset, 0 40px 120px rgba(0,0,0,0.7), 0 8px 24px rgba(0,0,0,0.5);
  --r: 14px;
  --gut: clamp(20px, 4vw, 56px);
  --sans: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --ease: cubic-bezier(.2,.7,.1,1);
  --mx: 50vw; --my: 30vh;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body { margin: 0; background: var(--ink); color: var(--paper); font-family: var(--sans); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--accent); color: var(--accent-ink); }

.skip { position: absolute; left: -999px; top: 8px; background: var(--paper); color: var(--ink); padding: 10px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 12px; }

.wrap { width: 100%; max-width: 1360px; margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); }
.wrap--narrow { max-width: 860px; }

/* ---------- blueprint grid + cursor spotlight ---------- */
.grid-bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.grid-bg::before, .grid-bg::after { content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px),
                    linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px, 240px 240px, 240px 240px; }
.grid-bg::before { opacity: .55; -webkit-mask-image: linear-gradient(#000, rgba(0,0,0,.35)); mask-image: linear-gradient(#000, rgba(0,0,0,.35)); }
.grid-bg::after { opacity: 0; background-image: linear-gradient(var(--line-2) 1px, transparent 1px), linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
  -webkit-mask-image: radial-gradient(340px circle at var(--mx) var(--my), #000, transparent 70%); mask-image: radial-gradient(340px circle at var(--mx) var(--my), #000, transparent 70%);
  transition: opacity .4s; }
.has-pointer .grid-bg::after { opacity: 1; }

/* ---------- header ---------- */
.top { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px var(--gut); background: rgba(7,9,12,0.72); -webkit-backdrop-filter: blur(14px) saturate(140%); backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line); }
.mark { text-decoration: none; display: grid; line-height: 1.1; }
.mark__name { font-weight: 800; font-stretch: 118%; letter-spacing: .02em; text-transform: uppercase; font-size: 15px; }
.mark__sub { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); margin-top: 3px; }
.top__nav { display: flex; gap: 30px; }
.top__nav a { text-decoration: none; font-size: 14px; color: var(--muted); transition: color .2s; }
.top__nav a:hover { color: var(--paper); }

/* ---------- buttons / links ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 28px; border: 0; cursor: pointer;
  background: var(--accent); color: var(--accent-ink); font: 700 16px/1 var(--sans); font-stretch: 108%; letter-spacing: .01em; text-decoration: none; border-radius: 999px;
  box-shadow: 0 10px 30px rgba(255,122,46,0.28), 0 1px 0 rgba(255,255,255,0.35) inset; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.btn::after { content: ""; width: 8px; height: 8px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: rotate(45deg); transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,122,46,0.4), 0 1px 0 rgba(255,255,255,0.35) inset; }
.btn:hover::after { transform: translateX(3px) rotate(45deg); }
.btn--sm { min-height: 42px; padding: 0 20px; font-size: 14px; }
.btn[disabled] { opacity: .6; cursor: progress; }
.textlink { background: none; border: 0; padding: 6px 0; cursor: pointer; color: var(--paper); font: 600 16px/1.2 var(--sans); text-decoration: none;
  box-shadow: 0 1px 0 var(--line-2); transition: box-shadow .2s, color .2s; }
.textlink:hover { color: var(--accent); box-shadow: 0 1px 0 var(--accent); }

/* ---------- shared type ---------- */
.over { display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.over__tick { width: 28px; height: 9px; border-left: 1px solid var(--blue); border-right: 1px solid var(--blue); background: linear-gradient(var(--blue), var(--blue)) center / 100% 1px no-repeat; flex: none; }
.h2 { font-weight: 800; font-stretch: 112%; font-size: clamp(34px, 5.2vw, 76px); line-height: 1.0; letter-spacing: -0.02em; margin-top: 22px; max-width: 18ch; text-wrap: balance; }
.sub { margin-top: 26px; max-width: 62ch; font-size: clamp(17px, 1.35vw, 20px); color: var(--muted); }
.punch { margin-top: clamp(48px, 7vw, 96px); font-weight: 700; font-stretch: 108%; font-size: clamp(24px, 3.2vw, 44px); line-height: 1.15; letter-spacing: -0.01em; max-width: 26ch; text-wrap: balance; }
.punch em { font-style: normal; color: var(--accent); }
.sec { padding: clamp(84px, 11vw, 168px) 0; position: relative; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(36px, 5vw, 72px) 0 0; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr); column-gap: clamp(28px, 4vw, 64px); align-items: center; }
.hero__left { container-type: inline-size; min-width: 0; }
.hero__h1 { margin-top: 22px; font-weight: 900; font-stretch: 125%; text-transform: uppercase; font-size: clamp(44px, 6.4vw, 102px); font-size: clamp(44px, 14.4cqw, 102px); line-height: .9; letter-spacing: -0.025em; }
.ln { display: block; white-space: nowrap; }
.ln--accent { color: var(--accent); }
.lede { margin-top: clamp(24px, 2.6vw, 38px); max-width: 54ch; font-size: clamp(17px, 1.3vw, 20px); color: var(--muted); }
.hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; }
.hero__seats { margin-top: 26px; display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 13px; letter-spacing: .04em; color: var(--paper); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(255,122,46,.6); animation: pulse 2.2s infinite; flex: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,122,46,.55); } 70% { box-shadow: 0 0 0 12px rgba(255,122,46,0); } 100% { box-shadow: 0 0 0 0 rgba(255,122,46,0); } }

.hero__right { perspective: 1600px; min-width: 0; }
.build { position: relative; width: calc(100% + 9vw); background: var(--panel); border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden;
  transform: rotateY(calc(-9deg + var(--ry, 0deg))) rotateX(calc(3deg + var(--rx, 0deg))); transform-origin: left center; transition: transform .6s var(--ease); will-change: transform; }
.build__chrome { display: flex; align-items: center; gap: 14px; padding: 12px calc(16px + 9vw) 12px 16px; background: var(--panel-2); }
.build__dots { display: flex; gap: 6px; }
.build__dots i { width: 10px; height: 10px; border-radius: 50%; background: #2A3442; }
.build__url { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: var(--mono); font-size: 12px; color: var(--muted); background: var(--ink-2); padding: 6px 12px; border-radius: 8px; }
.build__status { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.build__status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.build.is-building .build__status { color: var(--blue); }
.build.is-building .build__status::before { animation: blink .7s steps(2) infinite; }
@keyframes blink { 50% { opacity: .2; } }

.build__stage { position: relative; aspect-ratio: 16 / 10; background: #0A1220; overflow: hidden; }
.build__wire { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--blue); opacity: 0; transition: opacity .5s; }
.build__wire path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.build.is-building .build__wire { opacity: .9; }
.build.is-building .build__wire path { animation: draw 1.15s var(--ease) forwards; }
.build.is-building .build__wire path:nth-child(2) { animation-delay: .08s; } .build.is-building .build__wire path:nth-child(3) { animation-delay: .16s; }
.build.is-building .build__wire path:nth-child(4) { animation-delay: .24s; } .build.is-building .build__wire path:nth-child(5) { animation-delay: .32s; }
.build.is-building .build__wire path:nth-child(6) { animation-delay: .4s; } .build.is-building .build__wire path:nth-child(7) { animation-delay: .48s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.build__shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: 0; clip-path: inset(0 0 100% 0); }
.build__shot.is-on { opacity: 1; clip-path: inset(0 0 0 0); }
.build__shot.is-in { opacity: 1; animation: reveal 1.5s linear forwards; }
.build__shot.is-out { opacity: 0; clip-path: inset(0 0 0 0); transition: opacity .45s; }
@keyframes reveal { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0 0); } }
.build__scan { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--accent); box-shadow: 0 0 24px 4px rgba(255,122,46,.55), 0 -40px 60px 10px rgba(255,122,46,.08); opacity: 0; }
.build.is-scanning .build__scan { opacity: 1; animation: scan 1.5s linear forwards; }
@keyframes scan { from { top: 0; } to { top: 100%; } }

.build__cap { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 16px; padding: 16px 18px 6px; }
.build__count { font-family: var(--mono); font-size: 12px; color: var(--blue); letter-spacing: .08em; }
.build__count b { font-weight: 500; color: var(--paper); }
.build__name { font-weight: 800; font-stretch: 112%; font-size: 19px; letter-spacing: -0.01em; }
.build__what { font-size: 14px; color: var(--muted); }
.build__log { display: flex; flex-wrap: wrap; gap: 8px; padding: 8px 18px 18px; min-height: 52px; }
.build__log li { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); background: var(--ink-2); padding: 6px 10px; border-radius: 999px; transition: color .3s; }
.build__log li::before { content: ""; width: 9px; height: 5px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: translateY(-1px) rotate(-45deg) scale(0); transition: transform .3s var(--ease); }
.build__log li.ok { color: var(--paper); }
.build__log li.ok::before { transform: translateY(-1px) rotate(-45deg) scale(1); }

.titleblock { grid-column: 1 / -1; margin-top: clamp(40px, 5vw, 72px); display: grid; grid-template-columns: 2fr 3fr 1fr 1fr; box-shadow: 0 -1px 0 var(--line-2), 0 1px 0 var(--line-2); }
.titleblock div { padding: 14px 18px 16px; box-shadow: -1px 0 0 var(--line-2); }
.titleblock div:first-child { box-shadow: none; padding-left: 0; }
.titleblock dt { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.titleblock dd { margin-top: 4px; font-weight: 600; font-size: 15px; }

/* entrance */
.js .hero .ln, .js .hero .lede, .js .hero__cta, .js .hero__seats, .js .hero .over { opacity: 0; transform: translateY(28px); animation: rise .9s var(--ease) forwards; }
.js .hero .ln:nth-child(1) { animation-delay: .05s; } .js .hero .ln:nth-child(2) { animation-delay: .14s; }
.js .hero .ln:nth-child(3) { animation-delay: .23s; } .js .hero .ln:nth-child(4) { animation-delay: .32s; }
.js .hero .lede { animation-delay: .45s; } .js .hero__cta { animation-delay: .55s; } .js .hero__seats { animation-delay: .65s; }
.js .build { opacity: 0; animation: slidein 1.2s var(--ease) .3s forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes slidein { from { opacity: 0; translate: 60px 0; } to { opacity: 1; translate: 0 0; } }

/* ---------- proof ---------- */
.proof { background: var(--ink-2); box-shadow: 0 -1px 0 var(--line), 0 1px 0 var(--line); margin-top: clamp(40px, 5vw, 72px); }
.proof .wrap { container-type: inline-size; }
.proof__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fact { padding: clamp(28px, 3.4vw, 48px) clamp(16px, 2vw, 32px); box-shadow: -1px 0 0 var(--line); display: grid; gap: 10px; align-content: start; }
.fact:first-child { box-shadow: none; padding-left: 0; }
.fact { min-width: 0; }
.fact b { font-weight: 900; font-stretch: 112%; font-size: clamp(28px, 3vw, 50px); font-size: clamp(28px, 3.9cqw, 50px); line-height: 1; letter-spacing: -0.03em; white-space: nowrap; }
.fact b small { font-size: .38em; font-weight: 700; letter-spacing: .02em; margin-left: 6px; color: var(--accent); text-transform: uppercase; }
.fact span { font-size: 15px; color: var(--muted); max-width: 30ch; }

/* ---------- cards ---------- */
.cards3 { margin-top: clamp(44px, 5vw, 72px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.card { background: var(--panel); border-radius: var(--r); box-shadow: var(--shadow); padding: clamp(24px, 2.6vw, 38px); }
.card__n, .step__n { font-family: var(--mono); font-size: 13px; letter-spacing: .1em; color: var(--blue); }
.card h3 { margin-top: 18px; font-weight: 800; font-stretch: 110%; font-size: 24px; letter-spacing: -0.01em; }
.card p { margin-top: 10px; color: var(--muted); font-size: 16px; }

/* ---------- deal ---------- */
.deal, .fit, .apply { background: var(--ink-2); box-shadow: 0 -1px 0 var(--line), 0 1px 0 var(--line); }
.deal .h2 { max-width: 20ch; }
.deal__grid { margin-top: clamp(44px, 5vw, 80px); display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 88px); align-items: start; }
.steps { display: grid; gap: 0; }
.terms { position: sticky; top: 108px; background: var(--panel-2); border-radius: var(--r); box-shadow: var(--shadow-lg); padding: clamp(24px, 2.4vw, 36px); }
.terms__head { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); padding-bottom: 14px; box-shadow: 0 1px 0 var(--line-2); }
.terms dl { margin: 0; }
.terms dl div { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 15px 0; box-shadow: 0 1px 0 var(--line); }
.terms dl div:last-child { box-shadow: none; padding-bottom: 0; }
.terms dt { color: var(--muted); font-size: 15px; }
.terms dd { font-weight: 800; font-stretch: 108%; font-size: 17px; text-align: right; }
.terms dl div:first-child dd, .terms dl div:nth-child(2) dd { font-size: 26px; font-stretch: 118%; color: var(--accent); }
.step { display: grid; grid-template-columns: 92px 1fr; gap: 12px; padding: 30px 0; box-shadow: 0 1px 0 var(--line-2); position: relative; }
.step:first-child { box-shadow: 0 1px 0 var(--line-2), 0 -1px 0 var(--line-2); }
.step__n { padding-top: 8px; }
.step h3 { font-weight: 800; font-stretch: 110%; font-size: clamp(22px, 2.3vw, 32px); letter-spacing: -0.015em; line-height: 1.1; }
.step p { margin-top: 10px; color: var(--muted); max-width: 62ch; }
.deal__cta { margin-top: 48px; }

/* ---------- work wall ---------- */
.wall { margin-top: clamp(44px, 5vw, 72px); display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 28px); }
.tile { grid-column: span 4; display: grid; grid-template-rows: auto 1fr; background: var(--panel); border-radius: var(--r); overflow: hidden; text-decoration: none; box-shadow: var(--shadow); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.tile--wide { grid-column: span 8; }
.tile--half { grid-column: span 6; }
.tile--half .tile__img { aspect-ratio: 16 / 8.2; }
.group { margin-top: clamp(44px, 5vw, 72px); display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 32px; padding-bottom: 18px; box-shadow: 0 1px 0 var(--line-2); }
.group--demo { margin-top: clamp(72px, 8vw, 120px); }
.group__label { display: flex; align-items: center; gap: 12px; font-weight: 800; font-stretch: 112%; font-size: clamp(22px, 2.2vw, 30px); letter-spacing: -0.01em; }
.group__n { font-family: var(--mono); font-weight: 500; font-size: 14px; letter-spacing: .08em; color: var(--blue); }
.group__dot { width: 10px; height: 10px; border-radius: 50%; box-shadow: 0 0 0 2px var(--blue) inset; flex: none; }
.group__dot--live { background: var(--accent); box-shadow: none; animation: pulse 2.2s infinite; }
.group__sub { color: var(--muted); font-size: 15px; max-width: 52ch; }
#wall-live, #wall-demo { margin-top: clamp(24px, 3vw, 40px); }
.wall--next { margin-top: clamp(16px, 2vw, 28px); }
.build.is-demo .build__status { color: var(--blue); }
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tile__img { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #0A1220; }
.tile--wide .tile__img { aspect-ratio: 16 / 7.4; }
.tile__img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .9s var(--ease); }
.tile:hover .tile__img img { transform: scale(1.04); }
.tile__meta { display: grid; gap: 4px; padding: 18px 20px 20px; align-content: start; }
.tile__meta b { font-weight: 800; font-stretch: 110%; font-size: 19px; letter-spacing: -0.01em; }
.tile__meta i { font-style: normal; color: var(--muted); font-size: 15px; }
.tile__meta u { text-decoration: none; margin-top: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); }
.tile--next { grid-column: span 12; grid-template-rows: none; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); align-items: center; background: transparent; box-shadow: 0 0 0 1px var(--line-2) inset; }
.tile--next .tile__img { aspect-ratio: 16 / 4.2; }
.tile--next:hover { box-shadow: 0 0 0 1px var(--accent) inset; }
.tile__img--blank { background: transparent; color: var(--blue); display: grid; place-items: center; }
.tile__img--blank svg { width: 100%; height: 100%; opacity: .55; }
.tile--next .tile__meta u { color: var(--accent); }

/* ---------- fit ---------- */
.fit__grid { margin-top: clamp(44px, 5vw, 72px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 88px); }
.fit__col h3 { font-weight: 800; font-stretch: 110%; font-size: 24px; margin-bottom: 18px; }
.ticks li, .crosses li { position: relative; padding: 14px 0 14px 38px; box-shadow: 0 1px 0 var(--line); color: var(--paper); }
.fit__col--no li { color: var(--muted); }
.ticks li::before { content: ""; position: absolute; left: 4px; top: 22px; width: 14px; height: 7px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.crosses li::before, .crosses li::after { content: ""; position: absolute; left: 2px; top: 27px; width: 18px; height: 2px; background: var(--muted); transform: rotate(45deg); }
.crosses li::after { transform: rotate(-45deg); }

/* ---------- doors ---------- */
.doors__grid { margin-top: clamp(44px, 5vw, 72px); display: grid; grid-template-columns: 7fr 5fr; gap: clamp(16px, 2vw, 28px); align-items: stretch; }
.door { background: var(--panel); border-radius: var(--r); box-shadow: var(--shadow); padding: clamp(28px, 3.2vw, 48px); display: grid; align-content: start; gap: 0; }
.door--main { background: var(--panel-2); box-shadow: var(--shadow-lg); }
.door--ref { background: transparent; box-shadow: 0 0 0 1px var(--line-2) inset; }
.door--ref h3, .door--ref .door__price { color: var(--muted); }
.door--ref .crosses { margin: 22px 0 24px; }
.door--ref .crosses li { font-size: 16px; padding-top: 12px; padding-bottom: 12px; color: var(--muted); }
.door--ref .crosses li::before, .door--ref .crosses li::after { top: 24px; }
.door__note { color: var(--paper); font-size: 15px; line-height: 1.6; max-width: 46ch; }
.door__tag { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); }
.door h3 { margin-top: 14px; font-weight: 900; font-stretch: 120%; text-transform: uppercase; font-size: clamp(32px, 3.6vw, 52px); line-height: 1; letter-spacing: -0.02em; }
.door__price { margin-top: 16px; font-weight: 800; font-stretch: 108%; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.1; }
.door__price small { display: block; margin-top: 6px; font-weight: 400; font-stretch: 100%; font-size: 15px; color: var(--muted); }
.door .ticks { margin: 22px 0 30px; }
.door .ticks li { font-size: 16px; padding-top: 12px; padding-bottom: 12px; }
.door .ticks li::before { top: 20px; }
.door .btn, .door .textlink { justify-self: start; align-self: end; }

/* ---------- seats band ---------- */
.seats { background: var(--accent); color: var(--accent-ink); }
.seats__in { display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 5vw, 80px); align-items: center; padding-top: clamp(40px, 5vw, 72px); padding-bottom: clamp(40px, 5vw, 72px); }
.seats__n { font-weight: 900; font-stretch: 125%; font-size: clamp(120px, 20vw, 300px); line-height: .8; letter-spacing: -0.05em; }
.seats .over { color: var(--accent-ink); }
.seats .over__tick { border-color: var(--accent-ink); background: linear-gradient(var(--accent-ink), var(--accent-ink)) center / 100% 1px no-repeat; }
.seats__t { margin-top: 16px; font-weight: 700; font-stretch: 106%; font-size: clamp(20px, 2.4vw, 34px); line-height: 1.2; max-width: 30ch; letter-spacing: -0.01em; }

/* ---------- faq ---------- */
.faq .h2, .apply .h2 { max-width: 16ch; }
.q { box-shadow: 0 1px 0 var(--line-2); }
.q:first-of-type { margin-top: clamp(36px, 4vw, 56px); box-shadow: 0 1px 0 var(--line-2), 0 -1px 0 var(--line-2); }
.q summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 0; font-weight: 700; font-stretch: 106%; font-size: clamp(18px, 1.6vw, 22px); }
.q summary::-webkit-details-marker { display: none; }
.q summary::after { content: ""; flex: none; width: 14px; height: 14px; background: linear-gradient(var(--accent), var(--accent)) center / 100% 2px no-repeat, linear-gradient(var(--accent), var(--accent)) center / 2px 100% no-repeat; transition: transform .3s var(--ease); }
.q[open] summary::after { transform: rotate(45deg); }
.q p { padding: 0 40px 28px 0; color: var(--muted); max-width: 68ch; }

/* ---------- form ---------- */
.form { margin-top: clamp(36px, 4vw, 56px); background: var(--panel); border-radius: 18px; box-shadow: var(--shadow-lg); padding: clamp(22px, 3.4vw, 48px); }
.form__bar { height: 3px; background: var(--ink); border-radius: 3px; overflow: hidden; }
.form__bar span { display: block; height: 100%; width: 25%; background: var(--accent); transition: width .5s var(--ease); }
.form__step { margin-top: 14px; font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); }
.form__step b { font-weight: 500; color: var(--paper); }
.pane { border: 0; margin: 0; padding: 0; min-width: 0; display: none; }
.pane.is-on { display: block; animation: rise .5s var(--ease) both; }
.pane legend { padding: 0; margin: 22px 0 22px; font-weight: 800; font-stretch: 110%; font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -0.015em; line-height: 1.1; }
.field { display: grid; gap: 8px; margin-top: 18px; }
.field > span { font-size: 15px; color: var(--paper); }
.field input, .field textarea { width: 100%; background: var(--ink); color: var(--paper); border: 1px solid #2A3646; border-radius: 12px; padding: 15px 16px; font: 400 16px/1.5 var(--sans); transition: border-color .2s, box-shadow .2s; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8892A0; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,122,46,.22); }
.field.is-bad input, .field.is-bad textarea { border-color: #FF8A7A; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.choice { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice--3 { grid-template-columns: repeat(3, 1fr); }
.choice label { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; inset: 0; }
.choice span { display: grid; gap: 4px; height: 100%; padding: 16px 18px; border-radius: 12px; background: var(--ink); border: 1px solid #2A3646; font-size: 14px; color: var(--muted); transition: border-color .2s, background .2s; }
.choice span b { font-size: 17px; font-weight: 800; font-stretch: 108%; color: var(--paper); }
.choice input:checked + span { border-color: var(--accent); background: #15110E; }
.choice input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 3px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__err { min-height: 24px; margin-top: 16px; color: #FF9C8E; font-size: 15px; }
.form__nav { margin-top: 10px; display: flex; justify-content: flex-end; align-items: center; gap: 24px; }
.form__nav [data-back] { margin-right: auto; }
[hidden] { display: none !important; }
.done { margin-top: 40px; background: var(--panel); border-radius: 18px; box-shadow: var(--shadow-lg); padding: clamp(28px, 4vw, 56px); }
.done h3 { font-weight: 900; font-stretch: 118%; text-transform: uppercase; font-size: clamp(28px, 3.4vw, 46px); line-height: 1; color: var(--accent); }
.done p { margin-top: 16px; color: var(--paper); max-width: 56ch; }

/* ---------- footer ---------- */
.foot { padding: 56px 0 96px; }
.foot__in { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }
.foot__small { margin-top: 6px; color: var(--muted); font-size: 14px; }
.foot__legal { color: var(--muted); font-size: 13px; line-height: 1.6; max-width: 78ch; }

/* ---------- mobile dock ---------- */
.dock { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(7,9,12,.92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 -1px 0 var(--line-2);
  font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--paper); }
.dock b { color: var(--accent); font-weight: 500; }
.dock .btn { text-transform: none; letter-spacing: .01em; }

/* ---------- scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .cards3 .reveal:nth-child(2), .js .wall .reveal:nth-child(3n+2) { transition-delay: .08s; }
.js .cards3 .reveal:nth-child(3), .js .wall .reveal:nth-child(3n+3) { transition-delay: .16s; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; row-gap: 44px; }
  .build { width: 100%; transform: none; }
  .build__chrome { padding-right: 16px; }
  .wall .tile, .wall .tile--wide, .wall .tile--half { grid-column: span 6; }
  .wall .tile--next { grid-column: span 12; }
  .doors__grid { grid-template-columns: 1fr; }
  .deal__grid { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: 1fr 1fr; }
  .fact { padding-left: 0; box-shadow: 0 1px 0 var(--line); }
  .fact:nth-child(even) { padding-left: 24px; box-shadow: -1px 0 0 var(--line), 0 1px 0 var(--line); }
  .fact b { font-size: clamp(30px, 8vw, 56px); font-size: clamp(30px, 8.6cqw, 56px); }
  .terms { position: static; }
}
@media (max-width: 820px) {
  .top__nav { display: none; }
  .proof__grid { grid-template-columns: 1fr 1fr; }
  .fact { padding-left: 0; box-shadow: 0 1px 0 var(--line); }
  .fact:nth-child(even) { padding-left: 20px; box-shadow: -1px 0 0 var(--line), 0 1px 0 var(--line); }
  .cards3, .fit__grid, .foot__in { grid-template-columns: 1fr; }
  .titleblock { grid-template-columns: 1fr 1fr; }
  .titleblock div { padding-left: 0; box-shadow: 0 1px 0 var(--line-2); }
  .titleblock div:nth-child(even) { padding-left: 16px; box-shadow: -1px 0 0 var(--line-2), 0 1px 0 var(--line-2); }
  .step { grid-template-columns: 52px 1fr; }
  .seats__in { grid-template-columns: 1fr; gap: 8px; }
  .dock.is-on { display: flex; }
  .foot { padding-bottom: 120px; }
}
@media (max-width: 640px) {
  .wall .tile, .wall .tile--wide, .wall .tile--half { grid-column: span 12; }
  .tile--wide .tile__img { aspect-ratio: 16 / 10; }
  .tile--next { grid-template-columns: 1fr; }
  .tile--next .tile__img { aspect-ratio: 16 / 6; }
  .choice, .choice--3, .row2 { grid-template-columns: 1fr; }
  .q p { padding-right: 0; }
  .form__nav { flex-wrap: wrap; }
  .form__nav .btn { flex: 1; }
  .build__log { min-height: 84px; }
}

/* ---------- reduced motion + audit mode ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001s !important; animation-delay: 0s !important; transition-duration: .001s !important; }
  .build { transform: none; }
}
.audit *, .audit *::before, .audit *::after { animation: none !important; transition: none !important; }
.audit .hero .ln, .audit .hero .lede, .audit .hero__cta, .audit .hero__seats, .audit .hero .over, .audit .build, .audit .reveal { opacity: 1 !important; transform: none !important; }

/* ---------- talk to us ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.top__cta { display: flex; align-items: center; gap: 12px; }
.ico { width: 18px; height: 18px; flex: none; }
.ghost { display: inline-flex; align-items: center; gap: 10px; min-height: 54px; padding: 0 24px; cursor: pointer; border-radius: 999px;
  background: transparent; color: var(--paper); border: 1px solid rgba(241,238,231,.28); font: 700 16px/1 var(--sans); font-stretch: 106%;
  transition: border-color .2s, background .2s, transform .25s var(--ease); }
.ghost:hover { border-color: var(--accent); background: rgba(255,122,46,.08); transform: translateY(-2px); }
.ghost .ico { color: var(--accent); }
.ghost small { font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.ghost--sm { min-height: 42px; padding: 0 16px; font-size: 14px; }
.talkcard { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 28px;
  padding: 22px 26px; border-radius: 16px; box-shadow: 0 0 0 1px var(--line-2) inset; }
.talkcard__t { font-weight: 800; font-stretch: 108%; font-size: 19px; }
.talkcard__s { margin-top: 4px; color: var(--muted); font-size: 15px; max-width: 48ch; }

.talk { width: min(560px, calc(100vw - 32px)); max-height: calc(100dvh - 32px); overflow: auto; border: 0; padding: clamp(24px, 4vw, 40px);
  border-radius: 20px; background: var(--panel); color: var(--paper); box-shadow: var(--shadow-lg), 0 0 0 1px var(--line-2); }
.talk::backdrop { background: rgba(4,6,9,.78); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.talk__x { position: absolute; top: 14px; right: 14px; }
.talk__x button { background: none; border: 0; cursor: pointer; color: var(--muted); font: 500 12px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; padding: 10px; }
.talk__x button:hover { color: var(--paper); }
.talk__h { margin-top: 14px; font-weight: 900; font-stretch: 120%; text-transform: uppercase; font-size: clamp(30px, 5vw, 44px); line-height: 1; letter-spacing: -0.02em; }
.talk__pane { display: none; margin-top: 20px; }
.talk[data-view="consent"] .talk__pane--consent, .talk[data-view="connecting"] .talk__pane--call, .talk[data-view="live"] .talk__pane--call,
.talk[data-view="ended"] .talk__pane--ended, .talk[data-view="error"] .talk__pane--error { display: block; }
.talk[data-view="connecting"] .talk__ctl [data-talk-mute] { visibility: hidden; }
.talk__p { color: var(--paper); font-size: 16px; line-height: 1.6; }
.talk__fine { margin: 14px 0 24px; color: var(--muted); font-size: 14px; }
.talk__err { color: #FFB4A8; }
.talk__ctl { margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; }
.talk__pane--call .talk__ctl { justify-content: center; }
.talk__pane--ended form { margin-top: 24px; }
.btn--end::after { display: none; }

.orb { --lvl: 0; position: relative; width: 156px; height: 156px; margin: 12px auto 0; display: grid; place-items: center; }
.orb span { position: absolute; inset: 0; border-radius: 50%; }
.orb span:nth-child(1) { background: radial-gradient(circle at 40% 35%, #FFB27A, var(--accent) 45%, #B84A12); transform: scale(calc(.62 + var(--lvl) * .3)); box-shadow: 0 0 60px rgba(255,122,46,.45); transition: transform .08s linear; }
.orb span:nth-child(2) { box-shadow: 0 0 0 1px rgba(127,178,255,.35); transform: scale(calc(.8 + var(--lvl) * .35)); transition: transform .12s linear; }
.orb span:nth-child(3) { box-shadow: 0 0 0 1px rgba(127,178,255,.18); transform: scale(calc(.98 + var(--lvl) * .4)); transition: transform .16s linear; }
.talk[data-view="connecting"] .orb span:nth-child(1) { animation: breathe 1.4s var(--ease) infinite alternate; }
@keyframes breathe { from { transform: scale(.55); opacity: .7; } to { transform: scale(.7); opacity: 1; } }
.talk__status { margin-top: 18px; text-align: center; font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.caps { margin-top: 18px; min-height: 84px; display: grid; gap: 10px; }
.cap { font-size: 15px; line-height: 1.5; padding: 10px 14px; border-radius: 12px; }
.cap--agent { background: var(--ink-2); color: var(--paper); }
.cap--user { background: rgba(255,122,46,.12); color: var(--paper); justify-self: end; max-width: 90%; }
@media (max-width: 820px) { .top__cta .ghost { display: none; } }
@media (max-width: 640px) { .hero__cta .ghost { width: 100%; justify-content: center; } .hero__cta .btn { width: 100%; } }
