/* ============================================================
   Relay — Landing v4  ·  warm cream / signal-orange system
   Tokens carried over from v3; composition is fresh.
   ============================================================ */

:root{
  --bg: #faf7f2;
  --bg-2: #f1ece1;
  --bg-3: #e7e1d3;
  --ink: #1a1714;
  --ink-2: #3a342d;
  --muted: #75695a;
  --muted-2: #a89b88;
  --line: rgba(26,23,20,.10);
  --line-2: rgba(26,23,20,.18);
  --line-3: rgba(26,23,20,.30);
  --card: #ffffff;
  --card-warm: #fbf8f1;

  --accent: #ff5b1f;            /* warm signal orange */
  --accent-ink: #ffffff;
  --accent-soft: rgba(255,91,31,.10);
  --accent-line: rgba(255,91,31,.30);
  --ok: #1f9d57;               /* booking / confirmed green */
  --ok-soft: rgba(31,157,87,.12);

  --maxw: 1240px;
  --pad: clamp(20px, 3.6vw, 56px);

  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --shadow-sm: 0 1px 2px rgba(26,23,20,.04), 0 2px 8px rgba(26,23,20,.05);
  --shadow-md: 0 8px 24px rgba(26,23,20,.08), 0 2px 6px rgba(26,23,20,.05);
  --shadow-lg: 0 24px 60px rgba(26,23,20,.16), 0 6px 18px rgba(26,23,20,.08);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
}

*{ box-sizing: border-box }
html{ scroll-behavior: smooth }
html, body{ margin:0; padding:0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 16px; line-height: 1.5;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
body{ overflow-x: hidden }
a{ color: inherit; text-decoration: none }
button{ font: inherit; color: inherit; cursor: pointer; background: none; border: 0 }
img{ display: block; max-width: 100%; height: auto }
::selection{ background: var(--accent); color: var(--accent-ink) }

.wrap{ max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad) }

/* ── Typography ───────────────────────────────────── */
.eyebrow{ font: 500 12px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); display: inline-flex; align-items: center; gap: 10px }
.eyebrow::before{ content:""; width: 6px; height: 6px; background: var(--accent); border-radius: 50% }

.h-hero{ font-family: var(--sans); font-weight: 500;
  font-size: clamp(44px, 6.6vw, 104px); line-height: 0.95;
  letter-spacing: -0.038em; text-wrap: balance; margin: 0 }
.h-hero em{ font-family: var(--serif); font-weight: 400; font-style: italic; letter-spacing: -0.01em }

.h-section{ font-family: var(--sans); font-weight: 500;
  font-size: clamp(34px, 4.6vw, 66px); line-height: 1.0;
  letter-spacing: -0.03em; text-wrap: balance; margin: 0 }
.h-section em{ font-family: var(--serif); font-weight: 400; font-style: italic }

.h-card{ font-family: var(--sans); font-weight: 500;
  font-size: clamp(21px, 2.3vw, 29px); line-height: 1.1;
  letter-spacing: -0.02em; margin: 0; text-wrap: balance }
.h-card em{ font-family: var(--serif); font-weight: 400; font-style: italic }

.lede{ font-size: clamp(17px, 1.35vw, 20px); color: var(--muted); max-width: 58ch;
  line-height: 1.5; text-wrap: pretty }
.label-mono{ font: 500 11px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted) }

/* ── Buttons ──────────────────────────────────────── */
.btn{ display: inline-flex; align-items: center; gap: 10px; height: 48px; padding: 0 22px;
  border-radius: 999px; border: 1px solid var(--line-2); background: transparent; color: var(--ink);
  font: 500 15px/1 var(--sans); letter-spacing: -0.005em; white-space: nowrap;
  transition: transform .15s cubic-bezier(.3,1.4,.5,1), background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease }
.btn:hover{ transform: translateY(-1px); background: var(--ink); color: var(--bg); border-color: var(--ink) }
.btn:active{ transform: translateY(0) }
.btn-primary{ background: var(--ink); color: var(--bg); border-color: var(--ink) }
.btn-primary:hover{ background: var(--accent); color: var(--accent-ink); border-color: var(--accent); box-shadow: 0 8px 22px rgba(255,91,31,.32) }
.btn-accent{ background: var(--accent); color: var(--accent-ink); border-color: var(--accent) }
.btn-accent:hover{ box-shadow: 0 10px 28px rgba(255,91,31,.36); transform: translateY(-2px); background: var(--accent); color: var(--accent-ink); border-color: var(--accent) }
.btn-sm{ height: 40px; padding: 0 17px; font-size: 14px }
.btn .arr{ transition: transform .2s ease }
.btn:hover .arr{ transform: translateX(3px) }

/* CTA-mode swap: in demo-first mode the trial button reads as secondary, demo as primary.
   In trial-first mode (data-cta="trial") we flip emphasis. */
[data-cta="trial"] .cta-demo{ background: transparent; color: var(--ink); border-color: var(--line-2) }
[data-cta="trial"] .cta-demo:hover{ background: var(--ink); color: var(--bg); border-color: var(--ink) }
[data-cta="trial"] .cta-trial{ background: var(--accent); color: var(--accent-ink); border-color: var(--accent) }

