/* === Design tokens (matching one-pager, tuned for WCAG 2.2 AA strict floor;
       most pairs also clear AAA — see comments below.) === */
:root {
  --ink: #1f1f1f;
  --ink-2: #4a4a4a;
  --text: #1f1f1f;
  --text-body: #1f1f1f;
  /* --muted: 7.49:1 on white (AAA), 7.14:1 on paper, 6.86:1 on cream (AAA) */
  --muted: #4d5462;
  --paper: #fafaf6;
  --surface: #f7f5ed;
  --surface-2: #efebde;
  --cream: #f7f5ed;
  --cream-deep: #efebde;
  --off-white: #fafaf6;
  --peach: #fcdebd;
  /* --coral: 5.09:1 on white (AA), 4.86:1 on paper, 4.66:1 on cream (AA).
     Note: AA-only on cream — AGENT.md permits AA as the floor. */
  --coral: #ad5524;
  --coral-2: #d4774a;
  --coral-soft: #f4dcc8;
  /* --teal: 4.96:1 white-on-teal (AA), 4.91:1 teal-on-white (AA).
     Brand teal is intrinsically a mid-tone — AA-only is the practical floor. */
  --teal: #3a7882;
  --teal-2: #5ba0a8;
  --teal-dark: #2f6b73;
  --teal-darker: #234e58;
  --yellow: #fcca20;
  --pink: #e31057;
  --blue: #268bba;
  --green: #85d084;
  /* --green-dark: 5.21:1 on white (AA), 4.70:1 on mint (AA) */
  --green-dark: #2e7a55;
  --border: rgba(31, 31, 31, 0.10);
  --border-strong: rgba(31, 31, 31, 0.18);
  --radius-pill: 999px;
  --radius-card: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 6px 24px rgba(31, 31, 31, 0.06);
  --shadow-strong: 0 16px 40px rgba(31, 31, 31, 0.12);
  --sans: 'Geist', 'Inter', system-ui, sans-serif;
  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
}

/* === Reset === */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }

body {
  font-family: var(--sans);
  color: var(--text-body);
  background: white;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.locked {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--sans);
  color: var(--text);
  letter-spacing: -0.04em;
  font-weight: 600;
  line-height: 1.15;
}
/* Line-break accent class used inside h1/h2 — soft sans treatment.
   (Used to be italic serif; switched to sans to reduce font count.) */
.it, em.it, .italic-serif {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: -0.04em;
}

/* === Layout === */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
section.alt { background: var(--paper); }
section.cream { background: var(--cream); }
section.surface-2 { background: var(--surface-2); }

/* === Skip link === */
.skip-link {
  position: absolute;
  left: 12px; top: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  font-family: var(--mono);
  font-size: 12px;
  text-decoration: none;
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.15s;
  z-index: 1000;
}
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .skip-link { transition: none; }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 18px 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 14px; font-weight: 500;
  text-decoration: none; border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  min-height: 44px;
}
.btn .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: white; color: var(--teal);
  font-size: 13px; font-weight: 700;
  transition: transform 0.18s ease;
}
.btn:hover .arrow { transform: translate(2px, -2px); }
.btn-primary { background: var(--teal); color: white; box-shadow: 0 4px 14px rgba(44, 127, 118, 0.22); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-secondary { background: white; color: var(--ink); border-color: var(--border); }
.btn-secondary .arrow { background: var(--surface); color: var(--ink); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-on-dark { background: var(--coral); color: white; box-shadow: 0 4px 14px rgba(184, 92, 46, 0.28); }
.btn-on-dark:hover { background: #a14e23; }
.btn-on-dark .arrow { background: white; color: var(--coral); }
.btn:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

/* === Eyebrow === */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  color: var(--coral);
  text-transform: uppercase; letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 18px; height: 1.5px; background: var(--coral);
}
/* Centered eyebrow with bracketing rules (page 2 style) */
.eyebrow-center {
  display: flex; justify-content: center;
  text-align: center; margin-bottom: 14px;
}
.eyebrow-center .label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--coral);
  text-transform: uppercase; letter-spacing: 0.22em;
}
.eyebrow-center .label::before,
.eyebrow-center .label::after {
  content: ""; display: inline-block;
  width: 18px; height: 1.5px; background: var(--coral);
}

