/* ============================================================
   MAILROOM — Marketing site styles
   Built on the app's design tokens (tokens.css). Light theme is
   the canvas; one dark section (KeepSafe) for rhythm.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body.mr {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  font-feature-settings: "ss01", "cv01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: hidden;
}
.mr ::selection { background: var(--accent-soft); color: var(--accent-text); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Layout shell ---------- */
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 860px; }
section { position: relative; }

/* ---------- Reusable type ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-text);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--accent-line);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { width: 18px; }

.mono { font-family: var(--font-mono); }
.tnum { font-variant-numeric: tabular-nums; }

h1, h2, h3 { margin: 0; letter-spacing: -0.03em; line-height: 1.02; font-weight: 680; }
.h-display { font-size: clamp(40px, 6.4vw, 84px); letter-spacing: -0.04em; line-height: 0.98; }
.h-section { font-size: clamp(30px, 4.2vw, 50px); letter-spacing: -0.035em; line-height: 1.0; }
.lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--text-muted); line-height: 1.55; }
.muted { color: var(--text-muted); }
.faint { color: var(--text-faint); }
.accent-text { color: var(--accent-text); }

/* ---------- Logo lockup (reused from app primitives) ---------- */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(150deg, var(--accent-500), var(--accent-700));
  position: relative; flex: 0 0 auto;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
  overflow: hidden;
}
.logo-mark::before {
  content: ""; position: absolute; left: 50%; top: 54%;
  width: 15px; height: 15px;
  transform: translate(-50%,-50%) rotate(45deg);
  border-radius: 2px; background: var(--on-accent); opacity: 0.9;
}
.logo-mark::after {
  content: ""; position: absolute; left: 50%; top: 30%;
  width: 8px; height: 8px; transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(150deg, var(--accent-500), var(--accent-700));
  z-index: 2;
}
.logo-word { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.logo-word b { color: var(--accent-text); font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 560; letter-spacing: -0.005em;
  border: 1px solid transparent; border-radius: var(--r-md);
  padding: 12px 20px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast), box-shadow var(--dur-fast), border-color var(--dur-fast);
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 16px 28px; font-size: 17px; }
.btn-primary {
  background: var(--accent-600); color: var(--on-accent);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover { background: var(--accent-500); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--text-faint); }
.btn-quiet { background: transparent; color: var(--text-muted); }
.btn-quiet:hover { color: var(--text); }
.btn .arrow { transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 540; padding: 7px 13px;
  border-radius: var(--r-pill); background: var(--surface);
  color: var(--text-muted); border: 1px solid var(--border);
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.chip-accent { background: var(--accent-soft); color: var(--accent-text); border-color: var(--accent-line); }
.chip-yahoo .yglyph {
  font-weight: 800; font-style: italic; color: #6b21a8;
  font-family: var(--font-display); font-size: 13px; letter-spacing: -0.04em;
}

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-md);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklch, var(--bg) 78%, transparent);
  backdrop-filter: saturate(1.4) blur(16px);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur), background var(--dur);
}
.nav.scrolled { border-bottom-color: var(--border); background: color-mix(in oklch, var(--bg) 88%, transparent); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-links a { font-size: 14.5px; color: var(--text-muted); font-weight: 500; transition: color var(--dur-fast); }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 64px 0 92px; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1100px 520px at 78% -8%, var(--accent-soft), transparent 60%),
    radial-gradient(800px 420px at 8% 4%, var(--bg-tint), transparent 64%);
  opacity: 0.85;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .soft { color: var(--text-muted); }
.hero-lede { max-width: 540px; margin-bottom: 30px; }
.hero-lede b { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-fine {
  margin-top: 18px; font-family: var(--font-mono); font-size: 12.5px;
  color: var(--text-faint); letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 10px;
}
.hero-fine .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--text-faint); opacity: 0.6; }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding: 40px 0 64px; }
}

