/* EchoScanPro SAAS — Apple-inspired typography, light/dark themes */

:root {
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --nav-h: 52px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1080px;
  --accent: #0a84ff;
  --accent-teal: #30d5c8;
  --accent-purple: #bf5af2;
  --accent-warm: #ff9f0a;
  --success: #30d158;
  --danger: #ff453a;
}

[data-theme="dark"] {
  --bg: #000000;
  --bg-elevated: #1c1c1e;
  --bg-secondary: #2c2c2e;
  --text: #f5f5f7;
  --text-secondary: #a1a1a6;
  --text-tertiary: #6e6e73;
  --border: rgba(255,255,255,.1);
  --border-strong: rgba(255,255,255,.16);
  --glass: rgba(28,28,30,.72);
  --shadow: 0 24px 80px rgba(0,0,0,.55);
  --mesh-a: rgba(48,213,200,.1);
  --mesh-b: rgba(191,90,242,.12);
  --card-hover: rgba(255,255,255,.04);
  --hero-gradient: linear-gradient(135deg, #30d5c8 0%, #0a84ff 45%, #bf5af2 100%);
}

[data-theme="light"] {
  --bg: #fbfbfd;
  --bg-elevated: #ffffff;
  --bg-secondary: #f5f5f7;
  --text: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary: #86868b;
  --border: rgba(0,0,0,.08);
  --border-strong: rgba(0,0,0,.12);
  --glass: rgba(251,251,253,.8);
  --shadow: 0 20px 60px rgba(0,0,0,.08);
  --mesh-a: rgba(10,132,255,.07);
  --mesh-b: rgba(48,213,200,.08);
  --card-hover: rgba(0,0,0,.03);
  --hero-gradient: linear-gradient(135deg, #0071e3 0%, #30d5c8 50%, #8944d9 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.47059;
  letter-spacing: -0.022em;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .45s var(--ease), color .45s var(--ease);
}
a { color: var(--accent); text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { width: min(var(--max), 92vw); margin: 0 auto; }
.section { padding: clamp(5rem, 12vw, 8rem) 0; position: relative; }

.display {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.display-xl {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.lead {
  font-size: clamp(1.05rem, 2vw, 1.3125rem);
  line-height: 1.381;
  color: var(--text-secondary);
  max-width: 640px;
  font-weight: 400;
}
.section-head { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head .lead { margin-top: 1rem; }
.section-head.center { text-align: center; }
.section-head.center .lead { margin-inline: auto; }

#preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  transition: opacity .5s, visibility .5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-bar { width: 120px; height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; }
.loader-bar::after {
  content: ""; display: block; height: 100%; width: 40%;
  background: var(--hero-gradient);
  animation: loadSlide 1s var(--ease) infinite;
}
@keyframes loadSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }
.loader-text { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.03em; }
.loader-text span { color: var(--accent-teal); }
.loader-sub { font-size: 13px; color: var(--text-tertiary); }

.ambient {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, var(--mesh-a), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, var(--mesh-b), transparent 50%),
    var(--bg);
}
#particle-canvas { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .35; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s, backdrop-filter .4s, -webkit-backdrop-filter .4s, border-color .4s;
}
.nav.scrolled {
  background: var(--glass);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.02em; color: var(--text); }
.logo span { color: var(--accent-teal); }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.75rem); overflow-x: auto; scrollbar-width: none; }
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a { position: relative; font-size: 14px; color: var(--text-secondary); white-space: nowrap; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); font-weight: 500; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -.35rem;
  height: 2px; border-radius: 1px;
  background: var(--accent-teal);
}
.nav-actions { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }

.theme-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.theme-icon { font-size: 14px; }
[data-theme="dark"] .theme-icon-sun { display: block; }
[data-theme="dark"] .theme-icon-moon { display: none; }
[data-theme="light"] .theme-icon-sun { display: none; }
[data-theme="light"] .theme-icon-moon { display: block; }

