/* Nadia marketing — shared design system. Tokens: ../tokens.css */
:root {
  --navy: #0D1B2A;
  --navy-2: #12263A;
  --navy-3: #1B3348;
  --navy-ink: #09141F;
  --teal: #00B4A6;
  --teal-dark: #009688;
  --teal-soft: rgba(0, 180, 166, 0.14);
  --teal-glow: rgba(0, 180, 166, 0.32);
  --ink: #1E293B;
  --muted: #64748B;
  --muted-2: #94A3B8;
  --line: #E2E8F0;
  --line-soft: #F1F5F9;
  --paper: #F8FAFC;
  --white: #FFFFFF;
  --danger: #E53E3E;
  --danger-soft: #FEE2E2;
  --ok: #2F855A;
  --ok-soft: #E6F7F5;
  --warn: #B7791F;
  --warn-soft: #FEF3C7;
  --shadow: 0 12px 40px rgba(13, 27, 42, 0.08);
  --shadow-md: 0 16px 40px rgba(13, 27, 42, 0.10);
  --shadow-lg: 0 32px 64px rgba(13, 27, 42, 0.18);
  --radius-sm: 10px;
  --radius: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --nav-h: 72px;
  --sidebar-w: 248px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Instrument Serif", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --focus: 2px solid var(--teal);
  --focus-offset: 3px;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-600: #475569;
  --gray-700: #334155;
  --red: #E53E3E;
  --green: #2F855A;
  --transition: 180ms cubic-bezier(0.22, 1, 0.36, 1);
}
::selection { background: var(--teal); color: #fff; }
:focus-visible { outline: var(--focus); outline-offset: var(--focus-offset); }
[hidden] { display: none !important; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--navy); }
section[id], header[id], article[id] { scroll-margin-top: 88px; }

.skip {
  position: absolute; left: 12px; top: -48px;
  background: var(--teal); color: #fff; padding: 8px 14px;
  border-radius: 8px; z-index: 200; font-weight: 600;
}
.skip:focus { top: 12px; }