/* ── Nav ──────────────────────────────────────────── */
.nav{ position: sticky; top: 0; z-index: 60;
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent }
.nav.is-stuck{ border-bottom-color: var(--line) }
.nav-inner{ display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px }
.brand{ display: flex; align-items: center; gap: 11px }
.brand .mark{ width: 30px; height: 30px; border-radius: 8px; background: var(--ink); color: var(--bg);
  display: grid; place-items: center; font: 700 14px/1 var(--sans); letter-spacing: -0.02em; position: relative }
.brand .mark::after{ content:""; position: absolute; right: -3px; bottom: -3px;
  width: 10px; height: 10px; border-radius: 50%; background: var(--accent); border: 2px solid var(--bg) }
.brand .name{ font-weight: 600; font-size: 17px; letter-spacing: -0.02em }
.nav-links{ display: flex; gap: 28px; align-items: center }
.nav-links a{ font-size: 14.5px; color: var(--ink-2); font-weight: 500 }
.nav-links a:hover{ color: var(--accent) }
.nav-cta{ display: flex; gap: 10px; align-items: center }
@media (max-width: 940px){ .nav-links{ display: none } .nav-cta .btn:not(.btn-primary):not(.btn-accent){ display: none } }

/* ── Section frame ────────────────────────────────── */
section{ padding: clamp(72px, 8.5vw, 124px) 0; position: relative }
.section-head{ margin-bottom: clamp(40px, 5vw, 60px) }
.section-head .top{ display: flex; align-items: baseline; justify-content: space-between; gap: 28px; flex-wrap: wrap }
.section-head h2{ margin-top: 18px; max-width: 18ch }
.section-head .lede{ margin-top: 20px }
.sec-num{ font: 500 11px/1 var(--mono); letter-spacing: .14em; color: var(--accent) }

/* ============================================================
   HERO
   ============================================================ */
.hero{ padding: clamp(36px, 5vw, 68px) 0 0 }
.hero-grid{ display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(32px, 4vw, 72px); align-items: center }
@media (max-width: 980px){ .hero-grid{ grid-template-columns: 1fr } }
.hero-left .eyebrow{ margin-bottom: 22px }
.hero-left h1{ margin: 0 0 22px }
.hero-left .lede{ margin-bottom: 30px; max-width: 50ch }
.hero-ctas{ display: flex; gap: 12px; flex-wrap: wrap; align-items: center }
.hero-meta{ margin-top: 26px; display: flex; gap: 20px; flex-wrap: wrap;
  font: 500 12.5px/1.4 var(--sans); color: var(--muted) }
.hero-meta span{ display: inline-flex; align-items: center; gap: 8px }
.hero-meta .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--ok) }

/* Phone demo (video standin / poster) */
.phone-stage{ position: relative; display: grid; place-items: center; padding: 8px 0 }
.phone{ position: relative; width: min(330px, 86%); aspect-ratio: 9/19; background: #0e0c0a;
  border-radius: 42px; padding: 11px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.06) }
.phone::before{ content:""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 22px; background: #0e0c0a; border-radius: 999px; z-index: 5 }
.screen{ position: relative; width: 100%; height: 100%; background: var(--bg);
  border-radius: 32px; overflow: hidden; display: flex; flex-direction: column }
.scr-top{ height: 46px; flex-shrink: 0; display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 22px 8px; font: 600 12px/1 var(--sans); color: var(--ink) }
.scr-top .t{ letter-spacing: -0.01em }
.scr-app{ flex-shrink: 0; display: flex; align-items: center; gap: 9px; padding: 8px 16px 10px;
  border-bottom: 1px solid var(--line); background: var(--card) }
.scr-app .av{ width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: #229ED9; color: #fff; font: 700 12px/1 var(--sans) }
.scr-app .meta{ display: flex; flex-direction: column; gap: 2px }
.scr-app .nm{ font: 600 13px/1 var(--sans) }
.scr-app .ch{ font: 500 10px/1 var(--mono); letter-spacing: .04em; color: var(--muted) }
.scr-app .closed{ margin-left: auto; font: 600 9.5px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft); padding: 5px 8px; border-radius: 999px }
.scr-body{ flex: 1; padding: 14px 14px 16px; display: flex; flex-direction: column; justify-content: flex-end; gap: 9px;
  overflow: hidden; background: var(--bg-2) }
/* every conversation element starts hidden and reveals on .show */
.scr-body [data-step]{ opacity: 0; transform: translateY(7px); transition: opacity .4s ease, transform .35s ease }
.scr-body [data-step].show{ opacity: 1; transform: none }
.cap{ align-self: center; font: 500 10px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); background: var(--card); border: 1px solid var(--line); padding: 5px 10px;
  border-radius: 999px; box-shadow: var(--shadow-sm); margin: 2px 0 }
.bub{ font-size: 13px; line-height: 1.4; padding: 9px 12px; border-radius: 15px; max-width: 82%;
  opacity: 0; transform: translateY(6px); transition: opacity .4s ease, transform .4s ease }