/* === Gate (password prompt) === */
.gate {
  position: relative;
  max-width: 460px; width: 100%;
  background: white;
  border-radius: var(--radius-card);
  padding: 48px 44px;
  box-shadow: 0 16px 60px rgba(35,78,88,0.12);
  overflow: hidden;
}
.gate-orbit {
  position: absolute; right: -120px; top: -120px;
  width: 280px; height: 280px;
  opacity: 0.4; pointer-events: none;
}
.gate-inner { position: relative; z-index: 2; }
.gate .logo { display: block; margin-bottom: 36px; }
.gate .logo img { height: 32px; width: auto; }
.gate-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  color: var(--coral);
  text-transform: uppercase; letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.gate-eyebrow::before {
  content: ""; display: inline-block;
  width: 18px; height: 1.5px; background: var(--coral);
}
.gate-title {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  color: var(--ink);
}
.gate-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--ink-2);
}
.gate .lead {
  font-family: var(--sans);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 28px;
}
.gate form { display: flex; flex-direction: column; gap: 12px; }
.gate label {
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 500;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.16em;
}
.gate input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--sans); font-size: 15px;
  background: white;
  transition: border-color 0.15s;
}
.gate input[type="password"]:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-color: var(--teal);
}
.gate button {
  margin-top: 6px;
  padding: 14px 24px;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.gate button:hover { background: var(--teal-dark); }
.gate button:disabled { opacity: 0.5; cursor: wait; }
.gate button:focus-visible { outline: 2px solid var(--coral); outline-offset: 2px; }
.gate button .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: white; color: var(--teal);
  font-size: 12px; font-weight: 700;
}
.gate .err {
  font-family: var(--mono);
  font-size: 11px;
  color: #c02b2b;
  margin-top: 6px;
  min-height: 14px;
  letter-spacing: 0.04em;
}
.gate-lang {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--muted);
}
.gate-lang a {
  color: var(--ink);
  text-decoration: none;
  margin-left: 8px;
}
.gate-lang a:hover { color: var(--teal); }
.gate-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