.nav-cta {
  font-size: 14px; font-weight: 500; padding: .45rem 1rem; border-radius: 980px;
  background: var(--accent); color: #fff;
}
[data-theme="light"] .nav-cta { background: #0071e3; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.menu-toggle span { width: 18px; height: 1.5px; background: var(--text); }

/* Scroll progress — thin bar under nav */
.scroll-progress {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  height: 2px;
  z-index: 199;
  background: var(--border);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s;
}
.scroll-progress.visible { opacity: 1; }
.scroll-progress span {
  display: block;
  height: 100%;
  width: var(--progress, 0%);
  background: var(--hero-gradient);
  transition: width .12s linear;
  border-radius: 0 1px 1px 0;
}

@media (max-width: 900px) {
  .nav-links {
    display: none; position: fixed; inset: var(--nav-h) 0 0 0;
    flex-direction: column; align-items: flex-start; padding: 1.5rem;
    background: var(--glass); backdrop-filter: blur(20px); border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .75rem 1.35rem; border-radius: 980px;
  font-size: 17px; font-weight: 500;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), opacity .2s;
  position: relative; overflow: hidden;
}
.btn-lg { padding: .85rem 1.65rem; font-size: 17px; font-weight: 600; }
.btn-primary {
  color: #fff;
  border: none;
  background: var(--hero-gradient);
  background-size: 200% 200%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .22) inset,
    0 6px 22px rgba(10, 132, 255, .32);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .22) 0%, transparent 52%);
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .28) inset,
    0 10px 32px rgba(10, 132, 255, .42);
  opacity: 1;
}
.btn-primary:active { transform: translateY(0) scale(.98); }
.btn-glow:hover { background-position: 100% 50%; }
.btn-play::after {
  content: '▸';
  font-size: .9em;
  opacity: .9;
}
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
  background: color-mix(in srgb, var(--accent) 6%, transparent);
}

.hero {
  padding-top: calc(var(--nav-h) + 3rem);
  min-height: 92vh;
}
.hero > .container {
  width: min(var(--max), 92vw);
  margin-inline: auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  min-height: clamp(480px, 72vh, 640px);
}
.hero-content {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding-right: clamp(.5rem, 2vw, 1.5rem);
}
.hero-device-col {
  position: relative;
  z-index: 1;
  min-width: 0;
  isolation: isolate;
}
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }
  .hero-content { padding-right: 0; }
}

/* Fixed-height hero copy — typing must not push content below */
.hero-copy-slot {
  min-height: clamp(12.5rem, 24vw, 16.5rem);
  margin-bottom: .5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 960px) {
  .hero-copy-slot { min-height: clamp(14rem, 42vw, 18rem); }
}
.hero-copy-slot .hero-lead { margin-top: 1.25rem; flex-shrink: 0; }

/* Fixed headline block — wrap inside column, never bleed into phone */
.hero-headline {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.8vw, 4.25rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
  flex: 1 1 auto;
  min-height: clamp(4.5rem, 9vw, 6.5rem);
}
.hero-headline-static { display: block; }
.hero-headline-dynamic {
  display: block;
  min-height: calc(2 * 1.02em);
  margin-top: .08em;
  white-space: normal;
  overflow-wrap: anywhere;
}
@media (max-width: 960px) {
  .hero-headline-dynamic { min-height: calc(2.2 * 1.02em); }
}
#typed-line {
  display: inline;
  background: var(--hero-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Hero device column — label above phone, always visible */
.hero-device-col,
#hero-device {
  min-height: 480px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
@media (max-width: 960px) {
  .hero-device-col,
  #hero-device { min-height: 380px; justify-content: center; }
}
.hero-device-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
}
.hero-device .device-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
/* Hero phone: subtle tilt only — 3D rotateY was overlapping the headline */
.hero-device .device {
  transform: rotateY(-2deg) rotateX(1deg);
  transform-origin: center center;
}
.hero-device .device:hover {
  transform: rotateY(0) rotateX(0) scale(1.02);
}
.hero-device-label {
  order: 0;
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--text-secondary);
  margin: 0 0 1rem;
  padding: .45rem .85rem;
  border-radius: 980px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-device { width: 100%; }