.bub.show{ opacity: 1; transform: none }
.bub.in{ background: var(--card); align-self: flex-start; border-bottom-left-radius: 5px; box-shadow: var(--shadow-sm) }
.bub.out{ background: var(--ink); color: var(--bg); align-self: flex-end; border-bottom-right-radius: 5px }
.slots{ display: flex; gap: 6px; align-self: flex-end; flex-wrap: wrap; justify-content: flex-end; max-width: 86% }
.slot{ font: 600 11.5px/1 var(--sans); padding: 8px 11px; border-radius: 11px; background: var(--card);
  border: 1px solid var(--accent-line); color: var(--accent) }
.slot.pick{ background: var(--accent); color: #fff; border-color: var(--accent) }
.booked{ align-self: flex-end; display: inline-flex; align-items: center; gap: 7px;
  font: 600 11px/1 var(--mono); color: var(--ok); background: var(--ok-soft); padding: 7px 11px; border-radius: 999px }
.booked svg{ width: 13px; height: 13px }
.typing{ align-self: flex-start; display: inline-flex; gap: 4px; padding: 11px 13px; background: var(--card);
  border-radius: 15px; border-bottom-left-radius: 5px; box-shadow: var(--shadow-sm) }
.typing i{ width: 6px; height: 6px; border-radius: 50%; background: var(--muted-2); animation: blink 1.2s infinite }
.typing i:nth-child(2){ animation-delay: .2s } .typing i:nth-child(3){ animation-delay: .4s }
@keyframes blink{ 0%,60%,100%{ opacity: .3 } 30%{ opacity: 1 } }

/* calendar peek frame inside same phone (final beat) */
.scr-cal{ position: absolute; inset: 0; background: var(--card); display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transition: opacity .5s ease }
.scr-cal.show{ opacity: 1 }
.scr-cal .ch{ padding: 16px 18px 10px; border-bottom: 1px solid var(--line) }
.scr-cal .ch .d{ font: 600 15px/1.2 var(--sans) } .scr-cal .ch .s{ font: 500 11px/1 var(--mono); color: var(--ok); margin-top: 6px }
.scr-cal .rows{ flex: 1; padding: 10px 14px; display: flex; flex-direction: column; gap: 7px }
.cal-row{ display: flex; gap: 10px; align-items: center; padding: 9px 11px; border-radius: 11px; background: var(--bg-2) }
.cal-row .tm{ font: 600 11px/1 var(--mono); color: var(--ink); width: 42px }
.cal-row .who{ font: 500 12px/1.2 var(--sans); flex: 1 } .cal-row .who small{ display:block; color: var(--muted); font-size: 10.5px; margin-top: 2px }
.cal-row.new{ background: var(--accent-soft); border: 1px solid var(--accent-line) }
.cal-row .tag{ font: 600 9px/1 var(--mono); letter-spacing: .05em; text-transform: uppercase; color: var(--accent) }

.phone-foot{ margin-top: 22px; text-align: center; font: 500 12px/1.5 var(--mono); letter-spacing: .04em; color: var(--muted) }
.phone-foot b{ color: var(--ink); font-weight: 600 }

/* ============================================================
   TRUST BAND (honest borrowed credibility)
   ============================================================ */
.trustband{ border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg) }
.trustband .wrap{ display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: clamp(20px,3vw,44px);
  padding-top: 26px; padding-bottom: 26px; align-items: center }
@media (max-width: 860px){ .trustband .wrap{ grid-template-columns: 1fr 1fr; row-gap: 26px } }
@media (max-width: 520px){ .trustband .wrap{ grid-template-columns: 1fr } }
.tb-founder{ display: flex; align-items: center; gap: 13px }
.tb-founder .ph{ width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg,#3a342d,#75695a); display: grid; place-items: center;
  color: var(--bg); font: 600 16px/1 var(--serif); font-style: italic }