/* === Site nav (unlocked) === */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: white;
  border-bottom: 1px solid var(--border);
}
.site-nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.site-nav .logo { display: flex; align-items: center; }
.site-nav .logo img { height: 38px; width: auto; }
.site-nav-right { display: flex; align-items: center; gap: 16px; }
.site-nav a.lang-switch {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.16em;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  transition: all 0.15s;
}
.site-nav a.lang-switch:hover { border-color: var(--teal); color: var(--teal); }
.site-nav .btn { padding: 10px 14px 10px 22px; font-size: 13px; min-height: auto; white-space: nowrap; }
.site-nav-menu { display: flex; align-items: center; gap: 24px; }
.site-nav-menu a {
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.site-nav-menu a:hover { color: var(--teal); }

@media (max-width: 1080px) {
  .site-nav-menu { display: none; }
}
@media (max-width: 540px) {
  .site-nav .container { height: 64px; }
  .site-nav .logo img { height: 32px; }
  .site-nav-right { gap: 10px; }
  .site-nav a.lang-switch { padding: 5px 10px; font-size: 10px; }
  .site-nav .btn { padding: 8px 14px; font-size: 12px; gap: 6px; }
  .site-nav .btn .arrow { display: none; }
}

/* === Hero === */
.hero {
  background: var(--cream);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-grid.hero-grid-form {
  grid-template-columns: 0.9fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-grid.hero-grid-form { grid-template-columns: 1fr; gap: 40px; }
}
.hero-form-col { width: 100%; }
.form-card-hd {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.form-card-hd .form-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  color: var(--coral);
  text-transform: uppercase; letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.form-card-hd .form-eyebrow::before {
  content: ''; width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--coral);
}
.form-card-hd h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.form-card-hd p {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.hero-after {
  margin-top: 22px;
  font-size: 14.5px;
  color: var(--muted);
}
.hero-after a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}
.hero-after a:hover { color: var(--teal-dark); text-decoration: underline; }
.hero-orbit {
  position: absolute; right: -120px; top: -80px;
  width: 560px; height: 560px;
  z-index: 1; pointer-events: none;
  opacity: 0.55;
}
@media (max-width: 880px) {
  .hero-orbit { width: 380px; height: 380px; right: -180px; opacity: 0.35; }
  section, .hero { padding: 64px 0; }
}
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.04; letter-spacing: -0.045em;
  margin-bottom: 22px;
  color: var(--ink);
  font-weight: 700;
}
.hero h1 .it {
  display: block;
  margin-top: 4px;
  color: var(--ink-2);
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.045em;
}
.hero p.lede {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.hero p.lede b { font-weight: 700; color: var(--ink); }
.hero p.story {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 32px;
  line-height: 1.55;
}
.cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 12px;
}

/* === Chat mockup (hero visual) === */
.chat-wrap {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}
.chat-wrap.chat-wrap-compact {
  margin: 40px 0 0;
  max-width: 440px;
}
.hero-form-col .chat-wrap.chat-wrap-compact {
  max-width: none;
}
.chat-wrap.chat-wrap-compact .chat {
  padding: 16px 16px 18px;
}
.chat-wrap.chat-wrap-compact .bubble { font-size: 13.5px; padding: 9px 13px; }
.chat-wrap.chat-wrap-compact .chat-head { padding-bottom: 12px; margin-bottom: 12px; }
.chat-wrap.chat-wrap-compact .chat-head .ava { width: 32px; height: 32px; }
.chat-wrap.chat-wrap-compact .b-ok { font-size: 12.5px; padding: 7px 12px; }
.chat {
  background: white;
  border-radius: var(--radius-card);
  padding: 20px 20px 22px;
  box-shadow: 0 16px 40px rgba(31, 31, 31, 0.10);
  border: 1px solid var(--border);
}
.chat-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.chat-head .ava {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.chat-head .who {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.chat-head .stat {
  font-size: 11px;
  color: var(--green-dark);
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 2px;
}
.chat-head .stat::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-dark);
}
.chat-channel {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--surface);
  border-radius: 999px;
}
.bubble {
  font-size: 14px;
  line-height: 1.45;
  padding: 11px 15px;
  border-radius: 16px;
  max-width: 84%;
  margin-bottom: 8px;
  word-wrap: break-word;
}
.bubble.b-in {
  background: var(--surface);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.bubble.b-out {
  background: var(--teal);
  color: white;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}
.b-ok-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.b-ok {
  display: inline-flex; align-items: center; gap: 8px;
  background: #dcfce7;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 14px;
  border-bottom-right-radius: 4px;
}
.b-ok::before {
  content: '✓';
  font-weight: 700;
}
.badge {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 10px 28px rgba(31, 31, 31, 0.12);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
}
.badge .ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #eaf2d8;
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.badge .ico.warm { background: var(--coral-soft); color: var(--coral); }
.badge .lbl {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 2px;
}
.badge .val {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.badge .val .up {
  color: var(--green-dark);
  font-size: 14px; line-height: 1;
  font-weight: 700;
}
.badge.b-top { top: -16px; right: -16px; }
.badge.b-bottom { bottom: -20px; left: -16px; }
@media (max-width: 540px) {
  .badge.b-top { top: -12px; right: -8px; }
  .badge.b-bottom { bottom: -16px; left: -8px; padding: 8px 12px; }
  .badge .lbl { font-size: 9px; }
  .badge .val { font-size: 13px; }
}

/* === "Four quiet leaks" section === */
.leaks {
  background: var(--paper);
  padding: 96px 0;
}
.leaks-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 880px) {
  .leaks-head { grid-template-columns: 1fr; gap: 16px; }
}
.leaks-head h2 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--ink);
  font-weight: 700;
}
.leaks-head h2 .it { color: var(--coral); }
.leaks-head .sub {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 360px;
  justify-self: end;
}
@media (max-width: 880px) {
  .leaks-head .sub { justify-self: start; }
}
.leaks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
@media (max-width: 720px) {
  .leaks-grid { grid-template-columns: 1fr; }
}
.leak {
  padding: 56px 48px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.leak:nth-child(2n) { border-right: none; }
.leak:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 720px) {
  .leak { border-right: none; padding: 40px 32px; }
  .leak:not(:last-child) { border-bottom: 1px solid var(--border); }
  .leak:last-child { border-bottom: none; }
}
.leak .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  color: var(--coral);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 36px;
  display: block;
}
.leak h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.leak p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 380px;
}