.container { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 96px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal-dark); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-soft);
}
.display {
  font-family: var(--display); font-weight: 400;
  letter-spacing: -0.03em; line-height: 1.08; color: var(--navy);
}
h1.display { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2.display { font-size: clamp(1.9rem, 3.8vw, 3rem); margin: 14px 0 12px; }
.lead { font-size: 1.125rem; color: var(--muted); max-width: 40rem; }
.lead-wide { max-width: none; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.section-flush { padding-top: 0; }
.section-compact { padding-top: 48px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent; cursor: pointer; line-height: 1;
  font-family: inherit; text-decoration: none;
  transition: transform 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease), opacity 180ms var(--ease);
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 10px 24px -10px var(--teal-glow); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); color: #fff; }
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--navy); color: var(--navy); }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.16); }
.btn-ghost:hover { background: rgba(255,255,255,0.14); color: #fff; }
.btn-danger { background: var(--danger-soft); color: var(--danger); }
.btn-danger:hover { background: #fecaca; }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; border-radius: 14px; }
.btn-sm { padding: 10px 16px; font-size: 0.9rem; }
.btn-block { width: 100%; }
.btn:disabled, .btn[disabled], .btn.is-loading { opacity: 0.55; cursor: not-allowed; transform: none; pointer-events: none; }
.btn.is-loading { opacity: 0.85; }
.btn.is-loading::after {
  content: ""; width: 14px; height: 14px; border: 2px solid currentColor;
  border-right-color: transparent; border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.field input, .field select, .field textarea, .input {
  width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 0.95rem; font-family: inherit; color: var(--ink); background: #fff;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.field input:hover, .field select:hover, .input:hover { border-color: #CBD5E1; }
.field input:focus, .field select:focus, .field textarea:focus, .input:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft);
}
.form-error { color: var(--danger); font-size: 0.88rem; margin: 0 0 12px; }
.form-error[hidden] { display: none !important; }
.empty-state { text-align: center; padding: 48px 24px; color: var(--muted); }
.empty-state h4 { margin: 12px 0 8px; color: var(--navy); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.nav {
  position: sticky; top: 0; z-index: 80; height: var(--nav-h);
  background: rgba(248, 250, 252, 0.78);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.04);
}
.nav-inner {
  width: min(1200px, calc(100% - 48px)); margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 1.55rem; color: var(--navy);
}
.logo-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(145deg, var(--teal), var(--teal-dark));
  color: #fff; display: grid; place-items: center;
  font-family: var(--display); font-size: 1.15rem; line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: #475569; font-size: 0.92rem; font-weight: 500; padding: 8px 0; }
.nav-links a:hover { color: var(--navy); }
.nav-links a.is-active { color: var(--navy); font-weight: 600; box-shadow: inset 0 -2px 0 var(--teal); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border: 0; background: transparent;
  cursor: pointer; position: relative;
}
.nav-toggle span {
  position: absolute; left: 11px; right: 11px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: transform 200ms var(--ease), opacity 200ms var(--ease), top 200ms var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav.is-open .nav-toggle span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:nth-child(3) { top: 20px; transform: rotate(-45deg); }
.mobile-panel {
  display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 12px 24px 24px; box-shadow: var(--shadow);
}
.mobile-panel a {
  display: block; padding: 12px 4px; color: var(--navy); font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-panel .btn { margin-top: 14px; width: 100%; }

.page-hero { padding: 72px 0 40px; }
.page-hero h1 { margin: 14px 0 16px; }
.page-body { padding-bottom: 80px; }
.legal-doc { max-width: 760px; margin: 0 auto; }
.legal-doc .updated { color: var(--muted); font-size: 0.88rem; margin-bottom: 28px; }
.legal-doc h2 { color: var(--navy); font-size: 1.2rem; margin: 32px 0 10px; }
.legal-doc p, .legal-doc li { color: var(--gray-700); font-size: 0.98rem; line-height: 1.7; }
.legal-doc ul { padding-left: 1.2rem; margin: 8px 0 16px; }
.legal-doc a { color: var(--teal-dark); font-weight: 600; }
.mh-topics .mh-aside-note { margin-top: 18px; }
.cap-index {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin: 0 auto 24px;
}
.cap-index a {
  font-size: 0.82rem; font-weight: 600; color: var(--navy);
  border: 1px solid var(--line); background: #fff;
  padding: 8px 12px; border-radius: 999px;
}
.cap-index a:hover { border-color: var(--teal); color: var(--teal-dark); }
.plan-note {
  text-align: center; color: var(--muted); font-size: 0.9rem; margin: 20px 0 0;
}
.seat-callout {
  max-width: 760px; margin: 0 auto 36px;
  background: #F0FDFA; border: 1px solid rgba(0, 180, 166, 0.35);
  border-radius: 16px; padding: 18px 22px; text-align: left;
}
.seat-callout strong { color: var(--navy); display: block; margin-bottom: 6px; font-size: 0.95rem; }
.seat-callout p { color: #334155; font-size: 0.95rem; }
.how-pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 0 0 40px; }
.how-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 26px;
}
.how-card h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 8px; }
.how-card p { color: var(--muted); font-size: 0.94rem; }
.tier .seat-line {
  display: inline-flex; align-items: center; margin-top: 12px;
  font-size: 0.82rem; font-weight: 700; color: var(--teal-dark);
  background: var(--teal-soft); padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.02em;
}
.same-on-all {
  text-align: center; color: #334155; font-size: 0.92rem;
  background: #fff; border: 1px dashed var(--line); border-radius: 14px;
  padding: 14px 18px; margin: 0 0 28px;
}
.same-on-all strong { color: var(--navy); }
.usage .usage-kicker {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 6px;
}
.usage .usage-vol {
  display: block; font-size: 0.8rem; color: #CBD5E1;
  margin-top: 8px; line-height: 1.45;
}
.usage-foot {
  color: #94A3B8; font-size: 0.9rem; margin-top: 18px; max-width: 42rem; line-height: 1.55;
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 28px; box-shadow: var(--shadow);
}
.icon-box {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--teal-soft); color: var(--teal-dark);
  display: grid; place-items: center; margin-bottom: 14px;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat-grid-lite { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.feat-grid-lite h3 { font-size: 1.05rem; color: var(--navy); margin: 0 0 8px; }
.feat-grid-lite p { color: var(--muted); font-size: 0.94rem; }
.mode-copy { min-height: 2.4em; }
.swipe { display: none; font-size: 0.8rem; color: var(--muted); margin-top: 10px; }
.card h3 { color: var(--navy); }

.feat-row { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; padding: 56px 0; border-top: 1px solid var(--line); }
.feat-row.reverse { grid-template-columns: 0.9fr 1.1fr; }
.feat-row.reverse .copy { order: 2; }
.feat-row h2 { margin: 8px 0 12px; font-size: clamp(1.6rem, 2.5vw, 2.1rem); }
.mock {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px;
  box-shadow: var(--shadow);
}
.modes { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.mode {
  font-size: 11px; font-weight: 600; color: #475569;
  border: 1px solid var(--line); padding: 4px 8px; border-radius: 999px; background: #fff;
  cursor: pointer; font-family: inherit;
}
.mode.is-on, .mode:hover { border-color: var(--teal); color: var(--teal-dark); }

.bill-toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 28px 0 40px; }
.bill-toggle span { font-size: 0.95rem; color: var(--muted); font-weight: 500; cursor: pointer; user-select: none; }
.bill-toggle span.on { color: var(--navy); font-weight: 700; }
.save {
  font-size: 12px; font-weight: 700; color: var(--teal-dark);
  background: var(--teal-soft); padding: 3px 8px; border-radius: 999px; margin-left: 6px;
}
.switch {
  width: 52px; height: 30px; border-radius: 999px; border: 0; background: #CBD5E1;
  position: relative; cursor: pointer;
}
.switch .knob {
  position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.2); transition: left 180ms var(--ease);
}
.switch[aria-checked="true"] { background: var(--teal); }
.switch[aria-checked="true"] .knob { left: 25px; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tier {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 28px 26px;
  display: flex; flex-direction: column; position: relative;
}
.tier.popular { border-color: var(--teal); box-shadow: 0 18px 50px rgba(0,180,166,0.12); }
.tier .pop {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; padding: 4px 12px; border-radius: 999px;
}
.tier h3 { font-size: 1.05rem; color: var(--navy); }
.tier .for { font-size: 0.88rem; color: var(--muted); margin-top: 6px; min-height: 2.6em; }
.price { margin: 18px 0 6px; display: flex; align-items: baseline; gap: 4px; }
.price b { font-size: 2.7rem; letter-spacing: -0.04em; color: var(--navy); font-variant-numeric: tabular-nums; }
.price em { font-style: normal; color: var(--muted); font-weight: 500; }
.billed { font-size: 0.8rem; color: var(--muted); min-height: 1.2em; margin-bottom: 18px; }
.tier ul { list-style: none; display: grid; gap: 10px; margin: 8px 0 24px; flex: 1; }
.tier li { font-size: 0.92rem; color: #334155; padding-left: 22px; position: relative; }
.tier li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8.2l3.2 3.2L13 4.5' stroke='%2300B4A6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.addon {
  margin-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: var(--navy); color: #fff; border-radius: 20px; padding: 22px 26px;
}
.addon h3 { color: #fff; font-size: 1.05rem; display: flex; align-items: center; gap: 10px; }
.addon p { color: #94A3B8; font-size: 0.9rem; margin-top: 4px; }
.chip-now {
  display: inline-block;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.addon .chip-now { background: rgba(0, 180, 166, 0.18); color: var(--teal); }
.addon .amt { font-size: 1.8rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.guarantee {
  margin-top: 18px; border: 1px solid var(--teal); background: #F0FDFA;
  border-radius: 20px; padding: 22px 26px; display: flex; gap: 16px; align-items: center;
}
.guarantee h3 { font-size: 1.05rem; color: var(--navy); }
.guarantee p { font-size: 0.9rem; color: #334155; margin-top: 4px; }
.hero-note, .trial-fineprint { font-size: 0.85rem; color: #64748B; }
.usage-band {
  margin-top: 28px; background: var(--navy); color: #fff; border-radius: 24px; padding: 36px;
}
.usage-band h2 { color: #fff; }
.usage { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px; }
.usage div {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 16px;
}
.usage strong { display: block; font-size: 1.55rem; color: var(--teal); }
.usage span { font-size: 0.82rem; color: #94A3B8; }
.usage .usage-kicker {
  display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 6px;
}
.usage .usage-vol { display: block; font-size: 0.8rem; color: #CBD5E1; margin-top: 8px; line-height: 1.45; }
.usage-foot { color: #94A3B8; font-size: 0.9rem; margin-top: 18px; max-width: 42rem; line-height: 1.55; }
.usage-units { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0 4px; }
.usage-units div {
  background: rgba(0,180,166,0.10); border: 1px solid rgba(0,180,166,0.22);
  border-radius: 12px; padding: 14px 16px;
}
.usage-units .k { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); }
.usage-units strong { display: block; font-size: 1.2rem; color: #fff; margin: 4px 0 2px; }
.usage-units span { font-size: 0.8rem; color: #94A3B8; }
@media (max-width: 760px) {
  .usage-units { grid-template-columns: 1fr; }
}

.table-wrap { overflow-x: auto; margin-top: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
table.compare { width: 100%; border-collapse: collapse; min-width: 680px; }
table.compare th, table.compare td { padding: 16px 20px; text-align: left; font-size: 0.92rem; border-bottom: 1px solid var(--line-soft); }
table.compare th { background: var(--paper); font-weight: 600; color: var(--navy); }
table.compare th.hl { color: var(--teal-dark); box-shadow: inset 0 3px 0 var(--teal); }
table.compare td.hl { color: var(--navy); }
table.compare td.hl { background: rgba(0,180,166,0.05); font-weight: 600; }
.yes { color: var(--teal-dark); font-weight: 700; }
.no { color: #94A3B8; }

.faq { max-width: 760px; margin: 32px auto 0; display: grid; gap: 10px; }
details.qa { background: #fff; border: 1px solid var(--line); border-radius: 14px; }
details.qa summary {
  list-style: none; cursor: pointer; padding: 18px 52px 18px 22px;
  font-weight: 600; color: var(--navy); position: relative;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid #94A3B8; border-bottom: 2px solid #94A3B8;
  transform: translateY(-70%) rotate(45deg);
}
details.qa[open] summary::after { transform: translateY(-20%) rotate(225deg); }
details.qa .a { padding: 0 22px 20px; color: var(--muted); font-size: 0.95rem; }

.final {
  background: radial-gradient(700px 280px at 50% 0%, rgba(0,180,166,0.18), transparent 60%), var(--navy);
  color: #fff; text-align: center; padding: 88px 24px;
}
.final h2 { color: #fff; }
.final p { color: #94A3B8; margin: 16px auto 28px; max-width: 32rem; }

footer.site { background: #09141F; color: #94A3B8; padding: 48px 0 28px; font-size: 0.9rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
footer.site a { color: #CBD5E1; }
footer.site a:hover { color: #fff; }
footer.site h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
footer.site ul { list-style: none; display: grid; gap: 8px; }
.foot-brand { font-family: var(--display); font-size: 1.6rem; color: #fff; margin-bottom: 8px; }
.legal { margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.8rem; }

.bubble { max-width: 82%; padding: 10px 13px; border-radius: 18px; font-size: 13.5px; line-height: 1.45; margin-bottom: 8px; }
.bubble.in { background: #F1F5F9; color: var(--ink); border-bottom-left-radius: 5px; }
.bubble.out { background: var(--teal); color: #fff; margin-left: auto; border-bottom-right-radius: 5px; }
.score-bar { height: 8px; background: #E2E8F0; border-radius: 999px; overflow: hidden; }
.score-bar > i { display: block; height: 100%; width: 78%; background: var(--teal); }

@media (max-width: 980px) {
  .split, .grid-2, .grid-3, .feat-grid-lite, .feat-row, .feat-row.reverse, .tiers, .foot-grid, .usage, .how-pricing, .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .feat-grid-lite { grid-template-columns: 1fr 1fr; }
  .feat-row.reverse .copy { order: 0; }
  .addon { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 760px) {
  .container, .nav-inner { width: calc(100% - 32px); }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.is-open .mobile-panel { display: block; }
  .section { padding: 64px 0; }
  .page-hero { padding: 48px 0 24px; }
  .feat-grid-lite { grid-template-columns: 1fr; }
  .swipe { display: block; }
}
/* ---- Homepage (extracted from index.html) ---- */
.container-wide { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.section-sm { padding: 72px 0; }
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(900px 480px at 78% -10%, rgba(0,180,166,0.22), transparent 60%),
    radial-gradient(700px 420px at 0% 110%, rgba(0,180,166,0.10), transparent 55%),
    linear-gradient(180deg, #0D1B2A 0%, #102433 100%);
  padding: 72px 0 88px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.35;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 70% 20%, #000 20%, transparent 70%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 8px;
  border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: #CBD5E1; font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.hero-badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(0,180,166,0.22); display: block; }
.hero h1 { color: #fff; margin: 22px 0 18px; }
.hero h1 em { font-style: italic; color: var(--teal); }
.hero .sub { font-size: 1.15rem; color: #94A3B8; max-width: 36rem; line-height: 1.65; }
.hero .sub strong { color: #E2E8F0; font-weight: 600; }
.hero-caps { display: flex; flex-wrap: wrap; gap: 8px 18px; list-style: none; margin-top: 22px; }
.hero-caps li { color: #CBD5E1; font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.hero-caps li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.device-wrap { position: relative; display: flex; justify-content: center; }
.device {
  width: 320px; background: #0A0D12; border-radius: 44px; padding: 11px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 50px 80px -24px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.12);
  position: relative; z-index: 2;
}
.device-screen { background: #F3F4F8; border-radius: 34px; overflow: hidden; height: 560px; display: flex; flex-direction: column; }
.island { width: 98px; height: 26px; background: #0A0D12; border-radius: 20px; margin: 10px auto 0; }
.sms-head { text-align: center; padding: 8px 16px 12px; border-bottom: 1px solid #E6E8EE; }
.sms-head .who { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.sms-head .num { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.sms-head .num span { color: var(--teal-dark); font-weight: 600; }
.thread { padding: 16px 14px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.daychip { align-self: center; font-size: 11px; color: #94A3B8; background: #E8EAF0; padding: 3px 10px; border-radius: 999px; }
.msg {
  max-width: 82%; padding: 10px 13px; border-radius: 18px; font-size: 13.5px; line-height: 1.45;
  opacity: 0; transform: translateY(10px); animation: rise 0.55s var(--ease) forwards;
}
.msg.in { background: #fff; color: var(--ink); border-bottom-left-radius: 5px; box-shadow: 0 1px 2px rgba(13,27,42,0.05); }
.msg.out { background: var(--teal); color: #fff; margin-left: auto; border-bottom-right-radius: 5px; }
.msg time { display: block; font-size: 10px; opacity: 0.62; margin-top: 4px; }
.thread .msg:nth-child(2) { animation-delay: 0.35s; }
.thread .msg:nth-child(3) { animation-delay: 0.85s; }
.thread .msg:nth-child(4) { animation-delay: 1.35s; }
.thread .msg:nth-child(5) { animation-delay: 1.85s; }
.composer { margin: 8px 12px 14px; background: #fff; border: 1px solid #E6E8EE; border-radius: 22px; padding: 10px 14px; color: #94A3B8; font-size: 13px; }
.float-card {
  position: absolute; left: -28px; bottom: 72px; width: 232px; z-index: 3;
  background: #0D1B2A; color: #fff; border-radius: 16px; padding: 16px 16px 14px;
  border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  opacity: 0; transform: translateY(12px); animation: rise 0.6s var(--ease) 2.1s forwards;
}
.float-card .k { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); font-weight: 600; }
.float-card .score { font-family: var(--display); font-size: 2.1rem; line-height: 1; margin: 6px 0 8px; }
.float-card .score span { font-size: 0.95rem; color: #94A3B8; }
.float-card p { font-size: 12.5px; color: #CBD5E1; }
.float-card .ok { margin-top: 10px; font-size: 12px; color: var(--teal); font-weight: 600; }
@keyframes rise { to { opacity: 1; transform: none; } }
.trust { background: #fff; border-bottom: 1px solid var(--line); padding: 22px 0; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; color: #475569; font-size: 0.84rem; font-weight: 600; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row svg { color: var(--teal-dark); }
.points { display: grid; gap: 18px; margin-top: 36px; }
.point { display: grid; grid-template-columns: 40px 1fr; gap: 14px; }
.point h3 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.point p { font-size: 0.92rem; color: var(--muted); }
.feed { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 8px; box-shadow: var(--shadow); }
.feed-item { display: grid; grid-template-columns: 92px 1fr; gap: 12px; padding: 16px 14px; border-radius: 14px; }
.feed-item + .feed-item { border-top: 1px solid var(--line-soft); }
.feed-item .when { font-size: 12px; font-weight: 700; color: var(--teal-dark); padding-top: 2px; font-variant-numeric: tabular-nums; }
.feed-item h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 2px; }
.feed-item p { font-size: 0.88rem; color: var(--muted); }
.feed-item.is-live { background: #F0FDFA; }
.support-note {
  margin-top: 28px; padding: 14px 16px; border-left: 3px solid var(--teal);
  background: #F0FDFA; border-radius: 0 12px 12px 0; font-size: 0.92rem; color: #334155; line-height: 1.55;
}
.support-note strong { color: var(--navy); font-weight: 600; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 19px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.step { position: relative; }
.step .n {
  width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1px solid var(--line);
  color: var(--teal-dark); font-weight: 700; display: grid; place-items: center;
  margin-bottom: 18px; font-size: 0.85rem; box-shadow: 0 0 0 6px var(--paper);
}
.step h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.94rem; }
.features { background: var(--navy); color: #fff; }
.features h2 { color: #fff; }
.features .lead { color: #94A3B8; }
.features .eyebrow { color: var(--teal); }
.features .plan-note { color: #94A3B8; }
.features .plan-note a { color: var(--teal); }
.features .plan-note a:hover { color: #fff; }
.features .cap-index { margin: 36px auto 0; }
.features .cap-index a {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: #E2E8F0;
}
.features .cap-index a:hover { border-color: var(--teal); color: #fff; }
.hero-caps.is-center { justify-content: center; margin-top: 28px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.feat {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 26px 24px 24px;
  transition: transform 200ms var(--ease), border-color 200ms var(--ease), background 200ms var(--ease);
}
.feat:hover { transform: translateY(-3px); border-color: rgba(0,180,166,0.35); background: rgba(255,255,255,0.05); }
.feat .icon-box { background: rgba(0,180,166,0.16); color: var(--teal); }
.feat h3 { font-size: 1.08rem; margin: 16px 0 8px; color: #fff; font-weight: 600; }
.feat p { color: #94A3B8; font-size: 0.94rem; }
.feat .now {
  display: inline-block; margin-top: 12px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(0, 180, 166, 0.16); color: var(--teal); padding: 4px 8px; border-radius: 999px;
}
.feat .quiet {
  display: inline-block; margin-top: 12px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(255,255,255,0.08); color: #94A3B8; padding: 4px 8px; border-radius: 999px;
}
.duo { display: grid; grid-template-columns: 1fr 1.15fr; gap: 20px; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow); }
.panel-dark { background: var(--navy); color: #fff; border: 0; }
.panel-dark h2, .panel-dark h3 { color: #fff; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 20px; text-align: left; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 26px;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.quote:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.quote p { font-family: var(--display); font-size: 1.25rem; line-height: 1.35; color: var(--navy); }
.quote .who { margin-top: 18px; font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.illust {
  display: inline-flex; align-items: center; gap: 8px; background: #FEF3C7; color: #92400E;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; margin-bottom: 14px;
}
.illust-note { font-size: 0.88rem; color: var(--muted); max-width: 40rem; margin: 8px auto 0; }

@media (max-width: 980px) {
  .hero-grid, .duo, .feat-grid, .quotes { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 48px 0 64px; }
  .float-card { left: 12px; bottom: 24px; }
  .feed-item { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 760px) {
  .container-wide { width: calc(100% - 32px); }
  .feat-grid, .quotes { grid-template-columns: 1fr; }
  .device { width: min(320px, 100%); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .device-wrap { flex-direction: column; align-items: center; }
  .float-card { position: relative; left: auto; bottom: auto; width: min(320px, 100%); margin: 18px auto 0; animation-delay: 0s; }
}

/* One-pager: deep dives, modes, pricing teaser, redirect fallback */
.closer { padding: 8px 0 32px; }
.mock-kicker { font-size: 11px; color: var(--muted); font-weight: 600; margin-bottom: 10px; }
.mock-heading { font-size: 12px; font-weight: 600; color: var(--navy); margin: 14px 0 8px; }
.mock-heading:first-child { margin-top: 0; }
.chip-now + .mock-heading { margin-top: 14px; }
.mock-text { font-size: 0.9rem; color: #334155; }
.mock-text + .mock-text { margin-top: 8px; }
.mock-ok { color: var(--teal-dark); }
.mock-note { font-size: 0.88rem; color: var(--muted); margin-top: 12px; }
.mock-note.tight { margin-top: 0; }
.mock-live { font-size: 0.85rem; color: var(--teal-dark); font-weight: 600; margin-top: 12px; }
.score-head { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 8px; }
.score-head strong { color: var(--teal-dark); }
.modes.is-center { justify-content: center; margin-top: 28px; }
.mode-copy.is-center { margin-top: 16px; color: var(--teal-dark); font-weight: 600; }

.teaser-plans {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px;
}
.teaser-plan {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 24px 22px; display: flex; flex-direction: column;
}
.teaser-plan.is-pop {
  border-color: var(--teal);
  box-shadow: 0 18px 50px rgba(0,180,166,0.12);
}
.teaser-plan h3 { font-size: 1.05rem; color: var(--navy); }
.teaser-plan .seat-line {
  display: inline-flex; align-items: center; margin-top: 12px;
  font-size: 0.82rem; font-weight: 700; color: var(--teal-dark);
  background: var(--teal-soft); padding: 4px 10px; border-radius: 999px;
}
.teaser-plan .for { font-size: 0.88rem; color: var(--muted); margin-top: 6px; min-height: 2.6em; }
.teaser-plan .amt {
  font-size: 2.4rem; letter-spacing: -0.04em; color: var(--navy);
  margin: 14px 0 4px; font-variant-numeric: tabular-nums; font-weight: 700; line-height: 1;
}
.teaser-plan .amt em { font-style: normal; font-size: 1rem; color: var(--muted); font-weight: 500; }
.teaser-plan .btn { margin-top: auto; }
.rate-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px;
}
.rate {
  background: var(--navy); color: #fff; border-radius: 16px; padding: 18px 20px;
}
.rate .k {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal);
}
.rate strong { display: block; font-size: 1.35rem; margin: 6px 0 2px; }
.rate span { font-size: 0.82rem; color: #94A3B8; }
.teaser-actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px;
}
.teaser-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 16px; }
.redirect-main { padding: 72px 0 96px; }

@media (max-width: 980px) {
  .teaser-plans, .rate-row { grid-template-columns: 1fr; }
  .teaser-plan .for { min-height: 0; }
}
@media (max-width: 760px) {
  .teaser-actions { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .msg, .float-card { opacity: 1; transform: none; }
}
