:root {
  --paper: #f4f8fd;
  --panel: #ffffff;
  --tint: #eef4fe;
  --navy: #0f2547;
  --navy-2: #17356b;
  --ink: #0f1c2e;
  --ink-soft: #48566b;
  --ink-faint: #5c6a80;
  --line: #e2e9f4;
  --line-strong: #cbd7ea;
  --accent: #1f6ae6;
  --accent-deep: #1653b8;
  --accent-wash: #e9f1ff;
  --accent-line: #c2d8fb;
  --gold: #f5a623;
  --ok: #12996a;
  --fail: #d3453b;
  --ui: "Poppins", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Code", "Consolas", monospace;
  --maxw: 1200px;
  --gutter: 24px;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 26px;
  --sh-1: 0 1px 2px rgba(15,28,46,.05), 0 6px 20px rgba(15,28,46,.06);
  --sh-2: 0 10px 30px rgba(15,28,46,.12);
  --sh-navy: 0 18px 44px rgba(15,37,71,.28);
}

* { box-sizing: border-box; }

html {
  color-scheme: light;
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; }

::selection { background: var(--accent-wash); color: var(--accent-deep); }

:focus-visible { outline: 3px solid var(--accent-line); outline-offset: 2px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,248,253,.8);
  -webkit-backdrop-filter: saturate(1.5) blur(16px);
  backdrop-filter: saturate(1.5) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.9); box-shadow: 0 1px 0 rgba(15,28,46,.03); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: -0.02em; color: var(--ink); }