.tb-founder .tx .nm{ font: 600 13.5px/1.2 var(--sans) }
.tb-founder .tx .rl{ font: 500 11.5px/1.3 var(--sans); color: var(--muted); margin-top: 2px }
.tb-founder .tx a{ color: var(--accent); font-weight: 600 }
.tb-item .k{ font-family: var(--sans); font-weight: 600; font-size: 26px; letter-spacing: -0.02em; line-height: 1 }
.tb-item .k em{ font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent) }
.tb-item .v{ margin-top: 7px; font: 500 11.5px/1.35 var(--mono); letter-spacing: .03em; color: var(--muted); text-transform: uppercase }
.tb-eu{ display: inline-flex; align-items: center; gap: 9px; font: 600 12px/1.3 var(--sans); color: var(--ink) }
.tb-eu .stars{ width: 34px; height: 34px; border-radius: 50%; background: #103c8b; display: grid; place-items: center; flex-shrink: 0 }
.tb-eu .stars span{ color: #ffd83d; font-size: 9px; letter-spacing: 1px; line-height: 8px; text-align: center; width: 22px }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem{ background: var(--bg-2) }
.filter-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
@media (max-width: 760px){ .filter-grid{ grid-template-columns: 1fr } }
.filter{ background: var(--card-warm); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px,3vw,40px); display: flex; flex-direction: column; gap: 16px; min-height: 280px }
.filter .num{ font: 500 11px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--accent) }
.filter .big{ font-family: var(--sans); font-weight: 600; font-size: clamp(48px,6vw,84px); letter-spacing: -0.04em; line-height: .92 }
.filter .big em{ font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent) }
.filter h3{ font-family: var(--sans); font-weight: 500; font-size: clamp(19px,2vw,24px); letter-spacing: -0.02em; margin: 0; line-height: 1.15 }
.filter p{ margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.5 }
.filter .src{ margin-top: auto; font: 500 11px/1.4 var(--mono); letter-spacing: .02em; color: var(--muted-2) }
.solution-band{ margin-top: 18px; padding: clamp(28px,4vw,48px); background: var(--ink); color: var(--bg);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; position: relative; overflow: hidden }
.solution-band::before{ content:""; position: absolute; right: -70px; top: -50px; width: 240px; height: 240px;
  border-radius: 50%; background: var(--accent); opacity: .92 }
.solution-band > *{ position: relative; z-index: 1 }
.solution-band h3{ font-family: var(--sans); font-weight: 500; font-size: clamp(22px,2.6vw,38px); letter-spacing: -0.025em; margin: 0; max-width: 22ch; line-height: 1.05 }
.solution-band h3 em{ font-family: var(--serif); font-style: italic; font-weight: 400 }

/* ============================================================
   FEATURES
   ============================================================ */
.feat-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
.feat{ background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px,2.6vw,34px); display: flex; flex-direction: column; gap: 20px; overflow: hidden; position: relative }
.feat.span-2{ grid-column: 1 / -1; display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(24px,3vw,44px); align-items: center }
@media (max-width: 900px){ .feat-grid{ grid-template-columns: 1fr } .feat.span-2{ grid-template-columns: 1fr } }
.feat .fnum{ font: 500 11px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--accent) }
.feat h3{ margin: 12px 0 0 }
.feat p{ color: var(--muted); margin: 12px 0 0; font-size: 15px; line-height: 1.55 }
.feat.dark{ background: var(--ink); color: var(--bg) }
.feat.dark p{ color: rgba(250,247,242,.66) }
.feat.dark h3 em{ color: var(--accent) }

/* F1 inbox mock */
.inbox{ background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md) }
.inbox-hd{ display: flex; align-items: center; gap: 8px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: var(--card) }
.inbox-hd .t{ font: 600 12.5px/1 var(--sans) } .inbox-hd .c{ margin-left: auto; font: 500 10px/1 var(--mono); color: var(--accent); background: var(--accent-soft); padding: 4px 8px; border-radius: 999px }
.inbox-body{ display: grid; grid-template-columns: 1fr; }
.conv{ display: flex; align-items: center; gap: 11px; padding: 12px 14px; border-bottom: 1px solid var(--line) }
.conv:last-child{ border-bottom: 0 }
.conv .av{ width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; color: #fff; font: 700 12px/1 var(--sans); flex-shrink: 0 }
.conv .ct{ flex: 1; min-width: 0 } .conv .ct .nm{ font: 600 12.5px/1 var(--sans); display:flex; gap:7px; align-items:center }
.conv .ct .pv{ font: 400 11.5px/1.3 var(--sans); color: var(--muted); margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis }
.conv .badge{ font: 500 9px/1 var(--mono); letter-spacing: .04em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line-2); padding: 3px 6px; border-radius: 6px }
.conv .when{ font: 500 10px/1 var(--mono); color: var(--muted-2); flex-shrink: 0 }
.conv.booked-row .badge{ color: var(--ok); border-color: var(--ok); background: var(--ok-soft) }

/* F2 builder mock (dark) */
.builder{ background: #11100e; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 10px }
.builder .bln{ display: flex; gap: 9px; align-items: flex-start }
.builder .bln .who{ font: 600 10px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; width: 58px; flex-shrink: 0; padding-top: 4px }
.builder .bln.you .who{ color: var(--muted-2) } .builder .bln.ai .who{ color: var(--accent) }
.builder .bln .msg{ font: 400 12.5px/1.5 var(--sans); color: rgba(250,247,242,.9) }
.builder .chip{ display: inline-flex; align-items: center; gap: 7px; font: 500 11px/1 var(--mono); color: var(--bg);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); padding: 7px 10px; border-radius: 9px; margin-top: 6px }
.builder .chip.ok{ color: var(--ok); border-color: rgba(31,157,87,.4) }
.builder .chip.ok::before{ content:"✓"; font-weight: 700 }

