/* cardlio marketing site — brand system.
   Indigo #4F46E5 → violet #8B5CF6 on deep indigo-black; glassy panels;
   dark-mode aware; motion respects prefers-reduced-motion. */

/* Display face: Space Grotesk (variable, self-hosted — no third-party
   requests, keeping the "no analytics, not on this website" promise). */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("assets/fonts/space-grotesk-vf.woff2") format("woff2-variations");
}

:root {
  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --indigo: #4F46E5;
  --violet: #8B5CF6;
  --hero-bg: #12101f;
  --ink: #1c1d24;
  --muted: #5d6170;
  --bg: #ffffff;
  --bg-alt: #f5f4fb;
  --panel: #ffffff;
  --panel-border: rgba(20, 16, 70, 0.08);
  --radius: 22px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f0f0f6;
    --muted: #9ea3b5;
    --bg: #14131c;
    --bg-alt: #191825;
    --panel: #1f1e2c;
    --panel-border: rgba(255, 255, 255, 0.08);
  }
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body.site-body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--indigo); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(18, 16, 31, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 26px;
}
.nav .wordmark {
  font-family: var(--font-display);
  font-weight: 700; font-size: 20px; letter-spacing: -0.02em;
  background: linear-gradient(120deg, #a5b4fc, #d8b4fe);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-decoration: none;
}
.nav a.link {
  color: #cfd2e6; text-decoration: none; font-size: 14.5px; font-weight: 500;
}
.nav a.link:hover { color: #fff; }
.nav .spacer { flex: 1; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--hero-bg);
  color: #f4f4fa;
  padding: 130px 0 90px;
}
.hero .blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.55;
  pointer-events: none;
}
.blob-a { width: 560px; height: 560px; background: #4F46E5; top: -180px; left: -120px; }
.blob-b { width: 480px; height: 480px; background: #8B5CF6; bottom: -160px; right: -80px; }
.blob-c { width: 320px; height: 320px; background: #6d5cf0; top: 30%; left: 55%; opacity: 0.35; }
@media (prefers-reduced-motion: no-preference) {
  .blob-a { animation: drift 26s ease-in-out infinite alternate; }
  .blob-b { animation: drift 32s ease-in-out infinite alternate-reverse; }
  @keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(70px, 40px) scale(1.12); }
  }
}
.hero-grid {
  position: relative; display: grid; gap: 48px;
  grid-template-columns: 1.05fr 0.95fr; align-items: center;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 70px); line-height: 1.02;
  letter-spacing: -0.035em; font-weight: 700;
  text-wrap: balance;
}
.hero h1 .grad {
  background: linear-gradient(120deg, #a5b4fc, #e9d5ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.sub {
  margin-top: 18px; font-size: 19px; color: #c6c9dd; max-width: 46ch;
  text-wrap: pretty;
}
.badges { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.badge {
  display: inline-flex; flex-direction: column; justify-content: center;
  padding: 9px 18px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25); color: #fff;
  text-decoration: none; line-height: 1.2; min-width: 168px;
  background: rgba(255,255,255,0.06);
}
.badge small { font-size: 10.5px; opacity: 0.75; letter-spacing: 0.02em; }
.badge b { font-size: 16.5px; font-weight: 600; }
.badge.soon { opacity: 0.75; }
.badge .soon-tag {
  font-size: 10px; color: #c4b5fd; letter-spacing: 0.06em; text-transform: uppercase;
}

/* Official Apple store badge (local SVG — no third-party requests).
   Height matches the hand-styled "coming soon" badges beside it. */
.store-badge { display: inline-flex; align-items: center; }
.store-badge img { display: block; height: 50px; width: auto; }
.store-badge:hover { transform: translateY(-1px); }
.store-badge { transition: transform 0.35s var(--ease-out); }

/* hero: live card-link demo */
.demo-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px;
  color: #c7bdff; font-size: 15px; font-weight: 600;
  text-decoration: none;
}
.demo-link .arr { transition: translate 0.3s var(--ease-out); }
.demo-link:hover { color: #fff; }
.demo-link:hover .arr { translate: 4px 0; }

/* hero visual: CSS phone frame + floating cards */
.hero-visual { position: relative; min-height: 560px; }
.phone {
  position: relative; margin: 0 auto; width: 290px;
  border-radius: 44px; padding: 10px;
  background: #26243a;
  box-shadow: 0 40px 90px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.09);
}
.phone .screen { border-radius: 36px; overflow: hidden; }
.float-card {
  position: absolute; width: 250px; border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.float-1 { top: 36px; left: -30px; transform: rotate(-9deg); }
.float-2 { bottom: 48px; right: -26px; transform: rotate(7deg); }
@media (max-width: 860px) {
  .float-1 { left: 0; } .float-2 { right: 0; }
}
@media (prefers-reduced-motion: no-preference) {
  .float-card { animation: bob 7s ease-in-out infinite alternate; }
  .float-2 { animation-delay: -3.5s; }
  @keyframes bob { from { translate: 0 0; } to { translate: 0 -14px; } }
}

/* ---------- sections ---------- */
.section { padding: 96px 0; }
.section.alt { background: var(--bg-alt); }
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 44px); letter-spacing: -0.025em;
  font-weight: 700; line-height: 1.08;
  text-wrap: balance;
}
.section .kicker {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 12px;
  background: linear-gradient(120deg, var(--indigo), var(--violet));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section p.lead { margin-top: 14px; color: var(--muted); font-size: 17.5px; max-width: 54ch; text-wrap: pretty; }
.split {
  display: grid; gap: 56px; align-items: center;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split.rev > .visual { order: -1; }
@media (max-width: 860px) { .split.rev > .visual { order: 0; } }

.checks { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 11px; align-items: baseline; color: var(--ink); font-size: 16px; }
.checks li::before {
  content: "✓"; font-weight: 800; flex: none;
  color: var(--indigo);
}
.checks li span b { font-weight: 650; }

.shot {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--panel-border);
  box-shadow: 0 30px 70px rgba(20, 16, 70, 0.18);
}

/* ---------- features bento ---------- */
.bento {
  display: grid; gap: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-areas:
    "scan scan scan scan phone phone"
    "sig  sig  pdf  pdf  phone phone"
    "stats stats stats addr addr addr";
}
.cell-scan { grid-area: scan; }
.cell-phone { grid-area: phone; }
.cell-sig { grid-area: sig; }
.cell-pdf { grid-area: pdf; }
.cell-stats { grid-area: stats; }
.cell-addr { grid-area: addr; }
@media (max-width: 860px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "scan scan"
      "phone phone"
      "sig  pdf"
      "stats stats"
      "addr addr";
  }
}
@media (max-width: 560px) {
  .bento {
    grid-template-columns: 1fr;
    grid-template-areas: "scan" "phone" "sig" "pdf" "stats" "addr";
  }
}
.cell {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: var(--radius); padding: 26px 24px;
  box-shadow: 0 14px 34px rgba(20,16,70,0.07);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.cell::before {
  content: ""; position: absolute; inset: -1px; border-radius: var(--radius);
  padding: 1px; opacity: 0;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.cell:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(20,16,70,0.14); }
.cell:hover::before { opacity: 1; }
.cell h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 19px; letter-spacing: -0.015em; text-wrap: balance;
}
.cell > p { margin-top: 8px; color: var(--muted); font-size: 14.5px; text-wrap: pretty; }
.cell .demo-stack { margin: 26px 12px 6px 0; }
.cell-phone .phone-crop {
  margin: 24px -4px -26px; flex: 1; min-height: 220px;
  border-radius: 18px 18px 0 0; overflow: hidden;
  border: 1px solid var(--panel-border); border-bottom: 0;
  box-shadow: 0 -10px 40px rgba(20,16,70,0.12);
}
.cell-phone .phone-crop img { width: 100%; }
.cell .mini {
  margin-top: auto; padding-top: 22px;
  display: grid; gap: 7px; justify-items: start;
}
.mini i {
  display: block; height: 9px; width: 80%; border-radius: 4px;
  background: rgba(20, 16, 70, 0.13);
}
@media (prefers-color-scheme: dark) { .mini i { background: rgba(255,255,255,0.16); } }
/* frame the redacted-text bars as a pasted-snippet panel so the cell
   reads as a deliberate mockup, not an empty box */
.sig-mini, .pdf-mini {
  width: 88%;
  background: var(--bg-alt);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 16px 16px 14px;
}
.sig-mini .chip, .pdf-mini .chip { margin-top: 8px; }
.pdf-mini { position: relative; }
.pdf-mini .page {
  display: block; height: 10px; width: 72%; border-radius: 4px;
  background: var(--panel); border: 1px solid var(--panel-border);
}
.pdf-mini .page:nth-child(2) { width: 64%; }
.pdf-mini .page:nth-child(3) { width: 56%; }
.addr-mini .addr-row { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.addr-mini svg { width: 30px; height: 30px; color: var(--indigo); flex: none; }
.cell .stats-img {
  margin: 24px -4px -26px; border-radius: 14px 14px 0 0;
  border: 1px solid var(--panel-border); border-bottom: 0;
  max-height: 300px; width: calc(100% + 8px);
  object-fit: cover; object-position: top;
}

/* parsed-fields demo chips */
.demo-stack { position: relative; }
.demo-stack img { border-radius: 14px; box-shadow: 0 26px 60px rgba(20,16,70,0.28); }
.chips { position: absolute; right: -10px; top: 14px; display: grid; gap: 9px; }
.chip {
  background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: 999px; padding: 7px 14px;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  box-shadow: 0 10px 26px rgba(20,16,70,0.16);
  display: flex; gap: 8px; align-items: center;
}
.chip::before { content: "✓"; color: #22a06b; font-weight: 800; }

/* share tiles */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 860px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
.tile {
  background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: 18px; padding: 24px 20px;
  box-shadow: 0 14px 34px rgba(20,16,70,0.08);
}
.tile .icon {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: #fff;
}
.tile .icon svg { width: 22px; height: 22px; display: block; }
.tile h3 { font-family: var(--font-display); font-weight: 600; font-size: 17.5px; margin-bottom: 6px; }
.tile p { color: var(--muted); font-size: 14.5px; }

/* privacy (dark) */
.section.dark {
  background:
    radial-gradient(700px 420px at 15% 10%, rgba(79,70,229,0.35), transparent 60%),
    radial-gradient(600px 420px at 85% 90%, rgba(139,92,246,0.3), transparent 60%),
    var(--hero-bg);
  color: #eceafb;
}
.section.dark h2, .section.dark .checks li { color: #f2f0fd; }
.section.dark p.lead { color: #b9bcd4; }
.section.dark .checks li::before { color: #a5b4fc; }

/* mac frame */
.macframe {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 40px 90px rgba(0,0,0,0.35);
}

/* footer */
.footer {
  padding: 44px 0 60px; background: var(--hero-bg); color: #9a9db4;
  font-size: 14px;
}
.footer .wrap { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.footer a { color: #c8cbe0; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer .spacer { flex: 1; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* subpages */
.doc { max-width: 720px; margin: 0 auto; padding: 130px 24px 80px; }
.doc h1 { font-family: var(--font-display); font-weight: 700; font-size: 34px; letter-spacing: -0.02em; margin-bottom: 8px; text-wrap: balance; }
.doc .updated { color: var(--muted); font-size: 14px; margin-bottom: 34px; }
.doc h2 { font-family: var(--font-display); font-weight: 600; font-size: 21px; margin: 34px 0 10px; text-wrap: balance; }
.doc h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin: 26px 0 8px; text-wrap: balance; }
.doc p, .doc li { color: var(--ink); font-size: 16px; }
.doc ul { padding-left: 22px; }
.doc .note { color: var(--muted); }

/* ================================================================
   v2 motion system — all effects are transform/opacity/filter only,
   gated on prefers-reduced-motion, and never hide content without JS
   (entrance = animation-only; static styles stay fully visible).
   ================================================================ */

:root { --ease-out: cubic-bezier(0.19, 0.71, 0.22, 1); }

/* ---------- nav: condensed once the page scrolls ---------- */
.nav { transition: background 0.35s ease, box-shadow 0.35s ease; }
.nav.scrolled {
  background: rgba(18, 16, 31, 0.82);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 10px 30px rgba(0,0,0,0.35);
}
.nav-inner { transition: padding 0.35s ease; }
.nav.scrolled .nav-inner { padding-top: 10px; padding-bottom: 10px; }

/* ---------- hero entrance (only when JS adds html.anim) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .anim .rise {
    animation: rise 0.9s var(--ease-out) both;
    animation-delay: var(--d, 0s);
  }
  @keyframes rise {
    from { opacity: 0; transform: translateY(26px); filter: blur(6px); }
    to   { opacity: 1; transform: none; filter: none; }
  }
}

/* shimmer sweep across the gradient headline word */
.hero h1 .grad {
  background: linear-gradient(115deg, #a5b4fc 20%, #f1e8ff 40%, #e9d5ff 50%, #a5b4fc 80%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text;
}
@media (prefers-reduced-motion: no-preference) {
  .hero h1 .grad { animation: shimmer 7s ease-in-out infinite; }
  @keyframes shimmer {
    0%, 55%, 100% { background-position: 0% 0; }
    25% { background-position: 100% 0; }
  }
}

/* rotating conic glow behind the phone */
.hero-visual { perspective: 1000px; }
.hero-glow {
  position: absolute; inset: 8% 4%; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(79,70,229,0.5), rgba(139,92,246,0.15),
              rgba(168,140,250,0.45), rgba(79,70,229,0.5));
  filter: blur(70px); opacity: 0.6; pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-glow { animation: spin 24s linear infinite; }
  @keyframes spin { to { transform: rotate(360deg); } }
}
.phone {
  transition: transform 0.35s var(--ease-out);
  will-change: transform;
}
.float-card { transition: transform 0.45s var(--ease-out); }

/* film grain for depth */
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 18px; translate: -50% 0;
  width: 24px; height: 38px; border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.scroll-cue::after {
  content: ""; position: absolute; left: 50%; top: 7px; translate: -50% 0;
  width: 3.5px; height: 8px; border-radius: 3px; background: rgba(255,255,255,0.7);
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-cue::after { animation: cue 1.8s ease-in-out infinite; }
  @keyframes cue {
    0%, 100% { transform: translateY(0); opacity: 1; }
    65% { transform: translateY(11px); opacity: 0; }
  }
}
@media (max-width: 860px) { .scroll-cue { display: none; } }

/* ---------- reveals v2: blur + scale + per-item stagger ---------- */
.reveal {
  opacity: 0; transform: translateY(30px) scale(0.985); filter: blur(7px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out),
              filter 0.85s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
}

/* checklist items cascade in after their section lands */
.reveal .checks li { opacity: 0; transform: translateX(-16px); }
.reveal.in .checks li {
  opacity: 1; transform: none;
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.reveal.in .checks li:nth-child(1) { transition-delay: 0.25s; }
.reveal.in .checks li:nth-child(2) { transition-delay: 0.35s; }
.reveal.in .checks li:nth-child(3) { transition-delay: 0.45s; }
.reveal.in .checks li:nth-child(4) { transition-delay: 0.55s; }
.reveal.in .checks li:nth-child(5) { transition-delay: 0.65s; }
@media (prefers-reduced-motion: reduce) {
  .reveal .checks li { opacity: 1; transform: none; }
}

/* parsed-field chips pop in one by one */
.reveal .chip { opacity: 0; transform: translateX(18px) scale(0.9); }
.reveal.in .chip {
  opacity: 1; transform: none;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.reveal.in .chip:nth-child(1) { transition-delay: 0.45s; }
.reveal.in .chip:nth-child(2) { transition-delay: 0.62s; }
.reveal.in .chip:nth-child(3) { transition-delay: 0.79s; }
@media (prefers-reduced-motion: reduce) {
  .reveal .chip { opacity: 1; transform: none; }
}

/* ---------- screenshots: lift on hover ---------- */
.shot, .macframe, .demo-stack img {
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.shot:hover, .macframe:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 44px 90px rgba(20, 16, 70, 0.26);
}

/* ---------- share tiles: glow border, lift, living icons ---------- */
.tile {
  position: relative;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.tile::before {
  content: ""; position: absolute; inset: -1px; border-radius: 19px;
  padding: 1px; opacity: 0;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.tile:hover { transform: translateY(-7px); box-shadow: 0 26px 54px rgba(20,16,70,0.16); }
.tile:hover::before { opacity: 1; }
.tile .icon { position: relative; transition: transform 0.4s var(--ease-out); }
.tile:hover .icon { transform: scale(1.1) rotate(-4deg); }

/* NFC tile: radiating tap rings */
.tile-nfc .icon::after, .tile-nfc .icon::before {
  content: ""; position: absolute; inset: 0; border-radius: 12px;
  border: 1.5px solid rgba(139, 92, 246, 0.55);
  opacity: 0; pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .tile-nfc .icon::after { animation: ring 2.6s ease-out infinite; }
  .tile-nfc .icon::before { animation: ring 2.6s ease-out 1.3s infinite; }
  @keyframes ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.75); opacity: 0; }
  }
}

/* QR tile: scanline sweep */
.tile-qr .icon { overflow: hidden; }
.tile-qr .icon::after {
  content: ""; position: absolute; left: 4px; right: 4px; height: 2px;
  top: 6px; border-radius: 2px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 10px 2px rgba(255,255,255,0.6);
  opacity: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .tile-qr .icon::after { animation: scanline 3.2s ease-in-out infinite; }
  @keyframes scanline {
    0%, 12% { top: 5px; opacity: 0; }
    18% { opacity: 0.95; }
    46% { top: 34px; opacity: 0.95; }
    54%, 100% { top: 34px; opacity: 0; }
  }
}

/* ---------- numbers strip ---------- */
.numbers { padding: 70px 0 76px; }
.numbers .grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  text-align: center;
}
@media (max-width: 860px) { .numbers .grid { grid-template-columns: repeat(2, 1fr); gap: 30px 14px; } }
.numbers .num {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px); font-weight: 700; letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--indigo), var(--violet));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.numbers .lbl { color: var(--muted); font-size: 14.5px; margin-top: 4px; }

/* ---------- privacy section: slow aurora drift ---------- */
.section.dark { position: relative; overflow: hidden; }
.section.dark .wrap { position: relative; }
.aurora {
  position: absolute; inset: -30%; pointer-events: none; opacity: 0.5;
  background: conic-gradient(from 90deg at 50% 50%,
    rgba(79,70,229,0.32), transparent 30%, rgba(139,92,246,0.3),
    transparent 65%, rgba(79,70,229,0.32));
  filter: blur(80px);
}
@media (prefers-reduced-motion: no-preference) {
  .aurora { animation: spin 40s linear infinite; }
}

/* ---------- kicker: living gradient ---------- */
@media (prefers-reduced-motion: no-preference) {
  .section .kicker {
    background-size: 220% 100%;
    animation: kicker-drift 6s ease-in-out infinite alternate;
  }
  @keyframes kicker-drift {
    from { background-position: 0% 0; } to { background-position: 100% 0; }
  }
}

/* ---------- badges: hover lift + sheen ---------- */
.badge { position: relative; overflow: hidden; transition: transform 0.35s var(--ease-out), border-color 0.35s ease; }
.badge:hover { transform: translateY(-3px); border-color: rgba(199,189,255,0.6); }
.badge::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 40%;
  left: -60%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.badge:hover::after { left: 130%; }