#hero-device.device-switch .hero-device-stack { animation: deviceIn .5s var(--ease-out); }
@keyframes deviceIn { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
.hero-lead { max-width: 100%; }
@media (max-width: 960px) { .hero-lead { margin-inline: auto; max-width: 540px; } }
.hero-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  align-self: flex-start;
  max-width: 100%;
  font-size: 12px; font-weight: 600; padding: .35rem .75rem; border-radius: 980px;
  background: var(--bg-secondary); border: 1px solid var(--border); color: var(--text-secondary); margin-bottom: 1.25rem;
}
@media (max-width: 960px) {
  .hero-chip { align-self: center; }
}
.hero-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); animation: blink 2s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 2rem 0; }
@media (max-width: 960px) { .hero-actions { justify-content: center; } }
.hero-stats { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
@media (max-width: 960px) { .hero-stats { justify-content: center; } }
.hero-stat strong { display: block; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.03em; }
.hero-stat span { font-size: 12px; color: var(--text-tertiary); }
.hero h1 .gradient {
  background: var(--hero-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.device {
  width: min(280px, 72vw); aspect-ratio: 9/19.5; border-radius: 44px; padding: 10px;
  background: linear-gradient(145deg, #3a3a3c, #1c1c1e);
  box-shadow: var(--shadow); transform: rotateY(-6deg) rotateX(3deg);
  transition: transform .7s var(--ease-out); position: relative;
}
.device:hover { transform: rotateY(0) rotateX(0) scale(1.02); }
.device-screen {
  width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
  background: var(--bg-elevated); position: relative;
}
.device-ui { padding: 2rem .85rem .85rem; height: 100%; display: flex; flex-direction: column; gap: .5rem; font-size: 11px; }
.device-bar { font-size: 9px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: .06em; }
.device-title { font-weight: 600; font-size: 13px; }
.device-card {
  padding: .55rem .65rem; border-radius: 10px;
  background: var(--bg-secondary); border: 1px solid var(--border);
  animation: cardIn .45s var(--ease-out) both;
}
.device-card.highlight { border-color: rgba(48,213,200,.35); background: rgba(48,213,200,.08); }
@keyframes cardIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }
.device-chips { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: auto; }
.device-chip { font-size: 9px; padding: .2rem .45rem; border-radius: 6px; background: rgba(191,90,242,.15); color: var(--accent-purple); }

.marquee-band { border-block: 1px solid var(--border); padding: 1rem 0; overflow: hidden; }
.marquee-inner { display: flex; gap: 2.5rem; width: max-content; animation: marquee 40s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item { white-space: nowrap; font-size: 14px; color: var(--text-secondary); font-weight: 500; }

.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 768px) { .mission-grid { grid-template-columns: 1fr; } }
.mission-list { list-style: none; display: grid; gap: 1rem; }
.mission-list li { padding: 1rem 1.15rem; border-radius: var(--radius-sm); background: var(--bg-elevated); border: 1px solid var(--border); }
.mission-list strong { display: block; font-weight: 600; margin-bottom: .25rem; }
.mission-list span { font-size: 15px; color: var(--text-secondary); }
.philosophy { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.2; color: var(--text-secondary); }
.philosophy em { font-style: normal; color: var(--text); }

.demo-cinema {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5); padding: clamp(1.5rem, 4vw, 2.5rem); min-height: 420px;
}
@media (max-width: 860px) { .demo-cinema { grid-template-columns: 1fr; } }
.cinema-copy h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: .5rem; }
.cinema-pain { font-size: 15px; color: var(--danger); font-style: italic; margin-bottom: 1.25rem; padding-left: .75rem; border-left: 2px solid var(--danger); }
.cinema-steps { display: grid; gap: .5rem; }
.cinema-step {
  display: flex; gap: .75rem; padding: .65rem .85rem; border-radius: var(--radius-sm);
  background: var(--bg-secondary); opacity: .45; transition: opacity .4s, border-color .4s, background .4s;
}
.cinema-step.active { opacity: 1; border: 1px solid rgba(48,213,200,.35); background: rgba(48,213,200,.06); }
.cinema-step-num {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--hero-gradient); color: #fff; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.cinema-step strong { display: block; font-size: 14px; font-weight: 600; }
.cinema-step span { font-size: 12px; color: var(--text-secondary); }
.cinema-outcome { margin-top: 1rem; font-size: 13px; color: var(--success); padding: .65rem .85rem; border-radius: var(--radius-sm); background: rgba(48,209,88,.08); border: 1px solid rgba(48,209,88,.2); }
.cinema-dots { display: flex; justify-content: center; gap: .4rem; margin-top: 1.25rem; flex-wrap: wrap; }
.cinema-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: .3s; }
.cinema-dots button.active { background: var(--accent-teal); width: 22px; border-radius: 4px; }