/* F3 channels (real only) */
.channels{ display: grid; grid-template-columns: repeat(2,1fr); gap: 10px }
.chan{ display: flex; align-items: center; gap: 11px; padding: 13px 14px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--card-warm) }
.chan .ic{ width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; color: #fff; font: 700 13px/1 var(--sans) }
.chan .nm{ font: 600 13px/1.2 var(--sans) } .chan .nm small{ display:block; color: var(--muted); font: 500 10.5px/1.3 var(--sans); margin-top: 3px }
.chan.soon{ opacity: .62 } .chan.soon .nm small{ color: var(--accent) }

/* Booking-detail strip */
.booking-detail{ margin-top: 16px; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--card-warm); padding: clamp(22px,2.6vw,32px) }
.bd-head{ display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 22px }
.bd-head h3{ font-family: var(--sans); font-weight: 500; font-size: clamp(20px,2.1vw,26px); letter-spacing: -0.02em; margin: 0 }
.bd-head h3 em{ font-family: var(--serif); font-style: italic; font-weight: 400 }
.bd-grid{ display: grid; grid-template-columns: repeat(4,1fr); gap: 12px }
@media (max-width: 820px){ .bd-grid{ grid-template-columns: 1fr 1fr } }
.bd{ background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px }
.bd .ic{ width: 22px; height: 22px; color: var(--accent) }
.bd .t{ font: 600 13.5px/1.2 var(--sans); margin-top: 12px } .bd .d{ font: 400 12px/1.45 var(--sans); color: var(--muted); margin-top: 6px }

/* ============================================================
   VIDEO DEMOS (poster-frame placeholders)
   ============================================================ */
.demos-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
@media (max-width: 820px){ .demos-grid{ grid-template-columns: 1fr } }
.demo-card{ border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--card) }
.demo-vid{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 0 }
.demo-poster .tag, .demo-poster .dur{ z-index: 2 }
.demo-poster{ position: relative; aspect-ratio: 16/10; background:
  radial-gradient(120% 120% at 20% 0%, var(--bg-3), var(--bg-2)); display: grid; place-items: center;
  border-bottom: 1px solid var(--line) }
.demo-poster .play{ width: 64px; height: 64px; border-radius: 50%; background: var(--ink); color: var(--bg);
  display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform .15s ease, background .15s ease }
.demo-card:hover .play{ transform: scale(1.06); background: var(--accent) }
.demo-poster .play svg{ width: 22px; height: 22px; margin-left: 3px }
.demo-poster .tag{ position: absolute; top: 14px; left: 14px; font: 500 10px/1 var(--mono); letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); background: var(--card); border: 1px solid var(--line); padding: 6px 10px; border-radius: 999px }
.demo-poster .dur{ position: absolute; bottom: 14px; right: 14px; font: 600 11px/1 var(--mono); color: var(--bg);
  background: rgba(14,12,10,.78); padding: 6px 9px; border-radius: 7px }
.demo-poster .placeholder{ position: absolute; bottom: 14px; left: 14px; font: 500 10px/1 var(--mono); letter-spacing: .04em;
  color: var(--accent); background: var(--accent-soft); border: 1px dashed var(--accent-line); padding: 6px 9px; border-radius: 7px }
.demo-meta{ padding: 20px clamp(20px,2.4vw,28px) 24px }
.demo-meta .fnum{ font: 500 11px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--accent) }
.demo-meta h3{ margin: 12px 0 0 } .demo-meta p{ color: var(--muted); margin: 10px 0 0; font-size: 14.5px; line-height: 1.5 }
.demo-meta .beats{ display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px }
.demo-meta .beat{ font: 500 11px/1 var(--mono); color: var(--ink-2); background: var(--bg-2); padding: 7px 10px; border-radius: 999px }

/* ============================================================
   ROI CALCULATOR
   ============================================================ */
.roi{ background: var(--ink); color: var(--bg) }
.roi .section-head h2{ color: var(--bg) } .roi .section-head .lede{ color: rgba(250,247,242,.66) }
.roi .sec-num{ color: var(--accent) } .roi .eyebrow{ color: rgba(250,247,242,.6) }
.roi-card{ display: grid; grid-template-columns: 1fr 1.05fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.1) }
@media (max-width: 880px){ .roi-card{ grid-template-columns: 1fr } }
.roi-inputs{ background: #11100e; padding: clamp(28px,3vw,40px); display: flex; flex-direction: column; gap: 26px }
.roi-field .lab{ display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 12px }
.roi-field .lab .name{ font: 500 13.5px/1.3 var(--sans); color: rgba(250,247,242,.92) }
.roi-field .lab .val{ font-family: var(--sans); font-weight: 600; font-size: 20px; letter-spacing: -0.02em; color: var(--bg) }
.roi-field .lab .val em{ font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent) }
.roi-field input[type=range]{ -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 999px;
  background: rgba(255,255,255,.16); outline: none }
.roi-field input[type=range]::-webkit-slider-thumb{ -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); cursor: pointer; border: 3px solid #11100e; box-shadow: 0 2px 8px rgba(0,0,0,.4) }
.roi-field input[type=range]::-moz-range-thumb{ width: 22px; height: 22px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 3px solid #11100e }
.roi-field .hint{ font: 400 11.5px/1.4 var(--sans); color: rgba(250,247,242,.42); margin-top: 9px }
.roi-out{ background: var(--accent); color: #fff; padding: clamp(28px,3vw,40px); display: flex; flex-direction: column; justify-content: center; gap: 22px; position: relative; overflow: hidden }
.roi-out::before{ content:""; position: absolute; right: -60px; bottom: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,.1) }
.roi-out > *{ position: relative; z-index: 1 }
.roi-out .big-lab{ font: 500 11px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.8) }
.roi-out .big-num{ font-family: var(--sans); font-weight: 600; font-size: clamp(52px,7vw,92px); letter-spacing: -0.04em; line-height: .9; margin: 10px 0 0 }
.roi-out .big-num em{ font-family: var(--serif); font-style: italic; font-weight: 400 }
.roi-out .big-sub{ font: 500 13.5px/1.4 var(--sans); color: rgba(255,255,255,.88); margin-top: 12px; max-width: 30ch }
.roi-split{ display: flex; gap: 26px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.22) }
.roi-split .it .n{ font-family: var(--sans); font-weight: 600; font-size: 28px; letter-spacing: -0.02em; line-height: 1 }
.roi-split .it .l{ font: 500 11px/1.3 var(--mono); letter-spacing: .03em; text-transform: uppercase; color: rgba(255,255,255,.78); margin-top: 7px }
.roi-note{ margin-top: 20px; font: 400 12px/1.5 var(--sans); color: rgba(250,247,242,.5); max-width: 70ch }
.roi-note b{ color: rgba(250,247,242,.75); font-weight: 600 }

/* ============================================================
   COMPARISON
   ============================================================ */
.compare-wrap{ overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--card) }
.compare{ width: 100%; border-collapse: collapse; min-width: 720px }
.compare th, .compare td{ padding: 17px 20px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle }
.compare thead th{ font: 500 11px/1.3 var(--mono); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); white-space: nowrap }
.compare thead th.us{ color: var(--accent) }
.compare thead th.us span{ display: inline-flex; align-items: center; gap: 7px; font: 600 14px/1 var(--sans); letter-spacing: -0.01em; color: var(--ink); text-transform: none }
.compare thead th.us .mk{ width: 20px; height: 20px; border-radius: 6px; background: var(--ink); color: var(--bg); display: grid; place-items: center; font: 700 10px/1 var(--sans) }
.compare tbody td:first-child{ font: 500 14px/1.4 var(--sans); color: var(--ink); width: 30% }
.compare td.us{ background: var(--accent-soft) }
.compare td .yes{ color: var(--ok); font-weight: 600 } .compare td .no{ color: var(--muted-2) }
.compare td .cell{ font: 500 13px/1.4 var(--sans); color: var(--ink-2) }
.compare td.us .cell{ color: var(--ink); font-weight: 600 }
.compare tbody tr:last-child td{ border-bottom: 0 }
.compare-note{ margin-top: 18px; font: 500 13px/1.5 var(--sans); color: var(--muted); max-width: 70ch }

/* ============================================================
   PROOF (product-proof + honest pilot slots)
   ============================================================ */
.proof-grid{ display: grid; grid-template-columns: 1.3fr 1fr; gap: 16px }
@media (max-width: 900px){ .proof-grid{ grid-template-columns: 1fr } }
.proof-main{ background: var(--ink); color: var(--bg); border-radius: var(--radius-lg); padding: clamp(26px,3vw,38px); display: flex; flex-direction: column; gap: 22px }
.proof-main .fnum{ font: 500 11px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--accent) }
.proof-main h3{ font-family: var(--sans); font-weight: 500; font-size: clamp(22px,2.4vw,30px); letter-spacing: -0.025em; margin: 0; max-width: 22ch }
.proof-main h3 em{ font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent) }
.dash{ background: #11100e; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px }
.dash .m .n{ font-family: var(--sans); font-weight: 600; font-size: clamp(26px,3vw,38px); letter-spacing: -0.03em; line-height: 1 }
.dash .m .n em{ font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent) }
.dash .m .l{ font: 500 10.5px/1.35 var(--mono); letter-spacing: .02em; text-transform: uppercase; color: rgba(250,247,242,.55); margin-top: 9px }
.dash .full{ grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1); padding-top: 14px; margin-top: 2px; font: 400 12px/1.5 var(--sans); color: rgba(250,247,242,.6) }
.pilot-col{ display: flex; flex-direction: column; gap: 16px }
.pilot{ flex: 1; border: 1px dashed var(--line-3); border-radius: var(--radius); background: var(--card-warm);
  padding: clamp(20px,2.4vw,26px); display: flex; flex-direction: column; gap: 12px; justify-content: center }
