/* ===== TOKENS ===== */
:root {
  --ink: #0F0A1E;
  --ink-2: #2A1F47;
  --muted: #5F5176;
  --muted-2: #9489AB;
  --line: #ECEAF4;
  --line-2: #DDD8EE;

  --surface: #FFFFFF;
  --surface-2: #F7F4FC;
  --surface-3: #F0EAFB;
  --card: #FFFFFF;

  --primary: #7C3AED;
  --primary-2: #6D28D9;
  --primary-soft: #F0E9FE;

  --teal: #0EA5A4;
  --teal-2: #0F8C8B;
  --teal-soft: #DCFAF9;

  --warm: #F59E0B;

  --shadow-sm: 0 2px 8px rgba(45, 24, 96, 0.05);
  --shadow: 0 8px 24px rgba(45, 24, 96, 0.07);
  --shadow-lg: 0 20px 48px rgba(45, 24, 96, 0.12);
  --shadow-purple: 0 10px 28px rgba(124, 58, 237, 0.28);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 26px;
  --r-2xl: 32px;

  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--surface); line-height: 1.5; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }

.app { margin: 0 auto; background: var(--surface); position: relative; min-height: 100vh; overflow-x: clip; }

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.js .reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .imp__line > span { transform: none; }
  .imp__eyebrow, .imp__sub { opacity: 1; transform: none; }
  .imp__rule::before, .imp__rule::after { transform: scaleX(1); }
  .imp__rule span, .imp__dial-ring::after, .imp__bar-fill::after { opacity: 1; }
  .is-in .imp__card::after, .is-in .imp__bar-fill::after { animation: none; }
  .hero__cue span { animation: none; }
}

/* ===== Logo ===== */
.logo-img { display: block; width: auto; height: 28px; }

/* ===== SCROLL PROGRESS ===== */
.prog { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60; background: rgba(124,58,237,.08); pointer-events: none; }
.prog i { display: block; height: 100%; transform-origin: 0 50%; background: linear-gradient(90deg, #8B5CF6, #A78BFA 45%, #0EA5A4); box-shadow: 0 0 10px rgba(124,58,237,.5); will-change: transform; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; font-weight: 600; font-family: var(--font-display); transition: transform .15s, box-shadow .25s, background .2s; white-space: nowrap; padding: 12px 20px; font-size: 14px; position: relative; overflow: hidden; isolation: isolate; }
.btn:active { transform: scale(0.97); }
.btn--primary { background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%); color: white; box-shadow: var(--shadow-purple); }
.btn--primary:hover { box-shadow: 0 14px 36px rgba(124, 58, 237, 0.4); }
.btn--primary::after, .btn--white::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 45%; background: linear-gradient(105deg, transparent, rgba(255,255,255,.3), transparent); transform: translateX(-170%); transition: transform .7s cubic-bezier(.4,0,.2,1); pointer-events: none; }
.btn--white::after { background: linear-gradient(105deg, transparent, rgba(124,58,237,.16), transparent); }
.btn--primary:hover::after, .btn--white:hover::after { transform: translateX(340%); }
.btn--white { background: white; color: var(--primary-2); box-shadow: 0 8px 22px rgba(0,0,0,0.18); padding: 14px 22px; font-size: 15px; }
.btn--ghost { background: white; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn--sm { padding: 8px 14px; font-size: 13px; }
.btn--block { width: 100%; padding: 14px 20px; font-size: 15px; }

/* ===== HEADER ===== */
.hdr { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; background: rgba(255,255,255,0.85); backdrop-filter: saturate(140%) blur(16px); -webkit-backdrop-filter: saturate(140%) blur(16px); transition: box-shadow .2s, background .2s, border-color .2s; border-bottom: 1px solid transparent; }
.hdr--scrolled { background: rgba(255,255,255,0.95); border-bottom-color: var(--line); box-shadow: 0 2px 8px rgba(45,24,96,0.04); }
.hdr__brand { display: flex; align-items: center; }
.hdr__nav { display: none; }
.hdr__cta { display: none; }
.hdr__menu { width: 38px; height: 38px; border-radius: 10px; background: white; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); }
.hdr__drawer[hidden] { display: none; }
.hdr__drawer { position: absolute; top: 60px; left: 12px; right: 12px; background: white; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 10px; display: flex; flex-direction: column; gap: 2px; animation: drawer .2s ease; border: 1px solid var(--line); }
@keyframes drawer { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.hdr__drawer a { padding: 12px 14px; border-radius: 10px; font-weight: 500; font-size: 14px; }
.hdr__drawer a:hover { background: var(--surface-2); color: var(--primary); }
.hdr__drawer .btn { margin-top: 6px; padding: 11px; }

/* ===== HERO ===== */
.hero { padding: 24px 20px 48px; position: relative; overflow: hidden; background: white; }
.hero > * { position: relative; z-index: 1; }
.hero__bg { position: absolute; inset: -80px -20px 0 -20px; z-index: 0; pointer-events: none; overflow: hidden; }
.hero__bg-mesh { position: absolute; inset: -10%; background:
  radial-gradient(ellipse 60% 50% at 20% 20%, rgba(167,139,250,0.35), transparent 60%),
  radial-gradient(ellipse 55% 45% at 85% 30%, rgba(94,234,212,0.28), transparent 60%),
  radial-gradient(ellipse 50% 40% at 60% 90%, rgba(196,181,253,0.3), transparent 60%);
  filter: blur(40px);
  animation: meshDrift 18s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(8px,-12px) scale(1.04); }
  100% { transform: translate(-6px,10px) scale(0.98); }
}
.hero__bg-blob { position: absolute; border-radius: 50%; mix-blend-mode: multiply; opacity: 0.55; filter: blur(50px); animation: blobFloat 16s ease-in-out infinite; }
.hero__bg-blob--a { width: 260px; height: 260px; background: radial-gradient(circle, #A78BFA, transparent 65%); top: -60px; right: -60px; }
.hero__bg-blob--b { width: 220px; height: 220px; background: radial-gradient(circle, #5EEAD4, transparent 65%); top: 200px; left: -60px; animation-delay: -7s; opacity: 0.42; }
@keyframes blobFloat { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-15px) scale(1.06); } }
.hero__bg-pulse { position: absolute; bottom: 24px; left: 0; right: 0; width: 100%; height: 60px; opacity: 0.32; }
.hero__bg-pulse path { stroke-dasharray: 600; stroke-dashoffset: 600; animation: pulse-stroke 3.5s linear infinite; }
@keyframes pulse-stroke { to { stroke-dashoffset: -600; } }
.hero__bg-particles { position: absolute; inset: 0; }
.hero__bg-particles span { position: absolute; bottom: -10px; width: 4px; height: 4px; border-radius: 50%; background: var(--primary); opacity: 0; animation: float 12s linear infinite; box-shadow: 0 0 8px rgba(124, 58, 237, 0.6); }
.hero__bg-particles span:nth-child(3n) { background: var(--teal); box-shadow: 0 0 8px rgba(14, 165, 164, 0.6); }
.hero__bg-particles span:nth-child(5n) { background: var(--warm); box-shadow: 0 0 8px rgba(245, 158, 11, 0.55); }
@keyframes float { 0% { transform: translateY(0) scale(0); opacity: 0; } 10% { opacity: 0.6; transform: translateY(-50px) scale(1); } 90% { opacity: 0.6; } 100% { transform: translateY(-600px) scale(0.5); opacity: 0; } }

.hero__pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; background: rgba(255, 255, 255, 0.95); border: 1px solid var(--line-2); border-radius: 999px; font-size: 11.5px; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-sm); }
.hero__pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px rgba(14, 165, 164, 0.18); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero__title { margin-top: 16px; font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 7.6vw, 38px); line-height: 1.08; letter-spacing: -0.038em; color: var(--ink); text-wrap: balance; }
.brk { display: none; }
@media (min-width: 540px) { .brk { display: inline; } }
.hero__title-grad { background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 50%, #0EA5A4 100%); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: gradShift 6s ease-in-out infinite; }
@keyframes gradShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero__sub { margin-top: 12px; font-size: 14.5px; color: var(--muted); line-height: 1.6; max-width: 420px; text-wrap: pretty; }
.hero__cta { margin-top: 18px; }
.hero__trust { margin-top: 32px; text-align: center; }
.hero__trust-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted-2); font-weight: 600; margin-bottom: 10px; }
.hero__trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.hero__badge { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 8px 10px; background: white; border: 1px solid var(--line-2); border-radius: 12px; box-shadow: var(--shadow-sm); font-family: var(--font-display); font-weight: 700; font-size: 11.5px; color: var(--ink-2); letter-spacing: 0.02em; transition: border-color .22s, transform .22s, box-shadow .22s, color .22s; }
.hero__badge svg { color: var(--primary); flex-shrink: 0; transition: color .22s; }
.hero__badge:nth-child(2n) svg { color: var(--teal-2); }
.hero__badge:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); color: var(--ink); }
.hero__badge:nth-child(2n):hover { border-color: var(--teal); }