/* ---------- Hero storage-bar mock (faithful to app) ---------- */
.storagemock {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
  padding: 26px; position: relative; overflow: hidden;
}
.storagemock .mock-winbar {
  display: flex; align-items: center; gap: 9px; margin-bottom: 22px;
}
.mock-winbar .wlogo { width: 18px; height: 18px; border-radius: 5px; background: linear-gradient(150deg, var(--accent-500), var(--accent-700)); }
.mock-winbar .wtitle { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint); letter-spacing: 0.02em; }
.mock-winbar .wdots { margin-left: auto; display: flex; gap: 6px; }
.mock-winbar .wdots i { width: 9px; height: 9px; border-radius: 50%; background: var(--surface-3); display: block; }

.mock-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 6px; }
.mock-head .account { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; }
.mock-head .account .yg { font-style: italic; font-weight: 800; color: #6b21a8; letter-spacing: -0.04em; }
.mock-head .freshdot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.mock-status { font-family: var(--font-mono); font-size: 11px; color: var(--warn-text); }

.mock-figures { display: flex; align-items: flex-end; gap: 16px; margin: 16px 0 4px; }
.mock-figures .big { font-size: 46px; font-weight: 700; letter-spacing: -0.03em; line-height: 0.9; }
.mock-figures .big .u { font-size: 20px; color: var(--text-muted); font-weight: 600; margin-left: 3px; }
.mock-figures .of { font-family: var(--font-mono); font-size: 12.5px; color: var(--text-faint); padding-bottom: 4px; }

/* the 3-layer bar */
.barwrap { margin-top: 18px; }
.bar {
  position: relative; height: 30px; border-radius: var(--r-sm);
  background: var(--gauge-track); overflow: hidden;
}
.bar .seg { position: absolute; top: 0; bottom: 0; left: 0; }
.bar .seg-keep { background: oklch(0.86 0.014 174); box-shadow: inset -1px 0 0 var(--surface); }
.bar .seg-reclaim {
  background: repeating-linear-gradient(45deg, var(--accent-500), var(--accent-500) 9px, var(--accent-600) 9px, var(--accent-600) 18px);
  transform-origin: left center; will-change: transform;
}
.bar .seg-reclaim.animate { animation: mr-fill 1.1s var(--ease-out) 0.35s both; }
.limit-marker {
  position: absolute; top: -7px; bottom: -7px; width: 2px;
  background: var(--danger-500); border-radius: 2px;
}
.limit-marker::after {
  content: attr(data-label); position: absolute; top: -19px; left: 50%;
  transform: translateX(-50%); white-space: nowrap;
  font-family: var(--font-mono); font-size: 10px; color: var(--danger-text);
}
.barlabels { display: flex; justify-content: space-between; margin-top: 24px; gap: 8px; }
.barlabels .bl { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-muted); }
.barlabels .sw { width: 11px; height: 11px; border-radius: 3px; flex: 0 0 auto; }
.barlabels .sw.keep { background: oklch(0.86 0.014 174); }
.barlabels .sw.reclaim { background: var(--accent-600); }
.barlabels .sw.limit { background: var(--danger-500); }

.mock-after {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.mock-after .after-copy { font-size: 13.5px; color: var(--text-muted); max-width: 60%; }
.mock-after .after-copy b { color: var(--accent-text); }
.mock-after .after-cta {
  font-family: var(--font-display); font-size: 13.5px; font-weight: 560;
  color: var(--on-accent); background: var(--accent-600);
  padding: 9px 15px; border-radius: var(--r-sm);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface-2); }
.trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  divide-x: 1px;
}
.trust-item { padding: 24px 8px; text-align: center; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: 0; }
.trust-item .ti-key { font-weight: 640; font-size: 16px; letter-spacing: -0.02em; margin-bottom: 3px; }
.trust-item .ti-sub { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint); letter-spacing: 0.02em; }
@media (max-width: 720px) {
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.sec { padding: 104px 0; }
.sec-head { max-width: 680px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 20px; }
.sec-head h2 { margin-bottom: 18px; }
.sec-head .lede { max-width: 600px; }
.sec-head.center .lede { margin-left: auto; margin-right: auto; }

/* ============================================================
   HOW IT WORKS — numbered steps
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--border); }
.step { padding: 34px 28px 34px 0; border-right: 1px solid var(--border); position: relative; }
.step:last-child { border-right: 0; padding-right: 0; }
.step .step-n {
  font-family: var(--font-mono); font-size: 12px; color: var(--accent-text);
  letter-spacing: 0.04em; margin-bottom: 16px;
}
.step .step-t { font-size: 20px; font-weight: 640; letter-spacing: -0.025em; margin-bottom: 10px; }
.step .step-d { font-size: 14.5px; color: var(--text-muted); line-height: 1.55; }
.step .step-bar { position: absolute; left: 0; top: -1px; width: 38px; height: 2px; background: var(--accent-600); }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step { padding: 28px 24px 28px 0; }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--border); padding: 26px 0; }
  .step:last-child { border-bottom: 0; }
}

/* ============================================================
   KEEPSAFE — dark section
   ============================================================ */
.keepsafe {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.keepsafe::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(900px 480px at 82% 12%, var(--accent-soft), transparent 60%);
  opacity: 0.5;
}
.keepsafe .wrap { position: relative; z-index: 1; }
.keepsafe-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: center; }
.keepsafe .promise {
  font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; letter-spacing: -0.025em;
  line-height: 1.32; margin: 22px 0 26px;
}
.keepsafe .promise b { color: var(--accent-text); font-weight: 600; }
.ks-points { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.ks-point { display: flex; gap: 14px; align-items: flex-start; }
.ks-point .tick {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 7px;
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.ks-point .tick svg { width: 12px; height: 12px; stroke: var(--accent-text); }
.ks-point .kp-t { font-size: 15.5px; }
.ks-point .kp-t b { font-weight: 620; }
.ks-point .kp-t span { color: var(--text-muted); }

/* KeepSafe channel diagram */
.channels {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: 30px;
}
.channels .device {
  border: 1.5px solid var(--accent-line); background: var(--accent-soft);
  border-radius: var(--r-lg); padding: 20px 22px; margin-bottom: 26px; position: relative;
}
.channels .device .dlabel {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-text); margin-bottom: 14px;
}
.channels .device .dgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.channels .device .dcell {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 11px 13px; font-size: 13px; display: flex; align-items: center; gap: 9px;
}
.channels .device .dcell .lock { color: var(--accent-text); }
.channels .device .stays {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-mono); font-size: 10.5px; color: var(--accent-text);
  border: 1px solid var(--accent-line); border-radius: var(--r-pill); padding: 4px 10px;
  background: var(--surface);
}
.channels .leaves-label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.channels .leaves-label::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.channels .chan { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.channels .chan:last-child { border-bottom: 0; padding-bottom: 0; }
.channels .chan .cn { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); padding-top: 2px; }
.channels .chan .ct { font-size: 13.5px; }
.channels .chan .ct b { font-weight: 620; }
.channels .chan .ct span { color: var(--text-muted); }
@media (max-width: 900px) { .keepsafe-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   WHY MAILROOM — value grid
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.why-cell { background: var(--surface); padding: 30px; }
.why-cell .wc-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 18px; }
.why-cell .wc-t { font-size: 19px; font-weight: 640; letter-spacing: -0.02em; margin-bottom: 9px; }
.why-cell .wc-d { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

/* product review fragment */
.reviewmock { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.reviewmock .rm-bar { display: flex; align-items: center; gap: 9px; padding: 14px 18px; border-bottom: 1px solid var(--border); background: var(--bg-tint); }
.reviewmock .rm-bar .wlogo { width: 16px; height: 16px; border-radius: 4px; background: linear-gradient(150deg, var(--accent-500), var(--accent-700)); }
.reviewmock .rm-bar .wt { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); }
.reviewmock .rm-bar .rm-sel { margin-left: auto; font-family: var(--font-mono); font-size: 11.5px; color: var(--accent-text); }
.reviewmock .rm-body { padding: 8px 0; }
.rrow { display: grid; grid-template-columns: 24px 1fr auto auto; gap: 14px; align-items: center; padding: 13px 20px; border-bottom: 1px solid var(--border); }
.rrow:last-child { border-bottom: 0; }
.rrow .rcheck { width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--accent-line); background: var(--accent-soft); position: relative; }
.rrow .rcheck.on { background: var(--accent-600); border-color: var(--accent-600); }
.rrow .rcheck.on::after { content: ""; position: absolute; left: 5px; top: 2px; width: 5px; height: 9px; border: solid var(--on-accent); border-width: 0 2px 2px 0; transform: rotate(43deg); }
.rrow .rsender { font-weight: 580; font-size: 14px; }
.rrow .rsub { font-size: 12.5px; color: var(--text-faint); margin-top: 2px; }
.rrow .rsize { font-family: var(--font-mono); font-size: 12.5px; color: var(--text-muted); }
.rrow .rbucket { font-family: var(--font-mono); font-size: 10.5px; padding: 3px 9px; border-radius: var(--r-pill); }
.rbucket.safe { background: var(--accent-soft); color: var(--accent-text); border: 1px solid var(--accent-line); }
.rbucket.review { background: var(--warn-soft); color: var(--warn-text); border: 1px solid var(--warn-line); }
.reviewmock .rm-foot { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-top: 1px solid var(--border); background: var(--surface-2); }
.reviewmock .rm-foot .rf-figure { font-family: var(--font-mono); font-size: 13px; color: var(--text-muted); }
.reviewmock .rm-foot .rf-figure b { color: var(--text); }
.reviewmock .rm-foot .rf-cta { margin-left: auto; font-size: 13px; font-weight: 560; color: var(--on-accent); background: var(--accent-600); padding: 9px 16px; border-radius: var(--r-sm); }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--surface-2); border-top: 1px solid var(--border); }
.trial-card {
  background: var(--surface); border: 1px solid var(--accent-line);
  border-radius: var(--r-xl); box-shadow: var(--shadow-md);
  padding: 30px 34px; margin-bottom: 26px;
  display: grid; grid-template-columns: 1.3fr 1fr auto; gap: 30px; align-items: center;
}
.trial-card .tc-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 12px; }
.trial-card .tc-t { font-size: 24px; font-weight: 680; letter-spacing: -0.03em; margin-bottom: 8px; }
.trial-card .tc-d { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.trial-meta { display: flex; flex-direction: column; gap: 10px; }
.trial-meta .tm { display: flex; align-items: center; gap: 10px; font-size: 13.5px; }
.trial-meta .tm .tmk { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); width: 78px; flex: 0 0 auto; letter-spacing: 0.04em; }
.trial-meta .tm b { font-weight: 620; }
@media (max-width: 860px) { .trial-card { grid-template-columns: 1fr; gap: 22px; } }

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tier { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; transition: border-color var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast); }
.tier:hover { border-color: var(--accent-line); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tier.featured { border-color: var(--accent-600); box-shadow: var(--shadow-md); position: relative; }
.tier.featured::before {
  content: "Most chosen"; position: absolute; top: -11px; left: 28px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--accent-600); color: var(--on-accent); padding: 4px 11px; border-radius: var(--r-pill);
}
.tier .t-name { font-size: 17px; font-weight: 640; letter-spacing: -0.02em; margin-bottom: 4px; }
.tier .t-accounts { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint); letter-spacing: 0.03em; margin-bottom: 22px; }
.tier .t-price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 4px; }
.tier .t-price .amt { font-size: 40px; font-weight: 700; letter-spacing: -0.035em; }
.tier .t-price .per { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
.tier .t-once { font-size: 12.5px; color: var(--text-faint); margin-bottom: 24px; }
.tier .t-feats { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 11px; }
.tier .t-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--text-muted); }
.tier .t-feats li svg { width: 14px; height: 14px; stroke: var(--accent-text); flex: 0 0 auto; margin-top: 3px; }
.tier .btn { margin-top: auto; }
.pricing-note { margin-top: 26px; text-align: center; font-size: 13px; color: var(--text-faint); font-family: var(--font-mono); letter-spacing: 0.01em; }