/* === Before / After comparison === */
.compare {
  background: white;
  padding: 88px 0;
}
.compare h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 14px;
  max-width: 720px;
  color: var(--ink);
}
.compare .lead {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 720px;
  margin-bottom: 48px;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-grid .arrow-col { display: none; }
}
.compare-card {
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  min-height: 320px;
}
.compare-card.before {
  background: var(--paper);
  border: 1px solid var(--border);
}
.compare-card.after {
  background: var(--teal);
  color: white;
}
.compare-card .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--coral);
}
.compare-card.after .lbl {
  color: white;
  opacity: 0.95;
  display: inline-flex; align-items: center; gap: 8px;
}
.compare-card.after .lbl::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.18);
}
.compare-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 22px;
}
.compare-card.after h3 {
  color: white;
}
.compare-card.after h3::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 14px;
  background: var(--yellow);
  border-radius: 99px;
}
.compare-card ul {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 14px;
}
.compare-card li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px;
  line-height: 1.5;
}
.compare-card .mark {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 12px; font-weight: 700;
}
.compare-card.before .mark {
  background: rgba(184, 92, 46, 0.12);
  color: var(--coral);
}
.compare-card.before li { color: var(--ink-2); }
.compare-card.after .mark {
  background: #dcfce7;
  color: var(--green-dark);
}
.compare-card.after li { color: rgba(255, 255, 255, 0.92); }
.arrow-col {
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}
.arrow-col svg { width: 32px; height: 32px; }

/* === Outcomes (cream, centered, like one-pager page 2) === */
.outcomes {
  padding: 96px 0;
  background: var(--surface);
}
.showreel {
  padding: 96px 0;
  background: var(--paper);
}
.video-frame {
  margin: 0;
  max-width: 960px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}
.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.outcomes .container { text-align: center; }
.outcomes h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 16px;
  color: var(--ink);
  max-width: 820px; margin-left: auto; margin-right: auto;
}
.outcomes h2 .it { color: var(--ink-2); display: block; }
.outcomes .sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.outcomes .sub b { color: var(--ink); font-weight: 700; }
.checks {
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  justify-content: center;
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
}
.checks span { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.checks .tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--coral); color: white;
  border-radius: 50%;
  font-size: 12px; font-weight: 700;
}
.enterprise-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: white;
  padding: 9px 20px; border-radius: 999px;
  font-family: var(--mono);
  font-size: 11.5px; color: var(--ink); font-weight: 500;
  letter-spacing: 0.04em;
  margin: 24px 0 40px;
  border: 1px solid var(--border);
}
.enterprise-pill::before { content: '✦'; color: var(--coral); font-size: 13px; }
.stats {
  display: grid; gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  text-align: left;
}
@media (max-width: 720px) { .stats { grid-template-columns: 1fr; } }
.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  color: var(--teal);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-lbl {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}

/* === All Features (deep feature blocks) === */
.all-features {
  background: var(--paper);
  padding: 104px 0;
}
.all-features-head { text-align: center; margin-bottom: 80px; }
.pill-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.18em;
  margin-bottom: 28px;
}
.pill-eyebrow::before {
  content: ''; width: 7px; height: 7px;
  background: var(--coral); border-radius: 50%;
}
.all-features-head h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 900px; margin: 0 auto;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 96px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
@media (max-width: 940px) {
  .feature-row { grid-template-columns: 1fr; gap: 48px; margin-bottom: 72px; }
  .feature-row.reverse { direction: ltr; }
}
.feature-text h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 20px;
}
.feature-text > p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}
.bullets { list-style: none; padding: 0; margin: 0; }
.bullets li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.bullets li:last-child { border-bottom: 1px solid var(--border); }
.bullets .b-ico {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--surface);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
}
.bullets .b-txt {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
  padding-top: 7px;
}
.bullets .b-txt strong { color: var(--ink); font-weight: 700; }

/* Dark "after hours" chat mockup — night sky */
.chat-dark {
  background-color: #060e22;
  /* Stack (top → bottom): moon glow halo, nebula wash, bright stars, dim stars, base navy gradient */
  background-image:
    /* moon glow halo around top-right */
    radial-gradient(circle 80px at 92% 11%, rgba(255, 232, 168, 0.20), transparent 70%),
    /* soft blue nebula wash mid-upper */
    radial-gradient(ellipse 320px 200px at 38% 18%, rgba(76, 116, 196, 0.10), transparent 70%),
    /* bright stars — larger, slightly varied warm/cool */
    radial-gradient(1.8px 1.8px at 8% 16%, rgba(255,255,255,0.95), transparent 60%),
    radial-gradient(1.6px 1.6px at 22% 8%, rgba(255,250,232,0.9), transparent 60%),
    radial-gradient(2px 2px at 37% 22%, rgba(255,255,255,1), transparent 60%),
    radial-gradient(1.7px 1.7px at 51% 12%, rgba(232,240,255,0.9), transparent 60%),
    radial-gradient(1.9px 1.9px at 64% 28%, rgba(255,255,255,0.95), transparent 60%),
    radial-gradient(1.6px 1.6px at 78% 14%, rgba(255,250,232,0.9), transparent 60%),
    radial-gradient(1.8px 1.8px at 14% 70%, rgba(255,255,255,0.95), transparent 60%),
    radial-gradient(1.7px 1.7px at 30% 82%, rgba(232,240,255,0.9), transparent 60%),
    radial-gradient(2px 2px at 44% 74%, rgba(255,255,255,1), transparent 60%),
    radial-gradient(1.6px 1.6px at 58% 90%, rgba(255,250,232,0.85), transparent 60%),
    radial-gradient(1.8px 1.8px at 72% 78%, rgba(255,255,255,0.9), transparent 60%),
    radial-gradient(1.7px 1.7px at 86% 86%, rgba(232,240,255,0.9), transparent 60%),
    /* dim stars / dust */
    radial-gradient(1px 1px at 4% 32%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(1px 1px at 17% 25%, rgba(232,240,255,0.4), transparent 60%),
    radial-gradient(1px 1px at 28% 14%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(1px 1px at 41% 6%, rgba(255,250,232,0.4), transparent 60%),
    radial-gradient(1px 1px at 56% 25%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(1px 1px at 69% 9%, rgba(232,240,255,0.35), transparent 60%),
    radial-gradient(1px 1px at 84% 24%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1px 1px at 96% 18%, rgba(255,250,232,0.45), transparent 60%),
    radial-gradient(1px 1px at 6% 48%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(1px 1px at 21% 55%, rgba(232,240,255,0.4), transparent 60%),
    radial-gradient(1px 1px at 36% 64%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(1px 1px at 49% 58%, rgba(255,250,232,0.35), transparent 60%),
    radial-gradient(1px 1px at 63% 67%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(1px 1px at 76% 60%, rgba(232,240,255,0.4), transparent 60%),
    radial-gradient(1px 1px at 90% 70%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(1px 1px at 7% 94%, rgba(232,240,255,0.4), transparent 60%),
    radial-gradient(1px 1px at 24% 96%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(1px 1px at 39% 86%, rgba(255,250,232,0.35), transparent 60%),
    radial-gradient(1px 1px at 52% 80%, rgba(232,240,255,0.4), transparent 60%),
    radial-gradient(1px 1px at 66% 94%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(1px 1px at 80% 70%, rgba(255,250,232,0.35), transparent 60%),
    radial-gradient(1px 1px at 94% 96%, rgba(232,240,255,0.4), transparent 60%),
    /* base vertical navy gradient */
    linear-gradient(180deg, #0d1f44 0%, #0a1733 35%, #060e22 80%, #04081a 100%);
  border-radius: 24px;
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-strong), inset 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
}
.chat-dark-head .moon {
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-left: 6px;
  color: #fce8a8;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255, 232, 168, 0.55));
}
.chat-dark-head .moon svg { width: 26px; height: 26px; }
.chat-dark-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
  color: white;
  flex-wrap: wrap;
}
.chat-dark-head .clock {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 12px;
  color: white;
}
.chat-dark-head .clock::before {
  content: ''; width: 8px; height: 8px;
  background: var(--green); border-radius: 50%;
}
.chat-dark-head .langs { display: inline-flex; gap: 6px; margin-left: auto; }
.chat-dark-head .lang-chip {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  padding: 4px 10px;
  background: rgba(255,255,255,0.06);
  color: white;
  border-radius: var(--radius-pill);
}
.chat-dark-head .lang-chip.active {
  background: var(--coral); color: white;
}
.chat-dark .chat {
  box-shadow: none;
  border: 1px solid transparent;
  margin: 0;
}
.chat-dark-foot {
  display: flex; gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.chat-dark-foot .chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.chat-dark-foot .chip::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.chat-dark-foot .chip.green {
  background: #2e7a55; color: white;
}
.chat-dark-foot .chip.green::before { background: white; }

/* Unified Inbox mockup */
.inbox {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 18px;
  box-shadow: var(--shadow-strong);
  display: grid;
  gap: 18px;
  grid-template-columns: 1.4fr 0.7fr;
  align-items: start;
}
@media (max-width: 540px) {
  .inbox { grid-template-columns: 1fr; }
}
.chat-wrap-compact .inbox {
  max-width: 100%;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.7fr);
}
.chat-wrap-compact .inbox-main,
.chat-wrap-compact .inbox-side,
.chat-wrap-compact .inbox-row .body { min-width: 0; }
.chat-wrap-compact .inbox-row .who { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.inbox-main { display: flex; flex-direction: column; gap: 10px; }
.inbox-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-weight: 500;
}
.inbox-head strong { color: var(--ink); font-weight: 700; margin-right: 8px; font-family: var(--sans); font-size: 13px; }
.inbox-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--surface);
}
.inbox-row.highlight { background: rgba(184, 92, 46, 0.07); border: 1px solid rgba(184, 92, 46, 0.15); }
.inbox-row .ava-sq {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 11px; font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.inbox-row .ava-sq.wa { background: #25d366; }
.inbox-row .ava-sq.web { background: var(--teal); }
.inbox-row .ava-sq.em { background: var(--ink); }
.inbox-row .body { flex: 1; min-width: 0; }
.inbox-row .who { font-size: 13px; font-weight: 600; color: var(--ink); }
.inbox-row .msg {
  font-size: 12.5px;
  color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-top: 2px;
}
.inbox-row .meta {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.inbox-row .vip {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
}
.inbox-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--muted);
}
.inbox-foot .take-over {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.inbox-side { display: flex; flex-direction: column; gap: 12px; }
.channels-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.channels-box .hd {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.channels-box .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0;
  font-size: 12.5px;
  color: var(--ink);
}
.channels-box .row .dot { width: 10px; height: 10px; border-radius: 4px; margin-right: 8px; }
.channels-box .row .dot.wa { background: #25d366; }
.channels-box .row .dot.web { background: var(--teal); }
.channels-box .row .dot.em { background: var(--ink); }
.channels-box .row .lbl-row { display: inline-flex; align-items: center; }
.channels-box .row .n { font-weight: 700; }
.channels-box .total {
  display: flex; justify-content: space-between;
  margin-top: 8px; padding-top: 8px;
  border-top: 1px solid var(--border);
  font-size: 12px;
}
.channels-box .total .n { font-weight: 700; color: var(--ink); }
.channels-box .bar {
  height: 6px; background: var(--surface); border-radius: 99px;
  margin-top: 8px; overflow: hidden;
}
.channels-box .bar > div { width: 80%; height: 100%; background: var(--green); }
.ai-badge {
  background: var(--ink);
  color: white;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.ai-badge .hd {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-2);
  margin-bottom: 4px;
  font-weight: 500;
}
.ai-badge .big {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 4px;
}
.ai-badge .lb {
  font-size: 10.5px;
  color: rgba(255,255,255,0.7);
}

/* Returning guest profile mockup */
.profile-wrap {
  background: #fff5cd;
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-strong);
}
.profile-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink);
  color: white;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.profile-tag::before {
  content: ''; width: 8px; height: 8px; background: var(--green); border-radius: 50%;
}
.profile-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 22px;
}
.profile-head { display: flex; gap: 14px; margin-bottom: 18px; }
.profile-head .ava-circ {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.profile-head .meta-hd {
  font-family: var(--mono);
  font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--coral);
  text-transform: uppercase;
}
.profile-head .name { font-size: 18px; font-weight: 700; color: var(--ink); margin: 2px 0; }
.profile-head .sub { font-size: 12px; color: var(--muted); }
.profile-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.profile-chips .chip {
  font-family: var(--mono);
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--ink);
}
.profile-chips .chip.alt { background: var(--surface); color: var(--ink); }
.profile-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.profile-stats .ps-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1;
  color: var(--teal);
}
.profile-stats .ps-lbl {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 6px;
}
.profile-section {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 500;
}
.remembers { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.remembers .chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface);
  padding: 6px 11px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  color: var(--ink);
  border: 1px solid var(--border);
}
.ai-suggests {
  background: rgba(184, 92, 46, 0.08);
  border: 1px solid rgba(184, 92, 46, 0.18);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex; gap: 12px; align-items: flex-start;
}
.ai-suggests .lbl {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--coral);
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 4px;
}
.ai-suggests .txt { font-size: 12.5px; color: var(--ink); font-weight: 500; }

/* === Guest App mockup === */
.guest-app-wrap {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  padding-top: 36px;
}
.guest-app-tag {
  position: absolute; top: 0; left: 16px;
  background: var(--coral); color: white;
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
}
.guest-app-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px;
  box-shadow: var(--shadow-strong);
}
.guest-app-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.guest-app-brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink);
}
.guest-app-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
}
.guest-app-hd .chip {
  background: var(--yellow); color: var(--ink);
  font-family: var(--mono);
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  border-radius: 4px;
}
.guest-app-greet {
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.guest-app-name {
  font-size: 20px; font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.guest-app-stay {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.guest-app-stay > div {
  background: var(--surface);
  border-radius: 10px;
  padding: 10px 12px;
}
.guest-app-stay .stay-lbl {
  font-family: var(--mono);
  font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.guest-app-stay .stay-val {
  font-size: 12.5px; font-weight: 700;
  color: var(--ink);
}
.guest-app-section {
  font-family: var(--mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.guest-app-rows {
  display: flex; flex-direction: column;
  gap: 8px;
}
.guest-app-rows > div {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px;
  background: var(--surface);
  border-radius: 12px;
  font-size: 13.5px;
  color: var(--ink);
}
.guest-app-rows > div .arrow-r {
  color: var(--coral); font-weight: 700;
}

/* === Mid CTA strip === */
.mid-cta {
  margin-top: 64px;
  margin-bottom: 64px;
  background: var(--teal);
  color: white;
  border-radius: 28px 28px 28px 4px;
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
}
.mid-cta h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: white;
  max-width: 600px;
}
.mid-cta .btn {
  background: white;
  color: var(--teal);
  font-weight: 600;
}
.mid-cta .btn .arrow { background: var(--teal); color: white; }
.mid-cta .btn:hover { background: var(--cream); }

/* === How it works (4 steps) === */
.how {
  background: var(--cream);
  padding: 96px 0;
}
.how-head { text-align: center; margin-bottom: 56px; }
.how .pill-eyebrow { margin-bottom: 24px; }
.how-head h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 46px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 14px;
}
.how-head .lead {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
@media (max-width: 940px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; gap: 16px; } }
.step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  position: relative;
}
.step + .step::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 50%;
  width: 24px; height: 24px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b85c2e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14m-6-6 6 6-6 6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
@media (max-width: 940px) {
  .step + .step::before { display: none; }
}
.step .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--coral);
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 18px;
}
.step h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 14px;
}
.step p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* === Why grid === */
.why { background: var(--paper); }
.why h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 48px; max-width: 720px; color: var(--ink); }
.why-grid {
  display: grid; gap: 36px 48px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; gap: 28px; } }