.brand .mark { width: 26px; height: 26px; fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.brand b { font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 30px; font-size: 15.5px; font-weight: 500; color: var(--ink-soft); }
.nav-links a { transition: color 140ms ease; }
.nav-links a:hover { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  font-family: var(--ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: 12px 20px;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 16px rgba(31,106,230,.28); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(31,106,230,.34); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: var(--panel); color: var(--accent-deep); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--sh-1); }
.btn-lg { padding: 16px 28px; font-size: 16.5px; border-radius: 12px; }
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nav .btn { padding: 10px 20px; font-size: 14.5px; }

section { position: relative; }
.band { padding: clamp(64px, 8vw, 108px) 0; }
.band-tight { padding: clamp(48px, 6vw, 84px) 0; }
.coverage, .closer { padding-left: var(--gutter); padding-right: var(--gutter); }

.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 58px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
h2.title { font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; text-wrap: balance; }
.lede { margin-top: 18px; font-size: clamp(1.05rem, 1.5vw, 1.25rem); font-weight: 400; color: var(--ink-soft); line-height: 1.55; max-width: 62ch; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }

.hero { padding-top: clamp(52px, 7vw, 92px); padding-bottom: clamp(60px, 8vw, 104px); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.hero-copy { max-width: 560px; }
h1.hero-title {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.03;
  text-wrap: balance;
  max-width: 15ch;
  color: var(--ink);
}
.hero-sub { margin-top: 24px; font-size: clamp(1.08rem, 1.5vw, 1.3rem); font-weight: 400; line-height: 1.55; color: var(--ink-soft); max-width: 46ch; }
.hero-cta { margin-top: 34px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: 14.5px; color: var(--ink-faint); display: flex; align-items: center; gap: 9px; font-weight: 500; }
.hero-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(18,153,106,.15); }

.hero-stage { position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.hero-stage::before {
  content: "";
  position: absolute;
  inset: -8% -6% 6% -6%;
  background: radial-gradient(60% 55% at 60% 40%, rgba(31,106,230,.16), transparent 70%);
  filter: blur(10px);
  z-index: 0;
}

.pane {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-2);
}
.pane-bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.pane-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; letter-spacing: -0.015em; }
.pane-brand .mark { width: 18px; height: 18px; fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.count {
  font-family: var(--mono); font-size: 11px; font-variant-numeric: tabular-nums;
  color: var(--ink-soft); background: var(--tint);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 3px 10px;
}
.count b { color: var(--ink); font-weight: 600; }

.pane-context { display: flex; align-items: center; gap: 7px; padding: 10px 16px; font-size: 12px; color: var(--ink-soft); border-bottom: 1px solid var(--line); background: var(--tint); }
.pane-context .host { color: var(--ink); font-weight: 600; }
.pane-context .sep { color: var(--ink-faint); }

.pane-list { padding: 8px; display: flex; flex-direction: column; gap: 5px; min-height: 236px; }
.prow {
  position: relative; display: grid; grid-template-columns: 38px 1fr auto 28px;
  align-items: center; gap: 12px; padding: 11px; border-radius: 12px;
  background: var(--panel); border: 0; width: 100%; text-align: left; overflow: hidden;
  transition: background 130ms ease;
}
.prow:hover, .prow[data-state="busy"] { background: var(--accent-wash); }
.prow .kind { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: var(--tint); border: 1px solid var(--line); color: var(--ink-soft); }
.prow:hover .kind, .prow[data-state="busy"] .kind { border-color: var(--accent-line); color: var(--accent-deep); }
.prow .kind svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.prow .meta { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.prow .quality { font-family: var(--mono); font-variant-numeric: tabular-nums; font-size: 15px; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap; color: var(--ink); }
.prow .quality .container { color: var(--ink-soft); font-weight: 500; margin-left: 7px; }
.prow .sub { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--ink-soft); white-space: nowrap; }
.tag { font-size: 11px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--accent-deep); background: var(--accent-wash); border: 1px solid var(--accent-line); border-radius: 6px; padding: 2px 7px; }
.tag.muted { color: var(--ink-soft); background: var(--tint); border-color: var(--line-strong); }
.prow .size { font-family: var(--mono); font-variant-numeric: tabular-nums; font-size: 12px; color: var(--ink-soft); white-space: nowrap; }
.prow .dl { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9px; color: var(--ink-faint); transition: color 130ms ease, background 130ms ease; }
.prow:hover .dl { color: #fff; background: var(--accent); }
.prow .dl svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.prow[data-state="done"] .dl { color: var(--accent-deep); background: transparent; }
.prow[data-state="done"] .size { color: var(--accent-deep); font-weight: 600; }
.prow .progress { position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; transform: scaleX(0); transform-origin: left; background: var(--accent); transition: transform 200ms cubic-bezier(0.16,1,0.3,1); }

.sk-row { height: 60px; border-radius: 12px; background: linear-gradient(100deg, var(--panel) 30%, var(--tint) 50%, var(--panel) 70%); background-size: 300% 100%; animation: shimmer 1.2s ease-in-out infinite; }
@keyframes shimmer { from { background-position: 180% 0; } to { background-position: -80% 0; } }

.pane-foot { padding: 12px 16px; font-size: 11.5px; color: var(--ink-faint); text-align: center; border-top: 1px solid var(--line); font-weight: 500; }
.stage-caption { position: relative; z-index: 1; font-size: 13px; color: var(--ink-faint); font-weight: 500; }

.coverage .wrap {
  background-color: var(--navy);
  background-image: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--r-lg);
  padding: 60px 48px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  box-shadow: var(--sh-navy);
  max-width: var(--maxw);
}
.coverage-cap { font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: rgba(255,255,255,.82); text-align: center; max-width: 60ch; line-height: 1.5; font-weight: 400; }
.coverage-cap b { color: #fff; font-weight: 700; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 920px; }
.chip { font-family: var(--mono); font-size: 13px; font-variant-numeric: tabular-nums; color: rgba(255,255,255,.78); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 9px; padding: 8px 13px; letter-spacing: -0.01em; }
.chip.live { color: #fff; background: rgba(31,106,230,.28); border-color: rgba(120,170,255,.5); font-weight: 500; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  display: flex; flex-direction: column; gap: 0;
  background: var(--panel); border-radius: var(--r);
  padding: 30px 28px; box-shadow: var(--sh-1);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.step-n {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px;
  background: var(--accent-wash); color: var(--accent-deep);
  font-family: var(--mono); font-variant-numeric: tabular-nums; font-size: 20px; font-weight: 700;
  margin-bottom: 20px;
}
.step-body h2, .step-body h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.step-body p { margin-top: 12px; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.55; }
.step-visual { margin-top: 20px; border: 1px dashed var(--line-strong); border-radius: 12px; background: var(--tint); padding: 16px; min-height: 74px; display: flex; align-items: center; justify-content: center; }

.manifest { border-radius: var(--r); background: var(--panel); overflow: hidden; box-shadow: var(--sh-1); }
.manifest-row { display: grid; grid-template-columns: 240px 1fr; gap: 24px; padding: 24px 30px; border-bottom: 1px solid var(--line); align-items: baseline; }
.manifest-row:last-child { border-bottom: 0; }
.manifest-key { font-family: var(--mono); font-size: 13px; letter-spacing: 0.01em; text-transform: uppercase; color: var(--accent-deep); font-weight: 500; }
.manifest-val { font-size: 1.1rem; color: var(--ink); font-weight: 600; letter-spacing: -0.01em; line-height: 1.5; }
.manifest-val span { color: var(--ink-soft); font-weight: 400; }

.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.tier {
  display: flex; flex-direction: column; background: var(--panel);
  border-radius: var(--r); padding: 32px 28px; box-shadow: var(--sh-1);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.tier.feature { border: 0; background-color: var(--navy); background-image: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; box-shadow: var(--sh-navy); }
.tier.feature:hover { transform: translateY(-6px); }
.tier-name { font-size: 15.5px; font-weight: 600; letter-spacing: 0.01em; color: var(--ink-soft); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tier.feature .tier-name { color: rgba(255,255,255,.85); }
.tier-badge { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-soft); background: var(--tint); border: 1px solid var(--line-strong); border-radius: 6px; padding: 3px 9px; }
.tier.feature .tier-badge { color: var(--navy); background: var(--gold); border-color: transparent; font-weight: 700; }
.tier-price { margin-top: 18px; display: flex; align-items: baseline; gap: 7px; }
.tier-price .amt { font-family: var(--mono); font-variant-numeric: tabular-nums; font-size: 44px; font-weight: 700; letter-spacing: -0.03em; color: var(--ink); }
.tier.feature .tier-price .amt { color: #fff; }
.tier-price .per { font-size: 14px; color: var(--ink-soft); }
.tier.feature .tier-price .per { color: rgba(255,255,255,.7); }
.tier-note { margin-top: 6px; font-size: 13px; color: var(--ink-faint); min-height: 18px; }
.tier.feature .tier-note { color: rgba(255,255,255,.62); }
.tier ul { margin-top: 24px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.tier li { display: flex; gap: 11px; font-size: 14.5px; color: var(--ink); line-height: 1.45; }
.tier.feature li { color: rgba(255,255,255,.92); }
.tier li svg { flex: none; width: 19px; height: 19px; margin-top: 1px; fill: none; stroke: var(--accent); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.tier.feature li svg { stroke: #7fb0ff; }
.tier li.off { color: var(--ink-faint); }
.tier li.off svg { stroke: var(--line-strong); }
.tier .btn { margin-top: 28px; width: 100%; }
.tier.feature .btn-primary { background: #fff; color: var(--accent-deep); box-shadow: none; }
.tier.feature .btn-primary:hover { background: var(--accent-wash); }
.pay-note { margin-top: 26px; text-align: center; font-size: 14px; color: var(--ink-faint); }

.launch-banner { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; max-width: 760px; margin: 0 auto clamp(28px, 4vw, 44px); padding: 14px 22px; background: var(--accent-wash); border: 1px solid var(--accent-line); border-radius: 12px; color: var(--accent-deep); font-size: 14.5px; font-weight: 500; text-align: center; }
.launch-tag { flex: none; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; background: var(--accent); border-radius: 6px; padding: 3px 9px; }
.tier-was { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.tier-was s { font-family: var(--mono); font-size: 16px; color: var(--ink-faint); text-decoration: line-through; }
.tier.feature .tier-was s { color: rgba(255,255,255,.55); }
.tier-save { font-size: 11px; font-weight: 700; letter-spacing: 0.02em; color: #0b6b48; background: color-mix(in srgb, var(--ok) 14%, #fff); border-radius: 6px; padding: 2px 8px; }
.tier.feature .tier-save { color: #c9f5e0; background: rgba(18,153,106,.3); }
.tier-price { margin-top: 4px; }

.checkout { max-width: 560px; margin: 0 auto; padding: clamp(40px, 6vw, 80px) 0 92px; }
.checkout .back { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 500; color: var(--ink-soft); margin-bottom: 22px; }
.checkout .back:hover { color: var(--accent); }
.co-card { background: var(--panel); border-radius: var(--r); box-shadow: var(--sh-1); padding: 40px 36px; }
.co-h { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; letter-spacing: -0.03em; }
.co-plan { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-top: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.co-plan-name { font-size: 1.15rem; font-weight: 700; }
.co-plan-sub { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.co-price { text-align: right; white-space: nowrap; }
.co-price .amt { font-family: var(--mono); font-variant-numeric: tabular-nums; font-size: 36px; font-weight: 700; letter-spacing: -0.03em; }
.co-price .per { font-size: 13px; color: var(--ink-soft); }
.co-price .was { display: block; font-family: var(--mono); font-size: 13px; color: var(--ink-faint); text-decoration: line-through; }
.co-field { margin-top: 24px; }
.co-label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 9px; }
.co-input { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line-strong); background: var(--panel); font: 500 1rem var(--ui); color: var(--ink); transition: border-color 150ms ease, box-shadow 150ms ease; }
.co-input::placeholder { color: var(--ink-faint); }
.co-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-wash); }
.co-input.invalid { border-color: var(--fail); box-shadow: 0 0 0 3px color-mix(in srgb, var(--fail) 16%, transparent); }
.co-hint { margin-top: 8px; font-size: 12.5px; color: var(--ink-soft); line-height: 1.45; }
.co-hint.error { color: var(--fail); }
.co-methods { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.co-method { display: flex; align-items: center; gap: 16px; width: 100%; padding: 18px 20px; border-radius: 13px; border: 1.5px solid var(--line-strong); background: var(--panel); text-align: left; transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease; }
.co-method:hover { border-color: var(--accent); box-shadow: var(--sh-1); transform: translateY(-2px); }
.co-method.primary { border-color: var(--accent); background: var(--accent-wash); }
.co-method .ico { flex: none; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: #fff; border: 1px solid var(--line); color: var(--accent-deep); }
.co-method .ico svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.co-method .m-body { flex: 1; min-width: 0; }
.co-method .m-title { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.05rem; }
.co-method .m-sub { font-size: 12.5px; color: var(--ink-soft); margin-top: 3px; line-height: 1.4; }
.co-fast { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: #fff; background: var(--accent); border-radius: 5px; padding: 2px 7px; }
.co-arrow { flex: none; color: var(--ink-faint); }
.co-method:hover .co-arrow { color: var(--accent); }
.co-arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.co-trust { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; font-size: 13px; color: var(--ink-soft); }
.co-trust span { display: inline-flex; align-items: center; gap: 6px; }
.co-trust svg { width: 15px; height: 15px; fill: none; stroke: var(--ok); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.co-note { margin-top: 22px; font-size: 13.5px; color: var(--ink-soft); text-align: center; line-height: 1.55; }

.trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.trust-item {
  display: flex; flex-direction: column; gap: 14px; padding: 28px 26px;
  background: var(--panel); border-radius: var(--r);
  box-shadow: var(--sh-1); transition: transform 200ms ease, box-shadow 200ms ease;
}
.trust-item:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.trust-item svg { flex: none; width: 52px; height: 52px; padding: 13px; background: var(--accent-wash); border-radius: 14px; fill: none; stroke: var(--accent); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.trust-item h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; }
.trust-item p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.5; }

.closer .wrap {
  background-color: var(--navy);
  background-image: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--r-lg); padding: 72px 48px;
  text-align: center; box-shadow: var(--sh-navy);
}
.closer .btn-primary { box-shadow: none; }
.closer h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; text-wrap: balance; color: #fff; }
.closer .lede { margin: 18px auto 0; color: rgba(255,255,255,.8); }
.closer .hero-cta { justify-content: center; margin-top: 32px; }
.closer .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.closer .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: #fff; }

.footer { border-top: 1px solid var(--line); background: var(--panel); padding: 60px 0 40px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer .brand { font-size: 18px; }
.footer-tag { margin-top: 14px; font-size: 14.5px; color: var(--ink-soft); max-width: 30ch; }
.footer-cols { display: flex; gap: clamp(44px, 6vw, 96px); flex-wrap: wrap; }
.footer-col h3 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); font-weight: 600; margin-bottom: 15px; }
.footer-col a { display: block; font-size: 14.5px; color: var(--ink-soft); padding: 6px 0; transition: color 130ms ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--ink-faint); }

.doc { max-width: 760px; margin: 0 auto; padding: clamp(48px, 7vw, 92px) 0 92px; }
.doc h1 { font-size: 44px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.06; }
.doc .updated { margin-top: 14px; font-family: var(--mono); font-size: 13px; color: var(--ink-faint); }
.doc h2 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin-top: 46px; }
.doc p, .doc li { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.65; margin-top: 16px; max-width: 68ch; }
.doc ul { margin-top: 8px; padding-left: 0; }
.doc li { position: relative; padding-left: 26px; }
.doc li::before { content: ""; position: absolute; left: 4px; top: 13px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.doc a.link { color: var(--accent); font-weight: 500; }
.doc a.link:hover { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.callout { margin-top: 24px; padding: 20px 22px; background: var(--accent-wash); border: 1px solid var(--accent-line); border-radius: var(--r-sm); color: var(--accent-deep); font-size: 1rem; line-height: 1.55; }

.reveal { opacity: 1; transform: none; }

::-webkit-scrollbar { width: 13px; height: 13px; }
::-webkit-scrollbar-thumb { background: var(--line-strong); border: 4px solid var(--paper); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-faint); }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { max-width: none; }
  h1.hero-title { max-width: 18ch; }
  .hero-stage { align-items: flex-start; }
  .steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .manifest-row { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 620px) {
  .nav-links { display: none; }
  body { font-size: 16px; }
  .nav-inner { height: 60px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { flex: 1 1 auto; }
  .footer-top { flex-direction: column; gap: 32px; }
  .doc h1 { font-size: 32px; }
  .coverage .wrap, .closer .wrap { border-radius: var(--r); padding: 38px 24px; }
  .co-card { padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sk-row { animation: none; }
  .prow .progress { transition: none; }
  .btn, .step, .tier, .trust-item { transition: none; }
  .btn:hover, .step:hover, .tier:hover, .trust-item:hover { transform: none; }
  * { animation-duration: 0.001ms !important; }
}