.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-card { padding: 1.5rem; border-radius: var(--radius); background: var(--bg-elevated); border: 1px solid var(--border); transition: transform .35s; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-emoji { font-size: 2rem; margin-bottom: .75rem; }
.cat-card h3 { font-size: 17px; font-weight: 600; margin-bottom: .35rem; }
.cat-card p { font-size: 14px; color: var(--text-secondary); }

.flows-toc { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.flows-toc a { font-size: 13px; padding: .45rem .75rem; border-radius: 980px; background: var(--bg-secondary); border: 1px solid var(--border); color: var(--text-secondary); }
.flow-card {
  display: grid; grid-template-columns: 1fr 340px; gap: 2rem; padding: 2rem; margin-bottom: 1.25rem;
  background: var(--bg-elevated); border: 1px solid var(--border); border-radius: calc(var(--radius) * 1.2);
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}
@media (max-width: 900px) { .flow-card { grid-template-columns: 1fr; } }
.flow-card-header { display: flex; gap: 1rem; margin-bottom: 1rem; }
.flow-emoji { width: 48px; height: 48px; border-radius: 14px; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.flow-card h3 { font-size: 1.25rem; font-weight: 600; }
.flow-pain { font-size: 14px; color: var(--text-secondary); font-style: italic; }
.flow-steps { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1rem 0; }
.flow-step-pill { font-size: 12px; padding: .35rem .65rem; border-radius: 980px; background: var(--bg-secondary); border: 1px solid var(--border); }
.flow-outcome { font-size: 14px; color: var(--success); padding: .75rem 1rem; border-radius: var(--radius-sm); background: rgba(48,209,88,.07); border: 1px solid rgba(48,209,88,.18); }
.flow-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .75rem; }
.flow-tag { font-size: 11px; font-weight: 600; padding: .2rem .5rem; border-radius: 6px; background: var(--bg-secondary); color: var(--text-tertiary); }
.flow-mini-demo { background: var(--bg-secondary); border-radius: var(--radius); padding: 1rem; min-height: 260px; display: flex; flex-direction: column; gap: .45rem; border: 1px solid var(--border); }

.pipeline { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
@media (max-width: 768px) { .pipeline { grid-template-columns: 1fr; } }
.pipe-cell { padding: 2rem 1.25rem; text-align: center; background: var(--bg-elevated); border-right: 1px solid var(--border); }
.pipe-cell:last-child { border-right: none; }
.pipe-icon { width: 48px; height: 48px; margin: 0 auto 1rem; border-radius: 50%; background: var(--hero-gradient); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.pipe-cell h4 { font-weight: 600; margin-bottom: .35rem; }
.pipe-cell p { font-size: 14px; color: var(--text-secondary); }

.tab-map { display: grid; grid-template-columns: repeat(5, 1fr); gap: .65rem; margin-bottom: 1rem; }
@media (max-width: 700px) { .tab-map { grid-template-columns: repeat(2, 1fr); } }
.tab-btn { padding: 1rem .5rem; border-radius: var(--radius-sm); background: var(--bg-elevated); border: 1px solid var(--border); text-align: center; transition: .3s; }
.tab-btn.active { border-color: var(--accent-teal); transform: scale(1.02); }
.tab-btn .emoji { font-size: 1.5rem; display: block; margin-bottom: .35rem; }
.tab-panel { padding: 1.5rem; border-radius: var(--radius); background: var(--bg-elevated); border: 1px solid var(--border); }
.tab-panel h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: .5rem; }
.tab-panel p { font-size: 15px; color: var(--text-secondary); }

.feature-area { margin-bottom: 2.5rem; }
.feature-area h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; }
.feature-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.feature-card { padding: 1.25rem; border-radius: var(--radius-sm); background: var(--bg-elevated); border: 1px solid var(--border); }
.feature-card h4 { font-size: 15px; font-weight: 600; margin-bottom: .35rem; }
.feature-card p { font-size: 14px; color: var(--text-secondary); }

.exclusive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 860px) { .exclusive-grid { grid-template-columns: repeat(2, 1fr); } }
.exclusive-card { padding: 1.75rem; border-radius: var(--radius); background: var(--bg-elevated); border: 1px solid var(--border); transition: transform .4s; }
.exclusive-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.exclusive-card .icon { font-size: 2rem; margin-bottom: .75rem; }
.exclusive-card h3 { font-size: 17px; font-weight: 600; margin-bottom: .35rem; }
.exclusive-card p { font-size: 14px; color: var(--text-secondary); }
.exclusive-badge { font-size: 10px; font-weight: 600; color: var(--accent-warm); margin-top: .65rem; display: inline-block; }

.stats-band { border-block: 1px solid var(--border); background: var(--bg-secondary); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
@media (max-width: 640px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 600; letter-spacing: -0.04em;
  background: var(--hero-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 14px; color: var(--text-secondary); margin-top: .35rem; }

.pillar-list { display: grid; gap: 1rem; max-width: 720px; }
.pillar-row label { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: .4rem; }
.pillar-track { height: 8px; border-radius: 4px; background: var(--bg-secondary); overflow: hidden; }
.pillar-fill { height: 100%; width: 0; border-radius: 4px; background: var(--hero-gradient); transition: width 1.2s var(--ease-out); }

.compare-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px; }
.compare-table th, .compare-table td { padding: 1rem 1.15rem; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table thead th { background: var(--bg-secondary); font-weight: 600; }
.compare-table .yes { color: var(--success); font-weight: 600; }
.compare-table .col-highlight { background: rgba(48,213,200,.05); }

.persona-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .persona-grid { grid-template-columns: repeat(2, 1fr); } }
.persona-card { padding: 1.5rem; border-radius: var(--radius); background: var(--bg-elevated); border: 1px solid var(--border); }
.persona-card h3 { font-size: 15px; font-weight: 600; margin-bottom: .35rem; }
.persona-card p { font-size: 14px; color: var(--text-secondary); }

.mono-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
@media (max-width: 768px) { .mono-grid { grid-template-columns: 1fr; } }

/* Monetization infographic */
.mono-diagram {
  position: relative; overflow: hidden;
  padding: 2.25rem 2rem 2rem; border-radius: calc(var(--radius) * 1.2);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(48,213,200,.08), transparent 60%),
    var(--bg-elevated);
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.mono-diagram::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2330d5c8' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
}
.mono-diagram-user { text-align: center; margin-bottom: .5rem; position: relative; z-index: 1; }
.mono-diagram-node {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .55rem 1.35rem; border-radius: 980px;
  background: var(--hero-gradient); color: #fff; font-weight: 600; font-size: 14px;
  box-shadow: 0 8px 24px rgba(0,113,227,.2);
}
.mono-diagram-lines {
  display: flex; justify-content: center; gap: clamp(2rem, 12vw, 5rem);
  height: 32px; margin-bottom: .65rem; position: relative; z-index: 1;
}
.mono-diagram-lines span {
  width: 2px; height: 100%;
  background: linear-gradient(180deg, var(--accent-teal), var(--accent));
  opacity: .55;
  animation: monoLinePulse 2.4s ease-in-out infinite;
}
.mono-diagram-lines span:nth-child(2) { animation-delay: .4s; }
.mono-diagram-lines span:nth-child(3) { animation-delay: .8s; }
@keyframes monoLinePulse {
  0%, 100% { opacity: .35; transform: scaleY(.85); }
  50% { opacity: .85; transform: scaleY(1); }
}
.mono-layer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  position: relative; z-index: 1;
}
@media (max-width: 768px) { .mono-layer-grid { grid-template-columns: 1fr; } }
.mono-layer-card {
  padding: 1.35rem 1.25rem 1.25rem; border-radius: var(--radius);
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-top: 3px solid var(--layer-color, var(--accent));
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.mono-layer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.mono-layer-icon {
  font-size: 1.75rem; margin-bottom: .65rem;
  width: 3.25rem; height: 3.25rem; margin-inline: auto;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--layer-color, var(--accent)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--layer-color, var(--accent)) 25%, transparent);
}
.mono-layer-card h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: .35rem; }
.mono-layer-blurb { font-size: 13px; color: var(--text-secondary); line-height: 1.45; margin-bottom: .75rem; }
.mono-layer-meter {
  height: 4px; border-radius: 2px; background: var(--border); overflow: hidden; margin-bottom: .5rem;
}
.mono-layer-meter span {
  display: block; height: 100%; border-radius: 2px;
  background: var(--layer-color, var(--accent));
  animation: meterGrow 1.2s var(--ease-out) both;
}
@keyframes meterGrow { from { width: 0 !important; } }
.mono-layer-status { font-size: 11px; font-weight: 600; color: var(--success); }
.mono-diagram-merge {
  margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px dashed var(--border);
  text-align: center;
}
.mono-merge-bar {
  height: 3px; border-radius: 2px; margin: 0 auto .65rem;
  max-width: 280px;
  background: linear-gradient(90deg, var(--accent-warm), var(--accent-purple), var(--accent));
}
.mono-diagram-merge span { font-size: 12px; color: var(--text-tertiary); font-family: ui-monospace, monospace; }

.mono-tiers { margin-top: .5rem; }
.mono-tiers-title { font-size: 1.25rem; font-weight: 600; margin-bottom: .35rem; }
.mono-tiers-lead { font-size: 15px; color: var(--text-secondary); margin-bottom: 1.25rem; }
.mono-tiers-track {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem;
}
@media (max-width: 900px) { .mono-tiers-track { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .mono-tiers-track { grid-template-columns: 1fr; } }
.mono-tier-card {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.mono-tier-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}
.mono-tier-bar {
  height: 6px; background: var(--bg-secondary);
}
.mono-tier-bar span {
  display: block; height: 100%; width: var(--tier-w, 50%);
  background: var(--hero-gradient);
  border-radius: 0 2px 2px 0;
  transition: width 1s var(--ease-out);
}
.mono-tier-body { padding: 1rem 1rem .95rem; }
.mono-tier-body strong { display: block; font-size: 15px; margin-bottom: .15rem; }
.mono-tier-duration {
  display: inline-flex; align-items: center; gap: .25rem;
  font-size: 11px; font-weight: 700; letter-spacing: .02em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .4rem;
  padding: .15rem .45rem; border-radius: 4px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}
.mono-tier-body p { font-size: 12px; color: var(--text-secondary); line-height: 1.45; }

.tier-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
@media (max-width: 768px) { .tier-row { grid-template-columns: repeat(2, 1fr); } }
.tier-chip { padding: .85rem; border-radius: var(--radius-sm); background: var(--bg-secondary); border: 1px solid var(--border); text-align: center; }
.tier-chip strong { display: block; font-size: 14px; }
.tier-chip span { font-size: 12px; color: var(--text-tertiary); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pricing-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .pricing-grid, .pricing-grid-4 { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.price-card { padding: 2rem; border-radius: var(--radius); background: var(--bg-elevated); border: 1px solid var(--border); display: flex; flex-direction: column; }
.price-card.featured { border-color: rgba(48,213,200,.4); box-shadow: var(--shadow); transform: scale(1.02); }
.price-card-compact { padding: 1.5rem; }
.price-tag { font-size: 11px; font-weight: 600; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.price-name { font-size: 1.25rem; font-weight: 600; }
.price-amt { font-size: 2.75rem; font-weight: 600; letter-spacing: -0.04em; margin: .75rem 0 .25rem; }
.price-amt small { font-size: 1rem; font-weight: 500; color: var(--text-secondary); margin-left: .15rem; }
.price-alt { font-size: .9rem; color: var(--text-secondary); margin-bottom: .5rem; }
.price-total { font-size: .85rem; color: var(--accent); margin-bottom: .35rem; }
.price-usage-type { font-size: .85rem; color: var(--text-secondary); margin: .5rem 0 1rem; line-height: 1.45; }
.price-features { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: .45rem; font-size: .9rem; color: var(--text-secondary); }
.price-features li::before { content: '✓'; color: var(--accent); margin-right: .5rem; }
.price-quota-block { margin: .75rem 0 1rem; padding: .75rem; border-radius: var(--radius-sm); background: var(--bg); border: 1px solid var(--border); font-size: .82rem; }
.price-quota-block strong { display: block; margin-bottom: .45rem; font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; color: var(--text-tertiary); }
.price-quota-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .3rem; }
.price-quota-list li { display: flex; justify-content: space-between; gap: .75rem; color: var(--text-secondary); }
.price-not-included { font-size: .8rem; color: var(--text-tertiary); margin: 0 0 1rem; }
.pricing-section { margin-top: 2.5rem; }
.pricing-subhead { font-size: 1.35rem; font-weight: 600; margin-bottom: .35rem; }
.pricing-sublead { color: var(--text-secondary); font-size: .92rem; margin-bottom: 1.25rem; max-width: 720px; }
.pricing-table-wrap { margin-top: 2.5rem; overflow-x: auto; }
.pricing-table { width: 100%; border-collapse: collapse; font-size: .88rem; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.pricing-table th, .pricing-table td { padding: .65rem .85rem; text-align: left; border-bottom: 1px solid var(--border); }
.pricing-table th { color: var(--text-tertiary); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; background: var(--bg); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table-compact { font-size: .82rem; }
.pricing-credits { margin-top: 2.5rem; }
.pricing-credits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 768px) { .pricing-credits-grid { grid-template-columns: 1fr; } }
.pricing-credits h4 { font-size: 1rem; margin-bottom: .65rem; }
.stat-text { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.price-amt small { font-size: 1rem; color: var(--text-tertiary); font-weight: 400; }
.price-features { list-style: none; flex: 1; margin: 1.25rem 0; display: grid; gap: .5rem; }
.price-features li { font-size: 14px; color: var(--text-secondary); padding-left: 1.25rem; position: relative; }
.price-features li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 600; }
.price-card .btn { width: 100%; margin-top: auto; }

.faq-list { max-width: 720px; display: grid; gap: .5rem; }
.faq-item { border-radius: var(--radius-sm); background: var(--bg-elevated); border: 1px solid var(--border); overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 1.1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; font-size: 17px; font-weight: 500; }
.faq-q .icon { color: var(--accent); font-size: 1.25rem; transition: transform .3s; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-out); }
.faq-a-inner { padding: 0 1.25rem 1.1rem; font-size: 15px; color: var(--text-secondary); line-height: 1.5; }

.cta-box {
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) 2rem;
  border-radius: calc(var(--radius) * 1.5);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(10, 132, 255, .07), transparent 55%),
    var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .06);
}
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2rem; }
.cta-actions .btn-play { min-width: min(100%, 280px); }

