:root {
  --bg: #05060a;
  --bg-2: #0a0c14;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.16);
  --text: #eef1f8;
  --muted: #8a93a8;
  --accent: #38e8ff;
  --accent-2: #7c5cff;
  --accent-3: #b4ff5c;
  --grad: linear-gradient(100deg, var(--accent) 0%, var(--accent-2) 60%, #ff5ce1 100%);
  --radius: 18px;
  --font: "Space Grotesk", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.03em; margin: 0; font-weight: 600; }
p { margin: 0; }
::selection { background: var(--accent); color: var(--bg); }

.container { width: min(1200px, 100% - 32px); margin-inline: auto; }
.muted { color: var(--muted); }
.small { font-size: 13px; }

/* ---------- ambient layers ---------- */
.grid-bg {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 75%);
  opacity: 0.5;
}
.noise {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%); z-index: 50;
  width: min(1200px, 100% - 24px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 10px 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 10, 16, 0.55);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  transition: background 0.3s, border-color 0.3s;
}
.nav.scrolled { background: rgba(8, 10, 16, 0.85); border-color: var(--line-2); }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 19px; letter-spacing: -0.02em; }
.brand b { font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-mark { width: 26px; height: 26px; color: var(--text); }
.nav-links { display: flex; gap: 28px; font-size: 15px; color: var(--muted); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

/* ---------- buttons ---------- */
.btn {
  --pad: 14px 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad); border-radius: 999px; border: 1px solid transparent;
  font: 600 15px/1 var(--font); letter-spacing: -0.01em; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  color: var(--text); background: none; white-space: nowrap;
}
.btn:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px;
}
.btn-primary {
  background: var(--text); color: var(--bg);
  box-shadow: 0 0 0 1px rgba(255,255,255,.2), 0 8px 30px -8px rgba(56, 232, 255, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,255,255,.3), 0 14px 40px -8px rgba(56, 232, 255, 0.8); }
.btn-ghost { border-color: var(--line-2); background: var(--surface); }
.btn-ghost:hover { border-color: var(--accent); background: var(--surface-2); transform: translateY(-2px); }
.btn-sm { --pad: 10px 18px; font-size: 14px; }
.btn-lg { --pad: 18px 32px; font-size: 17px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; pointer-events: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: grid; align-items: center;
  padding: 140px 0 100px; overflow: hidden; isolation: isolate;
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.hero-vignette {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 75% 45%, transparent 0%, rgba(5,6,10,.35) 60%, var(--bg) 100%),
    linear-gradient(90deg, var(--bg) 0%, rgba(5,6,10,.75) 35%, transparent 65%),
    linear-gradient(0deg, var(--bg) 0%, transparent 25%);
}
.hero::before {
  content: ""; position: absolute; z-index: -3; width: 900px; height: 900px; right: -200px; top: -100px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.25), transparent 60%);
  filter: blur(40px);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 13px/1 var(--mono); text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted);
  padding: 9px 14px; border: 1px solid var(--line-2); border-radius: 999px; background: var(--surface);
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-3); box-shadow: 0 0 0 0 rgba(180,255,92,.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(180,255,92,0); } 100% { box-shadow: 0 0 0 0 rgba(180,255,92,0); } }
.hero-title { font-size: clamp(52px, 9vw, 128px); font-weight: 600; letter-spacing: -0.055em; line-height: 0.95; margin: 28px 0 28px; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; background-size: 200% 100%; animation: shimmer 8s linear infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
.hero-sub { max-width: 560px; font-size: clamp(17px, 1.6vw, 20px); color: #b6bdd0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 0; margin: 56px 0 0; border: 1px solid var(--line); border-radius: 14px; width: fit-content; background: rgba(8,10,16,.5); backdrop-filter: blur(8px); }
.hero-stats div { padding: 16px 24px; border-left: 1px solid var(--line); }
.hero-stats div:first-child { border-left: 0; }
.hero-stats dt { font: 500 11px/1 var(--mono); text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.hero-stats dd { margin: 8px 0 0; font-size: 20px; font-weight: 600; }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; translate: -50% 0; width: 26px; height: 42px; border: 1.5px solid var(--line-2); border-radius: 14px; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px; background: var(--accent); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- ticker ---------- */
.ticker { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 16px 0; }
.ticker-track { display: flex; gap: 56px; width: max-content; animation: ticker 40s linear infinite; font: 500 14px/1 var(--mono); color: var(--muted); }
.ticker-track span::before { content: "●"; color: var(--accent); margin-right: 14px; font-size: 9px; vertical-align: 2px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: clamp(80px, 12vw, 150px) 0 0; }
.section-head { max-width: 780px; margin-bottom: 56px; }
.kicker { font: 500 13px/1 var(--mono); text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 20px; }
.section-head h2, .mission h2, .final h2 { font-size: clamp(34px, 5vw, 60px); }
.lead { margin-top: 20px; color: var(--muted); font-size: 18px; max-width: 620px; }

.card, .tile, .plan, .step, .faq details, .calc, .mission, .final {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}

/* why */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { padding: 32px; min-width: 0; position: relative; overflow: hidden; }
.card h3 { font-size: 22px; margin: 28px 0 12px; }
.card p { color: var(--muted); }
.card-num { font: 500 13px/1 var(--mono); width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 10px; color: var(--muted); }
.card-accent { border-color: rgba(56,232,255,.35); background: linear-gradient(160deg, rgba(56,232,255,.12), rgba(124,92,255,.08) 60%, transparent); }
.card-accent .card-num { color: var(--accent); border-color: var(--accent); }

/* bento */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; perspective: 1200px; }
.tile { padding: 28px; min-width: 0; position: relative; overflow: hidden; transform-style: preserve-3d; transition: border-color .3s, transform .4s var(--ease); will-change: transform; }
.tile:hover { border-color: var(--line-2); }
.tile h3 { font-size: 20px; margin: 20px 0 10px; }
.tile p { color: var(--muted); font-size: 15px; }
.tile-lg { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; }
.tile-lg h3 { font-size: 30px; margin-top: 0; }
.tile-lg p { font-size: 17px; max-width: 460px; }
.tile-wide { grid-column: span 4; display: grid; grid-template-columns: auto 1fr 1fr; align-items: center; gap: 28px; }
.tile-wide h3 { margin-top: 0; }
.tile-glow { position: absolute; width: 420px; height: 420px; right: -140px; top: -160px; background: radial-gradient(circle, rgba(56,232,255,.22), transparent 65%); pointer-events: none; }
.tile::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .3s;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(56,232,255,.12), transparent 50%);
}
.tile:hover::after { opacity: 1; }
.tile-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--line-2); background: var(--surface); }
.tile-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.code {
  margin: auto 0 0; padding: 20px; padding-top: 44px; border-radius: 12px; border: 1px solid var(--line);
  background: rgba(0,0,0,.45); font: 13px/1.7 var(--mono); color: #c9d1e6; overflow-x: auto; position: relative;
}
.code::before { content: ""; position: absolute; top: 16px; left: 18px; width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; box-shadow: 16px 0 #febc2e, 32px 0 #28c840; }
.code .c { color: #5d6780; } .code .k { color: var(--accent-2); filter: brightness(1.4); } .code .s { color: var(--accent-3); }
.meter { height: 10px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.meter span { display: block; height: 100%; --w: 64%; width: var(--w); background: var(--grad); border-radius: inherit; animation: meter 3s var(--ease) infinite alternate; }
@keyframes meter { from { width: 20%; } to { width: var(--w); } }

/* steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: s; }
.step { padding: 32px; position: relative; }
.step-n { font: 500 56px/1 var(--mono); letter-spacing: -0.04em; background: linear-gradient(180deg, var(--line-2), transparent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h3 { font-size: 22px; margin: 24px 0 10px; }
.step p { color: var(--muted); }
.step:not(:last-child)::after { content: ""; position: absolute; top: 58px; right: -17px; width: 18px; height: 1px; background: var(--accent); }

/* pricing */
.calc { padding: 28px 32px; margin-bottom: 20px; }
.calc label { font-weight: 500; }
.calc-row { display: flex; align-items: center; gap: 24px; margin-top: 16px; }
.calc output { font: 500 18px/1 var(--mono); min-width: 170px; text-align: right; color: var(--accent); }
.calc-hint { margin-top: 10px; color: var(--muted); font-size: 15px; }
.calc-hint b { color: var(--text); }
input[type="range"] { flex: 1; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--accent) var(--p, 30%), var(--surface-2) var(--p, 30%)); cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--text); box-shadow: 0 0 0 4px rgba(56,232,255,.3), 0 0 20px var(--accent); }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border: 0; border-radius: 50%; background: var(--text); box-shadow: 0 0 0 4px rgba(56,232,255,.3), 0 0 20px var(--accent); }

.pricing { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.plan { padding: 26px 22px; min-width: 0; display: flex; flex-direction: column; position: relative; transition: transform .35s var(--ease), border-color .3s, box-shadow .3s; }
.plan:hover { transform: translateY(-6px); border-color: var(--line-2); }
.plan h3 { font-size: 17px; font-weight: 500; color: var(--muted); }
.price { margin: 18px 0 6px; display: flex; align-items: baseline; gap: 2px; }
.price .cur { font-size: 22px; font-weight: 500; }
.price .amt { font-size: 44px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.price .per { color: var(--muted); font-size: 14px; margin-left: 4px; }
.calls { font: 13px/1.4 var(--mono); color: var(--muted); padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.calls b { color: var(--text); font-weight: 500; }
.plan ul { list-style: none; padding: 0; margin: 18px 0 24px; display: grid; gap: 10px; font-size: 14px; color: #b6bdd0; flex: 1; }
.plan li { display: flex; gap: 10px; }
.plan li::before { content: ""; flex: none; width: 14px; height: 14px; margin-top: 4px; border-radius: 4px; background: rgba(56,232,255,.15); box-shadow: inset 0 0 0 1px rgba(56,232,255,.5); }
.plan-featured { border-color: transparent; background: linear-gradient(var(--bg-2), var(--bg-2)) padding-box, var(--grad) border-box; border: 1px solid transparent; box-shadow: 0 30px 80px -30px rgba(124,92,255,.6); }
.plan-featured h3 { color: var(--text); }
.plan-ent { background: linear-gradient(160deg, rgba(124,92,255,.14), transparent 60%); }
.plan.is-recommended { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 20px 60px -20px rgba(56,232,255,.6); transform: translateY(-6px); }
.plan-featured.is-recommended { border-color: transparent; }
.badge { position: absolute; top: -11px; left: 22px; font: 500 11px/1 var(--mono); text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 10px; border-radius: 999px; background: var(--grad); color: var(--bg); }
.fineprint { margin-top: 20px; color: var(--muted); font-size: 13px; }

/* mission */
.mission { padding: clamp(32px, 5vw, 64px); display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; position: relative; overflow: hidden; }
.mission::before { content: ""; position: absolute; width: 600px; height: 600px; left: -200px; bottom: -300px; background: radial-gradient(circle, rgba(124,92,255,.25), transparent 65%); pointer-events: none; }
.mission h2 { font-size: clamp(28px, 3.6vw, 44px); }
.mission-copy > p:last-child { margin-top: 24px; color: var(--muted); max-width: 540px; }
.mission-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.mission-list li { background: var(--bg-2); padding: 18px 22px; display: flex; justify-content: space-between; gap: 16px; }
.mission-list span { color: var(--muted); font-size: 15px; text-align: right; }

/* faq */
.faq { display: grid; gap: 10px; max-width: 860px; }
.faq details { padding: 0 26px; transition: border-color .3s; }
.faq details[open] { border-color: var(--line-2); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 0; font-weight: 500; font-size: 18px; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font: 400 24px/1 var(--mono); color: var(--accent); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 22px; color: var(--muted); max-width: 680px; }

/* final */
.final { text-align: center; padding: clamp(56px, 8vw, 110px) 24px; position: relative; overflow: hidden; }
.final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(56,232,255,.25), transparent 70%); pointer-events: none; }
.final p { color: var(--muted); margin: 16px 0 36px; font-size: 18px; }

/* footer */
.footer { padding: 100px 0 48px; display: grid; gap: 12px; justify-items: start; }
.footer .brand { margin-bottom: 8px; }

/* ---------- dialog ---------- */
.signup {
  width: min(620px, 100% - 24px); max-height: calc(100svh - 24px); padding: 0; border: 1px solid var(--line-2); border-radius: 22px;
  background: linear-gradient(180deg, #0f1220, #080a12); color: var(--text); overflow: auto;
  box-shadow: 0 40px 120px -20px rgba(124,92,255,.5), 0 0 0 1px rgba(56,232,255,.08);
}
.signup::backdrop { background: rgba(3, 4, 8, 0.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.signup[open] { animation: pop .35s var(--ease); }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(.97); } }
.signup form { position: relative; }
.signup-body, .signup-done { padding: clamp(24px, 5vw, 40px); }
.signup h2 { font-size: 32px; margin-bottom: 8px; }
.close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--surface); color: var(--text); font-size: 22px; line-height: 1; cursor: pointer; }
.close:hover { border-color: var(--accent); }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0 18px; }
.fields label { display: grid; gap: 7px; font-size: 13px; font-weight: 500; color: #b6bdd0; }
.fields .full { grid-column: 1 / -1; }
.opt { color: var(--muted); font-weight: 400; }
.fields input:not([type="checkbox"]), .fields select, .fields textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line-2); background: rgba(0,0,0,.35);
  color: var(--text); font: 15px/1.4 var(--font); transition: border-color .2s, box-shadow .2s;
}
.fields textarea { resize: vertical; min-height: 80px; }
.fields select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 18px) 55%, calc(100% - 13px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.fields select option { background: #0f1220; }
.fields input:focus, .fields select:focus, .fields textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(56,232,255,.15); outline: none; }
.fields [aria-invalid="true"] { border-color: #ff5c7a !important; }
.check { display: flex !important; grid-template-columns: none; align-items: flex-start; gap: 12px !important; font-weight: 400 !important; color: var(--muted) !important; font-size: 14px !important; cursor: pointer; }
.check input { flex: none; width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--accent); }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-msg { min-height: 22px; margin-bottom: 12px; font-size: 14px; color: #ff8aa0; }
.signup-done { text-align: center; display: grid; justify-items: center; gap: 12px; padding-block: 64px; }
.signup-done[hidden] { display: none; }
.tick { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; background: rgba(180,255,92,.12); box-shadow: 0 0 0 1px rgba(180,255,92,.5), 0 0 40px rgba(180,255,92,.3); margin-bottom: 12px; }
.tick svg { width: 34px; fill: none; stroke: var(--accent-3); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 30; stroke-dashoffset: 30; animation: draw .6s .15s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.signup-done .btn { margin-top: 12px; }

/* ---------- reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.plan.reveal.in:hover { transform: translateY(-6px); }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .pricing { grid-template-columns: repeat(3, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile-wide { grid-column: span 2; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .why-grid, .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .mission { grid-template-columns: 1fr; }
  .tile-wide { grid-template-columns: 1fr; }
  .hero-vignette { background: linear-gradient(0deg, var(--bg) 0%, rgba(5,6,10,.55) 60%, rgba(5,6,10,.3) 100%); }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .pricing { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr; }
  .tile-lg, .tile-wide { grid-column: auto; grid-row: auto; }
  .hero-stats { width: 100%; }
  .hero-stats div { flex: 1 1 33%; padding: 14px; }
  .hero-stats dd { font-size: 16px; }
  .calc { padding: 22px; }
  .calc-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .calc output { text-align: left; }
  .fields { grid-template-columns: 1fr; }
  .brand span { font-size: 17px; }
}
@media (max-width: 420px) {
  .pricing { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
.link { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.link:hover { color: var(--text); }