/* Future-proof callout */
.future-band { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 22px; }
.future-card {
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  border-radius: var(--r-lg); padding: 26px 28px;
}
.future-card .fc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.future-card .fc-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-text); font-weight: 500;
}
.future-card .fc-tag {
  margin-left: auto; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em;
  color: var(--text-muted); background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 4px 11px; white-space: nowrap;
}
.future-card .fc-tag.included { color: var(--accent-text); border-color: var(--accent-line); }
.future-card .fc-t { font-size: 19px; font-weight: 640; letter-spacing: -0.02em; margin-bottom: 9px; color: var(--text); }
.future-card .fc-d { font-size: 14px; color: var(--text-muted); line-height: 1.58; }
@media (max-width: 820px) { .future-band { grid-template-columns: 1fr; } }
@media (max-width: 820px) { .tiers { grid-template-columns: 1fr; } }

/* ============================================================
   ROADMAP
   ============================================================ */
.roadmap-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; }
.road-now { background: var(--accent-soft); border: 1px solid var(--accent-line); border-radius: var(--r-lg); padding: 28px; }
.road-now .rn-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 8px; }
.road-now .rn-tag .livedot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-600); box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent-600) 25%, transparent); }
.road-now .rn-t { font-size: 22px; font-weight: 660; letter-spacing: -0.025em; margin-bottom: 10px; }
.road-now .rn-d { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.road-later { display: flex; flex-direction: column; }
.road-later .rl-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 8px; }
.road-item { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.road-item:last-child { border-bottom: 0; }
.road-item .ri-mark { flex: 0 0 auto; width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--border-strong); margin-top: 6px; }
.road-item .ri-t { font-size: 16px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 4px; }
.road-item .ri-d { font-size: 13.5px; color: var(--text-muted); line-height: 1.5; }
.road-item .ri-when { margin-left: auto; font-family: var(--font-mono); font-size: 10.5px; color: var(--text-faint); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 4px 10px; white-space: nowrap; }
@media (max-width: 820px) { .roadmap-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-size: clamp(17px, 1.8vw, 20px); font-weight: 580;
  letter-spacing: -0.02em; color: var(--text);
  padding: 26px 44px 26px 0; position: relative;
  display: flex; align-items: center; gap: 16px;
}
.faq-q .fq-plus { position: absolute; right: 2px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; flex: 0 0 auto; }
.faq-q .fq-plus::before, .faq-q .fq-plus::after { content: ""; position: absolute; background: var(--text-muted); transition: transform var(--dur), opacity var(--dur); }
.faq-q .fq-plus::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq-q .fq-plus::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item.open .fq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease-out); }
.faq-a-inner { padding: 0 60px 28px 0; font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.faq-a-inner b { color: var(--text); font-weight: 600; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 360px at 50% 0%, var(--accent-soft), transparent 65%); opacity: 0.7; }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 18px; }
.cta-band .lede { margin: 0 auto 32px; max-width: 560px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { border-top: 1px solid var(--border); background: var(--surface-2); padding: 64px 0 40px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.foot-brand .logo { margin-bottom: 16px; }
.foot-brand p { font-size: 13.5px; color: var(--text-muted); max-width: 280px; line-height: 1.55; }
.foot-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin: 0 0 16px; font-weight: 500; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.foot-col a { font-size: 13.5px; color: var(--text-muted); transition: color var(--dur-fast); }
.foot-col a:hover { color: var(--text); }
.foot-legal { padding-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.foot-legal .legal-row { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-legal .legal-block { font-size: 12px; color: var(--text-faint); line-height: 1.55; flex: 1 1 240px; }
.foot-legal .legal-block b { color: var(--text-muted); font-weight: 600; }
.foot-base { display: flex; align-items: center; gap: 18px; margin-top: 14px; flex-wrap: wrap; }
.foot-base .copy { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint); }
.foot-base .spacer { flex: 1; }
.foot-base a { font-size: 12.5px; color: var(--text-faint); }
.foot-base a:hover { color: var(--text-muted); }
@media (max-width: 820px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; } .foot-brand { grid-column: 1 / -1; } }

/* ============================================================
   HERO HEADLINE TREATMENTS — exploration (refined / statement / quiet)
   Bold via weight + hierarchy, never via hyperbolic size.
   ============================================================ */
.hero-h { letter-spacing: -0.035em; line-height: 1.05; font-weight: 680; margin-bottom: 20px; max-width: 16ch; }
.hero[data-hero="refined"]   .hero-h { font-size: clamp(33px, 4.0vw, 50px); }
.hero[data-hero="statement"] .hero-h { font-size: clamp(38px, 4.8vw, 60px); font-weight: 770; letter-spacing: -0.045em; line-height: 1.0; max-width: 15ch; }
.hero[data-hero="quiet"]     .hero-h { font-size: clamp(27px, 3.0vw, 39px); font-weight: 600; letter-spacing: -0.028em; max-width: 18ch; }
.hero-h .soft { color: var(--text-muted); font-weight: inherit; }
.hero-h .key  { color: var(--accent-text); }
.hero[data-hero="statement"] .hero-h .key {
  background-image: linear-gradient(var(--accent-soft), var(--accent-soft));
  background-repeat: no-repeat; background-position: 0 88%; background-size: 100% 0.26em;
}

/* calm context line — replaces the alarmist red pressure box */
.hero-context {
  display: flex; gap: 11px; align-items: flex-start;
  max-width: 500px; margin: 0 0 26px;
  font-size: 13.5px; color: var(--text-muted); line-height: 1.55;
}
.hero-context .hc-mark {
  flex: 0 0 auto; margin-top: 1px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-text); border: 1px solid var(--accent-line); background: var(--accent-soft);
  border-radius: var(--r-pill); padding: 3px 9px;
}
.hero-context b { color: var(--text); font-weight: 600; }

/* calmer mock status line (was a red "pay pressure" alarm) */
.mock-context {
  display: flex; align-items: center; gap: 9px;
  margin: 14px 0 2px; font-size: 12.5px; line-height: 1.45; color: var(--text-muted);
}
.mock-context .mc-dot { flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--text-faint); }
.mock-context b { color: var(--text); font-weight: 620; }

/* ---------- "no card required" snow pill (hero) — snow stays inside the pill ---------- */
.snowchip { position: relative; overflow: hidden; background: var(--accent-soft); color: var(--accent-text); border-color: var(--accent-line); }
.snowchip .snow-field { position: absolute; left: 0; right: 0; top: -40px; bottom: 0; z-index: 0; pointer-events: none; }
.snowchip > :not(.snow-field) { position: relative; z-index: 1; }
.snowchip .pt { position: absolute; top: 0; border-radius: 50%; background: var(--accent-500); opacity: 0; will-change: transform, opacity; animation: psnow-chip linear infinite; }
@keyframes psnow-chip {
  0%   { transform: translate(0, -4px); opacity: 0; }
  16%  { opacity: 0.85; }
  78%  { opacity: 0.85; }
  100% { transform: translate(var(--dx, 6px), var(--fall, 70px)); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .snowchip .pt { animation: none !important; opacity: 0 !important; } }

/* ============================================================
   HERO ENTRANCE — self-completing, always ends visible
   ============================================================ */
.hero-in { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .hero-in { animation: hero-rise 0.6s var(--ease-out) both; animation-delay: var(--d, 0ms); }
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }
