/* ═══ WhiteLedgers v3 · cinematic landing ═══════════════════════
   Near-black hero → white body. One violet accent. Space Grotesk
   display, Inter body, JetBrains Mono numbers. Glass on dark. */

:root {
  --void: #07060B;
  --void-2: #0A0913;
  --white: #FAFAFC;
  --ink: #16141F;
  --muted: #6A6780;
  --violet: #7C5CFF;
  --violet-bright: #9B82FF;
  --violet-ink: #2A1F66;
  --red: #FF5470;
  --green: #2FBF71;
  --amber: #E8A13C;
  --line-dark: rgba(250, 250, 252, 0.10);
  --line-light: rgba(22, 20, 31, 0.10);
  --glass: rgba(18, 16, 28, 0.55);

  --font-d: "Space Grotesk", "Inter", sans-serif;
  --font-b: "Inter", -apple-system, sans-serif;
  --font-m: "JetBrains Mono", "SF Mono", monospace;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --pad: clamp(84px, 11vw, 150px);
  --r: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: var(--font-d); line-height: 1.08; font-weight: 600; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; }
b { font-weight: 600; }
.mono { font-family: var(--font-m); font-size: 0.85em; }
::selection { background: rgba(124, 92, 255, 0.25); }

.skip { position: absolute; left: -9999px; z-index: 200; background: var(--violet); color: #fff; padding: 10px 18px; border-radius: 8px; }
.skip:focus { left: 12px; top: 12px; }
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 840px; }

.eyebrow {
  font-family: var(--font-m); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--violet);
  margin-bottom: 1.1rem;
}
.eyebrow-light { color: var(--violet-bright); }
.h2 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); max-width: 24ch; margin-bottom: 1rem; text-wrap: balance; }
.section-lead { color: var(--muted); max-width: 56ch; font-size: 1.08rem; margin-bottom: clamp(2.2rem, 4vw, 3.6rem); }

/* buttons ------------------------------------------------------- */
.btn {
  display: inline-block; padding: 0.85em 1.7em; border-radius: 12px;
  font-weight: 600; font-size: 0.95rem; font-family: var(--font-d);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  border: 1px solid transparent; cursor: pointer; text-align: center;
}
.btn-violet {
  background: linear-gradient(135deg, var(--violet-bright), var(--violet));
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(124, 92, 255, 0.55);
}
.btn-violet:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(124, 92, 255, 0.7); }
.btn-ghost { border-color: var(--line-light); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--violet); color: var(--violet); transform: translateY(-2px); }
.btn-lg { padding: 1.05em 2.1em; font-size: 1.02rem; }
.link-quiet {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(250, 250, 252, 0.78); font-weight: 500; font-size: 0.95rem;
  transition: color 0.3s;
  background: none; border: 0; cursor: pointer; font-family: var(--font-b); padding: 0;
}
.link-quiet svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.link-quiet:hover { color: #fff; }
.link-quiet-light { color: rgba(250, 250, 252, 0.75); }

/* ═══ NAV ═══════════════════════════════════════════════════════ */
.nav { position: fixed; inset: 0 0 auto; z-index: 60; transition: background 0.4s var(--ease), border-color 0.4s, backdrop-filter 0.4s; border-bottom: 1px solid transparent; }
.nav.is-solid {
  background: rgba(250, 250, 252, 0.8);
  -webkit-backdrop-filter: blur(16px) saturate(150%); backdrop-filter: blur(16px) saturate(150%);
  border-bottom-color: var(--line-light);
}
.nav-inner { max-width: var(--wrap); margin-inline: auto; padding: 16px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark { font-family: var(--font-d); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; color: #fff; transition: color 0.4s; }
.wordmark b { color: var(--violet-bright); }
.nav.is-solid .wordmark { color: var(--ink); }
.nav.is-solid .wordmark b { color: var(--violet); }
.nav-links { display: flex; gap: clamp(14px, 2.4vw, 32px); }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: rgba(250, 250, 252, 0.72); transition: color 0.3s; }
.nav.is-solid .nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--violet-bright); }
.nav.is-solid .nav-links a:hover { color: var(--violet); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta { padding: 0.6em 1.25em; font-size: 0.88rem; }
.nav-burger { display: none; flex-direction: column; gap: 6px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-burger span { width: 24px; height: 2px; background: #fff; transition: transform 0.3s var(--ease); }
.nav.is-solid .nav-burger span { background: var(--ink); }
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.nav-overlay[hidden] { display: none; }
.nav-overlay { position: fixed; inset: 0; z-index: 50; background: rgba(7, 6, 11, 0.94); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); display: grid; place-items: center; }
.nav-overlay nav { display: grid; gap: 26px; text-align: center; }
.nav-overlay a { font-family: var(--font-d); font-size: 1.5rem; color: #fff; }
.nav-overlay .btn { font-size: 1rem; }

/* ═══ HERO · scroll-scrub ═══════════════════════════════════════ */
.hero { height: 340vh; background: var(--void); position: relative; }
.hero-sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; }
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-copy {
  position: absolute; z-index: 3;
  left: var(--gutter); top: 50%; transform: translateY(-50%);
  max-width: 620px; padding-right: 20px;
}
.hero-h1 {
  font-size: clamp(2.9rem, 7.2vw, 5.8rem); font-weight: 700; color: #fff;
  letter-spacing: -0.03em; margin-bottom: 1.3rem;
}
.hero-h1 em { font-style: normal; color: transparent; background: linear-gradient(120deg, var(--violet-bright), var(--violet)); -webkit-background-clip: text; background-clip: text; }
.hero-lead { color: rgba(250, 250, 252, 0.72); font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 50ch; margin-bottom: 2.2rem; }
.hero-ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }

.hero-dash {
  position: absolute; z-index: 2;
  right: clamp(16px, 4.5vw, 72px); top: 50%; transform: translateY(-50%);
  width: min(340px, 30vw); display: grid; gap: 14px;
  opacity: 0; transition: opacity 0.3s linear;
  pointer-events: none;
}
.dash-card {
  background: var(--glass);
  -webkit-backdrop-filter: blur(18px) saturate(140%); backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(124, 92, 255, 0.28);
  border-top-color: rgba(250, 250, 252, 0.14);
  border-radius: var(--r);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8), 0 0 60px -20px rgba(124, 92, 255, 0.35);
  padding: 18px 20px;
  color: rgba(250, 250, 252, 0.92);
}
.dash-card header { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-d); font-weight: 600; font-size: 0.92rem; margin-bottom: 12px; }
.dash-tag { font-family: var(--font-m); font-size: 0.6rem; letter-spacing: 0.14em; color: var(--violet-bright); border: 1px solid rgba(124, 92, 255, 0.4); padding: 3px 8px; border-radius: 999px; }
.dash-tag-ok { color: var(--green); border-color: rgba(47, 191, 113, 0.45); }
.dash-card ul { list-style: none; display: grid; gap: 7px; }
.dash-card li { display: flex; justify-content: space-between; gap: 12px; font-size: 0.8rem; color: rgba(250, 250, 252, 0.62); }
.dash-card li b { font-family: var(--font-m); font-weight: 500; font-size: 0.78rem; color: rgba(250, 250, 252, 0.92); font-variant-numeric: tabular-nums; }
.dash-total { border-top: 1px solid var(--line-dark); padding-top: 8px; margin-top: 3px; }
.dash-total span { color: rgba(250, 250, 252, 0.85); font-weight: 600; }
.dash-total b { color: var(--violet-bright) !important; }
.dash-zero b { color: var(--green) !important; }
.dash-foot { margin-top: 12px; font-family: var(--font-m); font-size: 0.62rem; letter-spacing: 0.06em; color: rgba(250, 250, 252, 0.45); }

.dash-graph { width: 100%; height: 64px; margin-bottom: 12px; }
.graph-line { fill: none; stroke: var(--violet-bright); stroke-width: 2.2; stroke-linecap: round; }
.graph-area { fill: url(#) rgba(124, 92, 255, 0.14); }
.graph-dot { fill: var(--violet-bright); transform-origin: 252px 8px; animation: heartbeat 1.6s var(--ease) infinite; }
@keyframes heartbeat {
  0%, 100% { transform: scale(1); opacity: 1; }
  12% { transform: scale(1.8); opacity: 0.65; }
  24% { transform: scale(1); opacity: 1; }
  36% { transform: scale(1.45); opacity: 0.8; }
  48% { transform: scale(1); opacity: 1; }
}

.hero-cue {
  position: absolute; z-index: 3; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-m); font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(250, 250, 252, 0.45);
}
.hero-cue span { display: block; width: 1px; height: 34px; background: linear-gradient(180deg, var(--violet), transparent); animation: cue 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%, 100% { transform: scaleY(0.35); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ═══ WHITE SHEET (slides over the dark hero) ═══════════════════ */
.sheet {
  position: relative; z-index: 4;
  background: var(--white);
  border-radius: 28px 28px 0 0;
  margin-top: -28px;
  box-shadow: 0 -30px 60px -30px rgba(0, 0, 0, 0.5);
}
.sheet-flat { border-radius: 0; margin-top: 0; box-shadow: none; }

/* trust strip --------------------------------------------------- */
.trust { padding: 34px 0 30px; border-bottom: 1px solid var(--line-light); }
.trust-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-label { font-family: var(--font-m); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.trust ul { display: flex; gap: clamp(18px, 3.5vw, 44px); flex-wrap: wrap; }
.trust li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-family: var(--font-d); font-size: 0.92rem; color: var(--ink); }
.trust svg { width: 22px; height: 22px; stroke: var(--violet); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* route cards ---------------------------------------------------- */
.route { padding: var(--pad) 0; }
.route-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: clamp(2rem, 4vw, 3rem); }
.route-card {
  position: relative; display: block; padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line-light); border-radius: 22px; background: #fff;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  overflow: hidden;
}
.route-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 80%) var(--my, 20%), rgba(124, 92, 255, 0.08), transparent 65%);
  opacity: 0; transition: opacity 0.4s;
}
.route-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -25px rgba(22, 20, 31, 0.25); border-color: rgba(124, 92, 255, 0.45); }
.route-card:hover::before { opacity: 1; }
.route-flag {
  display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  font-family: var(--font-d); font-weight: 700; color: var(--violet);
  background: rgba(124, 92, 255, 0.1); border: 1px solid rgba(124, 92, 255, 0.25);
  margin-bottom: 1.4rem;
}
.route-card h3 { font-size: 1.45rem; margin-bottom: 0.7rem; }
.route-card p { color: var(--muted); font-size: 0.98rem; max-width: 44ch; }
.route-go { display: inline-flex; align-items: center; gap: 8px; margin-top: 1.6rem; font-weight: 600; font-family: var(--font-d); color: var(--violet); font-size: 0.95rem; }
.route-go svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.3s var(--ease); }
.route-card:hover .route-go svg { transform: translateX(5px); }

/* ═══ PINNED FEATURES over signal clip ══════════════════════════ */
.how { height: 320vh; background: var(--void-2); position: relative; z-index: 4; }
.how-sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; display: flex; align-items: center; }
#signalCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.how-inner { position: relative; z-index: 2; width: 100%; }
.how-steps { display: grid; gap: clamp(1.6rem, 3.5vh, 3rem); max-width: 640px; }
.how-step { opacity: 0.22; transform: translateY(8px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.how-step.is-on { opacity: 1; transform: none; }
.how-step h3 {
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; color: #fff; letter-spacing: -0.03em;
}
.how-step.is-on h3 { color: transparent; background: linear-gradient(120deg, #fff 30%, var(--violet-bright)); -webkit-background-clip: text; background-clip: text; }
.how-step p { color: rgba(250, 250, 252, 0.6); max-width: 52ch; margin-top: 0.5rem; font-size: 1.02rem; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.6s var(--ease), opacity 0.6s var(--ease); }
.how-step.is-on p { max-height: 140px; opacity: 1; }
.how-progress { position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%); display: grid; gap: 10px; }
.how-progress span { width: 3px; height: 34px; border-radius: 2px; background: rgba(250, 250, 252, 0.14); transition: background 0.4s; }
.how-progress span.is-on { background: var(--violet-bright); }

/* ═══ METRICS ═══════════════════════════════════════════════════ */
.metrics { padding: var(--pad) 0 calc(var(--pad) * 0.7); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 4vw, 56px); }
.metric-num { font-family: var(--font-d); font-weight: 700; font-size: clamp(2.6rem, 5vw, 4rem); letter-spacing: -0.03em; color: var(--ink); display: block; line-height: 1; font-variant-numeric: tabular-nums; }
.metric-num i { font-style: normal; font-size: 0.42em; color: var(--violet); font-weight: 600; }
.metric-num + p { color: var(--muted); font-size: 0.9rem; margin-top: 0.7rem; max-width: 24ch; }
.metric { position: relative; padding-top: 1.2rem; }
.metric::before { content: ""; position: absolute; top: 0; left: 0; width: 34px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--violet), var(--violet-bright)); }

/* ═══ PILLARS ═══════════════════════════════════════════════════ */
.pillars { padding: 0 0 var(--pad); }
.pillar-row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line-light); border-radius: 20px; overflow: hidden;
}
.pillar-row li { padding: 26px 24px; border-left: 1px solid var(--line-light); background: #fff; transition: background 0.35s; }
.pillar-row li:first-child { border-left: 0; }
.pillar-row li:hover { background: rgba(124, 92, 255, 0.05); }
.pillar-row b { display: block; font-family: var(--font-d); font-size: 1.02rem; margin-bottom: 6px; }
.pillar-row span { color: var(--muted); font-size: 0.85rem; line-height: 1.45; display: block; }

/* ═══ PRODUCT PROOF ═════════════════════════════════════════════ */
.proof {
  padding: var(--pad) 0;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(124, 92, 255, 0.07), transparent 70%),
    radial-gradient(45% 40% at 12% 85%, rgba(232, 161, 60, 0.05), transparent 70%),
    linear-gradient(180deg, #FFFFFF, var(--white));
}
.browser {
  border-radius: 16px; overflow: hidden; background: #fff;
  border: 1px solid var(--line-light);
  box-shadow: 0 60px 120px -45px rgba(22, 20, 31, 0.35), 0 25px 50px -30px rgba(124, 92, 255, 0.15);
}
.browser-bar { display: flex; align-items: center; gap: 14px; padding: 12px 16px; background: #F2F1F7; border-bottom: 1px solid var(--line-light); }
.browser-dots { display: flex; gap: 6px; }
.browser-dots i { width: 10px; height: 10px; border-radius: 50%; background: #DDDBE8; }
.browser-url { font-family: var(--font-m); font-size: 0.72rem; color: var(--muted); background: #fff; border: 1px solid var(--line-light); padding: 6px 14px; border-radius: 8px; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.browser-body { display: grid; grid-template-columns: 1.7fr 1fr; }
.browser-main { padding: clamp(18px, 3vw, 32px); border-right: 1px solid var(--line-light); }
.bm-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 1.4rem; flex-wrap: wrap; }
.bm-head h4 { font-size: 1.15rem; }
.bm-head p { color: var(--muted); font-size: 0.82rem; margin-top: 3px; }
.bm-badge { font-family: var(--font-m); font-size: 0.68rem; color: var(--green); background: rgba(47, 191, 113, 0.1); border: 1px solid rgba(47, 191, 113, 0.3); padding: 6px 12px; border-radius: 999px; white-space: nowrap; }
.bm-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.bm-table th { text-align: left; font-family: var(--font-m); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 500; padding: 0 10px 10px 0; border-bottom: 1px solid var(--line-light); }
.bm-table td { padding: 12px 10px 12px 0; border-bottom: 1px solid rgba(22, 20, 31, 0.05); }
.bm-table td.mono { font-family: var(--font-m); font-size: 0.78rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.bm-table td.ok { color: var(--green); font-weight: 700; }
.browser-side { padding: clamp(18px, 3vw, 28px); background: #FBFAFE; }
.browser-side h5 { font-size: 0.95rem; margin-bottom: 1rem; }
.browser-side ul { display: grid; gap: 8px; }
.browser-side li { position: relative; padding-left: 24px; font-size: 0.82rem; color: var(--ink); }
.browser-side li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.side-foot { margin-top: 1.1rem; font-family: var(--font-m); font-size: 0.68rem; color: var(--muted); border-top: 1px solid var(--line-light); padding-top: 0.9rem; }

/* ═══ SCOPE (do / don't) ════════════════════════════════════════ */
.scope { padding: 0 0 var(--pad); }
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: clamp(2rem, 4vw, 3rem); }
.scope-col { border-radius: 20px; padding: clamp(26px, 3.6vw, 40px); border: 1px solid var(--line-light); }
.scope-do { background: rgba(47, 191, 113, 0.05); border-color: rgba(47, 191, 113, 0.22); }
.scope-dont { background: rgba(232, 161, 60, 0.05); border-color: rgba(232, 161, 60, 0.25); }
.scope-col h3 { font-size: 1.15rem; margin-bottom: 1.2rem; }
.scope-col ul { display: grid; gap: 12px; }
.scope-col li { position: relative; padding-left: 30px; font-size: 0.95rem; }
.scope-do li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center; font-size: 0.7rem; font-weight: 700; color: #fff; background: var(--green); }
.scope-dont li::before { content: "✕"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center; font-size: 0.7rem; font-weight: 700; color: #fff; background: var(--amber); }
.scope-note { margin-top: 1.6rem; font-family: var(--font-m); font-size: 0.78rem; color: var(--muted); }

/* ═══ PRICING ═══════════════════════════════════════════════════ */
.pricing { padding: 0 0 var(--pad); }
.cur-toggle { display: inline-flex; border: 1px solid var(--line-light); border-radius: 12px; overflow: hidden; margin: 0.4rem 0 2.4rem; background: #fff; }
.cur-btn { background: none; border: 0; color: var(--muted); cursor: pointer; font-family: var(--font-m); font-size: 0.8rem; padding: 10px 20px; transition: background 0.3s, color 0.3s; }
.cur-btn.is-active { background: var(--violet); color: #fff; }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.tier {
  background: #fff; border: 1px solid var(--line-light); border-radius: 22px;
  padding: clamp(26px, 3.4vw, 38px); display: flex; flex-direction: column; gap: 0.9rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tier:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -30px rgba(22, 20, 31, 0.22); }
.tier h3 { font-size: 1.3rem; }
.tier-price { font-family: var(--font-d); color: var(--muted); font-size: 0.95rem; }
.tier-price b { font-size: 2.4rem; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; margin-right: 4px; font-variant-numeric: tabular-nums; }
.tier-desc { color: var(--muted); font-size: 0.92rem; }
.tier ul { display: grid; gap: 9px; flex: 1; margin: 0.4rem 0 1rem; }
.tier li { position: relative; padding-left: 24px; font-size: 0.9rem; }
.tier li::before { content: "✓"; position: absolute; left: 0; color: var(--violet); font-weight: 700; }
.tier-hot { border-color: var(--violet); border-width: 1.5px; box-shadow: 0 30px 70px -30px rgba(124, 92, 255, 0.35); position: relative; transform: scale(1.03); }
.tier-hot:hover { transform: scale(1.03) translateY(-5px); }
.tier-flag { font-family: var(--font-m); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--violet); }
.tier-hot .tier-price b { color: var(--violet); }
.pricing-foot { margin-top: 1.8rem; font-size: 0.85rem; color: var(--muted); }

/* ═══ FOUNDER ═══════════════════════════════════════════════════ */
.founder { padding: 0 0 var(--pad); }
.founder-grid { display: grid; grid-template-columns: 300px 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.founder-photo { position: relative; aspect-ratio: 4 / 5; border-radius: 24px; background: linear-gradient(160deg, #14121F, #241E3F); display: grid; place-items: center; overflow: hidden; }
.founder-mono { font-family: var(--font-d); font-weight: 700; font-size: 4.4rem; color: var(--violet-bright); letter-spacing: -0.02em; }
.founder-ring { position: absolute; inset: 14px; border: 1px solid rgba(124, 92, 255, 0.3); border-radius: 18px; pointer-events: none; }
.founder-copy .h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.founder-copy > p { color: var(--muted); max-width: 58ch; margin-bottom: 1rem; }
.founder-copy > p b { color: var(--ink); }
.founder-sign { font-family: var(--font-m); font-size: 0.75rem; color: var(--muted); letter-spacing: 0.04em; margin-top: 1.4rem; }

/* ═══ FAQ ═══════════════════════════════════════════════════════ */
.faq { padding: 0 0 var(--pad); }
.faq-tabs { display: inline-flex; gap: 6px; background: #F2F1F7; padding: 5px; border-radius: 12px; margin: 0.6rem 0 1.8rem; }
.faq-tab { border: 0; background: none; padding: 9px 20px; border-radius: 9px; cursor: pointer; font-family: var(--font-d); font-weight: 600; font-size: 0.9rem; color: var(--muted); transition: background 0.3s, color 0.3s; }
.faq-tab.is-active { background: #fff; color: var(--ink); box-shadow: 0 2px 8px rgba(22, 20, 31, 0.08); }
.faq-panel[hidden] { display: none; }
.faq-panel details { border-bottom: 1px solid var(--line-light); }
.faq-panel summary { cursor: pointer; list-style: none; padding: 20px 44px 20px 0; font-family: var(--font-d); font-weight: 600; font-size: 1.02rem; position: relative; }
.faq-panel summary::-webkit-details-marker { display: none; }
.faq-panel summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); color: var(--violet); font-size: 1.25rem; font-weight: 500; transition: transform 0.3s var(--ease); }
.faq-panel details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-panel details p { padding: 0 0 22px; color: var(--muted); max-width: 62ch; font-size: 0.95rem; }

/* ═══ FINAL CTA ═════════════════════════════════════════════════ */
.cta { position: relative; background: var(--void); padding: clamp(110px, 15vw, 200px) 0; overflow: hidden; z-index: 4; }
#ctaCanvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; }
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 700; color: #fff; letter-spacing: -0.03em; text-wrap: balance; }
.cta-h2 em { font-style: normal; color: transparent; background: linear-gradient(120deg, var(--violet-bright), var(--violet)); -webkit-background-clip: text; background-clip: text; }
.cta-lead { color: rgba(250, 250, 252, 0.66); max-width: 54ch; margin: 1.4rem auto 2.6rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 22px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta-foot { margin-top: 2.4rem; font-family: var(--font-m); font-size: 0.72rem; letter-spacing: 0.06em; color: rgba(250, 250, 252, 0.4); }

/* ═══ FOOTER ════════════════════════════════════════════════════ */
.footer { background: var(--void); border-top: 1px solid var(--line-dark); position: relative; z-index: 4; }
.footer-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding: 48px var(--gutter) 28px; }
.wordmark-light { color: #fff; font-size: 1.2rem; }
.footer-tag { color: rgba(250, 250, 252, 0.5); font-size: 0.88rem; max-width: 38ch; margin-top: 0.6rem; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; font-size: 0.85rem; color: rgba(250, 250, 252, 0.6); }
.footer-links a:hover { color: var(--violet-bright); }
.footer-fine { padding-bottom: 40px; }
.footer-fine p { color: rgba(250, 250, 252, 0.35); font-size: 0.72rem; max-width: 110ch; line-height: 1.6; }

/* ═══ REVEALS ═══════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ═══ RESPONSIVE ════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-row { grid-template-columns: 1fr 1fr; }
  .pillar-row li { border-top: 1px solid var(--line-light); }
  .pillar-row li:nth-child(-n+2) { border-top: 0; }
  .pillar-row li:nth-child(odd) { border-left: 0; }
  .browser-body { grid-template-columns: 1fr; }
  .browser-main { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo { max-width: 280px; }
  .hero-dash { width: min(300px, 34vw); }
}
@media (max-width: 767px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero { height: 300vh; }
  .hero-copy { top: auto; bottom: 20vh; transform: none; max-width: none; right: var(--gutter); }
  .hero-h1 { font-size: clamp(2.5rem, 11vw, 3.4rem); }
  .hero-dash {
    top: 12vh; right: 50%; transform: translateX(50%) scale(0.86); transform-origin: top center;
    width: min(320px, 88vw);
  }
  .hero-cue { display: none; }
  .route-grid, .scope-grid, .tier-grid { grid-template-columns: 1fr; }
  .tier-hot { transform: none; }
  .tier-hot:hover { transform: translateY(-5px); }
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .pillar-row { grid-template-columns: 1fr; }
  .pillar-row li { border-left: 0; }
  .how { height: 280vh; }
  .how-progress { display: none; }
  .trust-row { justify-content: flex-start; }
}

/* ═══ REDUCED MOTION ════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero { height: auto; }
  .hero-sticky { position: relative; height: auto; min-height: 100svh; padding: 130px 0 80px; }
  .hero-dash { opacity: 1 !important; position: relative; inset: auto; transform: none; margin: 40px auto 0; }
  .hero-copy { position: relative; inset: auto; transform: none; padding: 0 var(--gutter); }
  .hero-cue, .graph-dot { animation: none; }
  .how { height: auto; }
  .how-sticky { position: relative; height: auto; padding: 90px 0; }
  .how-step { opacity: 1; transform: none; }
  .how-step p { max-height: none; opacity: 1; }
  .how-progress { display: none; }
  .btn, .tier, .route-card { transition: none; }
}

/* ═══ LOGO ═══════════════════════════════════════════════════════ */
.wordmark { display: inline-flex; align-items: center; gap: 10px; }
.logo { width: 34px; height: 34px; flex: none; } /* outline mascot — no tile radius/shadow */

/* ═══ ROUTE · 3 markets ═════════════════════════════════════════ */
.route-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1023px) { .route-grid { grid-template-columns: 1fr; } }
.route-card h3 { font-size: 1.3rem; }

/* ═══ PILLARS · 6 ═══════════════════════════════════════════════ */
.pillar-row { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1023px) {
  .pillar-row { grid-template-columns: repeat(3, 1fr); }
  .pillar-row li:nth-child(-n+3) { border-top: 0; }
  .pillar-row li:nth-child(4) { border-left: 0; }
}
@media (max-width: 767px) {
  .pillar-row { grid-template-columns: 1fr 1fr; }
  .pillar-row li { border-left: 1px solid var(--line-light); }
  .pillar-row li:nth-child(odd) { border-left: 0; }
  .pillar-row li:nth-child(n+3) { border-top: 1px solid var(--line-light); }
}

/* ═══ ACCESS · unlimited CA chat ════════════════════════════════ */
.access { padding: 0 0 var(--pad); }
.access-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.access-points { display: grid; gap: 14px; margin: 0 0 1.6rem; }
.access-points li { position: relative; padding-left: 30px; color: var(--muted); font-size: 0.97rem; }
.access-points li b { color: var(--ink); }
.access-points li::before { content: ""; position: absolute; left: 0; top: 7px; width: 18px; height: 18px; border-radius: 6px; background: rgba(124, 92, 255, 0.12); border: 1px solid rgba(124, 92, 255, 0.4); }
.access-points li::after { content: "✓"; position: absolute; left: 4px; top: 4px; font-size: 0.62rem; font-weight: 700; color: var(--violet); }
.tz-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.tz-chips span { font-family: var(--font-m); font-size: 0.7rem; color: var(--muted); border: 1px solid var(--line-light); border-radius: 999px; padding: 7px 14px; background: #fff; }
.tz-chips b { color: var(--ink); font-weight: 600; }

.chat-mock {
  border: 1px solid var(--line-light); border-radius: 22px; background: #fff;
  box-shadow: 0 40px 90px -40px rgba(22, 20, 31, 0.35), 0 20px 40px -25px rgba(124, 92, 255, 0.18);
  overflow: hidden;
}
.chat-head { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--line-light); background: #FBFAFE; }
.chat-avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--violet-bright), var(--violet)); color: #fff; font-family: var(--font-d); font-weight: 700; font-size: 0.85rem; }
.chat-head b { font-family: var(--font-d); font-size: 0.92rem; display: block; }
.chat-head i { font-style: normal; font-size: 0.72rem; color: var(--green); }
.chat-body { padding: 18px; display: grid; gap: 10px; }
.msg { max-width: 82%; padding: 10px 14px; border-radius: 14px; font-size: 0.86rem; line-height: 1.5; }
.msg-them { background: #F2F1F7; color: var(--ink); border-bottom-left-radius: 4px; justify-self: start; }
.msg-you { background: linear-gradient(135deg, var(--violet-bright), var(--violet)); color: #fff; border-bottom-right-radius: 4px; justify-self: end; }
.chat-foot { display: flex; align-items: center; gap: 8px; padding: 12px 18px; border-top: 1px solid var(--line-light); font-family: var(--font-m); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.chat-foot span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* ═══ SECURITY ══════════════════════════════════════════════════ */
.security { padding: 0 0 var(--pad); }
.sec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sec-item { border: 1px solid var(--line-light); border-radius: 18px; padding: 26px 24px; background: #fff; transition: border-color 0.35s, transform 0.35s var(--ease); }
.sec-item:hover { border-color: rgba(124, 92, 255, 0.4); transform: translateY(-3px); }
.sec-item svg { width: 26px; height: 26px; stroke: var(--violet); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 0.9rem; }
.sec-item h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }
.sec-item p { color: var(--muted); font-size: 0.88rem; }
@media (max-width: 1023px) { .sec-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) { .sec-grid { grid-template-columns: 1fr; } .access-grid { grid-template-columns: 1fr; } }

/* ═══ PRICING COMPARE ═══════════════════════════════════════════ */
.compare { margin-top: 1.6rem; border: 1px dashed rgba(124, 92, 255, 0.35); background: rgba(124, 92, 255, 0.04); border-radius: 14px; padding: 18px 22px; }
.compare p { font-size: 0.88rem; color: var(--muted); max-width: 100ch; }
.compare b { color: var(--ink); }

/* ═══ MODALS ════════════════════════════════════════════════════ */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal-scrim { position: absolute; inset: 0; background: rgba(7, 6, 11, 0.7); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.modal-panel {
  position: relative; width: min(560px, 100%); background: #fff; border-radius: 22px;
  padding: clamp(24px, 4vw, 40px); box-shadow: 0 60px 120px -40px rgba(0, 0, 0, 0.6);
  max-height: calc(100svh - 40px); overflow: auto;
}
.modal-panel-wide { width: min(860px, 100%); }
.modal-x { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--line-light); background: #fff; cursor: pointer; font-size: 0.9rem; color: var(--muted); transition: color 0.3s, border-color 0.3s; }
.modal-x:hover { color: var(--ink); border-color: var(--violet); }
.modal-panel h3 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin-bottom: 0.6rem; }
.modal-lead { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.4rem; max-width: 54ch; }
.contact-opts { display: grid; gap: 12px; }
.contact-opt { display: grid; grid-template-columns: 44px 1fr; grid-template-rows: auto auto; column-gap: 14px; align-items: center; padding: 16px 18px; border: 1px solid var(--line-light); border-radius: 16px; transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s; }
.contact-opt:hover { border-color: var(--violet); transform: translateY(-2px); box-shadow: 0 16px 36px -20px rgba(124, 92, 255, 0.4); }
.contact-opt svg { grid-row: span 2; width: 40px; height: 40px; stroke: var(--violet); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-opt b { font-family: var(--font-d); font-size: 1rem; }
.contact-opt span { grid-column: 2; color: var(--muted); font-size: 0.82rem; line-height: 1.5; }
.modal-fine { margin-top: 1.2rem; font-family: var(--font-m); font-size: 0.72rem; color: var(--muted); line-height: 1.6; }

/* walkthrough player */
.wt-stage { position: relative; border-radius: 16px; overflow: hidden; background: var(--void); aspect-ratio: 16 / 9; margin-top: 0.6rem; }
#wtCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.wt-big-play { position: absolute; inset: 0; margin: auto; width: 74px; height: 74px; border-radius: 50%; border: 0; cursor: pointer; background: linear-gradient(135deg, var(--violet-bright), var(--violet)); box-shadow: 0 20px 50px -12px rgba(124, 92, 255, 0.7); display: grid; place-items: center; transition: transform 0.3s var(--ease); }
.wt-big-play:hover { transform: scale(1.07); }
.wt-big-play svg { width: 30px; height: 30px; fill: #fff; margin-left: 3px; }
.wt-caption { margin-top: 0.9rem; min-height: 2.6em; color: var(--muted); font-size: 0.9rem; max-width: 72ch; }
.wt-controls { display: flex; align-items: center; gap: 14px; margin-top: 0.5rem; }
.wt-play { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-light); background: #fff; cursor: pointer; color: var(--violet); font-size: 0.8rem; }
.wt-bar { flex: 1; height: 8px; border-radius: 5px; background: #EEEDF5; cursor: pointer; overflow: hidden; }
.wt-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--violet-bright), var(--violet)); border-radius: 5px; }
.wt-time { font-family: var(--font-m); font-size: 0.72rem; color: var(--muted); white-space: nowrap; }

/* founder creds chip */
.founder-creds { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); font-family: var(--font-m); font-size: 0.62rem; letter-spacing: 0.12em; color: #fff; background: rgba(10, 8, 18, 0.78); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid rgba(155, 130, 255, 0.55); padding: 6px 14px; border-radius: 999px; white-space: nowrap; }

/* ═══ FOUNDER PHOTO ═════════════════════════════════════════════ */
.founder-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 22%;
}
.founder-photo .founder-ring { z-index: 2; }
.founder-photo .founder-creds { z-index: 2; }

/* ═══ LEGAL PAGES ═══════════════════════════════════════════════ */
.page-legal { background: var(--white); }
.legal { padding: 150px 0 110px; }
.legal h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); letter-spacing: -0.03em; margin-bottom: 0.8rem; }
.legal-lead { color: var(--muted); font-size: 1.1rem; max-width: 56ch; }
.legal-note { font-family: var(--font-m); font-size: 0.74rem; color: var(--muted); border: 1px dashed rgba(124, 92, 255, 0.35); background: rgba(124, 92, 255, 0.04); border-radius: 12px; padding: 14px 18px; margin: 1.6rem 0 2.4rem; line-height: 1.7; }
.legal h2 { font-size: 1.25rem; margin: 2.2rem 0 0.6rem; }
.legal p { color: var(--muted); max-width: 68ch; margin-bottom: 0.8rem; }
.legal p b { color: var(--ink); }
.legal a { color: var(--violet); font-weight: 500; }
.legal a:hover { text-decoration: underline; }
.legal ul { margin: 0.6rem 0 1rem 1.2rem; color: var(--muted); max-width: 66ch; display: grid; gap: 8px; }
.legal li b { color: var(--ink); }

/* ═══ SERVICES · per-market showcase (dark, 3D canvas bg) ═══════ */
.services { position: relative; background: var(--void-2); padding: var(--pad) 0; overflow: hidden; z-index: 4; }
#servicesCanvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.6; }
.services-inner { position: relative; z-index: 2; }
.h2-light { color: #fff; }
.section-lead-light { color: rgba(250, 250, 252, 0.6); }

.svc-tabs { display: inline-flex; flex-wrap: wrap; gap: 6px; background: rgba(250, 250, 252, 0.06); border: 1px solid var(--line-dark); padding: 5px; border-radius: 14px; margin: 0.4rem 0 2.4rem; }
.svc-tab { border: 0; background: none; padding: 11px 22px; border-radius: 10px; cursor: pointer; font-family: var(--font-d); font-weight: 600; font-size: 0.92rem; color: rgba(250, 250, 252, 0.6); transition: background 0.3s, color 0.3s; }
.svc-tab:hover { color: #fff; }
.svc-tab.is-active { background: linear-gradient(135deg, var(--violet-bright), var(--violet)); color: #fff; box-shadow: 0 8px 24px -10px rgba(124, 92, 255, 0.7); }

.svc-panel[hidden] { display: none; }
.svc-panel { animation: svc-fade 0.5s var(--ease); }
@keyframes svc-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-card {
  background: var(--glass);
  -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(124, 92, 255, 0.22); border-top-color: rgba(250, 250, 252, 0.12);
  border-radius: 16px; padding: 24px 22px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.svc-card:hover { transform: translateY(-4px); border-color: rgba(124, 92, 255, 0.55); box-shadow: 0 26px 50px -30px rgba(0, 0, 0, 0.8), 0 0 40px -20px rgba(124, 92, 255, 0.45); }
.svc-card svg { width: 26px; height: 26px; stroke: var(--violet-bright); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 0.9rem; }
.svc-card h3 { font-size: 1.05rem; color: #fff; margin-bottom: 0.45rem; }
.svc-card p { color: rgba(250, 250, 252, 0.62); font-size: 0.88rem; line-height: 1.55; }

.svc-meta { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 20px; margin-top: 22px; padding-top: 26px; border-top: 1px solid var(--line-dark); }
.svc-meta-block h4 { font-family: var(--font-m); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--violet-bright); margin-bottom: 0.9rem; }
.svc-meta-block p { color: rgba(250, 250, 252, 0.6); font-size: 0.85rem; line-height: 1.6; }
.svc-meta-block p b { color: #fff; font-weight: 600; }
.svc-stack ul { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-stack li { font-family: var(--font-m); font-size: 0.72rem; color: rgba(250, 250, 252, 0.82); border: 1px solid var(--line-dark); border-radius: 999px; padding: 6px 12px; background: rgba(250, 250, 252, 0.04); }
.svc-boundary p { color: rgba(255, 200, 130, 0.85); }
.svc-boundary h4 { color: var(--amber); }

@media (max-width: 1023px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-meta { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 767px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-tabs { display: grid; grid-template-columns: 1fr; width: 100%; }
}

/* ═══ INTEGRATIONS · marquee ════════════════════════════════════ */
.stack { padding: var(--pad) 0; overflow: hidden; }
.eyebrow.center, .h2.center, .section-lead.center { text-align: center; }
.h2.center, .section-lead.center { margin-inline: auto; }
.stack .section-lead { margin-bottom: clamp(2.4rem, 4vw, 3.4rem); }
.marquee { display: grid; gap: 14px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 12px; width: max-content; animation: marq 46s linear infinite; }
.marquee-row[data-dir="rev"] .marquee-track { animation-name: marq-rev; }
.marquee-row:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-d); font-weight: 500; font-size: 0.9rem; white-space: nowrap;
  color: var(--ink); border: 1px solid var(--line-light); border-radius: 12px;
  padding: 12px 22px; background: #fff;
  box-shadow: 0 6px 18px -12px rgba(22, 20, 31, 0.25);
}
@keyframes marq { to { transform: translateX(-50%); } }
@keyframes marq-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
  .svc-panel { animation: none; }
}