.pilot .tag{ align-self: flex-start; font: 500 10px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); padding: 6px 9px; border-radius: 999px }
.pilot .who{ display: flex; align-items: center; gap: 11px }
.pilot .who .ph{ width: 40px; height: 40px; border-radius: 50%; background: var(--bg-3); border: 1px dashed var(--line-3); display: grid; place-items: center; color: var(--muted-2); font-size: 16px }
.pilot .who .tx .a{ font: 600 13px/1.2 var(--sans) } .pilot .who .tx .b{ font: 500 11px/1.3 var(--sans); color: var(--muted); margin-top: 3px }
.pilot p{ margin: 0; font: 400 13px/1.5 var(--sans); color: var(--muted) }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-grid{ display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; counter-reset: step }
@media (max-width: 900px){ .how-grid{ grid-template-columns: 1fr 1fr } }
@media (max-width: 540px){ .how-grid{ grid-template-columns: 1fr } }
.step{ background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px,2.4vw,28px); display: flex; flex-direction: column; gap: 14px; position: relative }
.step .n{ width: 38px; height: 38px; border-radius: 11px; background: var(--ink); color: var(--bg); display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; font-size: 19px; counter-increment: step }
.step .n::after{ content: counter(step,decimal-leading-zero) }
.step h3{ font: 600 16px/1.25 var(--sans); letter-spacing: -0.01em; margin: 0 } .step h3 em{ font-family: var(--serif); font-style: italic; font-weight: 400 }
.step p{ margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.5 }
.step .tnote{ margin-top: auto; padding-top: 12px; font: 500 11px/1.4 var(--mono); letter-spacing: .02em; color: var(--accent) }

/* ============================================================
   PRICING
   ============================================================ */
.pricing{ background: var(--bg-2) }
.bill-toggle{ display: inline-flex; gap: 4px; padding: 4px; background: var(--card); border: 1px solid var(--line); border-radius: 999px; margin-top: 8px }
.bill-toggle button{ padding: 8px 16px; border-radius: 999px; font: 600 13px/1 var(--sans); color: var(--muted) }
.bill-toggle button.on{ background: var(--ink); color: var(--bg) }
.bill-toggle .save{ font: 600 10px/1 var(--mono); color: var(--accent); margin-left: 5px }
.plans{ display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; align-items: start }
@media (max-width: 900px){ .plans{ grid-template-columns: 1fr } }
.plan{ background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px,2.6vw,32px); display: flex; flex-direction: column; gap: 18px }
.plan.pop{ border: 1.5px solid var(--ink); box-shadow: var(--shadow-md); position: relative }
.plan.pop::before{ content:"Most popular"; position: absolute; top: -11px; left: clamp(24px,2.6vw,32px); font: 600 10px/1 var(--mono);
  letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent); padding: 6px 11px; border-radius: 999px }
.plan .pn{ font: 600 13px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; color: var(--muted) }
.plan .price{ display: flex; align-items: baseline; gap: 4px }
.plan .price .cur{ font-family: var(--sans); font-weight: 500; font-size: 26px; align-self: flex-start; margin-top: 8px }
.plan .price .amt{ font-family: var(--sans); font-weight: 600; font-size: clamp(46px,5vw,64px); letter-spacing: -0.04em; line-height: 1 }
.plan .price .per{ font: 500 13px/1.2 var(--sans); color: var(--muted) }
.plan .ptag{ font: 400 13px/1.5 var(--sans); color: var(--muted); min-height: 42px }
.plan ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px }
.plan li{ font: 400 13.5px/1.4 var(--sans); color: var(--ink-2); display: flex; gap: 10px; align-items: flex-start }
.plan li svg{ width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 1px }
.plan li b{ font-weight: 600; color: var(--ink) }
.plan .btn{ width: 100%; justify-content: center; margin-top: auto }
.price-meta{ margin-top: 18px; display: flex; gap: 18px; flex-wrap: wrap; font: 500 12.5px/1.4 var(--sans); color: var(--muted) }
.price-meta span{ display: inline-flex; gap: 8px; align-items: center } .price-meta .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--ok) }
.conv-note{ margin-top: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); padding: 20px 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 32px }
@media (max-width: 720px){ .conv-note{ grid-template-columns: 1fr } }
.conv-note .ci .t{ font: 600 13px/1.3 var(--sans); display: flex; gap: 8px; align-items: center } .conv-note .ci .t::before{ content:""; width: 7px; height: 7px; border-radius: 2px; background: var(--accent) }
.conv-note .ci .d{ font: 400 13px/1.5 var(--sans); color: var(--muted); margin-top: 7px }

/* ============================================================
   TRUST / ANTI-AI / GDPR
   ============================================================ */
