/* ============================================================
   Creativeone — Design System
   Architectural minimal sans · warm light · terracotta accent
   ============================================================ */

/* ---- Tokens ---------------------------------------------- */
:root{
  --bg:        #f2f0ea;      /* warm off-white page */
  --bg-2:      #fbfaf6;      /* lighter surface / cards */
  --bg-3:      #ebe7de;      /* sunken band */
  --ink:       #1a1916;      /* warm near-black */
  --ink-soft:  #45433c;      /* body text */
  --muted:     #837d72;      /* captions / meta */
  --line:      #dcd6c8;      /* hairline */
  --line-2:    #e7e2d6;      /* faint hairline */
  --accent:    #b5602f;      /* terracotta */
  --accent-deep:#9a4d22;
  --accent-tint:#efe2d6;
  --footer-bg: #16150f;
  --footer-ink:#f2f0ea;
  --footer-muted:#9a958a;

  --maxw: 1360px;
  --pad: clamp(1.25rem, 5vw, 5rem);
  --gut: clamp(1.25rem, 3vw, 2.5rem);

  --r-sm: 4px;
  --r:    8px;
  --r-lg: 16px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --ff-sans: "Archivo", system-ui, -apple-system, sans-serif;
  --ff-mono: "IBM Plex Mono", ui-monospace, monospace;

  --header-h: 76px;
}

/* ---- Reset ----------------------------------------------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }
body{
  margin:0;
  font-family:var(--ff-sans);
  background:var(--bg);
  color:var(--ink);
  font-size:clamp(1rem,0.96rem + 0.2vw,1.0938rem);
  line-height:1.62;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; cursor:pointer; }
h1,h2,h3,h4,p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
::selection{ background:var(--accent); color:#fff; }

/* ---- Layout ---------------------------------------------- */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad); }
.section{ padding-block:clamp(4.5rem,9vw,9rem); }
.section--tight{ padding-block:clamp(3rem,6vw,5.5rem); }
.band{ background:var(--bg-3); }
.band-2{ background:var(--bg-2); }
.divider{ height:1px; background:var(--line); border:0; margin:0; }

.grid{ display:grid; gap:var(--gut); }
.cols-2{ grid-template-columns:repeat(2,1fr); }
.cols-3{ grid-template-columns:repeat(3,1fr); }
@media (max-width:900px){ .cols-2,.cols-3{ grid-template-columns:1fr; } }

/* ---- Type ------------------------------------------------ */
.display{
  font-weight:700;
  line-height:0.96;
  letter-spacing:-0.025em;
  font-size:clamp(2.7rem,1.4rem + 6vw,6.4rem);
  text-wrap:balance;
}
.h1{ font-weight:700; line-height:1.0; letter-spacing:-0.022em; font-size:clamp(2.3rem,1.4rem + 4vw,4.6rem); text-wrap:balance; }
.h2{ font-weight:700; line-height:1.05; letter-spacing:-0.02em; font-size:clamp(1.9rem,1.3rem + 2.6vw,3.3rem); text-wrap:balance; }
.h3{ font-weight:600; line-height:1.12; letter-spacing:-0.015em; font-size:clamp(1.35rem,1.05rem + 1.2vw,2rem); }
.h4{ font-weight:600; line-height:1.2; letter-spacing:-0.01em; font-size:clamp(1.1rem,1rem + 0.5vw,1.3rem); }
.lead{ font-size:clamp(1.15rem,1.02rem + 0.7vw,1.5rem); line-height:1.45; color:var(--ink-soft); letter-spacing:-0.01em; text-wrap:pretty; }
.body{ color:var(--ink-soft); text-wrap:pretty; }
.muted{ color:var(--muted); }
.measure{ max-width:62ch; }
.measure-sm{ max-width:48ch; }

.eyebrow{
  font-family:var(--ff-mono);
  font-size:0.72rem;
  font-weight:500;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--accent);
  display:inline-flex;
  align-items:center;
  gap:0.7em;
}
.eyebrow::before{
  content:"";
  width:1.6em; height:1px; background:currentColor; opacity:.6;
}
.eyebrow--plain::before{ display:none; }
.eyebrow--muted{ color:var(--muted); }

