/* UBA Studio — shared styles. Adapted from the Tempo editorial layout. */
:root {
  --bg: oklch(0.155 0.008 60);
  --bg-2: oklch(0.19 0.01 60);
  --card: oklch(0.215 0.012 60);
  --line: oklch(0.3 0.014 60);
  --text: oklch(0.96 0.006 70);
  --muted: oklch(0.71 0.012 65);
  --acc: oklch(0.8 0.15 70);
  --acc-deep: oklch(0.72 0.15 60);
  --ink: oklch(0.22 0.04 60);
  --danger: oklch(0.62 0.17 25);
  --sans: "Space Grotesk", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; line-height: 1.5; overflow-x: hidden; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }
a { color: inherit; text-decoration: none; }
.acc { color: var(--acc); }
.tag { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--acc); }

.btn { display: inline-block; font-family: var(--sans); font-weight: 700; font-size: 15px; cursor: pointer; border: none; border-radius: 8px; padding: 14px 24px; transition: transform .14s ease, box-shadow .2s ease, background .2s, border-color .2s, color .2s; text-align: center; }
.btn-acc { background: var(--acc); color: var(--ink); }
.btn-acc:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px oklch(0.8 0.15 70 / 0.4); }
.btn-acc:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-line { background: transparent; border: 1px solid var(--line); color: var(--text); }
.btn-line:hover { border-color: var(--acc); color: var(--acc); }

/* NAV */
nav { position: sticky; top: 0; z-index: 50; background: color-mix(in oklch, var(--bg) 84%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: flex-end; gap: 12px; }
.logo img { height: 32px; width: auto; display: block; }
.logo-word { font-weight: 700; font-size: 24px; letter-spacing: 0.08em; line-height: 0.78; padding-bottom: 3px; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--muted); font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.btn { color: var(--ink); }
.nav-cta { display: none; }
.nav-link-hide { display: none; }
@media (min-width: 760px) { .nav-cta { display: inline-block; } .nav-link-hide { display: inline; } }

/* HERO */
.hero { padding: 96px 0 112px; }
.hero .kick { display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: baseline; justify-content: space-between; }
.hero .kick .pill { font-family: var(--mono); font-size: 12px; color: var(--muted); border: 1px solid var(--line); border-radius: 100px; padding: 7px 15px; }
.hero .kick .pill b { color: var(--acc); }
.hero h1 { font-size: clamp(48px, 11vw, 150px); line-height: 0.86; letter-spacing: -0.04em; font-weight: 700; margin: 36px 0 0; text-wrap: balance; }
.hero h1 .out { color: transparent; -webkit-text-stroke: 1.5px var(--acc); }
.hero p.lead { font-size: clamp(17px, 2vw, 21px); color: var(--muted); max-width: 52ch; text-wrap: pretty; margin-top: 32px; }
.hero-foot { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 44px; padding: 40px 0; border-top: 1px solid var(--line); align-items: end; }
@media (min-width: 860px) { .hero-foot { grid-template-columns: 1.3fr 1fr; gap: 60px; } }
.hero-foot p.lead { font-size: clamp(17px, 2vw, 21px); color: var(--muted); max-width: 48ch; text-wrap: pretty; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 36px; }
.hero-meta { font-family: var(--mono); font-size: 12.5px; color: var(--muted); margin-top: 20px; }
.hero-meta b { color: var(--text); }

/* TICKER */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 14px 0; }
.tick-track { display: flex; gap: 40px; width: max-content; white-space: nowrap; animation: roll 26s linear infinite; }
.tick-track span { font-family: var(--mono); font-size: 14px; color: var(--muted); display: inline-flex; align-items: center; gap: 40px; text-transform: uppercase; letter-spacing: 0.06em; }
.tick-track span::after { content: "▣"; color: var(--acc); }
@keyframes roll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .tick-track { animation: none; } }

section { padding: 104px 0; position: relative; }
.sec-head { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 820px) { .sec-head { grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: end; } }
.sec-head h2 { font-size: clamp(32px, 5vw, 60px); line-height: 0.98; letter-spacing: -0.02em; font-weight: 700; text-wrap: balance; }
.sec-head p { color: var(--muted); font-size: 18px; }