.hero__cue { display: none; }

/* ===== SECTION BASE — white default, soft alternates ===== */
.section { padding: 56px 20px; position: relative; }
.section--white { background: white; }
.section--soft { background: linear-gradient(180deg, var(--surface-2) 0%, white 100%); }
.section--soft + .section--soft { background: var(--surface-2); }

.section__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); margin-bottom: 12px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15); animation: pulse 2.5s infinite; }
.section__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 6.5vw, 28px); line-height: 1.18; letter-spacing: -0.025em; color: var(--ink); text-wrap: balance; }
.section__sub { margin-top: 10px; font-size: 14px; color: var(--muted); text-wrap: pretty; line-height: 1.55; }

/* ===== Unified Solution Cards (used everywhere) ===== */
.flag { margin-top: 26px; display: flex; flex-direction: column; gap: 22px; }
.flag__card { background: white; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); position: relative; transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s; animation: cardIn .7s cubic-bezier(.2,.8,.2,1) both; animation-delay: calc(var(--i) * 0.08s); }
@keyframes cardIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.flag__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.flag__card--purple { border-top: 3px solid var(--primary); }
.flag__card--teal { border-top: 3px solid var(--teal); }

.flag__media { position: relative; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--surface-2), var(--surface-3)); overflow: hidden; }
.flag__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.16,1,.3,1); }
.flag__card:hover .flag__media img { transform: scale(1.05); }
.flag__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(15, 10, 30, 0.5)); }

.flag__num { position: absolute; bottom: 14px; left: 18px; font-family: var(--font-display); font-weight: 800; font-size: 24px; color: white; letter-spacing: -0.04em; z-index: 1; text-shadow: 0 2px 14px rgba(0,0,0,0.45); line-height: 1; }
.flag__num::after { content: ""; display: block; width: 26px; height: 2px; margin-top: 7px; border-radius: 2px; background: linear-gradient(90deg, #A78BFA, #5EEAD4); }
.flag__body { padding: 20px 22px 22px; }
.flag__tag { display: inline-block; font-size: 10.5px; font-weight: 700; color: var(--primary); background: var(--primary-soft); padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.flag__card--teal .flag__tag { color: var(--teal-2); background: var(--teal-soft); }
.flag__title { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.02em; line-height: 1.22; color: var(--ink); margin-bottom: 8px; }
.flag__desc { font-size: 13.5px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }
.flag__bullets { margin-top: 14px; list-style: none; display: flex; flex-direction: column; gap: 7px; }
.flag__bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--ink-2); font-weight: 500; line-height: 1.4; }
.flag__bullets-dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.flag__card--teal .flag__bullets-dot { background: var(--teal); }
.flag__metric { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700; color: var(--ink); letter-spacing: -0.005em; }
.flag__metric svg { color: var(--primary); flex-shrink: 0; }
.flag__card--teal .flag__metric svg { color: var(--teal-2); }

/* ===== MODULE EXPLORER ===== */
.mx__stats { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; }
.mx__stats > div { background: white; padding: 16px 12px; text-align: center; }
.mx__stats b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 6vw, 30px); letter-spacing: -0.035em; line-height: 1; background: linear-gradient(135deg, #8B5CF6, #0EA5A4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mx__stats span { display: block; margin-top: 6px; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--muted); }

.mx { margin-top: 18px; border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; background: white; box-shadow: var(--shadow-sm); }
.mx__row { border-bottom: 1px solid var(--line); animation: cardIn .5s cubic-bezier(.2,.8,.2,1) both; animation-delay: calc(var(--i) * 0.04s); }
.mx__row:last-child { border-bottom: none; }
.mx__head { width: 100%; display: grid; grid-template-columns: auto auto 1fr auto auto; align-items: center; gap: 12px; padding: 15px 16px; text-align: left; position: relative; transition: background .2s; }
.mx__head::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--primary); transform: scaleY(0); transform-origin: center; transition: transform .28s cubic-bezier(.2,.8,.2,1); }
.mx__row--teal .mx__head::before { background: var(--teal); }
.mx__row:hover .mx__head { background: var(--surface-2); }
.mx__row.is-on .mx__head { background: var(--surface-2); }
.mx__row.is-on .mx__head::before { transform: scaleY(1); }
.mx__idx { font-family: var(--font-display); font-weight: 800; font-size: 11px; color: var(--muted-2); letter-spacing: 0.04em; font-variant-numeric: tabular-nums; }
.mx__icon { width: 34px; height: 34px; border-radius: 10px; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; flex-shrink: 0; transition: background .25s, color .25s, transform .25s; }
.mx__row--teal .mx__icon { background: var(--teal-soft); color: var(--teal-2); }
.mx__row.is-on .mx__icon { transform: scale(1.06); }
.mx__text { display: flex; flex-direction: column; min-width: 0; }
.mx__name { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink); letter-spacing: -0.015em; line-height: 1.25; }
.mx__blurb { margin-top: 3px; font-size: 11.5px; color: var(--muted); line-height: 1.4; display: none; }
.mx__count { font-family: var(--font-display); font-weight: 700; font-size: 11px; color: var(--primary); background: var(--primary-soft); padding: 3px 8px; border-radius: 999px; font-variant-numeric: tabular-nums; }
.mx__row--teal .mx__count { color: var(--teal-2); background: var(--teal-soft); }
.mx__chev { color: var(--muted-2); display: grid; place-items: center; transition: transform .3s cubic-bezier(.2,.8,.2,1), color .2s; }
.mx__row.is-on .mx__chev { transform: rotate(180deg); color: var(--primary); }
.mx__row--teal.is-on .mx__chev { color: var(--teal-2); }
.mx__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .34s cubic-bezier(.2,.8,.2,1); }
.mx__row.is-on .mx__panel { grid-template-rows: 1fr; }
.mx__panel-in { overflow: hidden; display: flex; flex-wrap: wrap; gap: 7px; padding: 0 16px 0 58px; opacity: 0; transition: opacity .25s ease, padding-bottom .3s ease; }
.mx__row.is-on .mx__panel-in { opacity: 1; padding-bottom: 16px; }
.mx__sub { font-size: 11.5px; font-weight: 500; color: var(--ink-2); background: white; border: 1px solid var(--line-2); padding: 5px 11px; border-radius: 999px; }
.mx__row--teal .mx__sub { border-color: #BEF0EF; }

.dk, .imp { --mx: 50%; --my: 12%; }
.dk__bg::after, .imp__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(460px circle at var(--mx) var(--my), rgba(167,139,250,.17), transparent 62%); }

/* ===== IMPACT PANEL (dark) ===== */
.imp { position: relative; overflow: hidden; background: #0A0616; color: #fff; padding: 60px 20px 64px; margin-top: 8px; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.imp__bg { position: absolute; inset: 0; pointer-events: none; }
.imp__bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 20%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 20%, transparent 75%); }
.imp__bg-glow { position: absolute; border-radius: 50%; filter: blur(80px); }
.imp__bg-glow--a { width: 380px; height: 380px; top: -140px; right: -120px; background: rgba(124,58,237,.42); }
.imp__bg-glow--b { width: 320px; height: 320px; bottom: -140px; left: -120px; background: rgba(14,165,164,.3); }
.imp__wrap { position: relative; }

.imp__head { max-width: 660px; }
.js .imp__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: #5EEAD4; opacity: 0; transform: translateY(10px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.is-in .imp__eyebrow { opacity: 1; transform: none; }
.imp__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: #5EEAD4; box-shadow: 0 0 0 3px rgba(94,234,212,.2), 0 0 12px rgba(94,234,212,.8); animation: pulse 2.4s infinite; }
.imp__title { margin-top: 14px; font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 8vw, 40px); line-height: 1.06; letter-spacing: -0.038em; text-wrap: balance; }
.imp__line { display: block; overflow: hidden; padding-bottom: 2px; }
.js .imp__line > span { display: inline-block; transform: translateY(115%); transition: transform 1s cubic-bezier(.16,1,.3,1); }
.imp__line:nth-child(2) > span { transition-delay: .12s; }
.is-in .imp__line > span { transform: none; }
.imp__grad { background: linear-gradient(100deg, #C4B5FD 0%, #A78BFA 40%, #5EEAD4 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.imp__sub { margin-top: 14px; font-size: 15px; line-height: 1.5; color: rgba(255,255,255,.62); font-weight: 500; padding-left: 14px; border-left: 2px solid rgba(167,139,250,.55); transition: opacity .8s ease .28s, transform .8s cubic-bezier(.16,1,.3,1) .28s; }
.is-in .imp__sub { opacity: 1; transform: none; }

.imp__cards { margin-top: 34px; display: grid; grid-template-columns: 1fr; gap: 12px; }
.imp__card { position: relative; background: linear-gradient(158deg, rgba(255,255,255,.075), rgba(255,255,255,.028)); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 20px 18px 18px; overflow: hidden; transition: border-color .3s, transform .3s, box-shadow .3s; }
.imp__card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(167,139,250,.16), transparent 55%); pointer-events: none; }
.imp__card::after { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 62%; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.14) 50%, transparent 70%); transform: translateX(-140%); pointer-events: none; }
.is-in .imp__card::after { animation: impSheen 1.5s cubic-bezier(.4,0,.25,1) both; animation-delay: calc(.4s + var(--i) * .12s); }
@keyframes impSheen { to { transform: translateX(300%); } }
.imp__card > * { position: relative; z-index: 1; }
.imp__card:hover { border-color: rgba(167,139,250,.42); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,.4); }
.is-in .imp__card { animation: impIn .7s cubic-bezier(.2,.8,.2,1) both; animation-delay: calc(var(--i) * .1s); }
@keyframes impIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.imp__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 10vw, 44px); line-height: .95; letter-spacing: -0.045em; background: linear-gradient(120deg, #fff 0%, #C4B5FD 55%, #5EEAD4 100%); -webkit-background-clip: text; background-clip: text; color: transparent; font-variant-numeric: tabular-nums; }
.imp__lbl { margin-top: 8px; font-family: var(--font-display); font-weight: 700; font-size: 14.5px; line-height: 1.3; letter-spacing: -0.012em; color: #fff; }

.imp__bar { margin-top: 16px; }
.imp__bar-track { position: relative; height: 7px; border-radius: 99px; background: rgba(255,255,255,.09); overflow: hidden; }
.imp__bar-ghost { position: absolute; inset: 0 auto 0 0; border-radius: 99px; background: repeating-linear-gradient(115deg, rgba(94,234,212,.32) 0 5px, rgba(94,234,212,.1) 5px 10px); transition: width 1.5s cubic-bezier(.2,.8,.2,1) .34s; }
.imp__bar-fill { position: absolute; inset: 0 auto 0 0; border-radius: 99px; background: linear-gradient(90deg, #A78BFA, #5EEAD4); box-shadow: 0 0 14px rgba(167,139,250,.65); transition: width 1.3s cubic-bezier(.16,1,.3,1); }
.imp__bar-fill::after { content: ""; position: absolute; top: 50%; right: -1px; width: 9px; height: 9px; margin-top: -4.5px; border-radius: 50%; background: #fff; box-shadow: 0 0 10px 2px rgba(94,234,212,.85); opacity: 0; transition: opacity .5s ease 1.15s; }
.is-in .imp__bar-fill::after { opacity: 1; animation: impCap 3.2s ease-in-out 1.7s infinite; }
@keyframes impCap { 0%, 100% { box-shadow: 0 0 10px 2px rgba(94,234,212,.85); } 50% { box-shadow: 0 0 16px 4px rgba(94,234,212,.5); } }
.imp__bar-scale { margin-top: 7px; display: flex; justify-content: space-between; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.62); letter-spacing: .06em; font-variant-numeric: tabular-nums; }
.imp__bar-cap { margin-top: 6px; font-size: 10.5px; color: rgba(255,255,255,.58); line-height: 1.4; }

.imp__dots { margin-top: 16px; }
.imp__dots-grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 5px; }
.imp__dots-grid span { aspect-ratio: 1; border-radius: 3px; background: rgba(255,255,255,.1); }
.is-in .imp__dots-grid span.is-lit { background: linear-gradient(135deg, #A78BFA, #5EEAD4); box-shadow: 0 0 10px rgba(167,139,250,.7); animation: dotLight .5s cubic-bezier(.2,.8,.2,1) both; animation-delay: calc(.5s + var(--d) * .09s); }
@keyframes dotLight { from { opacity: .15; transform: scale(.6); } to { opacity: 1; transform: none; } }
.imp__dots-cap { margin-top: 11px; font-size: 11px; color: rgba(255,255,255,.55); line-height: 1.45; }

.imp__note { margin-top: 16px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,.6); }
.imp__note svg { color: #5EEAD4; flex-shrink: 0; }

.imp__rule { margin: 38px 0 26px; display: flex; align-items: center; gap: 14px; }
.imp__rule::before, .imp__rule::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent); transition: transform 1.1s cubic-bezier(.16,1,.3,1) .35s; }
.imp__rule::before { transform-origin: right; }
.imp__rule::after { transform-origin: left; }
.is-in .imp__rule::before, .is-in .imp__rule::after { transform: scaleX(1); }
.imp__rule span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,.58); white-space: nowrap; }
.is-in .imp__rule span { opacity: 1; }

.imp__dials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
.imp__dial { text-align: center; }
.is-in .imp__dial { animation: impIn .6s cubic-bezier(.2,.8,.2,1) both; animation-delay: calc(.3s + var(--i) * .1s); }
.imp__dial-ring { position: relative; width: 82px; height: 82px; margin: 0 auto; }
.imp__dial-ring::after { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: radial-gradient(circle, rgba(167,139,250,.24), transparent 70%); opacity: 0; transition: opacity .9s ease 1.3s; }
.is-in .imp__dial-ring::after { opacity: 1; }
.imp__dial-svg { position: relative; z-index: 1; width: 100%; height: 100%; display: block; filter: drop-shadow(0 0 6px rgba(167,139,250,.45)); }
.imp__dial-val { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: -0.03em; color: #fff; font-variant-numeric: tabular-nums; }
.imp__dial-lbl { margin-top: 11px; font-size: 11.5px; line-height: 1.4; color: rgba(255,255,255,.66); font-weight: 500; max-width: 15ch; margin-inline: auto; }

/* ===== SHARED DARK SHELL ===== */
.dk { position: relative; overflow: hidden; background: #0A0616; color: #fff; padding: 60px 20px 64px; box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.dk__bg { position: absolute; inset: 0; pointer-events: none; }
.dk__bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 52px 52px; mask-image: radial-gradient(ellipse 85% 60% at 50% 20%, #000 15%, transparent 78%); -webkit-mask-image: radial-gradient(ellipse 85% 60% at 50% 20%, #000 15%, transparent 78%); }
.dk__glow { position: absolute; border-radius: 50%; filter: blur(90px); }
.dk__glow--tl { width: 340px; height: 340px; top: -130px; left: -110px; background: rgba(124,58,237,.34); }
.dk__glow--br { width: 300px; height: 300px; bottom: -130px; right: -110px; background: rgba(14,165,164,.26); }
.dk__glow--tr { width: 340px; height: 340px; top: -140px; right: -110px; background: rgba(124,58,237,.3); }
.dk__glow--bl { width: 300px; height: 300px; bottom: -140px; left: -110px; background: rgba(14,165,164,.24); }
.dk__wrap { position: relative; }
.dk__head { max-width: 660px; }
.dk__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: #5EEAD4; }
.dk__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: #5EEAD4; box-shadow: 0 0 0 3px rgba(94,234,212,.2), 0 0 12px rgba(94,234,212,.8); animation: pulse 2.4s infinite; }
.dk__title { margin-top: 14px; font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 7.4vw, 38px); line-height: 1.08; letter-spacing: -0.036em; text-wrap: balance; }
.dk__title span { background: linear-gradient(100deg, #C4B5FD 0%, #A78BFA 42%, #5EEAD4 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dk__sub { margin-top: 13px; font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.6); }

/* ===== COMPLIANCE (dark credential wall) ===== */
.cmp__meta { margin-top: 20px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 11.5px; color: rgba(255,255,255,.5); }
.cmp__meta b { color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 13px; }
.cmp__meta i { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.28); }
.cmp__grid { margin-top: 30px; display: grid; grid-template-columns: 1fr; gap: 14px; }
.cmp__card { position: relative; background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); overflow: hidden; transition: border-color .3s, transform .3s, box-shadow .3s; animation: impIn .7s cubic-bezier(.2,.8,.2,1) both; animation-delay: calc(var(--i) * .1s); }
.cmp__card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #A78BFA, rgba(167,139,250,0)); }
.cmp__card--teal::before { background: linear-gradient(90deg, #5EEAD4, rgba(94,234,212,0)); }
.cmp__card:hover { border-color: rgba(167,139,250,.4); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,.42); }
.cmp__card--teal:hover { border-color: rgba(94,234,212,.4); }
.cmp__top { display: flex; align-items: center; gap: 11px; padding: 17px 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.cmp__flag { font-size: 20px; line-height: 1; width: 36px; height: 36px; display: grid; place-items: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; }
.cmp__region { font-family: var(--font-display); font-weight: 800; font-size: 15.5px; letter-spacing: -0.02em; }
.cmp__status { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 700; letter-spacing: .03em; color: #5EEAD4; background: rgba(94,234,212,.1); border: 1px solid rgba(94,234,212,.22); padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.cmp__status i { width: 5px; height: 5px; border-radius: 50%; background: #5EEAD4; box-shadow: 0 0 8px rgba(94,234,212,.9); animation: pulse 2.2s infinite; }
.cmp__list { list-style: none; }
.cmp__list li { display: flex; gap: 12px; padding: 15px 18px; }
.cmp__list li + li { border-top: 1px solid rgba(255,255,255,.06); }
.cmp__ico { width: 34px; height: 34px; flex-shrink: 0; border-radius: 10px; display: grid; place-items: center; color: #C4B5FD; background: rgba(167,139,250,.12); border: 1px solid rgba(167,139,250,.22); transition: background .25s, color .25s, border-color .25s; }
.cmp__card--teal .cmp__ico { color: #5EEAD4; background: rgba(94,234,212,.1); border-color: rgba(94,234,212,.22); }
.cmp__list li:hover .cmp__ico { background: rgba(167,139,250,.22); }
.cmp__card--teal .cmp__list li:hover .cmp__ico { background: rgba(94,234,212,.2); }
.cmp__body { display: flex; flex-direction: column; min-width: 0; }
.cmp__name { font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: #fff; letter-spacing: -0.012em; }
.cmp__note { margin-top: 4px; font-size: 11.5px; color: rgba(255,255,255,.52); line-height: 1.5; }

/* ===== ENTERPRISE (dark spec pillars) ===== */
.eg { padding-top: 20px; }
.eg__grid { margin-top: 30px; display: grid; grid-template-columns: 1fr; gap: 14px; }
.eg__card { position: relative; overflow: hidden; background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r-lg); padding: 20px 18px 18px; transition: border-color .3s, transform .3s, box-shadow .3s; animation: impIn .7s cubic-bezier(.2,.8,.2,1) both; animation-delay: calc(var(--i) * .09s); }
.eg__card:hover { border-color: rgba(167,139,250,.38); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,.4); }
.eg__idx { position: absolute; top: 14px; right: 18px; font-family: var(--font-display); font-weight: 800; font-size: 34px; line-height: 1; letter-spacing: -0.05em; color: rgba(255,255,255,.06); }
.eg__ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; color: #C4B5FD; background: linear-gradient(140deg, rgba(167,139,250,.2), rgba(94,234,212,.08)); border: 1px solid rgba(167,139,250,.24); }
.eg__title { margin-top: 14px; font-family: var(--font-display); font-weight: 800; font-size: 15.5px; letter-spacing: -0.02em; color: #fff; }
.eg__list { margin-top: 14px; list-style: none; }
.eg__list li { display: flex; align-items: flex-start; gap: 9px; padding: 8px 0; font-size: 12.5px; color: rgba(255,255,255,.72); line-height: 1.45; }
.eg__list li + li { border-top: 1px solid rgba(255,255,255,.055); }
.eg__list svg { flex-shrink: 0; margin-top: 4px; color: #5EEAD4; }

/* ===== WHY — image-led ===== */
.why { margin-top: 24px; display: flex; flex-direction: column; gap: 18px; }
.why__card { background: white; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); animation: cardIn .7s cubic-bezier(.2,.8,.2,1) both; animation-delay: calc(var(--i) * 0.12s); transition: transform .35s, box-shadow .35s; }
.why__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why__media { position: relative; aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(135deg, var(--surface-2), var(--surface-3)); }
.why__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.why__card:hover .why__media img { transform: scale(1.06); }
.why__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(15, 10, 30, 0.65)); }
.why__num { position: absolute; bottom: 14px; left: 18px; font-family: var(--font-display); font-weight: 800; font-size: 36px; color: white; letter-spacing: -0.04em; z-index: 1; text-shadow: 0 2px 14px rgba(0,0,0,0.4); line-height: 1; }
.why__num::after { content: ""; display: block; width: 32px; height: 3px; background: linear-gradient(90deg, #A78BFA, #5EEAD4); margin-top: 8px; border-radius: 2px; }
.why__body { padding: 20px 22px 22px; }
.why__title { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); }
.why__desc { margin-top: 8px; font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ===== FINAL CTA ===== */
.finalcta { padding: 0 16px 56px; background: white; }
.finalcta__inner { background: linear-gradient(135deg, #6D28D9 0%, #4C1D95 60%, #0F8C8B 100%); border-radius: var(--r-2xl); padding: 40px 24px; color: white; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.finalcta__shine { position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 40%), radial-gradient(circle at 80% 90%, rgba(94, 234, 212, 0.3), transparent 50%); animation: gradShift 10s ease-in-out infinite; }
.finalcta__inner::after { content: ""; position: absolute; inset: 9px; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; pointer-events: none; }
.finalcta__inner > *:not(.finalcta__shine) { position: relative; }
.finalcta__eyebrow { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: #5EEAD4; margin-bottom: 12px; }
.finalcta__title { font-family: var(--font-display); font-weight: 800; font-size: 26px; line-height: 1.15; letter-spacing: -0.025em; }
.finalcta__sub { margin-top: 10px; font-size: 13.5px; color: rgba(255,255,255,0.75); margin-bottom: 22px; }
.finalcta__assure { margin-top: 16px; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; font-size: 11.5px; color: rgba(255,255,255,0.72); }
.finalcta__assure span { display: inline-flex; align-items: center; gap: 5px; }

/* ===== FOOTER ===== */
.ftr { padding: 36px 20px 100px; text-align: center; background: white; position: relative; }
.ftr::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line-2) 18%, var(--line-2) 82%, transparent); }
.ftr__brand { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.ftr__tag { font-size: 12.5px; color: var(--muted); max-width: 320px; margin: 0 auto; line-height: 1.55; }
.ftr__links { margin-top: 18px; display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.ftr__links a { font-size: 12.5px; color: var(--ink-2); font-weight: 500; }
.ftr__links a:hover { color: var(--primary); }
.ftr__copy { margin-top: 18px; font-size: 10.5px; color: var(--muted-2); }

/* ===== FAB ===== */
.fab { position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 40; background: linear-gradient(135deg, #8B5CF6, #6D28D9 60%, #0EA5A4); background-size: 200% 100%; color: white; padding: 11px 20px; border-radius: 999px; font-family: var(--font-display); font-weight: 700; font-size: 13px; box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4); display: inline-flex; align-items: center; gap: 8px; transition: transform .2s, box-shadow .2s; animation: gradShift 6s ease-in-out infinite; }
.fab:hover { box-shadow: 0 14px 36px rgba(124, 58, 237, 0.55); }
.fab:active { transform: translateX(-50%) scale(0.96); }
.fab svg { animation: spin 6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }


/* ===== Progressive-enhancement gating =====
   Everything below only hides content when JS is available (html.js).
   With JS disabled the page renders complete and static. */
.js .imp__sub { opacity: 0; transform: translateY(10px); transition: opacity .8s ease .28s, transform .8s cubic-bezier(.16,1,.3,1) .28s; }
.js .imp.is-in .imp__sub { opacity: 1; transform: none; }
.js .imp__rule::before, .js .imp__rule::after { transform: scaleX(0); }
.js .imp.is-in .imp__rule::before, .js .imp.is-in .imp__rule::after { transform: scaleX(1); }
.js .imp__rule span { opacity: 0; transition: opacity .7s ease .45s; }
.js .imp.is-in .imp__rule span { opacity: 1; }

/* magnitude bars: final width lives in the markup (style="--fill:50%") */
.imp__bar-fill { width: var(--fill, 0%); }
.imp__bar-ghost { width: var(--fill-to, 0%); }
.js .imp .imp__bar-fill, .js .imp .imp__bar-ghost { width: 0; }
.js .imp.is-in .imp__bar-fill { width: var(--fill, 0%); }
.js .imp.is-in .imp__bar-ghost { width: var(--fill-to, 0%); }

/* radial dials: final dashoffset lives in the markup */
.js .imp .imp__dial-prog { stroke-dashoffset: 188.5; }
.imp__dial-prog { transition: stroke-dashoffset 1.4s cubic-bezier(.2,.8,.2,1); }

/* ===== Module accordion (native <details>, no JS required) ===== */
.mx__row { border-bottom: 1px solid var(--line); }
.mx__row:last-child { border-bottom: none; }
.mx__head { cursor: pointer; list-style: none; }
.mx__head::-webkit-details-marker { display: none; }
.mx__head::marker { content: ""; }
.mx__row[open] .mx__head { background: var(--surface-2); }
.mx__row[open] .mx__head::before { transform: scaleY(1); }
.mx__row[open] .mx__icon { transform: scale(1.06); }
.mx__row[open] .mx__chev { transform: rotate(180deg); color: var(--primary); }
.mx__row--teal[open] .mx__chev { color: var(--teal-2); }
.mx__panel-in { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 16px 16px 58px; }
.mx__row[open] .mx__panel-in { animation: mxOpen .3s cubic-bezier(.2,.8,.2,1) both; }
@keyframes mxOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.mx__head:focus-visible { outline: 2px solid var(--primary); outline-offset: -2px; }

/* ===== Demo Form Section ===== */
.demo { padding: 60px 20px 72px; background: linear-gradient(180deg, var(--surface-2), white); }
.demo__wrap { max-width: 640px; margin: 0 auto; }
.demo__card { background: white; border: 1px solid var(--line-2); border-radius: var(--r-2xl); padding: 26px 22px 28px; box-shadow: var(--shadow-lg); }
.demo__head { margin-bottom: 22px; }
.demo__head h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 6vw, 30px); letter-spacing: -0.03em; color: var(--ink); }
.demo__head p { margin-top: 8px; font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.demo__form { display: flex; flex-direction: column; gap: 22px; }
.demo__set { border: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.demo__legend { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); padding: 0; margin-bottom: 2px; }
.demo__grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.field { display: block; }
.field__lbl { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field__lbl em { color: var(--primary); font-style: normal; }
.field__err { margin-left: auto; font-size: 11px; color: #B91C1C; font-weight: 600; }
.field input, .field textarea { width: 100%; padding: 14px 16px; border-radius: 14px; border: 1.5px solid var(--line-2); background: var(--surface-2); font-size: 15px; color: var(--ink); outline: none; transition: border-color .15s, background .15s, box-shadow .15s; font-family: inherit; }
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #FCA5A5; background: #FEF2F2; }

/* chip-styled native radio / checkbox — works with no JS */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; display: inline-flex; }
.chip input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.chip span { padding: 10px 14px; background: var(--surface-2); border: 1.5px solid var(--line-2); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--ink-2); transition: background .15s, border-color .15s, color .15s; user-select: none; }
.chip input:hover + span { border-color: var(--primary); color: var(--primary); }
.chip input:checked + span { background: var(--primary-soft); border-color: var(--primary); color: var(--primary-2); }
.chip input:focus-visible + span { outline: 2px solid var(--primary); outline-offset: 2px; }

.consent { display: flex; align-items: flex-start; gap: 11px; padding: 14px; background: var(--surface-2); border-radius: 12px; border: 1.5px solid var(--line-2); cursor: pointer; }
.consent input { width: 18px; height: 18px; accent-color: var(--primary); margin-top: 1px; flex-shrink: 0; }
.consent span { font-size: 13px; color: var(--ink-2); line-height: 1.5; }
.demo__actions { display: flex; flex-direction: column; gap: 12px; }
.demo__privacy { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 12.5px; color: var(--muted); }
.demo__privacy svg { color: var(--teal); flex-shrink: 0; }

/* visible focus states throughout */
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 6px; }
.skip { position: absolute; left: -9999px; top: 0; background: var(--primary); color: white; padding: 12px 18px; z-index: 100; border-radius: 0 0 10px 0; font-weight: 600; }
.skip:focus { left: 0; }

@media (min-width: 640px) {
  body { background: radial-gradient(circle at 50% 0%, rgba(167, 139, 250, 0.06), transparent 40%), white; }
  .mx__blurb { display: block; }
  .eg__grid { grid-template-columns: repeat(2, 1fr); }
  .imp__cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .imp__dials { grid-template-columns: repeat(4, 1fr); }
}

/* ===== TABLET ===== */
@media (min-width: 768px) {
  .section, .hero, .ftr, .finalcta { padding-inline: max(28px, calc((100% - 1180px) / 2)); }
  .section { padding-block: 76px; }
  .hero { padding-block: 48px 72px; text-align: center; }
  .hero__title { font-size: clamp(42px, 5.6vw, 62px); margin-top: 20px; }
  .hero__sub { font-size: 16.5px; margin-inline: auto; max-width: 620px; }
  .hero__cta { margin-top: 26px; }
  .hero__cta .btn { padding: 14px 26px; font-size: 15px; }
  .hero__bg { inset: -120px 0 0 0; }
  .hero__bg-blob--a { width: 420px; height: 420px; right: 4%; }
  .hero__bg-blob--b { width: 380px; height: 380px; left: 2%; top: 180px; }
  .hero__trust { margin-top: 44px; }
  .hero__trust-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; }
  .hero__badge { font-size: 13px; padding: 9px 15px 9px 12px; border-radius: 12px; }
  .hero__cue { display: block; margin: 40px auto 0; width: 1px; height: 54px; background: linear-gradient(180deg, var(--line-2), transparent); position: relative; overflow: hidden; }
  .hero__cue span { position: absolute; top: 0; left: -1.5px; width: 4px; height: 4px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 8px rgba(124,58,237,.8); animation: cueDrop 2.4s cubic-bezier(.6,0,.4,1) infinite; }
  @keyframes cueDrop { 0% { transform: translateY(-6px); opacity: 0; } 25% { opacity: 1; } 80% { transform: translateY(52px); opacity: 0; } 100% { opacity: 0; } }
  .section__title { font-size: clamp(30px, 3.4vw, 40px); max-width: 20ch; }
  .section__sub { font-size: 15.5px; max-width: 60ch; }
  .flag { margin-top: 34px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
  .why { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
  .dk { padding: 88px max(28px, calc((100% - 1180px) / 2)) 92px; }
  .dk__head { max-width: 720px; }
  .dk__title { font-size: clamp(34px, 4.1vw, 48px); margin-top: 18px; }
  .dk__sub { font-size: 16.5px; margin-top: 16px; }
  .cmp__grid { margin-top: 44px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; align-items: start; }
  .cmp__meta { margin-top: 24px; gap: 14px; font-size: 12.5px; }
  .cmp__top { padding: 20px 22px; }
  .cmp__list li { padding: 17px 22px; }
  .cmp__name { font-size: 14.5px; }
  .cmp__note { font-size: 12px; }
  .eg { padding-top: 24px; }
  .eg__grid { margin-top: 44px; gap: 20px; }
  .eg__card { padding: 24px 22px 20px; border-radius: var(--r-xl); }
  .eg__title { font-size: 16.5px; }
  .imp { padding: 92px max(28px, calc((100% - 1180px) / 2)) 96px; }
  .imp__head { max-width: 720px; }
  .imp__title { font-size: clamp(38px, 4.4vw, 54px); margin-top: 18px; }
  .imp__sub { font-size: 17px; margin-top: 18px; padding-left: 18px; }
  .imp__cards { margin-top: 46px; gap: 18px; }
  .imp__card { padding: 26px 24px 22px; border-radius: var(--r-xl); }
  .imp__num { font-size: clamp(40px, 4vw, 50px); }
  .imp__lbl { font-size: 16px; margin-top: 10px; }
  .imp__bar { margin-top: 20px; }
  .imp__rule { margin: 52px 0 34px; }
  .imp__dials { gap: 26px 20px; }
  .imp__dial-ring { width: 92px; height: 92px; }
  .imp__dial-val { font-size: 16.5px; }
  .imp__dial-lbl { font-size: 12.5px; margin-top: 13px; }
  .mx { max-width: 820px; margin-inline: auto; }
  .mx__stats { max-width: 820px; margin-inline: auto; margin-top: 32px; }
  .mx__head { padding: 18px 20px; gap: 14px; }
  .mx__name { font-size: 15.5px; }
  .mx__panel-in { padding-inline: 20px 20px; padding-left: 68px; }
  .finalcta { padding-bottom: 76px; }
  .finalcta__inner { padding: 64px 40px; border-radius: 40px; }
  .finalcta__title { font-size: clamp(32px, 3.6vw, 44px); }
  .finalcta__sub { font-size: 16px; }
  .finalcta .btn--white { width: auto; padding: 15px 32px; }
  .fab { display: none; }
  .ftr { padding-block: 56px 48px; }
  .ftr__tag { font-size: 14px; max-width: 420px; }
  .ftr__links a { font-size: 14px; }
}

/* ===== DESKTOP ===== */
@media (min-width: 900px) {
  .hdr { padding-inline: max(28px, calc((100% - 1180px) / 2)); padding-block: 14px; }
  .hdr__nav { display: flex; align-items: center; gap: 4px; margin-left: auto; margin-right: 18px; }
  .hdr__nav a { padding: 9px 13px; border-radius: 9px; font-size: 13.5px; font-weight: 500; color: var(--ink-2); transition: background .18s, color .18s; }
  .hdr__nav a:hover { background: var(--surface-2); color: var(--primary); }
  .hdr__cta { display: inline-flex; }
  .hdr__menu { display: none; }
  .logo-img { height: 32px; }
  .eg__grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .flag__body { padding: 24px 26px 26px; }
  .flag__title { font-size: 20px; }
  .flag__desc { font-size: 14px; }
  .why__body { padding: 24px 26px 26px; }
  .why__title { font-size: 19px; }
  .imp__cards { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1280px) {
  .flag { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Overrides for the static build (native details + no-JS safety) ===== */
/* the old JS accordion collapsed this with a grid-rows trick; <details> handles it now */
.mx__panel { display: block; }
.mx__panel-in { opacity: 1; overflow: visible; }

/* lit dots must be lit even with JS disabled — only the animation is JS-gated */
.imp__dots-grid span.is-lit { background: linear-gradient(135deg, #A78BFA, #5EEAD4); box-shadow: 0 0 10px rgba(167,139,250,.7); }
.js .imp:not(.is-in) .imp__dots-grid span.is-lit { background: rgba(255,255,255,.1); box-shadow: none; }

/* bar end-cap: visible by default, animated in when JS is present */
.imp__bar-fill::after { opacity: 1; }
.js .imp:not(.is-in) .imp__bar-fill::after { opacity: 0; }

/* dial bloom: visible by default */
.imp__dial-ring::after { opacity: 1; }
.js .imp:not(.is-in) .imp__dial-ring::after { opacity: 0; }