.index{
  font-family:var(--ff-mono);
  font-size:0.78rem;
  letter-spacing:0.1em;
  color:var(--muted);
}
.accent-text{ color:var(--accent); }

/* ---- Buttons --------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; gap:0.6em;
  padding:0.9em 1.5em;
  font-size:0.92rem; font-weight:600; letter-spacing:0.01em;
  border:1px solid var(--ink);
  background:var(--ink); color:var(--bg);
  border-radius:var(--r);
  transition:background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  will-change:transform;
}
.btn:hover{ background:transparent; color:var(--ink); transform:translateY(-2px); }
.btn--accent{ background:var(--accent); border-color:var(--accent); color:#fff; }
.btn--accent:hover{ background:var(--accent-deep); border-color:var(--accent-deep); color:#fff; }
.btn--ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn--ghost:hover{ background:var(--ink); color:var(--bg); border-color:var(--ink); transform:translateY(-2px); }
.btn .arr{ transition:transform .35s var(--ease); }
.btn:hover .arr{ transform:translate(3px,-3px); }

.link-arrow{
  display:inline-flex; align-items:center; gap:0.6em;
  font-weight:600; font-size:0.98rem;
  padding-bottom:3px;
  border-bottom:1.5px solid var(--ink);
  transition:gap .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.link-arrow:hover{ gap:0.95em; color:var(--accent); border-color:var(--accent); }
.link-arrow .arr{ transition:transform .3s var(--ease); }
.link-arrow:hover .arr{ transform:translateX(3px); }

/* ---- Header ---------------------------------------------- */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:100;
  height:var(--header-h);
  display:flex; align-items:center;
  transition:background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom:1px solid transparent;
}
.site-header .wrap{ display:flex; align-items:center; justify-content:space-between; gap:1.5rem; }
.site-header.is-solid{
  background:color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter:saturate(140%) blur(14px);
  -webkit-backdrop-filter:saturate(140%) blur(14px);
  border-bottom-color:var(--line);
}
/* header over dark hero */
.site-header.on-dark:not(.is-solid){ color:#fff; }
.site-header.on-dark:not(.is-solid) .brand-mark{ filter:brightness(0) invert(1); }
.site-header.on-dark:not(.is-solid) .nav-link{ color:rgba(255,255,255,.82); }
.site-header.on-dark:not(.is-solid) .nav-link:hover,
.site-header.on-dark:not(.is-solid) .nav-link.is-active{ color:#fff; }
.site-header.on-dark:not(.is-solid) .lang-toggle{ border-color:rgba(255,255,255,.3); color:#fff; }
.site-header.on-dark:not(.is-solid) .burger span{ background:#fff; }

.brand{ display:flex; align-items:center; gap:0.6rem; flex-shrink:0; }
.brand-mark{ width:30px; height:30px; object-fit:contain; transition:filter .4s var(--ease); }
.brand-word{ font-weight:400; font-size:1.32rem; letter-spacing:-0.02em; line-height:1; }
.brand-word b{ font-weight:800; }

.nav{ display:flex; align-items:center; gap:clamp(1rem,2.2vw,2.2rem); }
.nav-link{
  position:relative; font-size:0.95rem; font-weight:500; letter-spacing:-0.005em;
  color:var(--ink-soft); padding:4px 0;
  transition:color .25s var(--ease);
}
.nav-link::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:1.5px;
  background:var(--accent); transform:scaleX(0); transform-origin:left;
  transition:transform .3s var(--ease);
}
.nav-link:hover{ color:var(--ink); }
.nav-link:hover::after,.nav-link.is-active::after{ transform:scaleX(1); }
.nav-link.is-active{ color:var(--ink); }

.header-right{ display:flex; align-items:center; gap:clamp(.8rem,1.6vw,1.4rem); }
.lang-toggle{
  display:inline-flex; align-items:center;
  border:1px solid var(--line); border-radius:100px; overflow:hidden;
  font-family:var(--ff-mono); font-size:0.72rem; letter-spacing:0.06em;
}
.lang-toggle button{
  padding:0.42em 0.72em; background:transparent; color:var(--muted);
  border:0; transition:color .25s,background .25s; line-height:1;
}
.lang-toggle button.is-active{ background:var(--ink); color:var(--bg); }
.site-header.on-dark:not(.is-solid) .lang-toggle button.is-active{ background:#fff; color:var(--ink); }

.header-cta{ display:inline-flex; }
@media (max-width:1080px){ .header-cta{ display:none; } }

/* burger */
.burger{ display:none; width:30px; height:22px; position:relative; background:none; border:0; }
.burger span{ position:absolute; left:0; right:0; height:2px; background:var(--ink); transition:transform .35s var(--ease), opacity .25s; }
.burger span:nth-child(1){ top:2px; }
.burger span:nth-child(2){ top:10px; }
.burger span:nth-child(3){ top:18px; }
body.menu-open .burger span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity:0; }
body.menu-open .burger span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }
@media (max-width:880px){
  .nav.nav--desktop{ display:none; }
  .burger{ display:block; }
}

/* mobile menu overlay */
.mobile-menu{
  position:fixed; inset:0; z-index:99;
  background:var(--bg);
  display:flex; flex-direction:column; justify-content:center;
  padding:var(--header-h) var(--pad) 3rem;
  transform:translateY(-100%);
  transition:transform .55s var(--ease-out);
  visibility:hidden;
}
body.menu-open .mobile-menu{ transform:translateY(0); visibility:visible; }
.mobile-menu nav{ display:flex; flex-direction:column; gap:0.2rem; }
.mobile-menu a{
  font-size:clamp(2rem,9vw,3.4rem); font-weight:700; letter-spacing:-0.02em; line-height:1.15;
  padding:0.18em 0; color:var(--ink);
  border-bottom:1px solid var(--line-2);
  display:flex; align-items:baseline; gap:1rem;
  opacity:0; transform:translateY(18px);
}
body.menu-open .mobile-menu a{ animation:menuIn .5s var(--ease-out) forwards; }
.mobile-menu a .mi{ font-family:var(--ff-mono); font-size:0.8rem; color:var(--accent); font-weight:500; }
.mobile-menu a.is-active{ color:var(--accent); }
@keyframes menuIn{ to{ opacity:1; transform:translateY(0); } }
.mobile-foot{ margin-top:auto; padding-top:2.5rem; display:flex; flex-wrap:wrap; gap:1.5rem; justify-content:space-between; align-items:flex-end; font-size:0.9rem; color:var(--muted); }

/* ---- Footer ---------------------------------------------- */
.site-footer{ background:var(--footer-bg); color:var(--footer-ink); padding-block:clamp(4rem,7vw,6.5rem) 2.5rem; }
.site-footer a{ color:var(--footer-ink); }
.footer-cta{ display:flex; flex-wrap:wrap; align-items:baseline; justify-content:space-between; gap:2rem; padding-bottom:clamp(3rem,6vw,5rem); border-bottom:1px solid rgba(255,255,255,.12); }
.footer-mail{ font-weight:700; letter-spacing:-0.025em; font-size:clamp(1.8rem,1rem + 3.4vw,3.6rem); line-height:1; }
.footer-mail:hover{ color:var(--accent); }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:2.5rem; padding-top:clamp(3rem,5vw,4rem); }
@media (max-width:760px){ .footer-grid{ grid-template-columns:1fr 1fr; gap:2rem; } }
@media (max-width:480px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-col h5{ font-family:var(--ff-mono); font-size:0.72rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--footer-muted); margin:0 0 1.1rem; font-weight:500; }
.footer-col ul{ display:flex; flex-direction:column; gap:0.7rem; }
.footer-col a{ color:rgba(242,240,234,.78); transition:color .25s; font-size:0.98rem; }
.footer-col a:hover{ color:#fff; }
.footer-brand .brand-word{ color:#fff; font-size:1.5rem; }
.footer-note{ color:var(--footer-muted); font-size:0.92rem; max-width:34ch; margin-top:1rem; line-height:1.55; }
.footer-bottom{ display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between; align-items:center; margin-top:clamp(3rem,5vw,4rem); padding-top:1.8rem; border-top:1px solid rgba(255,255,255,.12); font-size:0.84rem; color:var(--footer-muted); }
.footer-bottom .legal{ display:flex; gap:1.4rem; flex-wrap:wrap; }

/* ---- Reveal animation (gated on JS so content shows without it) ---- */
html.js .reveal{ opacity:0; transform:translateY(26px); transition:opacity .8s var(--ease-out), transform .8s var(--ease-out); }
html.js .reveal.is-visible{ opacity:1; transform:none; }
html.js .reveal[data-delay="1"]{ transition-delay:.08s; }
html.js .reveal[data-delay="2"]{ transition-delay:.16s; }
html.js .reveal[data-delay="3"]{ transition-delay:.24s; }
html.js .reveal[data-delay="4"]{ transition-delay:.32s; }
@media (prefers-reduced-motion: reduce){
  html.js .reveal{ opacity:1; transform:none; transition:none; }
}

/* clip-reveal for images */
.img-reveal{ overflow:hidden; }
.img-reveal img{ transition:transform 1.2s var(--ease-out); }
.img-reveal.is-visible img{ }

/* ---- Figure / media -------------------------------------- */
figure{ margin:0; }
.media{ position:relative; overflow:hidden; background:var(--bg-3); border-radius:var(--r); }
.media img{ width:100%; height:100%; object-fit:cover; transition:transform 1.1s var(--ease-out); }
.media-zoom:hover img{ transform:scale(1.04); }
.cap{ font-family:var(--ff-mono); font-size:0.74rem; letter-spacing:0.05em; color:var(--muted); margin-top:0.9rem; display:flex; gap:1rem; }
.cap .num{ color:var(--accent); }
.browser{
  border-radius:var(--r); overflow:hidden; background:var(--bg-2);
  border:1px solid var(--line); box-shadow:0 30px 60px -30px rgba(26,25,22,.28);
}
.browser-bar{ display:flex; align-items:center; gap:6px; padding:11px 14px; background:var(--bg-2); border-bottom:1px solid var(--line-2); }
.browser-bar i{ width:10px; height:10px; border-radius:50%; background:var(--line); display:block; }
.browser-bar .url{ margin-left:10px; font-family:var(--ff-mono); font-size:0.72rem; color:var(--muted); }
.browser img{ width:100%; display:block; }

/* ---- Before / After compare ------------------------------ */
.compare{ position:relative; overflow:hidden; border-radius:var(--r); background:var(--bg-3); touch-action:none; }
.compare img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }
.compare-before{ position:absolute; inset:0; clip-path:inset(0 50% 0 0); will-change:clip-path; }
.compare-range{ position:absolute; inset:0; width:100%; height:100%; margin:0; opacity:0; cursor:ew-resize; z-index:3; }
.compare-divider{ position:absolute; top:0; bottom:0; left:50%; width:2px; background:#fff; transform:translateX(-1px); pointer-events:none; z-index:2; box-shadow:0 0 0 1px rgba(0,0,0,.12); }
.compare-divider span{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:44px; height:44px; border-radius:50%; background:#fff; display:flex; align-items:center; justify-content:center; font-size:14px; color:var(--ink); box-shadow:0 6px 20px rgba(0,0,0,.28); }
.compare-tag{ position:absolute; bottom:16px; z-index:2; font-family:var(--ff-mono); font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase; background:rgba(20,18,13,.62); color:#fff; padding:0.45em 0.8em; border-radius:100px; pointer-events:none; backdrop-filter:blur(4px); }
.compare-tag.is-before{ left:16px; } .compare-tag.is-after{ right:16px; }

/* full-bleed feature image */
.feature-full{ width:100%; height:clamp(380px,62vh,720px); }
.feature-full img{ width:100%; height:100%; object-fit:cover; }

/* ---- Forms ----------------------------------------------- */
.form{ display:grid; gap:1.4rem; }
.field{ display:flex; flex-direction:column; gap:0.55rem; }
.field label{ font-family:var(--ff-mono); font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); }
.field input,.field textarea,.field select{
  font-family:var(--ff-sans); font-size:1.02rem; color:var(--ink);
  background:var(--bg-2); border:1px solid var(--line); border-radius:var(--r);
  padding:0.9em 1em; width:100%; transition:border-color .25s, box-shadow .25s; resize:vertical;
}
.field input::placeholder,.field textarea::placeholder{ color:#a7a196; }
.field input:focus,.field textarea:focus,.field select:focus{ outline:none; border-color:var(--accent); box-shadow:0 0 0 3px var(--accent-tint); }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:1.4rem; }
@media (max-width:560px){ .field-row{ grid-template-columns:1fr; } }
.form .btn{ justify-self:start; margin-top:0.4rem; }
.form-success{ opacity:0; transform:translateY(10px); transition:opacity .5s var(--ease-out), transform .5s var(--ease-out); border:1px solid var(--accent); background:var(--accent-tint); border-radius:var(--r-lg); padding:clamp(2rem,4vw,3rem); }
.form-success.is-visible{ opacity:1; transform:none; }
.form-success .check{ width:48px; height:48px; border-radius:50%; background:var(--accent); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin-bottom:1.2rem; }

/* map */
.map-embed{ width:100%; height:100%; border:0; display:block; filter:grayscale(0.4) contrast(1.02); }
.map-frame{ border:1px solid var(--line); border-radius:var(--r); overflow:hidden; aspect-ratio:16/10; background:var(--bg-3); }

/* avail dot */
.avail-dot{ width:9px; height:9px; border-radius:50%; background:#2f9e57; display:inline-block; position:relative; }
.avail-dot::after{ content:""; position:absolute; inset:-5px; border-radius:50%; border:1px solid #2f9e57; opacity:.5; animation:pulse 2.2s var(--ease) infinite; }
@keyframes pulse{ 0%{ transform:scale(.6); opacity:.7; } 100%{ transform:scale(1.5); opacity:0; } }
@media (prefers-reduced-motion: reduce){ .avail-dot::after{ animation:none; } }

/* ---- Forms end ---- */

/* ---- Tag / chip ------------------------------------------ */
.tags{ display:flex; flex-wrap:wrap; gap:0.5rem; }
.tag{
  font-family:var(--ff-mono); font-size:0.72rem; letter-spacing:0.04em;
  padding:0.4em 0.85em; border:1px solid var(--line); border-radius:100px; color:var(--ink-soft);
  background:var(--bg-2);
}
.tag--accent{ border-color:var(--accent); color:var(--accent); background:transparent; }

/* ---- Pricing --------------------------------------------- */
.price-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:var(--gut); align-items:stretch; }
@media (max-width:980px){ .price-grid{ grid-template-columns:1fr; max-width:560px; margin-inline:auto; } }
.price-card{
  display:flex; flex-direction:column;
  background:var(--bg-2); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:clamp(1.6rem,3vw,2.4rem);
  position:relative; transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.price-card:hover{ transform:translateY(-4px); box-shadow:0 30px 50px -34px rgba(26,25,22,.3); }
.price-card--feature{ background:var(--ink); color:var(--bg); border-color:var(--ink); }
.price-card--feature .muted{ color:rgba(242,240,234,.6); }
.price-card--feature .price-feat-list li{ border-color:rgba(255,255,255,.12); }
.price-card--feature .price-kicker{ color:var(--bg); }
.price-badge{
  position:absolute; top:-13px; left:clamp(1.6rem,3vw,2.4rem);
  background:var(--accent); color:#fff; font-family:var(--ff-mono); font-size:0.68rem;
  letter-spacing:0.12em; text-transform:uppercase; padding:0.5em 0.9em; border-radius:100px;
}
.price-kicker{ font-family:var(--ff-mono); font-size:0.72rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--accent); }
.price-amount{ font-weight:700; letter-spacing:-0.03em; font-size:clamp(2.2rem,1.4rem + 2.4vw,3.1rem); line-height:1; margin:1rem 0 0.7rem; }
.price-for{ font-size:0.96rem; min-height:3.6em; }
.price-feat-list{ display:flex; flex-direction:column; margin:1.6rem 0 0; }
.price-feat-list li{ padding:0.85rem 0; border-top:1px solid var(--line-2); font-size:0.92rem; line-height:1.45; }
.price-feat-list li b{ font-weight:700; }
.price-card .btn{ margin-top:1.8rem; width:100%; justify-content:center; }

/* ---- FAQ ------------------------------------------------- */
.faq-item{ border-top:1px solid var(--line); }
.faq-item:last-child{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:2rem;
  padding:1.5rem 0; background:none; border:0; text-align:left;
  font-size:clamp(1.05rem,0.95rem + 0.6vw,1.4rem); font-weight:600; letter-spacing:-0.01em; line-height:1.25;
}
.faq-icon{ position:relative; flex-shrink:0; width:20px; height:20px; }
.faq-icon::before,.faq-icon::after{ content:""; position:absolute; background:var(--accent); transition:transform .35s var(--ease); }
.faq-icon::before{ top:9px; left:0; width:20px; height:2px; }
.faq-icon::after{ top:0; left:9px; width:2px; height:20px; }
.faq-item.open .faq-icon::after{ transform:scaleY(0); }
.faq-a{ overflow:hidden; height:0; transition:height .4s var(--ease); }
.faq-a-inner{ padding:0 0 1.6rem; max-width:64ch; color:var(--ink-soft); }

/* ---- Testimonial ----------------------------------------- */
.quote{ font-weight:500; letter-spacing:-0.015em; line-height:1.28; font-size:clamp(1.4rem,1rem + 1.8vw,2.4rem); text-wrap:balance; }
.quote-mark{ font-family:var(--ff-mono); color:var(--accent); font-size:1rem; letter-spacing:0.1em; }
.cite{ display:flex; flex-direction:column; gap:0.15rem; }
.cite b{ font-weight:600; }
.cite span{ color:var(--muted); font-size:0.9rem; font-family:var(--ff-mono); letter-spacing:0.03em; }

/* ---- Process steps --------------------------------------- */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:var(--gut); }
@media (max-width:900px){ .steps{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .steps{ grid-template-columns:1fr; } }
.step{ border-top:1px solid var(--ink); padding-top:1.3rem; }
.step .num{ font-family:var(--ff-mono); font-size:0.78rem; color:var(--accent); letter-spacing:0.1em; }
.step h4{ margin:0.9rem 0 0.5rem; }
.step p{ color:var(--ink-soft); font-size:0.96rem; }

/* ---- Marquee / strip ------------------------------------- */
.kpi-row{ display:flex; flex-wrap:wrap; gap:clamp(2rem,6vw,5rem); }
.kpi .n{ font-weight:700; letter-spacing:-0.03em; font-size:clamp(2.2rem,1.4rem + 2.6vw,3.4rem); line-height:1; }
.kpi .l{ color:var(--muted); font-size:0.92rem; margin-top:0.5rem; font-family:var(--ff-mono); letter-spacing:0.04em; }

/* ---- Utilities ------------------------------------------- */
.stack > * + *{ margin-top:1.1rem; }
.stack-lg > * + *{ margin-top:1.8rem; }
.flow > * + *{ margin-top:var(--gut); }
.center{ text-align:center; }
.mx-auto{ margin-inline:auto; }
.skip-link{ position:absolute; left:-999px; top:0; background:var(--ink); color:var(--bg); padding:.7em 1em; z-index:200; }
.skip-link:focus{ left:0; }
[hidden]{ display:none !important; }
.sr-only{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); }