/* SERVICE ROWS */
.rows { margin-top: 60px; border-top: 1px solid var(--line); }
.erow { display: grid; grid-template-columns: 1fr; gap: 14px; padding: 40px 0; border-bottom: 1px solid var(--line); transition: background .2s; }
@media (min-width: 860px) { .erow { grid-template-columns: 0.5fr 1fr 1.1fr; gap: 40px; align-items: start; } }
.erow:hover { background: var(--bg-2); }
.erow .bignum { font-size: clamp(52px, 7vw, 92px); line-height: 0.8; font-weight: 700; letter-spacing: -0.04em; color: transparent; -webkit-text-stroke: 1.5px var(--line); transition: -webkit-text-stroke-color .2s; }
.erow:hover .bignum { -webkit-text-stroke-color: var(--acc); }
.erow .ttl { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.erow h3 { font-size: 28px; font-weight: 700; letter-spacing: -0.01em; }
.erow .free { font-family: var(--mono); font-size: 11px; color: var(--ink); background: var(--acc); padding: 3px 9px; border-radius: 5px; }
.erow .price { font-family: var(--mono); font-size: 12px; color: var(--acc); border: 1px solid var(--line); padding: 3px 9px; border-radius: 5px; }
.erow p { color: var(--muted); font-size: 16px; }

/* BENTO */
.bento { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 60px; }
@media (min-width: 820px) { .bento { grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: auto auto; } }
.bcell { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 30px; }
.bcell.big { grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; min-height: 220px; grid-column: span 2; }
@media (min-width: 820px) { .bcell.big { grid-column: auto; } }
.bcell .k { font-size: clamp(40px, 6vw, 68px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.bcell .l { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-top: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.bcell.big .lab { font-family: var(--mono); font-size: 12px; color: var(--acc); text-transform: uppercase; letter-spacing: 0.08em; }
.bcell.big .q { font-size: clamp(20px, 2.4vw, 27px); line-height: 1.25; font-weight: 500; margin-top: 14px; text-wrap: pretty; }
.bcell.big .by { font-family: var(--mono); font-size: 13px; color: var(--muted); margin-top: 20px; }
.bcell.big .by b { color: var(--text); }

/* PROCESS */
.proc { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 56px; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { padding: 32px; border: 1px solid var(--line); margin: -0.5px; }
.step .pn { font-family: var(--mono); color: var(--acc); font-size: 13px; }
.step h4 { font-size: 22px; font-weight: 700; margin-top: 14px; letter-spacing: -0.01em; }
.step p { color: var(--muted); font-size: 15px; margin-top: 12px; }

/* FAQ */
.faq { margin-top: 56px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary { list-style: none; cursor: pointer; padding: 26px 0; font-size: clamp(18px, 2.2vw, 23px); font-weight: 600; display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--acc); font-size: 26px; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); font-size: 16px; padding: 0 0 26px; max-width: 70ch; }

/* CTA */
.cta-grid { display: grid; grid-template-columns: 1fr; gap: 44px; }
@media (min-width: 940px) { .cta-grid { grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: start; } }
.cta h2 { font-size: clamp(44px, 8vw, 92px); line-height: 0.86; letter-spacing: -0.04em; font-weight: 700; text-wrap: balance; }
.cta h2 .out { color: transparent; -webkit-text-stroke: 1.5px var(--acc); }
.cta .lead { color: var(--muted); font-size: 19px; margin-top: 24px; max-width: 38ch; }
.checklist { margin-top: 28px; display: grid; gap: 12px; }
.checklist li { list-style: none; display: flex; gap: 12px; font-size: 15.5px; color: var(--text); align-items: baseline; }
.checklist li::before { content: "▣"; color: var(--acc); font-size: 11px; }

/* FORMS */
.form { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 30px; }
.form h3 { font-size: 22px; font-weight: 700; }
.form .sub { font-family: var(--mono); font-size: 13px; color: var(--muted); margin-top: 6px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field label .req { color: var(--acc); }
.field input, .field select, .field textarea { width: 100%; font-family: var(--sans); font-size: 15px; color: var(--text); background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 13px 14px; outline: none; transition: border .15s, box-shadow .15s; }
.field input::placeholder, .field textarea::placeholder { color: oklch(0.5 0.012 60); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--acc); box-shadow: 0 0 0 3px oklch(0.8 0.15 70 / 0.2); }
.field .hint { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 7px; }
.row2 { display: grid; grid-template-columns: 1fr; gap: 13px; }
@media (min-width: 560px) { .row2 { grid-template-columns: 1fr 1fr; } }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* checkbox / chip grid */
.chips { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 560px) { .chips { grid-template-columns: 1fr 1fr 1fr; } }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip label { display: flex; align-items: center; gap: 9px; font-family: var(--sans); font-size: 14px; text-transform: none; letter-spacing: 0; color: var(--text); background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; cursor: pointer; transition: border .15s, background .15s; margin: 0; }
.chip label::before { content: ""; width: 16px; height: 16px; border: 1px solid var(--line); border-radius: 4px; flex: none; transition: background .15s, border .15s; }
.chip input:checked + label { border-color: var(--acc); background: color-mix(in oklch, var(--acc) 8%, var(--bg)); }
.chip input:checked + label::before { background: var(--acc); border-color: var(--acc); box-shadow: inset 0 0 0 3px var(--bg); }
.chip input:focus-visible + label { box-shadow: 0 0 0 3px oklch(0.8 0.15 70 / 0.2); }

.consent { display: flex; gap: 11px; align-items: flex-start; margin: 8px 0 4px; }
.consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--acc); flex: none; }
.consent label { font-family: var(--sans); text-transform: none; letter-spacing: 0; font-size: 13px; color: var(--muted); margin: 0; }

.form button[type=submit] { width: 100%; margin-top: 8px; padding: 15px; font-size: 16px; }
.form .fine { font-family: var(--mono); font-size: 11px; color: var(--muted); text-align: center; margin-top: 14px; }
.form-error { display: none; font-family: var(--mono); font-size: 12.5px; color: var(--danger); border: 1px solid color-mix(in oklch, var(--danger) 50%, var(--line)); background: color-mix(in oklch, var(--danger) 8%, transparent); border-radius: 8px; padding: 11px 13px; margin-top: 14px; }
.form-error.show { display: block; }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: var(--danger) !important; box-shadow: 0 0 0 3px color-mix(in oklch, var(--danger) 22%, transparent) !important; }
.field-error { display: none; font-family: var(--mono); font-size: 11px; color: var(--danger); margin-top: 5px; }
.field-error.show { display: block; }
.validation-summary { display: none; font-family: var(--mono); font-size: 12px; color: var(--danger); margin-top: 10px; }
.validation-summary.show { display: block; }
.ok { display: none; text-align: center; padding: 30px 6px; }
.ok.show { display: block; }
.ok .big { font-size: 28px; font-weight: 700; }
.ok p { color: var(--muted); margin-top: 12px; font-family: var(--mono); font-size: 13px; line-height: 1.6; }
.ok .btn { margin-top: 22px; }

/* PAGE HEADER (inner pages) */
.page-head { padding: 76px 0 8px; }
.page-head h1 { font-size: clamp(40px, 8vw, 92px); line-height: 0.88; letter-spacing: -0.04em; font-weight: 700; margin-top: 18px; text-wrap: balance; }
.page-head h1 .out { color: transparent; -webkit-text-stroke: 1.5px var(--acc); }
.page-head p.lead { color: var(--muted); font-size: clamp(17px, 2vw, 20px); max-width: 56ch; margin-top: 22px; text-wrap: pretty; }

/* form layout two-col on wide */
.form-layout { display: grid; grid-template-columns: 1fr; gap: 44px; padding-top: 56px; padding-bottom: 40px; align-items: start; }
@media (min-width: 960px) { .form-layout { grid-template-columns: 0.85fr 1.15fr; gap: 64px; } .form-layout .aside { position: sticky; top: 96px; } }
.aside .tag { display: block; margin-bottom: 14px; }
.aside h2 { font-size: clamp(26px, 3.5vw, 38px); line-height: 1; letter-spacing: -0.02em; font-weight: 700; }
.aside .checklist { margin-top: 26px; }
.aside .reassure { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 12.5px; color: var(--muted); line-height: 1.7; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 56px; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
.pcard { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 38px 34px; display: flex; flex-direction: column; }
.pcard.feature { border-color: var(--acc); box-shadow: 0 0 0 1px var(--acc), 0 30px 60px -40px oklch(0.8 0.15 70 / 0.5); }
.pcard .ptag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--acc); }
.pcard h3 { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; margin-top: 16px; }
.pcard .pdesc { color: var(--muted); font-size: 15.5px; margin-top: 12px; max-width: 42ch; }
.pcard .pprice { display: flex; align-items: baseline; gap: 10px; margin-top: 26px; }
.pcard .pprice .amt { font-size: clamp(44px, 6vw, 64px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.pcard .pprice .per { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.pcard .pprice .strike { font-family: var(--mono); font-size: 15px; color: var(--muted); text-decoration: line-through; }
.pfeatures { list-style: none; margin: 28px 0; display: grid; gap: 13px; }
.pfeatures li { display: flex; gap: 12px; align-items: baseline; font-size: 15px; color: var(--text); }
.pfeatures li::before { content: "▣"; color: var(--acc); font-size: 11px; flex: none; }
.pfeatures li.muted { color: var(--muted); }
.pfeatures li.muted::before { content: "·"; color: var(--muted); }
.pcard .pcta { margin-top: auto; }
.pcard .pcta .btn { width: 100%; }
.pcard .pnote { font-family: var(--mono); font-size: 11px; color: var(--muted); text-align: center; margin-top: 12px; }

/* tiers strip */
.tiers { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 24px; }
@media (min-width: 720px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier { border: 1px solid var(--line); border-radius: 12px; padding: 22px; background: var(--bg); }
.tier .tn { font-family: var(--mono); font-size: 11px; color: var(--acc); text-transform: uppercase; letter-spacing: 0.06em; }
.tier h4 { font-size: 19px; font-weight: 700; margin-top: 10px; }
.tier p { color: var(--muted); font-size: 14px; margin-top: 8px; }
.tier .tprice { font-family: var(--mono); font-size: 13px; color: var(--text); margin-top: 14px; }

/* RESULTS */
.results-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 56px; align-items: stretch; }
@media (min-width: 640px) { .results-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .results-grid { grid-template-columns: 1fr 1fr 1fr; } }
.rcard { display: flex; flex-direction: column; justify-content: flex-end; }
.rinner { background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: transform 0.25s var(--ease-out), border-color 0.25s ease, box-shadow 0.25s ease; }
.rcard:hover .rinner { transform: translateY(-4px); border-color: color-mix(in oklch, var(--acc) 45%, var(--line)); box-shadow: 0 24px 50px -34px oklch(0.8 0.15 70 / 0.5); }
.rshot { position: relative; min-height: 200px; background: var(--bg); display: block; }
.rshot img { width: 100%; height: auto; display: block; }
.rshot .ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 20px;
  background: repeating-linear-gradient(45deg, var(--bg) 0, var(--bg) 12px, var(--bg-2) 12px, var(--bg-2) 24px); }
.rshot .ph .num { font-size: clamp(40px, 6vw, 62px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--line); }
.rshot .ph .lab { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.rcard.has-img .rshot .ph { display: none; }
.rmeta { padding: 18px 20px; }
.rmeta h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.rmeta p { color: var(--muted); font-size: 13.5px; margin-top: 6px; }

/* FOOTER */
footer { border-top: 1px solid var(--line); padding: 40px 0; }
.foot-row { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; color: var(--muted); font-family: var(--mono); font-size: 13px; }
.foot-row .logo img { height: 26px; filter: brightness(0.62); }
.foot-row .logo-word { font-size: 20px; color: var(--muted); }
.foot-legal { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.foot-legal a:not(.acc):hover { color: var(--text); }

/* LEGAL PAGES (privacy / terms) */
.legal { max-width: 820px; padding-top: 8px; padding-bottom: 72px; }
.legal .updated { font-family: var(--mono); font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 36px; }
.legal h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -0.01em; margin: 44px 0 14px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 18px; font-weight: 600; margin: 26px 0 10px; }
.legal p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 14px; max-width: 72ch; }
.legal ul { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0 0 14px; padding-left: 0; list-style: none; max-width: 72ch; }
.legal ul li { display: flex; gap: 12px; align-items: baseline; margin-bottom: 9px; }
.legal ul li::before { content: "▣"; color: var(--acc); font-size: 11px; flex: none; }
.legal a { color: var(--acc); }
.legal a:hover { text-decoration: underline; }
.legal strong { color: var(--text); font-weight: 600; }

/* misc */
.center-narrow { max-width: 760px; }
.spacer-sm { height: 8px; }

/* ============================================================
   MOTION — entrance, scroll reveal, ambient & micro-interactions
   All transform/opacity based. Hidden states live behind
   .has-anim (set by JS) + a no-preference guard, so content is
   always visible without JS or with reduced-motion enabled.
   ============================================================ */

/* shared easing */
:root { --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1); }

@keyframes introUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes faqIn   { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@keyframes chipPop { 0% { transform: scale(0.4); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
@keyframes strokeShimmer { 0%, 100% { -webkit-text-stroke-color: var(--acc); } 50% { -webkit-text-stroke-color: var(--acc-deep); } }
@keyframes glowDrift {
  0%   { transform: translate(-12%, -8%) scale(1);   opacity: 0.55; }
  50%  { transform: translate(10%, 6%)  scale(1.18); opacity: 0.8; }
  100% { transform: translate(-12%, -8%) scale(1);   opacity: 0.55; }
}
@keyframes arrowNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }

@media (prefers-reduced-motion: no-preference) {

  /* --- Ambient hero glow --- */
  /* .hero is tall enough to contain the glow, so it clips to keep the bleed
     inside the section. .page-head is short, so clipping would chop the glow;
     instead it sits behind content (z-index:-1) and is free to bleed downward.
     Position uses a fixed px offset (not %) so it's stable across aspect ratios. */
  .hero { position: relative; overflow: hidden; }
  .page-head { position: relative; }
  .hero::before, .page-head::before {
    content: ""; position: absolute;
    top: -180px; left: 6vw; width: min(72vw, 760px); aspect-ratio: 1;
    background: radial-gradient(circle, oklch(0.8 0.15 70 / 0.16), transparent 62%);
    filter: blur(20px); pointer-events: none;
    animation: glowDrift 16s ease-in-out infinite;
  }
  .hero::before { z-index: 0; }
  .page-head::before { z-index: -1; }
  .hero .wrap, .page-head .wrap { position: relative; z-index: 1; }

  /* --- Outlined word shimmer --- */
  .hero h1 .out, .cta h2 .out, .page-head h1 .out, .cta-h .out {
    animation: strokeShimmer 5s ease-in-out infinite;
  }

  /* --- Hero / page-head entrance (pure CSS, no flash) --- */
  .has-anim .hero .wrap > *,
  .has-anim .page-head .wrap > * {
    opacity: 0; animation: introUp 0.9s var(--ease-out) both;
  }
  .has-anim .hero .wrap > *:nth-child(1),
  .has-anim .page-head .wrap > *:nth-child(1) { animation-delay: 0.05s; }
  .has-anim .hero .wrap > *:nth-child(2),
  .has-anim .page-head .wrap > *:nth-child(2) { animation-delay: 0.16s; }
  .has-anim .hero .wrap > *:nth-child(3),
  .has-anim .page-head .wrap > *:nth-child(3) { animation-delay: 0.27s; }
  .has-anim .hero .wrap > *:nth-child(4),
  .has-anim .page-head .wrap > *:nth-child(4) { animation-delay: 0.38s; }
  .has-anim .hero .wrap > *:nth-child(5),
  .has-anim .page-head .wrap > *:nth-child(5) { animation-delay: 0.49s; }

  /* --- Scroll reveal (.reveal added by JS; .in toggles in) --- */
  .has-anim .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    will-change: opacity, transform;
  }
  .has-anim .reveal.in { opacity: 1; transform: none; }

  /* --- FAQ open content --- */
  .faq details[open] > p { animation: faqIn 0.35s var(--ease-out); }

  /* --- Chip check pop --- */
  .chip input:checked + label::before { animation: chipPop 0.28s var(--ease-out); }

  /* --- Button arrow nudge on hover (CTA buttons end in →) --- */
  .btn-acc:hover { animation: arrowNudge 0.6s ease-in-out; }
}

/* --- Micro-interactions (safe under reduced motion: transitions only) --- */
.btn { will-change: transform; }
.btn:active { transform: translateY(0) scale(0.985); }

/* Nav links: animated underline */
.nav-links a:not(.btn) { position: relative; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1.5px;
  background: var(--acc); transform: scaleX(0); transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after { transform: scaleX(1); }

/* Card lift on hover */
.bcell, .tier, .pcard, .form {
  transition: transform 0.25s var(--ease-out), border-color 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
}
.bcell:hover, .tier:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklch, var(--acc) 45%, var(--line));
}
.pcard:not(.feature):hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklch, var(--acc) 45%, var(--line));
}
.pcard.feature:hover { transform: translateY(-4px); }

/* Service rows: slide the number on hover */
.erow .bignum { transition: -webkit-text-stroke-color 0.25s ease, transform 0.3s var(--ease-out); }
.erow:hover .bignum { transform: translateX(6px); }

/* Chip hover */
.chip label:hover { border-color: color-mix(in oklch, var(--acc) 55%, var(--line)); }

/* Logo gentle scale on hover */
.logo img { transition: transform 0.3s var(--ease-out); }
.logo:hover img { transform: scale(1.06); }

@media (prefers-reduced-motion: reduce) {
  .hero::before, .page-head::before { display: none; }
}