.footer { border-top: 1px solid var(--border); padding: 3rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer p, .footer a { font-size: 14px; color: var(--text-secondary); }
.footer a { display: block; margin-bottom: .4rem; text-decoration: none; }
.footer a:hover { color: var(--accent); }
.footer-brand p { margin-top: .75rem; max-width: 28rem; line-height: 1.55; }
.footer-contact { margin-top: .75rem; font-size: 13px; }
.footer-col-title { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-primary); margin-bottom: .75rem; }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; justify-content: space-between; font-size: 12px; color: var(--text-tertiary); }

.sync-badge {
  position: fixed; bottom: .75rem; right: .75rem; z-index: 50;
  font-size: 10px; padding: .3rem .55rem; border-radius: 6px;
  background: var(--glass); backdrop-filter: blur(8px); border: 1px solid var(--border); color: var(--text-tertiary); opacity: .75;
}

.reveal { opacity: 0; transform: translateY(28px); }
/* Hero above the fold — CSS entrance, never scroll-triggered or GSAP opacity */
.reveal-hero,
.hero .reveal-hero {
  opacity: 1;
  transform: none;
  animation: heroEnter .85s var(--ease-out) both;
}
.hero-device-col { animation-delay: .12s; }
@keyframes heroEnter {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

.cinema-nav-wrap {
  display: grid; grid-template-columns: auto 1fr auto; gap: .75rem; align-items: stretch;
}
@media (max-width: 768px) {
  .cinema-nav-wrap { grid-template-columns: 1fr; }
  .cinema-arrow { display: none; }
}
.cinema-arrow {
  width: 44px; align-self: center; flex-shrink: 0;
  height: 44px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--bg-elevated); font-size: 1.5rem; line-height: 1;
  color: var(--text-secondary); transition: .25s;
  display: flex; align-items: center; justify-content: center;
}
.cinema-arrow:hover {
  border-color: var(--accent-teal); color: var(--text);
  background: var(--card-hover); transform: scale(1.06);
}
.cinema-counter { font-size: 12px; font-weight: 600; color: var(--accent); margin-bottom: .35rem; }

/* Categories */
.cat-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-count {
  display: inline-block; margin-left: .35rem; font-size: 11px; font-weight: 600;
  color: var(--accent); background: rgba(10,132,255,.1); padding: .15rem .45rem; border-radius: 980px;
}

/* Flows accordion */
.flows-toolbar { margin-bottom: 1.25rem; }
.flows-toolbar-inner {
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; justify-content: space-between;
}
.flows-search {
  flex: 1; min-width: 200px; padding: .65rem 1rem; border-radius: 980px;
  border: 1px solid var(--border); background: var(--bg-elevated); color: var(--text);
  font-size: 15px; font-family: inherit;
}
.flows-search:focus { outline: none; border-color: var(--accent); }
.btn-text {
  font-size: 14px; color: var(--accent); padding: .35rem .5rem;
}
.flows-accordion { display: grid; gap: .5rem; }
.flow-acc-item {
  border-radius: var(--radius-sm); background: var(--bg-elevated);
  border: 1px solid var(--border); overflow: hidden;
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}
.flow-acc-trigger {
  width: 100%; text-align: left; padding: 1rem 1.15rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: background .2s;
}
.flow-acc-trigger:hover { background: var(--card-hover); }
.flow-acc-left { display: flex; align-items: center; gap: .85rem; }
.flow-emoji-sm { font-size: 1.35rem; width: 36px; text-align: center; }
.flow-acc-trigger strong { display: block; font-size: 15px; font-weight: 600; }
.flow-acc-meta { font-size: 12px; color: var(--text-tertiary); font-weight: 400; }
.flow-acc-chevron {
  font-size: 1.25rem; color: var(--text-tertiary); transition: transform .3s;
}
.flow-acc-item.open .flow-acc-chevron { transform: rotate(90deg); color: var(--accent); }
.flow-acc-panel {
  padding: 0 1.15rem 1.15rem; border-top: 1px solid var(--border);
}
.flow-acc-panel[hidden] { display: none; }
.flow-acc-panel .flow-mini-demo { margin-top: 1rem; min-height: 200px; }