.why-item h3 {
  font-size: 17px; font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.why-item p {
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink-2);
}

/* === Roadmap compressed === */
.roadmap { background: white; }
.roadmap h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; max-width: 720px; color: var(--ink); }
.roadmap .lead { color: var(--ink-2); font-size: 17px; max-width: 720px; margin-bottom: 40px; }
.roadmap-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 880px) {
  .roadmap-list { grid-template-columns: 1fr; }
}
.roadmap-list li {
  display: flex; flex-direction: column;
  gap: 18px; align-items: flex-start;
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--paper);
  position: relative;
}
.roadmap-list li:first-child {
  background: white;
  border-color: rgba(67, 136, 144, 0.25);
}
.roadmap-list .lbl {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--coral);
  background: white;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
}
.roadmap-list li:first-child .lbl { color: var(--teal-darker); border-color: rgba(67, 136, 144, 0.3); }
.roadmap-list li:first-child .lbl::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-dark);
}
.roadmap-list .txt { font-size: 15px; line-height: 1.55; color: var(--ink); }

/* === FAQ === */
.faq {
  background: var(--paper);
  padding: 96px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 940px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}
.faq-intro h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
  margin: 20px 0 32px;
}
.faq-intro h2 .it { color: var(--coral); display: block; }
.faq-contact {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 28px 28px 32px;
  position: relative;
  max-width: 380px;
}
.faq-contact::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 56px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 16px 22px 0 0;
  border-color: var(--surface) transparent transparent transparent;
}
.faq-contact p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 18px;
}
.faq-contact .btn {
  background: white;
  color: var(--teal);
  border-color: var(--border);
  font-weight: 600;
}
.faq-contact .btn:hover { background: white; border-color: var(--teal); }
.faq-contact .btn .arrow { background: var(--teal); color: white; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-list details[open] { border-color: var(--coral); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 72px 22px 28px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.28s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.faq-list summary:hover::after { border-color: var(--ink); }
.faq-list details[open] summary::after {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: translateY(-50%) rotate(45deg);
}
.faq-list summary:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: -2px;
  border-radius: var(--radius-card);
}
.faq-list .faq-a {
  padding: 0 28px 24px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Smooth content reveal on browsers that support ::details-content.
   Falls back to instant snap elsewhere. */
@supports selector(::details-content) {
  :root { interpolate-size: allow-keywords; }
  .faq-list details::details-content {
    block-size: 0;
    opacity: 0;
    overflow: clip;
    transition: block-size 0.32s ease, opacity 0.22s ease, content-visibility 0.32s ease;
    transition-behavior: allow-discrete;
  }
  .faq-list details[open]::details-content {
    block-size: auto;
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .faq-list summary::after,
  .faq-list details,
  .faq-list details::details-content { transition: none; }
}

/* === Closing CTA (cream, like one-pager cta-dark which is actually cream) === */
.closing-cta {
  background: var(--surface);
  color: var(--ink);
  padding: 72px 0;
}
.closing-cta .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  background: white;
  border-radius: var(--radius-card);
  padding: 44px 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.closing-cta h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  color: var(--ink);
  max-width: 540px;
  font-weight: 700;
}
.closing-cta h2 .it { color: var(--ink-2); display: block; }
.closing-cta p {
  color: var(--ink-2);
  font-size: 16px;
  max-width: 540px;
  margin-top: 12px;
  line-height: 1.5;
}

/* === Webinar / register page elements === */
.when-bar {
  display: inline-flex; gap: 18px; align-items: center;
  background: white; border: 1px solid var(--border);
  padding: 16px 24px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft); flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 28px;
  color: var(--ink);
}
.when-bar strong { color: var(--ink); font-weight: 600; }
.when-bar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.when-bar .sep { color: var(--border); }

.attend {
  display: grid; gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 8px;
}
@media (max-width: 880px) { .attend { grid-template-columns: 1fr; } }
.attend-item {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 28px;
}
.attend-item .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--coral);
  letter-spacing: 0.18em;
  display: block; margin-bottom: 14px;
}
.attend-item h3 { font-size: 18px; margin-bottom: 8px; color: var(--ink); font-weight: 700; }
.attend-item p { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }

.agenda {
  position: relative;
  margin-top: 40px;
  padding-left: 44px;
  max-width: 760px;
}
.agenda::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--coral) 0%, var(--coral) 50%, var(--border) 100%);
  border-radius: 1px;
}
.agenda-row {
  position: relative;
  display: flex; align-items: center; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--ink);
}
.agenda-row:last-child { border-bottom: none; }
.agenda-row .ord {
  position: absolute;
  left: -44px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--coral);
  color: var(--coral);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  flex-shrink: 0;
}
.agenda-row .title {
  flex: 1;
  font-weight: 500;
  line-height: 1.4;
}
.agenda-row .time {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--coral);
  background: var(--surface);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  border: 1px solid var(--border);
}
@media (max-width: 540px) {
  .agenda { padding-left: 36px; }
  .agenda::before { left: 11px; }
  .agenda-row .ord { left: -36px; width: 26px; height: 26px; font-size: 10px; }
  .agenda-row { font-size: 15px; gap: 12px; }
  .agenda-row .time { font-size: 9.5px; padding: 4px 9px; }
}

.form-section { background: var(--paper); }
.form-card {
  max-width: 640px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-row.two-col {
  display: grid; gap: 16px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 540px) { .form-row.two-col { grid-template-columns: 1fr; } }
.form-row label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.form-row label:has(+ input[required])::after,
.form-row label:has(+ select[required])::after,
.form-row.checkbox input[required] + label::after {
  content: ' *';
  color: var(--coral);
  font-weight: 700;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15px;
  background: white;
  color: var(--ink);
  transition: border-color 0.15s;
  min-height: 44px;
}
.form-row input:focus-visible,
.form-row select:focus-visible,
.form-row textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-color: var(--teal);
}
.form-row.checkbox {
  flex-direction: row; align-items: flex-start; gap: 10px;
  margin-top: 4px;
}
.form-row.checkbox input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--teal); }
.form-row.checkbox label {
  font-family: var(--sans);
  font-size: 13.5px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-2);
  font-weight: 400;
  line-height: 1.45;
}
.form-row.checkbox label a { color: var(--teal); }
.form-card button { margin-top: 8px; }
.form-card button[disabled] { opacity: 0.65; cursor: not-allowed; }
.form-status {
  display: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.45;
}
.form-status.form-status-error {
  display: block;
  background: rgba(184, 92, 46, 0.08);
  color: #8a1f17;
  border: 1px solid rgba(184, 92, 46, 0.28);
}
.form-success p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
/* Mailchimp honeypot — keep visually hidden but in the DOM. */
.hp-field {
  position: absolute;
  left: -5000px;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* === Footer === */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.site-footer .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.site-footer a { color: var(--ink); text-decoration: none; }
.site-footer a:hover { color: var(--teal); }
.site-footer .right { display: flex; gap: 18px; flex-wrap: wrap; }
