/*
 * Vraelos marketing site — design system + layout.
 * Recreates the visual language of the design reference (near-black layered
 * dark theme, one indigo-violet accent, Inter/JetBrains Mono) as real,
 * responsive CSS rather than the fixed-width HTML prototype.
 */

/* ---------- Tokens ---------- */
:root {
  color-scheme: dark;

  --bg: #08090c;
  --surface-0: #0a0b0e;
  --surface-1: #0e0f13;
  --surface-2: #101116;
  --surface-3: #141519;
  --surface-4: #16171c;
  --surface-5: #1b1d23;

  --border-1: #17191e;
  --border-2: #1e2026;
  --border-3: #23262c;
  --border-4: #2a2d35;
  --border-5: #33363f;
  --border-accent-soft: #2f2b45;

  --text: #e7e9ee;
  --text-hi: #f2f3f6;
  --text-hi-2: #f4f5f8;
  --text-secondary: #c6cad2;
  --text-tertiary: #9aa0ab;
  --text-muted: #8a8f99;
  --text-dim: #767b85;
  --text-faint: #565b64;
  --text-faintest: #454a53;

  --accent: #6d5df6;
  --accent-rgb: 109, 93, 246;
  --accent-2: #8f80ff;
  --accent-2-rgb: 143, 128, 255;
  --accent-hi: #b6abff;
  --accent-glow: #a99dff;
  --accent-wash: #c8b9ff;

  --track-green: #86d3ab;
  --track-green-rgb: 120, 214, 164;
  --track-green-dark: #1f4534;
  --track-yellow: #e6c987;
  --track-yellow-dark: #4a3b1e;
  --track-blue: #9cc0e6;
  --track-blue-dark: #22384f;

  --danger: #e5a3a6;

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --radius-sm: 7px;
  --radius-md: 9px;
  --radius-lg: 12px;
  --radius-xl: 14px;
  --radius-2xl: 16px;
  --radius-3xl: 22px;
  --radius-pill: 999px;

  --container: 1200px;
  --container-narrow: 1000px;
  --container-narrower: 760px;

  --nav-h: 64px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, p, dl, dd { margin: 0; }
[id] { scroll-margin-top: calc(var(--nav-h) + 24px); }
::selection { background: rgba(var(--accent-rgb), .32); color: #fff; }
.mono { font-family: var(--font-mono); }
.is-accent { color: var(--accent-hi); }
.is-muted { color: var(--text-muted); }
[hidden] { display: none !important; }

.screen-reader-text {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 12px; z-index: 1000;
  background: var(--accent); color: #fff; padding: 10px 16px; border-radius: var(--radius-md);
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; width: auto; height: auto; clip: auto; overflow: visible; }

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Shared bits ---------- */
.eyebrow-tick {
  width: 0; height: 0; flex: none;
  border-top: 5px solid transparent; border-bottom: 5px solid transparent;
  border-left: 7px solid var(--accent);
}
.feature__eyebrow, .section__head .feature__eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 2.5px;
  color: var(--accent-2); text-transform: uppercase;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 44px; padding: 0 20px; border-radius: var(--radius-lg);
  font-size: 14.5px; font-weight: 600; white-space: nowrap;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
}
.btn .ti { font-size: 1.15em; }
.btn--primary {
  background: linear-gradient(180deg, #7d6dff, #6a58f4);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 4px 18px rgba(var(--accent-rgb), .4);
}
.btn--primary:hover { filter: brightness(1.06); }
.btn--ghost {
  background: var(--surface-3); border: 1px solid var(--border-4); color: var(--text-secondary);
}
.btn--ghost:hover { color: #fff; background: var(--surface-5); }
.btn--outline {
  background: var(--surface-2); border: 1px solid var(--border-3); color: var(--text-secondary);
}
.btn--outline:hover { border-color: var(--border-5); background: var(--surface-4); }
.btn--lg { height: 52px; padding: 0 26px; font-size: 16px; border-radius: var(--radius-lg); }
.btn--sm { height: 32px; padding: 0 14px; font-size: 12.5px; border-radius: var(--radius-sm); }

.chip {
  display: inline-flex; align-items: center; gap: 8px; height: 36px; padding: 0 14px;
  background: var(--surface-3); border: 1px solid var(--border-3); border-radius: var(--radius-md);
  font-size: 13.5px; color: var(--text-secondary);
}
.chip__icon { color: var(--accent-wash); font-size: 15px; }
.chip__icon--green { color: var(--track-green); }

.badge {
  display: inline-flex; align-items: center; gap: 5px; height: 23px; padding: 0 9px;
  border-radius: 6px; background: rgba(var(--accent-rgb), .12); color: var(--accent-wash);
  font-size: 10.5px; font-weight: 500;
}

/* Segmented toggle (aspect ratio / export preset) */
.segmented {
  display: inline-flex; align-items: center; background: var(--surface-2);
  border: 1px solid #292c34; border-radius: var(--radius-lg); padding: 3px; gap: 2px;
}
.segmented__btn {
  height: 34px; padding: 0 15px; border-radius: 7px; font-size: 13px; color: var(--text-muted);
}
.segmented__btn.is-active { background: #2a2d36; color: #eceef2; font-weight: 600; box-shadow: inset 0 0 0 1px var(--border-5); }
.segmented--pills .segmented__btn { height: 28px; padding: 0 13px; font-size: 11.5px; font-weight: 500; }
.segmented--pills .segmented__btn.is-active { background: rgba(var(--accent-rgb), .15); color: #fff; box-shadow: inset 0 0 0 1px rgba(var(--accent-2-rgb), .5); }

/* Mini sliders used in the illustrative panels (decorative, non-interactive) */
.mini-slider { display: flex; align-items: center; gap: 10px; height: 26px; margin-bottom: 4px; }
.mini-slider--inline { flex: 1; height: 30px; margin-bottom: 0; }
.mini-slider__label { width: 60px; flex: none; font-size: 11.5px; color: #9298a3; }
.mini-slider__track { flex: 1; position: relative; height: 4px; border-radius: 2px; background: #26282f; }
.mini-slider__fill { position: absolute; left: 0; top: 0; height: 100%; border-radius: 2px; background: #4a4f5a; }
.mini-slider__fill.is-accent { background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.mini-slider__thumb {
  position: absolute; top: 50%; width: 11px; height: 11px; border-radius: 50%;
  background: #d7dae1; box-shadow: 0 1px 3px rgba(0,0,0,.5); transform: translate(-50%, -50%);
}
.mini-slider__value { width: 46px; flex: none; text-align: right; font-size: 11px; color: var(--text-secondary); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100; width: 100%;
  background: rgba(9, 10, 13, .35); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.nav.is-scrolled { background: rgba(9, 10, 13, .86); border-bottom-color: var(--border-2); }
.nav__inner {
  max-width: var(--container); margin: 0 auto; height: var(--nav-h); padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav__brand { display: flex; align-items: center; gap: 9px; flex: none; }
.nav__wordmark { margin-top: 1px; }
.nav__links { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav__links a {
  font-size: 13.5px; color: var(--text-tertiary); padding: 8px 14px; border-radius: 8px;
  transition: color .15s ease, background .15s ease;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,.04); }
.nav__cta { flex: none; }
.nav__toggle { display: none; flex: none; padding: 6px; font-size: 20px; color: var(--text-secondary); }
.nav__mobile {
  display: none; flex-direction: column; gap: 4px; padding: 10px 20px 18px;
  border-top: 1px solid var(--border-2); background: rgba(9,10,13,.97);
}
.nav__mobile a { padding: 10px 4px; font-size: 14.5px; color: var(--text-secondary); }
.nav__mobile .btn { margin-top: 10px; width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 96px 24px 0; overflow: hidden; }
.hero__glow {
  position: absolute; top: -140px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 640px; max-width: 200vw;
  background: radial-gradient(50% 55% at 50% 40%, rgba(var(--accent-rgb), .22), transparent 72%);
  filter: blur(30px); pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 12%, rgba(255,255,255,.028) 0 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(#000, transparent 60%); mask-image: linear-gradient(#000, transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 1000px; margin: 0 auto; text-align: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px;
  padding: 6px 13px 6px 11px; border-radius: var(--radius-pill);
  background: rgba(var(--accent-rgb), .09); border: 1px solid rgba(var(--accent-2-rgb), .24);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.8px; color: var(--accent-hi);
  text-transform: uppercase;
}
.hero__heading {
  font-size: clamp(34px, 6vw, 82px); font-weight: 700; letter-spacing: -.035em; line-height: 1.04;
  color: var(--text-hi-2); text-wrap: balance;
}
.hero__highlight {
  background: linear-gradient(120deg, var(--accent-glow), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__subhead {
  max-width: 620px; margin: 26px auto 0; font-size: 18px; line-height: 1.62; color: var(--text-tertiary);
  text-wrap: pretty;
}
.hero__actions { display: flex; align-items: center; justify-content: center; gap: 13px; margin-top: 38px; flex-wrap: wrap; }
.hero__meta { margin-top: 20px; font-size: 12px; color: var(--text-faint); letter-spacing: .3px; }
.hero__trust {
  display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 30px; flex-wrap: wrap;
}
.hero__trust li { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-muted); }
.hero__trust .ti { color: var(--accent); font-size: 15px; }

.hero__shot { position: relative; width: 1028px; max-width: 100%; margin: 56px auto 0 ; }
.app-window {
  position: relative; border-radius: 15px; border: 1px solid var(--border-3); overflow: hidden;
  box-shadow: 0 50px 130px rgba(0,0,0,.65), 0 0 0 1px rgba(var(--accent-2-rgb), .07), 0 30px 90px rgba(var(--accent-rgb), .16);
  background: #0b0c0f;
}
.app-window__bar {
  height: 36px; display: flex; align-items: center; justify-content: space-between; padding: 0 13px;
  background: var(--surface-2); border-bottom: 1px solid var(--border-2);
}
.app-window__title { display: flex; align-items: center; gap: 8px; min-width: 0; }
.app-window__title span { color: var(--text-dim); font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-window__controls { display: flex; align-items: center; gap: 15px; color: var(--text-faint); font-size: 13px; }
.app-window__body { width: 100%; background: var(--surface-1); }
.app-window__img { width: 100%; height: auto; }

/* ---------- Stats ---------- */
.stats {
  position: relative; margin-top: 80px; border-top: 1px solid var(--border-1); border-bottom: 1px solid var(--border-1);
  background: var(--surface-0);
}
.stats__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stats__item { padding: 40px 20px; text-align: center; border-left: 1px solid var(--border-1); }
.stats__item:first-child { border-left: none; }
.stats__n { font-size: 40px; font-weight: 700; letter-spacing: -.02em; color: var(--text-hi); }
.stats__l { margin-top: 6px; font-size: 11px; letter-spacing: 1px; color: var(--text-dim); text-transform: uppercase; }

/* ---------- Feature sections ---------- */
.feature { padding: 100px 24px; border-top: 1px solid var(--border-1); }
.feature--alt { background: var(--surface-0); border-bottom: 1px solid var(--border-1); }
.feature__grid {
  max-width: var(--container); margin: 0 auto; display: grid;
  grid-template-columns: 1.02fr 1.18fr; gap: 60px; align-items: center;
}
.feature__grid--reverse { grid-template-columns: 1.18fr 1.02fr; }
.feature__grid--reverse .feature__art { order: 1; }
.feature__grid--reverse .feature__copy { order: 2; }
.feature__heading {
  font-size: clamp(26px, 3.4vw, 46px); font-weight: 600; letter-spacing: -.025em; line-height: 1.1;
  color: var(--text-hi); text-wrap: balance;
}
.feature__body { margin-top: 18px; font-size: 17px; line-height: 1.65; color: var(--text-tertiary); max-width: 46ch; text-wrap: pretty; }
.feature__points { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.feature__points li { display: flex; align-items: flex-start; gap: 12px; }
.feature__point-icon {
  flex: none; width: 22px; height: 22px; border-radius: 6px; margin-top: 1px;
  background: rgba(var(--accent-rgb), .14); display: flex; align-items: center; justify-content: center;
}
.feature__point-icon .ti { font-size: 13px; color: var(--accent-2); }
.feature__points strong { font-size: 15px; color: var(--text-secondary); font-weight: 500; }
.feature__points .is-muted { font-size: 15px; }
.feature__chips { margin-top: 26px; display: flex; gap: 10px; flex-wrap: wrap; }
.feature__meta { margin-top: 20px; font-size: 12px; color: var(--text-faint); }
.feature__art { position: relative; }
.feature__art--center { display: flex; justify-content: center; }

/* Timeline illustration */
.tl-panel {
  position: relative; border-radius: var(--radius-xl); border: 1px solid var(--border-3);
  background: linear-gradient(180deg, var(--surface-1), var(--surface-0)); box-shadow: 0 30px 70px rgba(0,0,0,.5);
  padding: 14px;
}
.tl-panel__head { display: flex; align-items: center; justify-content: space-between; padding: 2px 4px 12px; font-size: 11px; color: var(--text-faint); }
.tl-panel__code { color: var(--text-secondary); }
.tl-ruler {
  display: grid; grid-template-columns: 34px 1fr; height: 20px; font-size: 8.5px; color: var(--text-faint);
}
.tl-ruler span { align-self: end; padding-bottom: 2px; }
.tl-ruler { position: relative; }
.tl-row { display: grid; grid-template-columns: 34px 1fr; align-items: stretch; border-bottom: 1px solid #121318; }
.tl-row:first-of-type { border-top: 1px solid #1c1e24; }
.tl-row__tag {
  align-self: center; justify-self: center; font-size: 8.5px; font-weight: 600; border-radius: 3px; padding: 1px 4px;
}
.tl-row__tag--v2, .tl-row__tag--cc { color: var(--track-yellow); background: var(--track-yellow-dark); }
.tl-row__tag--v1 { color: var(--track-blue); background: var(--track-blue-dark); }
.tl-row__tag--a { color: var(--track-green); background: var(--track-green-dark); }
.tl-row__lane { position: relative; min-height: 30px; padding: 3px 0; }
.tl-row--video .tl-row__lane { min-height: 44px; }
.tl-row--audio .tl-row__lane { min-height: 32px; }
.tl-clip { position: absolute; top: 3px; bottom: 3px; border-radius: 5px; overflow: hidden; font-size: 8.5px; }
.tl-clip--text, .tl-clip--cc {
  display: flex; align-items: center; gap: 5px; padding: 0 8px;
  background: linear-gradient(180deg, var(--track-yellow-dark), #3f331b); border: 1px solid #6b5327; color: var(--track-yellow);
}
.tl-clip--video { border: 1px solid #33506f; background: #20364d; }
.tl-clip--video.tl-clip--active { border: 1.5px solid var(--accent-2); box-shadow: 0 0 0 1px rgba(var(--accent-2-rgb), .3); }
.tl-clip__head { height: 14px; display: flex; align-items: center; gap: 5px; padding: 0 7px; background: #2b4869; color: #cadaee; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tl-clip--video.tl-clip--active .tl-clip__head { background: #35578a; color: #eaf1fb; font-weight: 500; }
.tl-clip__badge { font-size: 7.5px; font-weight: 700; color: #3a2f16; background: var(--track-yellow); border-radius: 2px; padding: 1px 3px; }
.tl-clip--audio { border: 1px solid #2f6b52; background: #173a2d; padding-top: 0; }
.tl-clip--voice { border-color: #2c6250; background: #163a37; }
.tl-clip--audio .tl-clip__head { height: 12px; background: #24523f; color: #bfe6d2; font-size: 7.5px; }
.tl-clip--voice .tl-clip__head { background: #204d43; color: #bfe6dd; }
.tl-wave { position: absolute; left: 5px; right: 5px; top: 12px; bottom: 3px; display: flex; align-items: center; gap: 1px; }
.tl-wave--tall { position: static; height: 100%; }
.tl-wave span { flex: 1 0 0; min-width: 0; border-radius: 1px; background: rgba(var(--track-green-rgb), .85); }
.tl-playhead { position: absolute; top: 20px; bottom: 0; width: 2px; background: var(--accent-2); box-shadow: 0 0 10px rgba(var(--accent-2-rgb), .55); }
.tl-playhead::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 12px; height: 15px; background: var(--accent-2); clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0 60%);
}

/* Color panel illustration */
.color-panel {
  border-radius: var(--radius-xl); border: 1px solid var(--border-3);
  background: linear-gradient(180deg, var(--surface-3), var(--surface-2)); box-shadow: 0 30px 70px rgba(0,0,0,.5);
  padding: 22px; max-width: 460px;
}
.color-panel__label { margin-bottom: 18px; color: var(--text-faint); }
.color-panel__wheels { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.color-wheel { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.color-wheel span { font-size: 10.5px; color: var(--text-muted); }
.color-wheel__ring {
  position: relative;
  width: 82px; height: 82px; border-radius: 50%; padding: 10px;
  background: conic-gradient(from 90deg, #ff6b6b, #ffd36b, #8bff7c, #6bffe0, #6b9bff, #c06bff, #ff6b6b);
}
.color-wheel__ring::before {
  content: ''; display: block; width: 100%; height: 100%; border-radius: 50%; position: relative;
  background: radial-gradient(circle at 50% 50%, #2b2e37, #131419); box-shadow: inset 0 0 0 1px rgba(0,0,0,.55);
}
.color-wheel__dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #fff; top: 46%; left: 52%; box-shadow: 0 0 0 1.5px rgba(0,0,0,.5); }
.color-panel__fx { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.fx-chip {
  display: inline-flex; align-items: center; gap: 5px; height: 26px; padding: 0 10px; border-radius: 7px;
  background: var(--surface-2); box-shadow: inset 0 0 0 1px var(--border-4); color: var(--text-muted); font-size: 11px;
}
.fx-chip.is-on { background: rgba(var(--accent-rgb), .14); box-shadow: inset 0 0 0 1px rgba(var(--accent-2-rgb), .4); color: var(--accent-wash); }

/* Audio panel illustration */
.audio-panel {
  border-radius: var(--radius-xl); border: 1px solid var(--border-3);
  background: linear-gradient(180deg, var(--surface-3), var(--surface-2)); box-shadow: 0 30px 70px rgba(0,0,0,.5);
  padding: 22px; max-width: 460px;
}
.audio-panel__label { margin-bottom: 16px; color: var(--text-faint); }
.audio-panel__clip { border-radius: 8px; overflow: hidden; border: 1px solid #2c6250; background: #163a37; margin-bottom: 20px; }
.audio-panel__head { height: 20px; background: #204d43; display: flex; align-items: center; gap: 6px; padding: 0 9px; font-size: 9px; color: #bfe6dd; }
.audio-panel__db { margin-left: auto; color: #5f9585; }
.audio-panel__clip .tl-wave--tall { height: 56px; padding: 6px 8px; position: static; }

/* Captions preview illustration */
.caption-preview { display: flex; flex-direction: column; align-items: center; gap: 14px; min-height: 320px; justify-content: center; }
.caption-preview__frame {
  position: relative; height: 300px; border-radius: 6px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px var(--border-2);
  background: radial-gradient(125% 85% at 50% 22%, #33405e 0%, #1c2436 44%, #0d101a 100%);
  transition: aspect-ratio .35s ease;
}
.caption-preview__frame::before {
  content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(118deg, rgba(255,255,255,.03) 0 2px, transparent 2px 9px);
}
.caption-preview__safe { position: absolute; inset: 5%; border: 1px dashed rgba(255,255,255,.14); border-radius: 2px; }
.caption-preview__title {
  position: absolute; top: 12px; left: 0; right: 0; text-align: center;
  font-size: 15px; font-weight: 700; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.6); letter-spacing: .3px;
}
.caption-preview__cta {
  position: absolute; left: 0; right: 0; bottom: 14%; padding: 0 14px; text-align: center;
  font-size: 15px; line-height: 1.2; font-weight: 700; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
.caption-preview__res {
  position: absolute; bottom: 8px; left: 8px; font-size: 8.5px; color: #cdd6e4;
  background: rgba(0,0,0,.45); border-radius: 4px; padding: 2px 5px;
}
.caption-chip {
  display: flex; align-items: center; gap: 6px; height: 26px; padding: 0 8px; border-radius: 5px;
  background: linear-gradient(180deg, var(--track-yellow-dark), #40341c); border: 1px solid #6b5327;
  font-size: 10px; color: #f3e3b7; max-width: 230px;
}
.caption-chip__badge { font-size: 8px; font-weight: 700; color: #3a2f16; background: var(--track-yellow); border-radius: 2px; padding: 1px 4px; }

/* Export modal illustration */
.export-modal {
  width: 420px; max-width: 100%; background: var(--surface-4); border: 1px solid var(--border-4);
  border-radius: var(--radius-lg); box-shadow: 0 34px 84px rgba(0,0,0,.6); overflow: hidden;
}
.export-modal__head {
  display: flex; align-items: center; justify-content: space-between; padding: 14px 17px 12px;
  border-bottom: 1px solid var(--border-2); font-size: 13px; font-weight: 600; color: var(--text-hi);
}
.export-modal__head span:first-child { display: flex; align-items: center; gap: 9px; }
.export-modal__head .ti:first-child { color: var(--accent-hi); }
.export-modal__body { padding: 16px 17px 18px; }
.export-modal__label { font-size: 9.5px; font-weight: 600; letter-spacing: .6px; color: #666b75; text-transform: uppercase; margin-bottom: 8px; display: block; }
.export-modal__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 16px 0 14px; }
.export-modal__value {
  display: flex; align-items: center; justify-content: space-between; height: 30px; padding: 0 10px;
  background: var(--surface-1); border: 1px solid var(--border-4); border-radius: var(--radius-sm); font-size: 11px; color: var(--text-secondary);
}
.export-modal__note {
  display: flex; align-items: center; gap: 6px; padding: 9px 11px; background: var(--surface-2);
  border: 1px solid var(--border-3); border-radius: 8px; margin-bottom: 15px; font-size: 10px; color: var(--text-dim);
}
.export-modal__note .ti { color: var(--accent); }
.export-modal__actions { display: flex; justify-content: flex-end; gap: 8px; }

/* ---------- AI & Library ---------- */
.section { padding: 100px 24px; border-top: 1px solid var(--border-1); }
.section--narrow { padding-top: 100px; padding-bottom: 100px; }
.section__inner { max-width: var(--container); margin: 0 auto; }
.section__inner--narrow { max-width: 1000px; }
.section__inner--narrower { max-width: var(--container-narrower); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section__heading { font-size: clamp(26px, 3.4vw, 46px); font-weight: 600; letter-spacing: -.025em; line-height: 1.1; color: var(--text-hi); text-wrap: balance; }
.section__heading--lg { font-size: clamp(28px, 4vw, 54px); font-weight: 700; letter-spacing: -.03em; color: var(--text-hi-2); }
.section__heading--md { font-size: clamp(24px, 3.2vw, 42px); }
.section__body { margin-top: 16px; font-size: 17px; line-height: 1.6; color: var(--text-tertiary); text-wrap: pretty; }

.ai-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ai-card { padding: 26px 24px; background: var(--surface-2); border: 1px solid var(--border-3); border-radius: var(--radius-xl); }
.ai-card__icon {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(var(--accent-rgb), .14);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 19px; color: var(--accent-2);
}
.ai-card__title { font-size: 16px; font-weight: 600; color: var(--text-hi); margin-bottom: 10px; }
.ai-card__sub { font-size: 13px; color: var(--text-dim); margin-bottom: 12px; }
.ai-card__badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.ai-card__points { display: flex; flex-direction: column; gap: 9px; }
.ai-card__points li { display: flex; gap: 8px; align-items: flex-start; }
.ai-card__points .ti { font-size: 13px; color: var(--accent); margin-top: 2px; flex: none; }
.ai-card__points span:last-child { font-size: 13.5px; color: var(--text-secondary); line-height: 1.4; }
.ai-card__footnote { margin-top: 14px; font-size: 12px; color: var(--text-faint); line-height: 1.5; }

/* ---------- Everything Included ---------- */
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.included-card {
  padding: 24px; background: var(--surface-2); border: 1px solid var(--border-3); border-radius: var(--radius-xl);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.included-card:hover { border-color: var(--border-5); transform: translateY(-3px); background: var(--surface-4); }
.included-card__icon {
  width: 42px; height: 42px; border-radius: 11px; background: rgba(var(--accent-rgb), .13);
  display: flex; align-items: center; justify-content: center; margin-bottom: 15px; font-size: 20px; color: var(--accent-2);
}
.included-card__title { font-size: 15px; font-weight: 600; color: var(--text-hi); margin-bottom: 6px; }
.included-card__desc { font-size: 13.5px; line-height: 1.55; color: var(--text-muted); }

.included-more { margin-top: 22px; display: flex; flex-direction: column; align-items: center; }
.included-more > .btn { gap: 8px; }
.included-more__chevron { font-size: 14px; color: var(--accent-2); transition: transform .2s ease; }
.included-more[data-open] .included-more__chevron,
.btn[aria-expanded="true"] .included-more__chevron { transform: rotate(180deg); }
.included-more__panel {
  width: 100%; overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height .35s ease, opacity .3s ease;
}
.included-more__panel.is-open { max-height: 3200px; opacity: 1; }
.included-grid--more { grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.included-tile {
  padding: 17px 18px; background: var(--surface-2); border: 1px solid var(--border-2); border-radius: var(--radius-lg);
  display: flex; align-items: flex-start; gap: 12px;
}
.included-tile__icon {
  width: 32px; height: 32px; flex: none; border-radius: 9px; background: rgba(var(--accent-rgb), .1);
  display: flex; align-items: center; justify-content: center; color: var(--accent-2); font-size: 15px;
}
.included-tile__title { font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.included-tile__desc { font-size: 12px; line-height: 1.45; color: var(--text-dim); }

/* ---------- No catch / comparison ---------- */
.section--no-catch { position: relative; overflow: hidden; }
.section__glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 900px; height: 400px; max-width: 200vw;
  background: radial-gradient(50% 60% at 50% 0%, rgba(var(--accent-rgb), .16), transparent 70%); filter: blur(30px); pointer-events: none;
}
.section--no-catch .section__head { max-width: 900px; position: relative; }

.comparison {
  position: relative; max-width: 900px; margin: 56px auto 0; border: 1px solid var(--border-3);
  border-radius: var(--radius-2xl); overflow: hidden; background: var(--surface-1); box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.comparison__row { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.comparison__row:not(:last-child) .comparison__cell { border-bottom: 1px solid var(--border-1); }
.comparison__row--head .comparison__cell { border-bottom: 1px solid var(--border-2) !important; padding-top: 16px; padding-bottom: 16px; }
.comparison__cell { padding: 15px 12px; text-align: center; font-size: 13.5px; color: var(--text-secondary); }
.comparison__cell--label { text-align: left; padding-left: 20px; }
.comparison__cell--brand {
  background: rgba(var(--accent-rgb), .08); border-left: 1px solid rgba(var(--accent-2-rgb), .25);
  border-right: 1px solid rgba(var(--accent-2-rgb), .25); font-weight: 500;
}
.comparison__row--head .comparison__cell:not(.comparison__cell--brand) { color: var(--text-muted); font-size: 12px; }
.comparison__brand { display: inline-flex; align-items: center; gap: 6px; }
.comparison__glyph { font-size: 16px; }
.comparison__glyph.is-accent { color: var(--accent-2); }
.comparison__glyph.is-muted { color: #5f6570; }
.comparison__note { font-family: var(--font-mono); font-size: 10px; color: var(--text-dim); }
.comparison__row--price .comparison__cell { padding: 17px 12px; }
.comparison__row--price .comparison__cell--label { font-size: 13.5px; font-weight: 600; color: var(--text-hi); }
.comparison__row--price .comparison__cell--brand { background: rgba(var(--accent-rgb), .1); }
.comparison__price { font-size: 14px; font-weight: 700; }
.comparison__row--price .comparison__cell:not(.comparison__cell--brand) { font-size: 12px; color: var(--text-muted); }
.comparison__footnote { text-align: center; margin-top: 14px; font-size: 10.5px; color: var(--text-faintest); }

/* ---------- Specs ---------- */
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.spec-card { border: 1px solid var(--border-3); border-radius: var(--radius-xl); background: var(--surface-2); overflow: hidden; }
.spec-card--recommended {
  border-color: rgba(var(--accent-2-rgb), .28);
  background: linear-gradient(180deg, #131223, var(--surface-1));
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), .06), 0 20px 50px rgba(var(--accent-rgb), .08);
}
.spec-card__head { padding: 14px 20px; border-bottom: 1px solid var(--border-2); font-size: 11px; letter-spacing: 1px; color: var(--text-muted); text-transform: uppercase; }
.spec-card--recommended .spec-card__head { border-bottom-color: var(--border-accent-soft); color: var(--accent-hi); }
.spec-card__list { padding: 6px 20px 14px; }
.spec-card__row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border-1); }
.spec-card--recommended .spec-card__row { border-bottom-color: #1b1a26; }
.spec-card__row:last-child { border-bottom: none; }
.spec-card__row dt { font-size: 13px; color: var(--text-muted); font-weight: 400; }
.spec-card__row dd { font-size: 12px; color: var(--text-secondary); }
.spec-card--recommended .spec-card__row dd { color: var(--text-hi); }
.specs-footnote { margin-top: 16px; text-align: center; font-size: 11px; color: var(--text-faint); }

/* ---------- FAQ ---------- */
.faq__item {
  border: 1px solid var(--border-2); background: var(--surface-2); border-radius: var(--radius-lg);
  margin-bottom: 10px; overflow: hidden; transition: border-color .2s ease, background .2s ease;
}
.faq__item[open] { border-color: var(--border-accent-soft); background: #111019; }
.faq__question {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px; cursor: pointer; list-style: none;
  font-size: 15.5px; font-weight: 500; color: var(--text-secondary);
}
.faq__item[open] .faq__question { color: var(--text-hi); }
.faq__question::-webkit-details-marker { display: none; }
.faq__question span:first-child { flex: 1; }
.faq__chevron { font-size: 17px; color: var(--accent-2); transition: transform .22s ease; }
.faq__item[open] .faq__chevron { transform: rotate(45deg); }
.faq__answer { padding: 0 20px 18px; }
.faq__answer p { font-size: 14.5px; line-height: 1.62; color: var(--text-tertiary); max-width: 64ch; }

/* ---------- Final CTA band ---------- */
.cta-band-wrap { padding: 40px 24px 100px; }
.cta-band {
  position: relative; max-width: 860px; margin: 0 auto; border-radius: var(--radius-3xl); overflow: hidden;
  border: 1px solid var(--border-4); background: linear-gradient(180deg, #151626, #0d0e12 60%);
  box-shadow: 0 46px 110px rgba(0,0,0,.6); padding: 56px 32px; text-align: center;
}
.cta-band__glow {
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 640px; height: 420px; max-width: 200vw;
  background: radial-gradient(50% 60% at 50% 40%, rgba(var(--accent-rgb), .34), transparent 70%); filter: blur(30px);
  pointer-events: none;
}
.cta-band__inner { position: relative; }
.cta-band__icon {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 22px;
  background: linear-gradient(140deg, #241f3d, #161320); display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(180,170,255,.18), 0 8px 30px rgba(var(--accent-rgb), .4);
}
.cta-band__heading { font-size: clamp(28px, 3.8vw, 50px); font-weight: 700; letter-spacing: -.03em; line-height: 1.08; color: var(--text-hi-2); text-wrap: balance; }
.cta-band__body { max-width: 500px; margin: 18px auto 0; font-size: 16.5px; line-height: 1.6; color: var(--text-tertiary); }
.cta-band__actions { display: flex; align-items: center; justify-content: center; gap: 13px; margin-top: 34px; flex-wrap: wrap; }
.cta-band__meta { margin-top: 22px; font-size: 12px; color: var(--text-faint); letter-spacing: .3px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border-1); background: var(--surface-0); padding: 56px 24px 36px; }
.site-footer__inner { max-width: var(--container); margin: 0 auto; }
.site-footer__cols { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; }
.site-footer__tagline { font-size: 13.5px; line-height: 1.6; color: var(--text-dim); max-width: 30ch; }
.site-footer__social { display: flex; gap: 8px; margin-top: 18px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 8px; background: var(--surface-3); border: 1px solid var(--border-3);
  display: flex; align-items: center; justify-content: center; color: var(--text-muted);
}
.social-btn:hover { color: #fff; background: var(--surface-5); }
.site-footer__col-heading { font-size: 11px; font-weight: 600; letter-spacing: .6px; color: var(--text-faint); text-transform: uppercase; margin-bottom: 14px; }
.site-footer__col { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { font-size: 13.5px; color: var(--text-tertiary); }
.site-footer__col a:hover { color: #fff; }
.site-footer__legal {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--border-1);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.site-footer__legal .mono { font-size: 11px; color: var(--text-faint); }
.site-footer__disclaimer { font-size: 12px; color: var(--text-faintest); }
.site-footer__brandline {
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border-1);
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-faint);
}
.site-footer__brandline a:hover { opacity: .82; }

/* ---------- Signup modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(5,6,9,.7); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal {
  width: 420px; max-width: 100%; background: var(--surface-4); border: 1px solid var(--border-4);
  border-radius: var(--radius-2xl); box-shadow: 0 40px 100px rgba(0,0,0,.6); padding: 30px 28px; position: relative;
}
.modal__close { position: absolute; top: 16px; right: 16px; font-size: 16px; color: var(--text-dim); padding: 4px; }
.modal__close:hover { color: #fff; }
.modal__icon {
  width: 38px; height: 38px; border-radius: 10px; margin-bottom: 16px;
  background: linear-gradient(140deg, var(--accent-2), var(--accent)); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
}
.modal__heading { font-size: 19px; font-weight: 600; color: var(--text-hi); margin-bottom: 6px; }
.modal__body { font-size: 13.5px; line-height: 1.5; color: var(--text-tertiary); margin-bottom: 20px; }
.modal__input {
  width: 100%; height: 44px; padding: 0 14px; background: var(--surface-1); border: 1px solid var(--border-4);
  border-radius: var(--radius-md); color: var(--text); font-size: 14px; margin-bottom: 8px; font-family: var(--font-sans);
}
.modal__input:focus { border-color: var(--accent-2); }
.modal__input.has-error { border-color: #5c2a2e; }
.modal__field-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.modal__error { font-size: 12px; color: var(--danger); margin: 0 0 8px; }
.modal__submit { width: 100%; height: 44px; border-radius: var(--radius-md); font-size: 14.5px; }
.modal__disclaimer { margin-top: 14px; font-size: 11.5px; color: var(--text-faint); text-align: center; }
.modal__success-icon {
  width: 52px; height: 52px; border-radius: 50%; background: rgba(var(--accent-rgb), .16);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--accent-2); font-size: 24px;
}
.modal__success-heading { font-size: 18px; font-weight: 600; color: var(--text-hi); margin-bottom: 8px; text-align: center; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 980px) {
  .feature__grid,
  .feature__grid--reverse { grid-template-columns: 1fr; gap: 36px; }
  .feature__grid--reverse .feature__art { order: 0; }
  .feature__grid--reverse .feature__copy { order: 1; }
  .feature__body { max-width: none; }
  .ai-grid { grid-template-columns: 1fr 1fr; }
  .included-grid,
  .included-grid--more { grid-template-columns: 1fr 1fr; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2n+1) { border-left: none; }
  .stats__item:nth-child(n+3) { border-top: 1px solid var(--border-1); }
  .site-footer__cols { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .comparison__row { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .comparison__cell { padding: 12px 8px; font-size: 12.5px; }
  .comparison__cell--label { padding-left: 14px; }
}

@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile.is-open { display: flex; }
  .hero { padding-top: 80px; }
  .hero__actions .btn { width: 100%; }
  .hero__shot { margin-top: 44px; }
  .specs-grid { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; }
  .included-grid,
  .included-grid--more { grid-template-columns: 1fr; }
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
  .comparison { overflow-x: auto; }
  .comparison__row { grid-template-columns: 140px 90px 90px 90px; width: max-content; min-width: 100%; }
  .section, .feature { padding-left: 18px; padding-right: 18px; }
}

@media (max-width: 520px) {
  .site-footer__cols { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: 1fr 1fr; }
  .hero__trust { gap: 14px 18px; }
  .modal { padding: 26px 20px; }
}