/* Feature bento / infographic */
.feature-bento-wrap { display: grid; gap: 2rem; }
.feature-bento {
  padding: 1.75rem; border-radius: calc(var(--radius) * 1.2);
  background: var(--bg-elevated); border: 1px solid var(--border);
}
.bento-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.bento-icon { font-size: 1.75rem; }
.bento-header h3 { font-size: 1.25rem; font-weight: 600; }
.bento-rail {
  display: flex; align-items: center; flex-wrap: wrap; gap: .25rem;
  margin-bottom: 1.25rem; padding: 1rem; border-radius: var(--radius-sm);
  background: var(--bg-secondary); overflow-x: auto;
}
.bento-node {
  display: flex; align-items: center; gap: .4rem;
  padding: .4rem .65rem; border-radius: 980px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  font-size: 12px; white-space: nowrap;
}
.bento-node-num {
  width: 20px; height: 20px; border-radius: 50%; font-size: 10px; font-weight: 700;
  background: var(--hero-gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.bento-connector {
  width: 16px; height: 2px; background: linear-gradient(90deg, var(--accent-teal), var(--accent));
  opacity: .5; flex-shrink: 0;
}
.bento-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .75rem;
}
.bento-card { position: relative; padding-left: 2rem; }
.bento-card-icon {
  position: absolute; left: .85rem; top: 1.1rem; font-size: 10px; color: var(--accent-teal);
}
.device-compact .device { transform: none !important; }

/* Legal pages */
.legal-page { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 4rem; }
.legal-page .container { max-width: 820px; }
.legal-back { display: inline-flex; align-items: center; gap: .35rem; font-size: 14px; color: var(--text-secondary); margin-bottom: 1.5rem; text-decoration: none; }
.legal-back:hover { color: var(--accent); }
.legal-page h1 { font-size: clamp(1.75rem, 4vw, 2.35rem); margin-bottom: .35rem; }
.legal-updated { color: var(--text-tertiary); font-size: .9rem; margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.25rem; margin: 2rem 0 .75rem; scroll-margin-top: calc(var(--nav-h) + 1rem); }
.legal-page h3 { font-size: 1.05rem; margin: 1.25rem 0 .5rem; }
.legal-page p, .legal-page li { color: var(--text-secondary); line-height: 1.65; font-size: .95rem; }
.legal-page ul, .legal-page ol { padding-left: 1.25rem; margin: .75rem 0 1rem; display: grid; gap: .45rem; }
.legal-page table { width: 100%; border-collapse: collapse; font-size: .88rem; margin: 1rem 0; }
.legal-page th, .legal-page td { padding: .55rem .7rem; border: 1px solid var(--border); text-align: left; }
.legal-page th { background: var(--bg-elevated); color: var(--text-tertiary); font-size: .78rem; text-transform: uppercase; }
.legal-toc { padding: 1rem 1.25rem; border-radius: var(--radius); background: var(--bg-elevated); border: 1px solid var(--border); margin-bottom: 2rem; }
.legal-toc strong { display: block; margin-bottom: .5rem; }
.legal-toc a { display: block; font-size: .9rem; color: var(--accent); margin: .25rem 0; text-decoration: none; }
.legal-callout { padding: 1rem 1.15rem; border-radius: var(--radius-sm); border-left: 3px solid var(--accent); background: var(--bg-elevated); margin: 1rem 0; }

