/* ============================================================
   Cadeo Marketing — shared design system
   Sections: TOKENS · RESET · BASE/TYPE · LAYOUT · SKIP LINK · THEME TOGGLE ·
             NAV · HERO · TOOLS · BANDS · SECTIONS · CARDS · PRICING · FAQ · FOOTER ·
             MOTION · RESPONSIVE
   ============================================================ */

/* ---------- TOKENS: brand (theme-independent) ---------- */
:root {
  --blue: #4A90D9;
  --blue-dark: #357ABD;
  --accent-grad: linear-gradient(135deg, #4A90D9, #357ABD);
  --ink: #1A1A2E; /* theme-invariant dark; for always-dark logos/icons */
  --font: 'Avenir Next', 'Avenir', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius-sm: 6px; --radius-md: 8px; --radius-lg: 12px; --radius-xl: 16px; --radius-2xl: 22px;
  --space-xs:4px; --space-sm:8px; --space-md:16px; --space-lg:24px;
  --space-xl:32px; --space-2xl:48px; --space-3xl:64px; --space-4xl:96px;
  --maxw: 1200px;
}

/* ---------- TOKENS: DARK (default) ---------- */
[data-theme="dark"] {
  --page-bg: #05070e;
  --aurora-1: rgba(74,144,217,.70);
  --aurora-2: rgba(124,92,255,.45);
  --aurora-3: rgba(56,189,248,.34);
  --hero-grad: radial-gradient(125% 120% at 80% -15%, #1d3f70 0%, #0a1426 46%, #05070e 100%);
  --band-bg: #080c16;
  --band-bg-alt: #060912;
  --surface: rgba(255,255,255,.055);
  --surface-2: rgba(255,255,255,.09);
  --surface-border: rgba(255,255,255,.14);
  --bar: rgba(255,255,255,.045);
  --text: #ffffff;
  --text-2: #b2bccc;
  --text-3: #8b94a3;
  --eyebrow: #8cc4ff;
  --divider: rgba(255,255,255,.08);
  --ghost-bg: rgba(255,255,255,.07);
  --ghost-border: rgba(255,255,255,.18);
  --nav-bg: rgba(6,9,16,.70);
  --headline-grad: linear-gradient(110deg, #ffffff 8%, #8cc4ff 42%, #4A90D9 70%, #a78bfa 100%);
  --shadow-win: 0 30px 80px rgba(0,0,0,.6), 0 0 70px rgba(74,144,217,.28);
  --shadow-card: 0 10px 30px rgba(0,0,0,.4);
  --glow: rgba(74,144,217,.55);
}

/* ---------- TOKENS: LIGHT (cohesive, soft-blue family) ---------- */
[data-theme="light"] {
  --page-bg: #f4f8fd;
  --aurora-1: rgba(74,144,217,.18);
  --aurora-2: rgba(53,122,189,.14);
  --hero-grad: radial-gradient(120% 110% at 78% -10%, #dcebfb 0%, #eef5fd 50%, #ffffff 100%);
  --band-bg: #ffffff;
  --band-bg-alt: #f4f8fd;
  --surface: #ffffff;
  --surface-2: #ffffff; /* intentionally equal to --surface; light surfaces don't need opacity elevation */
  --surface-border: #E9ECEF;
  --bar: #F1F3F5;
  --text: #1A1A2E;
  --text-2: #495057;
  --text-3: #5a6472; /* darkened from #868E96 for WCAG AA on light backgrounds (5.63:1 on #f4f8fd) */
  --eyebrow: #357ABD;
  --divider: rgba(0,0,0,.06);
  --ghost-bg: #ffffff;
  --ghost-border: #DEE2E6;
  --nav-bg: rgba(255,255,255,.82);
  --headline-grad: linear-gradient(120deg, #4A90D9, #357ABD);
  --shadow-win: 0 24px 60px rgba(26,26,46,.14);
  --shadow-card: 0 10px 30px rgba(26,26,46,.06);
  --aurora-3: rgba(74,144,217,.10);
  --glow: rgba(74,144,217,.20);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- BASE / TYPE ---------- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px; line-height: 1.6;
  color: var(--text);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background .4s var(--ease), color .4s var(--ease);
}
h1 { font-weight:700; letter-spacing:-.03em; font-size:clamp(38px,5.2vw,60px); line-height:1.04; color:var(--text); }
h2 { font-weight:700; letter-spacing:-.02em; font-size:clamp(28px,4vw,40px); line-height:1.15; color:var(--text); }
h3 { font-weight:700; letter-spacing:-.02em; font-size:clamp(18px,2vw,24px); line-height:1.3; color:var(--text); }
p  { color: var(--text-2); }
.eyebrow { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--eyebrow); }
.text-gradient { background:var(--headline-grad); background-size:220% auto; -webkit-background-clip:text; background-clip:text; color:transparent; }

/* ---------- LAYOUT ---------- */
.container { max-width: var(--maxw); margin:0 auto; padding:0 24px; }
section { padding: 96px 0; position: relative; }
.section-header { text-align:center; max-width:600px; margin:0 auto 56px; }
.section-header p { font-size:18px; margin-top:14px; }

/* ---------- SKIP LINK ---------- */
.skip-link { position:absolute; top:-100%; left:16px; background:var(--blue); color:#fff;
  padding:8px 16px; border-radius:var(--radius-md); z-index:10000; font-weight:600; }
.skip-link:focus { top:16px; }

/* ---------- THEME TOGGLE ---------- */
.theme-toggle {
  display:inline-flex; align-items:center; gap:2px;
  background:var(--surface); border:1px solid var(--surface-border);
  border-radius:24px; padding:3px; cursor:pointer; line-height:0;
}
.theme-toggle .ico { width:26px; height:26px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:var(--text-2);
  transition:background .25s var(--ease), color .25s var(--ease); }
[data-theme="dark"] .theme-toggle .ico--moon,
[data-theme="light"] .theme-toggle .ico--sun { background:var(--accent-grad); color:#fff; }
.theme-toggle:focus-visible { outline:2px solid var(--blue); outline-offset:2px; }

/* ---------- BUTTONS ---------- */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font); font-weight:600; font-size:15px; padding:12px 24px;
  border:none; border-radius:var(--radius-md); cursor:pointer;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease); }
.btn--lg { padding:15px 30px; font-size:16px; border-radius:var(--radius-lg); }
.btn--primary { background:var(--accent-grad); color:#fff; box-shadow:0 8px 22px rgba(74,144,217,.4); }
.btn--primary:hover { transform:translateY(-2px); box-shadow:0 12px 30px rgba(74,144,217,.5); }
.btn--ghost { background:var(--ghost-bg); color:var(--text); border:1px solid var(--ghost-border); }
.btn--ghost:hover { transform:translateY(-2px); }
.btn:focus-visible { outline:2px solid var(--blue); outline-offset:2px; }

/* ---------- NAV ---------- */
.nav { position:fixed; top:0; left:0; right:0; z-index:1000; padding:14px 0;
  transition:background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease); border-bottom:1px solid transparent; }
.nav.scrolled { background:var(--nav-bg); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border-bottom-color:var(--divider); padding:10px 0; }
.nav__inner { display:flex; align-items:center; justify-content:space-between; }
.nav__logo { display:flex; align-items:center; gap:9px; font-size:19px; font-weight:700; color:var(--text); }
.nav__links { display:flex; gap:26px; }
.nav__links a { font-size:14px; color:var(--text-2); transition:color .2s var(--ease); }
.nav__links a:hover { color:var(--text); }
.nav__actions { display:flex; align-items:center; gap:14px; }
.nav__signin { font-size:14px; color:var(--text-2); transition:color .2s var(--ease); }
.nav__signin:hover { color:var(--text); }
/* compact, subtle CTA — NOT a chunky button */
.nav__cta { font-size:13px; font-weight:600; color:#fff; background:var(--accent-grad);
  padding:7px 15px; border-radius:20px; transition:transform .2s var(--ease), box-shadow .2s var(--ease); }
.nav__cta:hover { transform:translateY(-1px); box-shadow:0 6px 16px rgba(74,144,217,.4); }
.nav__cta:focus-visible { outline:2px solid var(--blue); outline-offset:2px; }
.mobile-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.mobile-toggle span { width:22px; height:2px; background:var(--text); border-radius:2px; transition:.25s var(--ease); }
.mobile-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2){ opacity:0; }
.mobile-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
.mobile-toggle:focus-visible { outline:2px solid var(--blue); outline-offset:2px; }
.mobile-menu { position:fixed; inset:0; z-index:999; background:var(--page-bg); display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:24px; font-size:22px; opacity:0; pointer-events:none; transition:opacity .3s var(--ease); }
.mobile-menu.active { opacity:1; pointer-events:auto; }
.mobile-menu a { color:var(--text); }

/* ---------- HERO ---------- */
.hero { padding:160px 0 96px; overflow:hidden; background:var(--hero-grad); position:relative; }
.hero__aurora { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.hero__aurora::before, .hero__aurora::after { content:""; position:absolute; border-radius:50%; }
.hero__aurora::before { width:780px; height:780px; left:-180px; top:-280px; filter:blur(80px); background:radial-gradient(circle,var(--aurora-1),transparent 62%); animation:drift 16s var(--ease) infinite alternate; }
.hero__aurora::after { width:600px; height:600px; right:-140px; top:20px; filter:blur(80px); background:radial-gradient(circle,var(--aurora-2),transparent 60%); animation:drift2 20s var(--ease) infinite alternate; }
/* third bloom (cyan) via the section itself */
.hero::before { content:""; position:absolute; width:520px; height:520px; left:38%; bottom:-260px; border-radius:50%; filter:blur(90px); background:radial-gradient(circle,var(--aurora-3),transparent 60%); pointer-events:none; animation:drift 24s var(--ease) infinite alternate-reverse; }
.hero__grid { position:relative; z-index:2; display:grid; grid-template-columns:1.05fr .95fr; gap:48px; align-items:center; }
.hero__sub { font-size:18px; margin:18px 0 28px; max-width:440px; }
.hero h1 { margin-top:14px; }
.hero__ctas { display:flex; gap:14px; flex-wrap:wrap; }
.hero__trust { display:flex; flex-wrap:wrap; gap:8px 22px; margin-top:34px; color:var(--text-3); font-size:13px; }
.hero__trust li { display:flex; align-items:center; gap:7px; }
.hero__trust li::before { content:"✦"; color:var(--blue); }
/* Frame/band colour matches each shot's own top edge (set per-winframe via
   --frame-bg) so the chrome + top band blend with the screenshot instead of
   reading as a border. Falls back to a neutral Cadeo dark grey. */
.winframe { border-radius:var(--radius-lg); overflow:hidden; background:var(--frame-bg,#1e1e1e); border:1px solid var(--surface-border); box-shadow:var(--shadow-win); }
.winframe__bar { height:34px; display:flex; align-items:center; gap:7px; padding:0 14px; background:var(--frame-bg,#1e1e1e); }
.winframe__bar span { width:11px; height:11px; border-radius:50%; background:var(--surface-border); }
/* Real macOS traffic-light colours — gives every shot an authentic Mac-window frame */
.winframe__bar span:nth-child(1) { background:#FF5F57; }
.winframe__bar span:nth-child(2) { background:#FEBC2E; }
.winframe__bar span:nth-child(3) { background:#28C840; }
/* Black band above the screenshot so content isn't jammed under the title bar */
.winframe img { display:block; width:100%; margin-top:22px; }
@keyframes drift { from { transform:translate(0,0); } to { transform:translate(40px,30px); } }

/* ---------- MOTION (scroll-reveal + reduced-motion) ---------- */
.animate-on-scroll { opacity:0; transform:translateY(24px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.animate-on-scroll.visible { opacity:1; transform:none; }

/* ---------- REDUCED MOTION — single consolidated block ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body, .theme-toggle .ico { transition: none; }
  .animate-on-scroll { opacity:1; transform:none; transition:none; }
  .hero__aurora::before, .hero__aurora::after { animation:none; }
  .btn, .nav__cta, .winframe, .tool-card { transition:none !important; }
  .toggle-switch__track, .toggle-switch__track::before, .faq__answer, .faq__icon, .pricing-card__cta, .footer__col a { transition:none !important; }
  .btn:hover, .nav__cta:hover, .tool-card:hover, .pricing-card__cta:hover, .winframe:hover, .download-card__btn-wrap .btn:hover { transform:none !important; }
}

/* ---------- TOOLS GRID ---------- */
.tools { background:var(--band-bg); }
.tools__grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.tool-card { background:var(--surface); border:1px solid var(--surface-border); border-radius:var(--radius-lg);
  padding:26px; box-shadow:var(--shadow-card); transition:transform .25s var(--ease), box-shadow .25s var(--ease); }
.tool-card:hover { transform:translateY(-4px); box-shadow:0 18px 40px rgba(74,144,217,.18); }
.tool-card__ico { width:44px; height:44px; border-radius:var(--radius-lg); background:var(--accent-grad);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.tool-card h3 { font-size:17px; margin-bottom:8px; }
.tool-card p { font-size:14px; }

/* ---------- FEATURE BANDS ---------- */
.bands { background:var(--band-bg-alt); }
.band { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; padding:48px 0; }
.band + .band { border-top:1px solid var(--divider); }
.band--rev .band__copy { order:2; }
.band--rev .band__shot { order:1; }
.band__copy h2 { margin:12px 0; }
.band__copy p { font-size:16px; max-width:440px; }
/* Floating meeting-alert card over the recording shot */
.shot-inset { position:relative; }
.shot-inset__alert {
  position:absolute; z-index:3; left:5%; right:auto; bottom:-28px;
  width:30%; max-width:188px; height:auto;
  border-radius:14px; border:1px solid var(--surface-border);
  box-shadow:0 26px 60px rgba(0,0,0,.45);
}
[data-theme="dark"] .shot-inset__alert { border-color:rgba(255,255,255,.16); box-shadow:0 30px 70px rgba(0,0,0,.6); }
@media (max-width:780px){
  .shot-inset__alert { left:5%; right:auto; bottom:-20px; width:34%; max-width:150px; }
}

/* ---------- PLATFORMS ---------- */
.platforms { background:var(--band-bg); }
.platforms__shot img { margin:0 auto; max-width:1000px; width:100%; border-radius:var(--radius-lg); }

/* ---------- PRICING ---------- */
.pricing { background:var(--band-bg-alt); }
.pricing__toggle { display:flex; align-items:center; justify-content:center; gap:14px; margin-bottom:40px; }
.pricing__toggle-label { font-size:15px; color:var(--text-3); cursor:pointer; }
.pricing__toggle-label--active { color:var(--text); font-weight:600; }
.pricing__save-badge { font-size:11px; font-weight:700; color:var(--blue); background:rgba(74,144,217,.12); padding:2px 8px; border-radius:20px; margin-left:4px; }
.toggle-switch { position:relative; display:inline-block; width:46px; height:26px; cursor:pointer; }
.toggle-switch input { opacity:0; width:0; height:0; }
.toggle-switch__track { position:absolute; inset:0; background:var(--surface-border); border-radius:26px; transition:.25s var(--ease); }
.toggle-switch__track::before { content:""; position:absolute; width:20px; height:20px; left:3px; top:3px; background:#fff; border-radius:50%; transition:.25s var(--ease); }
.toggle-switch input:checked + .toggle-switch__track { background:var(--blue); }
.toggle-switch input:checked + .toggle-switch__track::before { transform:translateX(20px); }
.toggle-switch input:focus-visible + .toggle-switch__track { outline:2px solid var(--blue); outline-offset:2px; }
.pricing__cards { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; align-items:start; }
.pricing-card { background:var(--surface); border:1px solid var(--surface-border); border-radius:var(--radius-xl); padding:30px; box-shadow:var(--shadow-card); position:relative; }
.pricing-card--featured { border-color:var(--blue); box-shadow:0 18px 50px rgba(74,144,217,.25); }
.pricing-card__badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--accent-grad); color:#fff; font-size:12px; font-weight:700; padding:4px 14px; border-radius:20px; }
.pricing-card__name { font-size:15px; font-weight:700; color:var(--text-2); text-transform:uppercase; letter-spacing:.04em; }
.pricing-card__price { margin:10px 0 4px; }
.pricing-card__amount { font-size:42px; font-weight:700; color:var(--text); letter-spacing:-.03em; }
.pricing-card__period { color:var(--text-3); font-size:15px; }
.pricing-card__callout { font-size:13px; color:var(--blue); min-height:20px; }
.pricing-card__divider { border:none; border-top:1px solid var(--divider); margin:18px 0; }
.pricing-card__features { display:flex; flex-direction:column; gap:11px; margin-bottom:24px; }
.pricing-card__features li { display:flex; align-items:flex-start; gap:9px; font-size:14px; color:var(--text-2); }
.pricing-card__features li::before { content:"✓"; color:var(--blue); font-weight:700; }
.pricing-card__features li.muted { color:var(--text-3); }
.pricing-card__features .soon { font-size:12px; color:var(--text-3); margin-left:4px; }
.pricing-card__cta { display:block; text-align:center; padding:12px; border-radius:var(--radius-md); background:var(--ghost-bg); border:1px solid var(--ghost-border); color:var(--text); font-weight:600; font-size:14px; transition:.2s var(--ease); }
.pricing-card--featured .pricing-card__cta { background:var(--accent-grad); color:#fff; border-color:transparent; }
.pricing-card__cta:hover { transform:translateY(-2px); }

/* ---------- FAQ ---------- */
.faq { background:var(--band-bg); }
.faq__list { max-width:760px; margin:0 auto; }
.faq__item { border-bottom:1px solid var(--divider); }
.faq__question { width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; background:none; border:none; cursor:pointer; padding:22px 0; font-family:var(--font); font-size:17px; font-weight:600; color:var(--text); text-align:left; }
.faq__icon { font-size:22px; color:var(--blue); transition:transform .25s var(--ease); flex-shrink:0; }
.faq__item.open .faq__icon { transform:rotate(45deg); }
.faq__answer { max-height:0; overflow:hidden; transition:max-height .3s var(--ease); }
.faq__item.open .faq__answer { max-height:600px; }
.faq__answer p { padding-bottom:22px; font-size:15px; }

/* ---------- FINAL CTA ---------- */
.final-cta { text-align:center; background:var(--hero-grad); overflow:hidden; }
.final-cta__aurora { position:absolute; left:50%; bottom:-160px; transform:translateX(-50%); width:600px; height:400px; background:radial-gradient(circle,var(--aurora-1),transparent 60%); filter:blur(60px); pointer-events:none; }
.final-cta .container { position:relative; z-index:2; }
.final-cta p { font-size:18px; margin:14px 0 28px; }

/* ---------- FOOTER ---------- */
.footer { background:var(--band-bg-alt); border-top:1px solid var(--divider); padding:64px 0 32px; }
.footer__inner { display:grid; grid-template-columns:2fr 1fr 1fr 1fr 1fr; gap:32px; }
.footer__brand { display:flex; align-items:center; gap:9px; font-size:19px; font-weight:700; color:var(--text); }
.footer__tagline { margin-top:10px; color:var(--text-3); font-size:14px; }
.footer__col-title { font-size:13px; font-weight:700; color:var(--text); margin-bottom:14px; }
.footer__col ul { display:flex; flex-direction:column; gap:10px; }
.footer__col a { font-size:14px; color:var(--text-2); transition:color .2s var(--ease); }
.footer__col a:hover { color:var(--text); }
.footer__bottom { margin-top:48px; padding-top:24px; border-top:1px solid var(--divider); color:var(--text-3); font-size:13px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero__grid, .band, .band--rev .band__copy, .band--rev .band__shot { grid-template-columns:1fr; order:0; }
  .band { gap:28px; }
  .tools__grid { grid-template-columns:repeat(2,1fr); }
  .pricing__cards { grid-template-columns:1fr; }
  .footer__inner { grid-template-columns:1fr 1fr; }
}
@media (max-width: 700px) {
  .nav__links, .nav__signin, .nav__cta { display:none; }
  .mobile-toggle { display:flex; }
  section { padding:64px 0; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns:1fr; }
}

/* ---------- DOWNLOAD PAGE ---------- */
.download { min-height:100vh; display:flex; flex-direction:column; }
.download-hero { flex:1; display:flex; align-items:center; justify-content:center; padding:160px 24px 90px; background:var(--hero-grad); position:relative; overflow:hidden; }
.download-card { max-width:560px; width:100%; text-align:center; position:relative; z-index:2; }
.download-card__icon { width:96px; height:96px; margin:0 auto 28px; border-radius:22px; background:var(--surface); border:1px solid var(--surface-border); display:flex; align-items:center; justify-content:center; }
.download-card__icon svg { width:48px; height:48px; }
.download-card h1 { margin-bottom:16px; }
.download-card__subtitle { font-size:18px; color:var(--text-2); margin:0 auto 40px; max-width:440px; }
.download-card__version { display:inline-flex; align-items:center; gap:8px; background:var(--surface); border:1px solid var(--surface-border); border-radius:100px; padding:6px 16px; font-size:13px; font-weight:600; color:var(--text-2); margin-bottom:28px; }
.download-card__version .dot { width:6px; height:6px; border-radius:50%; background:#10B981; }
.download-card__requirements { font-size:13px; color:var(--text-3); margin-top:24px; }
.download-card__requirements span + span::before { content:"·"; margin:0 8px; }
.download-card__divider { width:48px; height:1px; background:var(--divider); margin:32px auto 20px; }
.download-card__also { font-size:14px; color:var(--text-3); }
.download-card__btn-wrap { margin-bottom:4px; }
.download-card__btn-wrap .btn svg { margin-right:10px; }
.download-card__also a { color:var(--blue); font-weight:500; }
.download-footer { padding:24px 0; text-align:center; font-size:13px; color:var(--text-3); border-top:1px solid var(--divider); background:var(--band-bg-alt); }
.download-footer .container { display:flex; align-items:center; justify-content:center; gap:12px; }
.download-footer a { color:var(--text-3); transition:color .2s var(--ease); }
.download-footer a:hover { color:var(--text); }

/* ---------- CHANGELOG PAGE ---------- */
.changelog-page { padding:120px 0 90px; background:var(--page-bg); min-height:100vh; }
.changelog-header { max-width:760px; margin:0 auto 48px; text-align:center; }
.changelog-header h1 { margin-bottom:14px; }
.changelog-header p { font-size:17px; color:var(--text-2); }
.changelog-header a { color:var(--blue); }
.release { max-width:760px; margin:0 auto 20px; background:var(--surface); border:1px solid var(--surface-border); border-radius:var(--radius-xl); padding:28px 32px; box-shadow:var(--shadow-card); }
.release--note { background:transparent; border-color:transparent; box-shadow:none; text-align:center; padding:16px 32px; }
.release--note p { color:var(--text-3); font-size:14px; }
.release__header { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-bottom:12px; }
.release__version { font-size:20px; font-weight:700; color:var(--text); letter-spacing:-.015em; }
.release__date { color:var(--text-3); font-size:14px; font-weight:500; }
.release__badge { font-size:11px; font-weight:700; color:#fff; background:var(--accent-grad); padding:3px 10px; border-radius:20px; text-transform:uppercase; letter-spacing:.04em; }
.release__intro { color:var(--text-2); font-size:15px; margin-bottom:14px; }
.release__group { margin-top:16px; }
.release__group-title { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--eyebrow); margin-bottom:10px; }
.release__list { display:flex; flex-direction:column; gap:8px; }
.release__list li { color:var(--text-2); font-size:14.5px; padding-left:18px; position:relative; line-height:1.55; }
.release__list li::before { content:"–"; position:absolute; left:0; color:var(--blue); font-weight:700; }
.release__list strong { font-weight:600; color:var(--text); }
kbd { font-family:monospace; font-size:12px; background:var(--surface-2); border:1px solid var(--surface-border); border-radius:4px; padding:1px 5px; color:var(--text-2); }

/* Changelog footer uses simple bar layout */
.footer__sep { margin:0 8px; opacity:.5; }
.footer__bottom a { color:var(--text-3); transition:color .2s var(--ease); }
.footer__bottom a:hover { color:var(--text); }
.download-footer .sep { color:var(--divider); }

/* ---------- LEGAL / PROSE ---------- */
.legal { padding:150px 0 90px; background:var(--page-bg); min-height:100vh; }
.legal .container { max-width:780px; }
.legal h1 { margin-bottom:24px; }
.legal h2 { font-size:22px; margin:36px 0 12px; }
.legal h3 { font-size:18px; margin:24px 0 8px; }
.legal p, .legal li { color:var(--text-2); margin-bottom:12px; line-height:1.7; }
.legal ul { list-style:disc; padding-left:22px; }
.legal a { color:var(--blue); }
.legal strong { color:var(--text); }
.legal .last-updated { color:var(--text-3); font-size:14px; margin-bottom:40px; }

/* ============================================================
   BOLD DARK ENHANCEMENTS — drama scoped to the dark theme.
   (Light theme keeps the calmer premium look untouched.)
   ============================================================ */
@keyframes drift  { from { transform:translate(0,0)   scale(1);    } to { transform:translate(48px,34px)  scale(1.08); } }
@keyframes drift2 { from { transform:translate(0,0)   scale(1.05); } to { transform:translate(-46px,30px) scale(1);    } }
@keyframes shimmer { to { background-position:220% center; } }

/* Bigger, bolder hero headline */
.hero h1 { font-size:clamp(40px, 5.8vw, 68px); }

/* Animated gradient headline (dark only) */
[data-theme="dark"] .text-gradient { animation:shimmer 7s linear infinite; }

/* Eyebrow gets a glowing dot in the dark theme */
[data-theme="dark"] .eyebrow { display:inline-flex; align-items:center; gap:9px; }
[data-theme="dark"] .eyebrow::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--blue); box-shadow:0 0 10px 2px var(--glow); }

/* Glass product frames with a glowing halo (dark only) */
[data-theme="dark"] .winframe { background:var(--frame-bg,#1e1e1e); border-color:rgba(255,255,255,.16); }
[data-theme="dark"] .winframe__bar { background:var(--frame-bg,#1e1e1e); border-bottom:none; }
[data-theme="dark"] .hero__shot, [data-theme="dark"] .band__shot { position:relative; }
[data-theme="dark"] .hero__shot::before {
  content:""; position:absolute; inset:-50px -30px; z-index:0; pointer-events:none;
  background:radial-gradient(60% 60% at 65% 40%, var(--glow), transparent 70%); filter:blur(50px); opacity:.85;
}
[data-theme="dark"] .band__shot::before {
  content:""; position:absolute; inset:-40px; z-index:0; pointer-events:none;
  background:radial-gradient(60% 60% at 50% 45%, rgba(74,144,217,.32), transparent 72%); filter:blur(50px); opacity:.7;
}
[data-theme="dark"] .hero__shot .winframe, [data-theme="dark"] .band__shot .winframe { position:relative; z-index:1; }
[data-theme="dark"] .hero__shot .winframe { transition:transform .4s var(--ease), box-shadow .4s var(--ease); }
[data-theme="dark"] .hero__shot .winframe:hover { transform:translateY(-4px); box-shadow:0 40px 90px rgba(0,0,0,.65), 0 0 90px rgba(74,144,217,.4); }

/* Primary buttons glow in the dark */
[data-theme="dark"] .btn--primary { box-shadow:0 8px 30px rgba(74,144,217,.55); }
[data-theme="dark"] .btn--primary:hover { box-shadow:0 16px 46px rgba(74,144,217,.7); }
[data-theme="dark"] .nav__cta:hover { box-shadow:0 6px 22px rgba(74,144,217,.6); }

/* Tool cards & pricing: glowing border-lift on hover (dark) */
[data-theme="dark"] .tool-card:hover { border-color:rgba(74,144,217,.5); box-shadow:0 22px 50px rgba(0,0,0,.5), 0 0 40px rgba(74,144,217,.22); }
[data-theme="dark"] .pricing-card--featured { box-shadow:0 24px 60px rgba(0,0,0,.5), 0 0 50px rgba(74,144,217,.3); }
[data-theme="dark"] .pricing-card { transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
[data-theme="dark"] .pricing-card:hover { transform:translateY(-3px); border-color:rgba(74,144,217,.4); box-shadow:0 22px 50px rgba(0,0,0,.5), 0 0 36px rgba(74,144,217,.2); }

/* Section bands: faint aurora bleed at the seams (dark) */
[data-theme="dark"] .bands, [data-theme="dark"] .tools, [data-theme="dark"] .pricing, [data-theme="dark"] .faq, [data-theme="dark"] .platforms { position:relative; }
[data-theme="dark"] .bands::before {
  content:""; position:absolute; left:-10%; top:30%; width:50%; height:60%; pointer-events:none; z-index:0;
  background:radial-gradient(circle, rgba(124,92,255,.16), transparent 70%); filter:blur(90px);
}
[data-theme="dark"] .bands .container { position:relative; z-index:1; }

/* Final CTA: a bigger, brighter glow pool */
.final-cta { padding-top:96px; padding-bottom:104px; }
[data-theme="dark"] .final-cta__aurora { width:760px; height:520px; background:radial-gradient(circle,var(--aurora-1),transparent 62%); filter:blur(80px); opacity:.9; }

/* Nav gains a hairline glow once scrolled (dark) */
[data-theme="dark"] .nav.scrolled { box-shadow:0 1px 0 rgba(255,255,255,.04), 0 8px 30px rgba(0,0,0,.4); }

/* Reduced-motion: kill the new animations too */
@media (prefers-reduced-motion: reduce) {
  .hero__aurora::before, .hero__aurora::after, .hero::before, [data-theme="dark"] .text-gradient { animation:none !important; }
  [data-theme="dark"] .hero__shot .winframe:hover, [data-theme="dark"] .pricing-card:hover { transform:none !important; }
}
