/* Self-hosted latin subsets of Young Serif and Schibsted Grotesk (OFL). */
@font-face { font-family: 'Schibsted Grotesk'; font-style: italic; font-weight: 400 900; font-display: swap; src: url(fonts/SchibstedGrotesk-italic-400_900-latin.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Schibsted Grotesk'; font-style: normal; font-weight: 400 900; font-display: swap; src: url(fonts/SchibstedGrotesk-normal-400_900-latin.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Young Serif'; font-style: normal; font-weight: 400; font-display: swap; src: url(fonts/YoungSerif-normal-400-latin.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* Presencial — palette "Orange Drip": #051821 #1A4645 #266867 #F58800 #F8BC24
   Light-first. The page stays light on every device; data-theme="dark" on <html> is the only way to get the dark version. */
:root {
  color-scheme: light;
  --paper: #F3F6F5;
  --paper-2: #E6EDEB;
  --paper-3: #FBFCFC;
  --ink: #051821;
  --ink-2: #2C4A4C;
  --mist: #4F6866;
  --line: #C7D5D2;
  --teal: #266867;
  --teal-deep: #1A4645;
  --teal-text: #1A4645;
  --orange: #F58800;
  --orange-hover: #E07C00;
  --orange-text: #B25C00;
  --amber: #F8BC24;
  --on-orange: #051821;
  --teal-band-bg: #1A4645;
  --teal-band-fg: #F3F6F5;
  --teal-band-mist: #B4CBC7;
  --teal-band-line: #266867;
  --teal-band-surface: #153B3A;
  --focus: #F58800;
  --shadow: 0 1px 2px rgba(5,24,33,.06), 0 24px 48px -28px rgba(5,24,33,.35);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #0B1F29;
  --paper-2: #122B36;
  --paper-3: #0F252F;
  --ink: #EAF1EF;
  --ink-2: #B9CBC8;
  --mist: #7E9896;
  --line: #24404A;
  --teal: #3E9C99;
  --teal-deep: #266867;
  --teal-text: #5FB5B1;
  --orange-text: #F8BC24;
  --teal-band-bg: #1A4645;
  --teal-band-surface: #153B3A;
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 24px 48px -28px rgba(0,0,0,.7);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
::selection { background: var(--amber); color: #051821; }
h1, h2, h3 { margin: 0; font-weight: 400; text-wrap: balance; scroll-margin-top: 90px; }
h1, h2 { font-family: "Young Serif", Georgia, "Times New Roman", serif; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 4.6vw, 4rem); line-height: 1.05; }
h1 .nb { white-space: nowrap; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.75rem); line-height: 1.1; }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.3; }
p { margin: 0; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.16em; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 2px; }
button, input, select, textarea { font: inherit; color: inherit; }

.wrap { max-width: 1180px; margin: 0 auto; padding-inline: clamp(1.25rem, 4vw, 3rem); }
.skip {
  position: absolute; inset-inline-start: 1rem; top: -100px; z-index: 100;
  background: var(--orange); color: var(--on-orange); padding: .6rem 1rem; border-radius: 999px; font-weight: 600;
}
.skip:focus { top: 1rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 44px; padding: .75rem 1.4rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; line-height: 1.1; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; touch-action: manipulation; white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--orange); color: var(--on-orange); }
.btn-primary:hover { background: var(--orange-hover); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-small { min-height: 38px; padding: .55rem 1.05rem; font-size: .875rem; }
.btn[disabled] { opacity: .7; cursor: progress; transform: none; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 10; background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; font-weight: 700; font-size: 1.1rem; letter-spacing: -0.01em; }
.mark { position: relative; width: 26px; height: 18px; flex: none; }
.mark span { position: absolute; top: 0; width: 18px; height: 18px; border-radius: 50%; }
.mark .m-a { inset-inline-start: 0; background: var(--teal); }
.mark .m-b { inset-inline-end: 0; background: var(--orange); }
.mark .m-c { inset-inline-start: 0; background: var(--amber); clip-path: circle(50% at 94.4% 50%); }
.nav-links { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-weight: 500; color: var(--ink-2); font-size: .95rem; padding: .5rem 0; display: inline-block; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-phone { text-decoration: none; font-weight: 600; font-size: .95rem; white-space: nowrap; font-variant-numeric: tabular-nums; }
.lang { text-decoration: none; font-weight: 600; font-size: .85rem; color: var(--ink-2); border: 1px solid var(--line); border-radius: 999px; padding: .4rem .8rem; white-space: nowrap; }
.lang:hover { color: var(--ink); border-color: var(--ink); }
@media (max-width: 1180px) { .nav-links { display: none; } }
@media (max-width: 600px) { .nav-phone { display: none; } }

/* Hero: light, with an ambient canvas behind it */
.hero { position: relative; overflow: hidden; padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3.5rem, 7vw, 5.5rem); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; pointer-events: none; }
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.hero-copy { display: flex; flex-direction: column; gap: 1.6rem; }
.hero-copy > * { animation: rise 700ms var(--ease-out) both; }
.hero-copy > :nth-child(2) { animation-delay: 90ms; }
.hero-copy > :nth-child(3) { animation-delay: 180ms; }
.hero-copy > :nth-child(4) { animation-delay: 270ms; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero-sub { font-size: 1.2rem; color: var(--ink-2); max-width: 32em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-price { font-size: .95rem; color: var(--mist); }
.hero-price b { color: var(--orange-text); font-weight: 600; }

.meet { position: relative; aspect-ratio: 1 / 1; width: 100%; max-width: 460px; margin-inline-start: auto; }
.meet .face { position: absolute; top: 50%; width: 62%; aspect-ratio: 1 / 1; border-radius: 50%; }
.meet-spin { position: absolute; inset: 0; animation: spin-cw 40s linear 1400ms infinite; }
.meet .face-a { inset-inline-start: 0; background: var(--teal); transform: translate(-28%, -50%); animation: meet-a 1000ms var(--ease-out) 200ms both, drift-a 9s ease-in-out 1400ms infinite alternate; }
.meet .face-b { inset-inline-end: 0; background: var(--orange); transform: translate(28%, -50%); animation: meet-b 1000ms var(--ease-out) 200ms both, drift-b 9s ease-in-out 1400ms infinite alternate; }
.meet .face-c { inset-inline-start: 0; background: var(--amber); clip-path: circle(50% at 111.3% 50%); transform: translate(0, -50%); opacity: 0; animation: lens 500ms ease-out 1000ms both, drift-c 9s ease-in-out 1400ms infinite alternate; }
@keyframes meet-a { to { transform: translate(0, -50%); } }
@keyframes meet-b { to { transform: translate(0, -50%); } }
@keyframes lens { to { opacity: 1; } }
@keyframes spin-cw { to { transform: rotate(360deg); } }
@keyframes drift-a { from { transform: translate(0, -50%); } to { transform: translate(-18%, -50%); } }
@keyframes drift-b { from { transform: translate(0, -50%); } to { transform: translate(18%, -50%); } }
@keyframes drift-c { from { transform: translate(0, -50%); clip-path: circle(50% at 111.3% 50%); } to { transform: translate(-18%, -50%); clip-path: circle(50% at 147.3% 50%); } }
.meet-caption { position: absolute; inset-inline-start: 50%; bottom: -3.4rem; transform: translateX(-50%); white-space: nowrap; display: inline-flex; align-items: center; gap: .7rem; padding: .55rem 1.1rem .55rem .8rem; border-radius: 999px; background: var(--paper-3); border: 1px solid var(--line); box-shadow: var(--shadow); font-family: "Young Serif", Georgia, serif; font-size: clamp(1rem, 1.5vw, 1.25rem); color: var(--ink); opacity: 0; animation: caption-in 700ms var(--ease-out) 1200ms both; }
.meet-caption em { font-style: normal; color: var(--orange-text); }
.meet-caption .mark { width: 30px; height: 20px; }
.meet-caption .mark span { width: 20px; height: 20px; }
@keyframes caption-in { from { opacity: 0; transform: translate(-50%, 10px); } to { opacity: 1; transform: translate(-50%, 0); } }
@media (max-width: 480px) { .meet-caption { white-space: normal; width: max-content; max-width: min(90vw, 320px); text-align: start; font-size: .95rem; bottom: -3.8rem; line-height: 1.25; } .meet { margin-bottom: 4.6rem; } }
@keyframes fade-in { to { opacity: 1; } }
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .meet { max-width: 300px; margin: 1rem auto 4rem; }
}

/* Scroll reveals (only when JS is present; content is visible by default) */
.js [data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity 500ms ease-out, transform 700ms var(--ease-out); transition-delay: calc(var(--i, 0) * 80ms); }
.js [data-reveal].in { opacity: 1; transform: none; }

/* Sections */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: 1.5rem 4rem; align-items: end; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .lede { font-size: 1.15rem; color: var(--ink-2); max-width: 34em; }
@media (max-width: 760px) { .section-head { grid-template-columns: 1fr; } }

/* Statement */
.statement { background: var(--paper-2); }
.statement blockquote { margin: 0; font-family: "Young Serif", Georgia, serif; font-size: clamp(1.55rem, 3vw, 2.5rem); line-height: 1.2; max-width: 24em; text-wrap: balance; }
.statement blockquote em { font-style: normal; color: var(--teal-text); }
.statement p { margin-top: 2rem; max-width: 40em; font-size: 1.15rem; color: var(--ink-2); }

/* How it works */
.how .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.how h2 { margin-bottom: 2rem; }
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li { display: grid; grid-template-columns: 2.75rem 1fr; gap: 1rem; padding: 1.5rem 0; border-top: 1px solid var(--line); counter-increment: step; }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before { content: counter(step); font-family: "Young Serif", Georgia, serif; font-size: 1.5rem; color: var(--orange-text); line-height: 1.1; font-variant-numeric: tabular-nums; }
.steps h3 { margin-bottom: .35rem; }
.steps p { color: var(--ink-2); font-size: 1rem; }
@media (max-width: 860px) { .how .wrap { grid-template-columns: 1fr; } }

/* Device stage: phone <-> desktop */
.stage { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.frames { position: relative; width: 100%; height: 500px; display: grid; place-items: center; }
.device { position: absolute; opacity: 0; transform: scale(.92) translateY(10px); transition: opacity 450ms ease-out, transform 600ms var(--ease-out); pointer-events: none; }
.device.is-active { opacity: 1; transform: none; }
.seg { display: inline-flex; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper-3); }
.seg-btn { border: 0; background: transparent; border-radius: 999px; min-height: 36px; padding: .4rem 1rem; font-size: .875rem; font-weight: 600; color: var(--ink-2); cursor: pointer; transition: background-color 200ms ease, color 200ms ease; }
.seg-btn[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.seg-btn:hover:not([aria-pressed="true"]) { color: var(--ink); }
.mock-caption { font-size: .9rem; color: var(--mist); max-width: 28em; text-align: center; }

.phone { width: 230px; aspect-ratio: 9 / 18.5; border-radius: 34px; background: var(--ink); padding: 9px; box-shadow: var(--shadow); }
.screen { background: var(--paper-3); border-radius: 26px; height: 100%; overflow: hidden; display: flex; flex-direction: column; }
.s-bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 14px 10px; }
.s-logo { width: 56px; height: 11px; border-radius: 3px; background: var(--ink); }
.s-right { display: flex; gap: 6px; align-items: center; }
.s-lang { font-size: 9px; font-weight: 700; letter-spacing: .04em; border: 1px solid var(--line); border-radius: 999px; padding: 3px 7px; color: var(--ink-2); }
.s-call { background: var(--orange); color: var(--on-orange); font-size: 9px; font-weight: 700; border-radius: 999px; padding: 4px 9px; }
.s-hero { margin: 0 12px; aspect-ratio: 4 / 3; border-radius: 10px; background: linear-gradient(160deg, var(--teal-deep), var(--teal)); position: relative; overflow: hidden; }
.s-hero::after { content: ""; position: absolute; left: 12px; bottom: 12px; width: 60%; height: 9px; border-radius: 3px; background: rgba(243,246,245,.9); }
.s-h { height: 10px; width: 70%; margin: 14px 12px 8px; background: var(--ink); border-radius: 3px; }
.s-l { height: 6px; margin: 0 12px 6px; background: var(--line); border-radius: 3px; }
.s-l.short { width: 50%; }
.s-list { margin: 12px 12px 0; display: grid; gap: 6px; }
.s-item { height: 28px; border: 1px solid var(--line); border-radius: 8px; display: flex; align-items: center; gap: 8px; padding: 0 9px; }
.s-item i { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); display: block; }
.s-item span { height: 5px; width: 55%; background: var(--line); border-radius: 3px; display: block; }

.laptop { width: min(100%, 470px); }
.lap-screen { border: 8px solid var(--ink); border-bottom-width: 14px; border-radius: 14px 14px 6px 6px; background: var(--paper-3); overflow: hidden; box-shadow: var(--shadow); }
.lap-base { height: 10px; margin: 0 6%; background: var(--ink-2); border-radius: 0 0 10px 10px; }
.d-bar { height: 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 5px; padding: 0 10px; background: var(--paper-2); }
.d-bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--line); display: block; }
.d-url { margin-left: 8px; flex: 1; height: 10px; border-radius: 999px; background: var(--paper-3); border: 1px solid var(--line); }
.d-nav { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; }
.d-links { display: flex; gap: 8px; }
.d-links span { width: 28px; height: 6px; border-radius: 3px; background: var(--line); }
.d-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 14px; padding: 6px 16px 14px; align-items: center; }
.d-copy .s-h { margin: 0 0 8px; width: 90%; height: 12px; }
.d-copy .s-l { margin: 0 0 6px; }
.d-copy .s-call { display: inline-block; margin-top: 8px; }
.d-img { aspect-ratio: 4 / 3; border-radius: 8px; background: linear-gradient(160deg, var(--teal-deep), var(--teal)); }
.d-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 0 16px 16px; }
.d-tile { height: 34px; border: 1px solid var(--line); border-radius: 6px; display: flex; align-items: center; gap: 6px; padding: 0 8px; }
.d-tile i { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); display: block; }
.d-tile span { height: 5px; width: 60%; background: var(--line); border-radius: 3px; display: block; }
@media (max-width: 520px) { .frames { height: 440px; } .phone { width: 200px; } }