.trust-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
@media (max-width: 860px){ .trust-grid{ grid-template-columns: 1fr } }
.trust-card{ border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px,3vw,36px); background: var(--card) }
.trust-card.dark{ background: var(--ink); color: var(--bg) }
.trust-card .fnum{ font: 500 11px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--accent) }
.trust-card h3{ margin: 14px 0 0 } .trust-card.dark h3 em{ color: var(--accent) }
.ailist{ list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px }
.ailist li{ display: flex; gap: 13px; align-items: flex-start }
.ailist li .ic{ width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,.08); display: grid; place-items: center; flex-shrink: 0; color: var(--accent) }
.trust-card:not(.dark) .ailist li .ic{ background: var(--accent-soft) }
.ailist li .tx{ font: 500 14px/1.4 var(--sans) } .ailist li .tx small{ display: block; font-weight: 400; color: var(--muted); margin-top: 4px; font-size: 12.5px }
.trust-card.dark .ailist li .tx small{ color: rgba(250,247,242,.55) }
.gdpr-rows{ display: flex; flex-direction: column; gap: 14px; margin-top: 22px }
.gdpr-row{ display: flex; gap: 12px; align-items: flex-start; padding-bottom: 14px; border-bottom: 1px solid var(--line) }
.gdpr-row:last-child{ border-bottom: 0; padding-bottom: 0 }
.gdpr-row svg{ width: 18px; height: 18px; color: var(--ok); flex-shrink: 0; margin-top: 2px }
.gdpr-row .tx b{ font: 600 13.5px/1.3 var(--sans) } .gdpr-row .tx span{ display: block; font: 400 12.5px/1.45 var(--sans); color: var(--muted); margin-top: 3px }
.stopprice{ margin-top: 16px; grid-column: 1 / -1; border: 1px solid var(--accent-line); background: var(--accent-soft);
  border-radius: var(--radius-lg); padding: clamp(22px,2.6vw,30px); display: flex; gap: 18px; align-items: center; flex-wrap: wrap }
.stopprice .ic{ width: 44px; height: 44px; border-radius: 12px; background: var(--accent); color: #fff; display: grid; place-items: center; flex-shrink: 0 }
.stopprice .tx{ flex: 1; min-width: 240px } .stopprice .tx b{ font: 600 16px/1.3 var(--sans); display: block } .stopprice .tx span{ font: 400 13.5px/1.5 var(--sans); color: var(--ink-2); margin-top: 5px; display: block }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list{ border-top: 1px solid var(--line) }
.faq-item{ border-bottom: 1px solid var(--line) }
.faq-q{ width: 100%; text-align: left; display: flex; align-items: center; gap: 18px; padding: 24px 4px; }
.faq-q .qt{ flex: 1; font-family: var(--sans); font-weight: 500; font-size: clamp(17px,1.7vw,21px); letter-spacing: -0.015em }
.faq-q .pm{ width: 26px; height: 26px; flex-shrink: 0; position: relative }
.faq-q .pm::before, .faq-q .pm::after{ content:""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .25s ease }
.faq-q .pm::before{ left: 4px; right: 4px; top: 12px; height: 2px } .faq-q .pm::after{ top: 4px; bottom: 4px; left: 12px; width: 2px }
.faq-item.open .pm::after{ transform: scaleY(0) }
.faq-a{ max-height: 0; overflow: hidden; transition: max-height .3s ease }
.faq-a .inner{ padding: 0 60px 26px 4px; font: 400 15px/1.6 var(--sans); color: var(--muted); max-width: 72ch }
.faq-a .inner b{ color: var(--ink); font-weight: 600 }

/* ============================================================
   FINAL CTA + FOOTER
   ============================================================ */
.final{ background: var(--ink); color: var(--bg); text-align: center }
.final h2{ color: var(--bg); margin: 0 auto; max-width: 16ch }
.final h2 em{ font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent) }
.final .lede{ color: rgba(250,247,242,.66); margin: 22px auto 0; text-align: center }
.final .eyebrow{ color: rgba(250,247,242,.6); justify-content: center } .final .eyebrow{ display: inline-flex }
.final-ctas{ display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 36px }
.final .btn:not(.btn-accent):not(.btn-primary){ border-color: rgba(250,247,242,.3); color: var(--bg) }
.final .btn:not(.btn-accent):not(.btn-primary):hover{ background: var(--bg); color: var(--ink); border-color: var(--bg) }
.final-meta{ margin-top: 26px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; font: 500 12.5px/1.4 var(--sans); color: rgba(250,247,242,.55) }
.final-meta span{ display: inline-flex; gap: 8px; align-items: center } .final-meta .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--accent) }

.footer{ background: var(--ink); color: rgba(250,247,242,.6); border-top: 1px solid rgba(255,255,255,.1) }
.footer .wrap{ padding-top: 56px; padding-bottom: 40px }
.foot-top{ display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 28px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1) }
@media (max-width: 760px){ .foot-top{ grid-template-columns: 1fr 1fr } }
.foot-brand .brand .name{ color: var(--bg) } .foot-brand p{ margin: 16px 0 0; font: 400 13px/1.6 var(--sans); max-width: 32ch }
.foot-col h4{ font: 600 11px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: rgba(250,247,242,.45); margin: 0 0 16px }
.foot-col a{ display: block; font: 400 13.5px/1 var(--sans); color: rgba(250,247,242,.72); padding: 7px 0 } .foot-col a:hover{ color: var(--accent) }
.foot-bot{ display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 26px; font: 400 12px/1.5 var(--sans); color: rgba(250,247,242,.45) }
.foot-bot .lgl{ display: flex; gap: 20px; flex-wrap: wrap } .foot-bot a:hover{ color: var(--accent) }

/* reveal-on-scroll */
.reveal{ opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1) }
.reveal.in{ opacity: 1; transform: none }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity: 1; transform: none; transition: none } .bub{ opacity: 1; transform: none } * { scroll-behavior: auto !important } }