/* Included */
.included-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.pages { margin: 0; }
.pages .row { display: grid; grid-template-columns: 9rem 1fr; gap: .5rem 1.5rem; padding: 1.1rem 0; border-top: 1px solid var(--line); }
.pages .row:last-child { border-bottom: 1px solid var(--line); }
.pages dt { font-family: "Young Serif", Georgia, serif; font-size: 1.2rem; line-height: 1.25; }
.pages dd { margin: 0; color: var(--ink-2); }
.standards { background: var(--paper-2); padding: 1.75rem; border-radius: 4px; }
.standards h3 { margin-bottom: 1rem; }
.standards ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.standards li { display: grid; grid-template-columns: 1.1rem 1fr; gap: .75rem; align-items: start; color: var(--ink-2); font-size: 1rem; }
.standards li svg { width: 1.1rem; height: 1.1rem; margin-top: .3rem; color: var(--teal-text); }
@media (max-width: 860px) { .included-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .pages .row { grid-template-columns: 1fr; gap: .25rem; } }

/* Pricing: the one dark band */
.pricing { background: var(--teal-band-bg); color: var(--teal-band-fg); padding: clamp(4rem, 9vw, 7.5rem) 0; }
.pricing h2, .pricing h3 { color: var(--teal-band-fg); }
.pricing .lede { color: var(--teal-band-mist); }
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.plan { border: 1px solid var(--teal-band-line); padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; background: var(--teal-band-surface); }
.plan-who { color: var(--teal-band-mist); font-size: .95rem; }
.price-pair { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; align-items: center; padding: 1.25rem 0; border-top: 1px solid var(--teal-band-line); border-bottom: 1px solid var(--teal-band-line); }
.price { font-family: "Young Serif", Georgia, serif; font-size: clamp(2.2rem, 3.5vw, 3rem); line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; color: var(--amber); }
.price-l { display: block; font-family: "Schibsted Grotesk", sans-serif; font-size: .85rem; color: var(--teal-band-mist); margin-top: .5rem; letter-spacing: 0; }
.plus { font-family: "Young Serif", Georgia, serif; font-size: 1.6rem; color: var(--teal-band-mist); }
.plan-note { color: var(--teal-band-mist); font-size: .95rem; }
.plan .btn-primary { align-self: flex-start; }
.care-ladder { margin-top: 3.5rem; }
.ladder-lede { color: var(--teal-band-mist); max-width: 40em; margin: .5rem 0 1.5rem; }
.addons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.payalt { margin-top: 3rem; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 1rem 2rem; align-items: start; }
.payalt .addon { border-top: 0; padding-top: 0; }
.addon { border-top: 1px solid var(--teal-band-line); padding-top: 1.25rem; display: grid; gap: .4rem; }
.addon .n { font-weight: 700; }
.addon .p { color: var(--amber); font-variant-numeric: tabular-nums; font-weight: 600; }
.addon .d { color: var(--teal-band-mist); font-size: .95rem; }
.founding { margin-top: 2.5rem; color: var(--teal-band-mist); font-size: .95rem; }
.founding b { color: var(--teal-band-fg); font-weight: 600; }
.scope { margin-top: 2.5rem; max-width: 62em; color: var(--teal-band-mist); font-size: .9rem; line-height: 1.6; }
.scope h3 { font-size: .95rem; margin-bottom: .5rem; }
@media (max-width: 1000px) { .addons { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .plans { grid-template-columns: 1fr; } .payalt { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .addons { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .price-pair { grid-template-columns: 1fr; } .plus { display: none; } }

/* Care */
.care .wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.care-copy { display: grid; gap: 1.25rem; }
.care-copy p { color: var(--ink-2); }
.report { border: 1px solid var(--line); background: var(--paper-3); padding: 1.75rem; border-radius: 4px; max-width: 420px; box-shadow: var(--shadow); }
.report-label { font-size: .8rem; color: var(--mist); margin-bottom: 1rem; }
.report h3 { font-family: "Young Serif", Georgia, serif; font-weight: 400; font-size: 1.5rem; margin-bottom: 1rem; }
.report table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.report td { padding: .55rem 0; border-top: 1px solid var(--line); vertical-align: top; }
.report td:first-child { color: var(--ink-2); width: 45%; }
.report td:last-child { font-variant-numeric: tabular-nums; font-weight: 600; }
.report .next { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .9rem; color: var(--teal-text); }
@media (max-width: 860px) { .care .wrap { grid-template-columns: 1fr; } .report { max-width: none; } }

/* About */
.about .wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.about-copy { display: grid; gap: 1.25rem; }
.about-copy p { color: var(--ink-2); max-width: 36em; }
.facts { margin: 0; border-top: 1px solid var(--line); }
.facts .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.facts dt { color: var(--mist); font-size: .95rem; }
.facts dd { margin: 0; font-weight: 600; }
@media (max-width: 860px) { .about .wrap { grid-template-columns: 1fr; } }

/* Audit form: light */
.audit { background: var(--paper-2); padding: clamp(4rem, 9vw, 7.5rem) 0; }
.audit .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.audit .lede { color: var(--ink-2); margin-top: 1.25rem; font-size: 1.1rem; max-width: 30em; }
.audit-alt { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.audit-alt h3 { margin-bottom: .35rem; }
.audit-alt p { color: var(--ink-2); }
.audit-alt a { font-weight: 600; font-variant-numeric: tabular-nums; }
.form { display: grid; gap: 1.1rem; background: var(--paper-3); border: 1px solid var(--line); padding: clamp(1.25rem, 3vw, 2rem); border-radius: 4px; box-shadow: var(--shadow); }
.field { display: grid; gap: .4rem; }
.field label { font-size: .9rem; font-weight: 600; }
.field input {
  min-height: 48px; padding: .7rem .9rem; font-size: 1rem; border-radius: 4px;
  background: var(--paper); color: var(--ink); border: 1px solid var(--line);
}
.field input::placeholder { color: var(--mist); opacity: .9; }
.field input:focus { border-color: var(--orange); outline: 2px solid var(--orange); outline-offset: 1px; }
.form .btn { justify-self: start; }
.form-note { font-size: .85rem; color: var(--mist); }
.form-status { font-size: .95rem; min-height: 1.5em; color: var(--teal-text); font-weight: 600; }
.form-status[data-state="error"] { color: #A23B1E; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 860px) { .audit .wrap { grid-template-columns: 1fr; } }

/* Footer */
.footer { padding: 2.5rem 0 3rem; font-size: .9rem; color: var(--mist); border-top: 1px solid var(--line); }
.footer .wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: start; }
.footer .brand { color: var(--ink); margin-bottom: .6rem; }
.footer p { max-width: 30em; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; justify-items: start; }
.footer a { color: var(--ink-2); text-decoration: none; }
.footer a:hover { color: var(--ink); text-decoration: underline; }
.footer .legal { margin-top: 1.25rem; font-size: .85rem; }
@media (max-width: 700px) { .footer .wrap { grid-template-columns: 1fr; } }

/* Reduced motion: remove travel, keep feedback */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-copy > *, .meet .face-a, .meet .face-b, .meet-spin { animation: none; }
  .meet .face-a, .meet .face-b { transform: translate(0, -50%); }
  .meet .face-c { animation: none; opacity: 1; }
  .meet-caption { animation: none; opacity: 1; transform: translateX(-50%); }
  .js [data-reveal] { transform: none; transition: opacity 200ms ease-out; transition-delay: 0ms; }
  .device { transition: opacity 200ms ease-out; transform: none; }
  .btn { transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease; }
  .btn:hover, .btn:active { transform: none; }
}

/* ===== Scroll-linked motion and live graphics ===== */
.progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; background: var(--orange); transform-origin: 0 50%; transform: scaleX(var(--sp, 0)); z-index: 30; pointer-events: none; }

/* Hero parallax: layers move at different rates (driven by --sy from JS) */
.js .hero .meet { transform: translateY(calc(var(--sy, 0) * -0.14px)); will-change: transform; }
.js .hero-copy { transform: translateY(calc(var(--sy, 0) * 0.07px)); }

/* Generic parallax depth */
.js [data-parallax] { transform: translateY(calc((var(--p, .5) - .5) * var(--depth, -48px))); will-change: transform; }

/* Load race: a live loop comparing an old site with a rebuild */
.race { margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.lane { background: var(--paper-3); border: 1px solid var(--line); border-radius: 6px; padding: 1.1rem 1.2rem 1.2rem; display: grid; gap: .8rem; box-shadow: var(--shadow); }
.lane-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.lane-name { font-weight: 600; font-size: .95rem; }
.lane-time { font-variant-numeric: tabular-nums; font-weight: 700; font-size: 1.35rem; font-family: "Young Serif", Georgia, serif; font-weight: 400; color: var(--ink); min-width: 4ch; text-align: right; }
.lane-new .lane-time { color: var(--teal-text); }
.lane-bar { height: 6px; background: var(--paper-2); border-radius: 999px; overflow: hidden; }
.lane-bar i { display: block; height: 100%; width: 100%; background: var(--mist); border-radius: 999px; transform-origin: 0 50%; transform: scaleX(var(--w, 0)); }
.lane-new .lane-bar i { background: var(--teal); }
.lane-win { display: grid; grid-template-columns: 1.2fr 1fr; gap: 10px; min-height: 92px; }
.lane-ph { display: grid; gap: 7px; align-content: start; }
.lane-ph span { display: block; height: 8px; border-radius: 3px; background: var(--line); opacity: 0; transform: translateY(6px); transition: opacity 260ms ease-out, transform 360ms var(--ease-out); }
.lane-ph span:first-child { height: 12px; width: 75%; background: var(--ink-2); }
.lane-ph span:nth-child(3) { width: 60%; }
.lane-img { border-radius: 6px; background: linear-gradient(160deg, var(--teal-deep), var(--teal)); opacity: 0; transform: scale(.96); transition: opacity 300ms ease-out, transform 400ms var(--ease-out); }
.lane.s1 .lane-ph span:first-child, .lane.s2 .lane-ph span:first-child, .lane.s3 .lane-ph span:first-child, .lane.s4 .lane-ph span:first-child { opacity: 1; transform: none; }
.lane.s2 .lane-ph span:nth-child(2), .lane.s3 .lane-ph span:nth-child(2), .lane.s4 .lane-ph span:nth-child(2) { opacity: 1; transform: none; }
.lane.s3 .lane-ph span:nth-child(3), .lane.s4 .lane-ph span:nth-child(3) { opacity: 1; transform: none; }
.lane.s4 .lane-img { opacity: 1; transform: none; }
.lane-status { font-size: .85rem; color: var(--mist); display: flex; align-items: center; gap: .5rem; min-height: 1.4em; }
.lane-status .spin { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--line); border-top-color: var(--mist); animation: spin 900ms linear infinite; }
.lane.s4 .lane-status .spin { display: none; }
.lane-status .ok { display: none; color: var(--teal-text); font-weight: 600; }
.lane.s4 .lane-status .ok { display: inline; }
.lane.s4 .lane-status .wait { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.race-note { grid-column: 1 / -1; font-size: .85rem; color: var(--mist); }
@media (max-width: 760px) { .race { grid-template-columns: 1fr; } }

/* Marquee of trades */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.1rem 0; overflow: hidden; background: var(--paper); }
.ticker-track { display: flex; width: max-content; gap: 0; animation: ticker 48s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span { font-family: "Young Serif", Georgia, serif; font-size: clamp(1.1rem, 1.8vw, 1.5rem); color: var(--ink-2); white-space: nowrap; padding: 0 1.4rem; display: inline-flex; align-items: center; gap: 1.4rem; }
.ticker-track span::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); flex: none; }
.ticker-track span:nth-child(3n)::after { background: var(--teal); }
.ticker-track span:nth-child(3n+1)::after { background: var(--amber); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Steps rail that fills with scroll */
.steps-wrap { position: relative; }
.rail { position: absolute; left: .9rem; top: 1.5rem; bottom: 1.5rem; width: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.rail::after { content: ""; position: absolute; inset: 0; background: var(--orange); transform-origin: 50% 0; transform: scaleY(var(--p, 0)); }
.steps-wrap .steps li { padding-left: 0; }
.steps li::before { color: var(--mist); transition: color 300ms ease; }
.steps li.done::before { color: var(--orange-text); }
.js .steps-wrap .steps li::before { background: var(--paper); position: relative; z-index: 1; width: 1.8rem; text-align: center; margin-left: 0; }

/* Device stage tilt in perspective */
.frames { perspective: 1400px; }
.js .device.is-active { transform: rotateX(calc((var(--p, .5) - .5) * -12deg)); }

@media (prefers-reduced-motion: reduce) {
  .js .hero .meet, .js .hero-copy, .js [data-parallax] { transform: none; }
  .ticker-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .ticker-track .dup { display: none; }
  .js .device.is-active { transform: none; }
  .lane-status .spin { animation: none; }
}
