/* Clipton — marketing site */

:root {
  color-scheme: dark;
  --bg: #09090b;
  --surface: #111114;
  --surface-2: #18181c;
  --surface-3: #212127;
  --line: #232329;
  --line-strong: #32323a;
  --line-hover: #55555f;
  --ink: #f4f4f5;
  --ink-2: #d4d4d8;
  --muted: #a1a1aa;
  --brand: #c8f53c;
  --on-accent: #0b0b0e;
  --accent-soft: rgba(200, 245, 60, .1);
  --brand-grad: linear-gradient(135deg, #e4ff8a 0%, #c8f53c 50%, #a3e635 100%);
  --text-grad: linear-gradient(100deg, #ffffff 0%, #e4ff8a 45%, #a3e635 100%);
  --violet: #7c6aff;
  --mint: #c8f53c;
  --card: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0) 60%), var(--surface);
  --dark: #0c0c0f;
  --dark-2: #16161b;
  --dark-line: #26262e;
  --dark-muted: #9a9aa6;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow: 0 20px 50px -24px rgba(0, 0, 0, .85);
  --shadow-lg: 0 40px 100px -40px rgba(0, 0, 0, .95);
  --glow: 0 0 0 1px rgba(200, 245, 60, .28), 0 30px 80px -30px rgba(200, 245, 60, .35);
  --font: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --shell: min(1200px, calc(100% - 48px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font: 500 16px/1.55 var(--font);
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.section-shell { width: var(--shell); margin-inline: auto; }

/* ---------- Brand & buttons ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.045em;
  text-decoration: none;
}
.brand-mark { display: inline-flex; align-items: flex-end; gap: 3px; height: 22px; }
.brand-mark i { width: 6px; border-radius: 2px; background: var(--brand-grad); transform: skewX(-14deg); }
.brand-mark i:nth-child(1) { height: 11px; }
.brand-mark i:nth-child(2) { height: 22px; }
.brand-mark i:nth-child(3) { height: 16px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 16px; border-radius: 11px; font-size: 14px; }
.button-accent { background: var(--brand-grad); color: var(--on-accent); box-shadow: 0 14px 34px -14px rgba(200, 245, 60, .55); }
.button-accent:hover { box-shadow: 0 18px 40px -14px rgba(200, 245, 60, .7); }
.button-dark { background: var(--ink); color: var(--on-accent); }
.button-light { background: #fff; color: var(--on-accent); box-shadow: 0 10px 24px -14px rgba(0, 0, 0, .6); }
.button-outline { border-color: var(--line-strong); background: transparent; color: var(--ink); }
.button-outline:hover { border-color: var(--line-hover); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
.text-link:hover { color: var(--brand); }
.text-link .play {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface-2);
  font-size: 11px;
}

.landing-region,
.footer-region {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 10px 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: var(--surface);
  font-size: 13px;
  white-space: nowrap;
}
.landing-region strong,
.footer-region strong { font-weight: 800; }
.landing-region span,
.footer-region span { color: var(--muted); font-weight: 600; }
.landing-region svg,
.footer-region svg { width: 14px; height: 14px; color: var(--muted); }
.landing-region:hover,
.footer-region:hover { border-color: var(--line-hover); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  width: var(--shell);
  margin: 12px auto 0;
  padding: 10px 10px 10px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(17, 17, 20, .72);
  backdrop-filter: saturate(1.4) blur(16px);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
  box-shadow: 0 10px 40px -20px rgba(0, 0, 0, .8), inset 0 1px 0 rgba(255, 255, 255, .04);
}
.site-nav { display: flex; gap: 2px; padding: 4px; border-radius: 12px; background: var(--surface-2); }
.site-nav a {
  padding: 8px 16px;
  border-radius: 9px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a:hover { background: var(--surface-3); color: var(--ink); }
.site-nav .nav-only-mobile { display: none; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.login-link { padding: 8px 12px; border-radius: 9px; font-size: 14px; font-weight: 700; text-decoration: none; }
.login-link:hover { background: var(--surface-2); }
.menu-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
}
.menu-button span { display: block; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .2s ease; }
.menu-open .menu-button span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-open .menu-button span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Shared section type ---------- */
section h2 {
  margin-top: 18px;
  font-size: clamp(36px, 5.2vw, 66px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.02;
}
section h2 span,
.hero h1 span,
.metrics strong {
  background: var(--text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-2);
  font: 500 12px/1.4 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-label span { color: var(--brand); }
.split-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.split-heading p { max-width: 400px; padding-bottom: 8px; color: var(--muted); font-size: 17px; }
.split-heading .text-link { flex: none; padding-bottom: 10px; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1); }
.js .reveal.visible { opacity: 1; transform: none; }
.js .reveal.delay-1 { transition-delay: .15s; }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; padding-top: 88px; text-align: center; }
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.glow-one { top: 0; left: 4%; width: 380px; height: 380px; background: rgba(200, 245, 60, .1); }
.glow-two { top: 60px; right: 2%; width: 440px; height: 440px; background: rgba(124, 106, 255, .2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: var(--ink-2);
  font: 500 12px/1.4 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.live-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.live-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--brand); opacity: 0; animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.6); opacity: .7; } 100% { transform: scale(1.8); opacity: 0; } }

.hero h1 {
  max-width: 1000px;
  margin: 28px auto 0;
  font-size: clamp(46px, 8.4vw, 108px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .96;
}
.hero h1 span { display: inline-block; padding-bottom: .08em; }
.hero-lede { max-width: 580px; margin: 24px auto 0; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 28px; margin-top: 36px; }
.trusted-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 32px; color: var(--muted); font-size: 14px; }
.trusted-row strong { color: var(--ink); }
.avatar-stack { display: flex; }
.avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: -8px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  color: var(--on-accent);
  font-size: 11px;
  font-weight: 800;
}
.avatar:first-child { margin-left: 0; }
.avatar-1 { background: #ffd2a9; }
.avatar-2 { background: #cbb7fa; }
.avatar-3 { background: #b3e5bb; }
.avatar-4 { background: var(--brand); }

/* Product mock */
.hero-product { position: relative; max-width: 1100px; margin: 80px auto 0; text-align: left; }
.product-window {
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: 22px;
  background: var(--dark);
  color: #ececf4;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
}
.window-bar { display: flex; align-items: center; gap: 18px; height: 54px; padding: 0 16px; border-bottom: 1px solid var(--dark-line); }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 11px; height: 11px; border-radius: 50%; background: #ff5f57; }
.window-dots i:nth-child(2) { background: #febc2e; }
.window-dots i:nth-child(3) { background: #28c840; }
.window-brand { display: flex; align-items: center; gap: 10px; }
.window-brand b { font-size: 14px; }
.status-pill { padding: 3px 9px; border-radius: 99px; background: rgba(63, 224, 197, .14); color: var(--mint); font: 500 11px/1.4 var(--mono); }
.window-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.icon-btn { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; background: var(--dark-2); color: var(--dark-muted); }
.export-btn { display: inline-flex; align-items: center; height: 34px; padding: 0 14px; border-radius: 10px; background: var(--mint); color: var(--on-accent); font-size: 13px; font-weight: 800; }

.editor-layout { display: grid; grid-template-columns: 170px 280px minmax(0, 1fr); min-height: 440px; }
.editor-nav { display: flex; flex-direction: column; gap: 2px; padding: 14px 10px; border-right: 1px solid var(--dark-line); }
.editor-nav span { padding: 10px 12px; border-radius: 9px; color: var(--dark-muted); font-weight: 600; }
.editor-nav .active { background: #1f1f30; color: #fff; }

.editor-panel { padding: 18px; border-right: 1px solid var(--dark-line); }
.editor-panel .panel-heading small { color: var(--dark-muted); font: 500 11px/1.4 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.editor-panel .panel-heading h3 { margin: 2px 0 14px; font-size: 18px; font-weight: 800; }
.style-thumb-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.style-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 78px;
  border: 1px solid #2c2c42;
  border-radius: 11px;
  background: var(--dark-2);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
}
.style-thumb.selected { border-color: var(--mint); box-shadow: 0 0 0 1px var(--mint); }
.caption-block { padding: 1px 6px; border-radius: 3px; }
.caption-block.white { background: #fff; color: var(--on-accent); }
.caption-block.green { background: var(--mint); color: var(--on-accent); }
.style-thumb.outline span { color: transparent; font-size: 17px; -webkit-text-stroke: 1px #fff; }
.style-thumb.clean { font-weight: 600; }
.style-thumb.clean b { font-size: 14px; font-weight: 800; }
.style-thumb.karaoke span { color: var(--dark-muted); }
.style-thumb.karaoke strong { padding: 1px 6px; border-radius: 3px; background: var(--violet); }
.controls { margin-top: 16px; }
.controls > div { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--dark-line); color: var(--dark-muted); }
.controls span { display: inline-flex; align-items: center; gap: 4px; color: #fff; font-weight: 700; }
.controls i { padding: 2px 6px; border-radius: 5px; font-style: normal; }
.controls i.on { background: #2c2c42; }
.controls .swatch { width: 12px; height: 12px; margin-right: 4px; padding: 0; border-radius: 3px; background: var(--mint); }

.video-workspace {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 16px 16px;
  background: radial-gradient(circle at 50% 40%, #1b1b28 0%, var(--dark) 70%);
}
.video-toolbar { display: flex; gap: 6px; align-self: flex-end; }
.video-toolbar span { padding: 4px 9px; border-radius: 7px; background: var(--dark-2); color: var(--dark-muted); font: 500 11px/1.4 var(--mono); }
.video-frame {
  position: relative;
  width: 200px;
  aspect-ratio: 9 / 16;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(170deg, #34406a 0%, #5d4d80 55%, #b77d6d 100%);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .8);
}
.caption-preview {
  position: absolute;
  inset: auto 8px 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.05;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}
.caption-preview .accent-text { padding: 0 7px; border-radius: 5px; background: var(--mint); color: var(--on-accent); text-shadow: none; }
.frame-tag { position: absolute; top: 10px; left: 10px; padding: 3px 9px; border-radius: 99px; background: rgba(0, 0, 0, .4); font: 500 11px/1.4 var(--mono); }
.playback { display: flex; align-items: center; gap: 14px; margin-top: 12px; color: var(--dark-muted); }
.playback .play-main { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #fff; color: var(--on-accent); font-size: 11px; }
.playback small { font: 500 11px/1 var(--mono); }

.timeline { position: relative; padding: 14px 16px 16px; border-top: 1px solid var(--dark-line); }
.timeline-ruler { display: flex; justify-content: space-between; margin-left: 112px; color: #74748c; font: 500 11px/1 var(--mono); }
.timeline-track { display: grid; grid-template-columns: 100px minmax(0, 1fr); gap: 12px; align-items: center; margin-top: 10px; }
.track-label { color: var(--dark-muted); font-size: 12px; font-weight: 700; }
.clip { display: flex; gap: 3px; height: 34px; }
.video-clip span { flex: 1; border-radius: 7px; background: linear-gradient(90deg, #3a3656, #7c5e70); }
.caption-clip i {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #2c2c42;
  border-radius: 7px;
  background: var(--dark-2);
  color: #c9c9da;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}
.caption-clip i.on { border-color: var(--mint); background: rgba(200, 245, 60, .12); color: var(--mint); }
.playhead { position: absolute; top: 34px; bottom: 12px; left: calc(128px + (100% - 144px) * .36); width: 2px; background: var(--mint); }
.playhead::before { content: ""; position: absolute; top: -5px; left: -4px; width: 10px; height: 10px; border-radius: 50%; background: var(--mint); }

.floating-caption,
.speed-badge {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(24, 24, 28, .92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.floating-caption { padding: 12px 16px; }
.floating-caption small { display: block; color: var(--muted); font: 500 11px/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.caption-float-left { top: 150px; left: 470px; transform: rotate(-4deg); animation: float 6s ease-in-out infinite; }
.caption-float-left b { font-size: 24px; font-weight: 800; }
.caption-float-left em { padding: 0 6px; border-radius: 5px; background: var(--mint); color: var(--on-accent); font-style: normal; }
.caption-float-right { right: -48px; bottom: 170px; transform: rotate(3deg); animation: float 7s ease-in-out -2s infinite; }
.caption-float-right strong { display: block; font-size: 24px; font-weight: 800; }
.float-wave { display: flex; align-items: center; gap: 3px; height: 20px; margin-bottom: 6px; }
.float-wave i { width: 4px; height: 60%; border-radius: 2px; background: var(--brand-grad); animation: wave 1.2s ease-in-out infinite; }
.float-wave i:nth-child(2) { height: 100%; animation-delay: -.2s; }
.float-wave i:nth-child(3) { height: 45%; animation-delay: -.4s; }
.float-wave i:nth-child(4) { height: 85%; animation-delay: -.6s; }
.float-wave i:nth-child(5) { height: 55%; animation-delay: -.8s; }
.speed-badge { right: 56px; bottom: -52px; display: flex; align-items: center; gap: 12px; padding: 12px 18px; }
.speed-badge > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--accent-soft); }
.speed-badge small { display: block; color: var(--muted); font: 500 11px/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.speed-badge strong { font-size: 20px; font-weight: 800; }
@keyframes float { 50% { translate: 0 -8px; } }
@keyframes wave { 50% { transform: scaleY(.5); } }

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 48px;
  margin-top: 88px;
  padding: 28px 0;
  border-block: 1px solid var(--line);
}
.logo-strip > span { color: var(--muted); font: 500 12px/1.4 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.logo-strip div { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 44px; }
.logo-strip b { color: #6f6f7a; font-size: 21px; font-weight: 800; letter-spacing: -.03em; }

/* Scene silhouettes (shared by mock frames and template cards) */
.scene-person { position: absolute; inset: 0; pointer-events: none; }
.scene-person::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translateX(-50%);
  background: linear-gradient(160deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, .18));
}
.scene-person::after {
  content: "";
  position: absolute;
  bottom: -6%;
  left: 50%;
  width: 70%;
  height: 46%;
  border-radius: 48% 48% 0 0;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(12, 12, 34, .42), rgba(12, 12, 34, .16));
}

/* ---------- Sections ---------- */
.stats, .ai-showcase, .workflow, .comparison, .pricing { padding-top: 136px; }

.stat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 52px; }
.stat-card {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.stat-top { color: var(--muted); font: 500 12px/1 var(--mono); letter-spacing: .12em; }
.stat-card strong { margin: 36px 0 22px; font-size: 84px; font-weight: 800; letter-spacing: -.06em; line-height: .9; }
.stat-card strong span { margin-left: 4px; font-size: 30px; letter-spacing: -.02em; }
.stat-card h3 { font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.stat-card > p { margin-top: 8px; color: var(--muted); font-size: 15px; }
.stat-card > div:last-child { margin-top: auto; padding-top: 28px; }
.brand-card { border-color: rgba(200, 245, 60, .3); background: radial-gradient(120% 80% at 0% 0%, rgba(200, 245, 60, .16), transparent 60%), var(--surface); box-shadow: var(--glow); }
.brand-card strong { color: var(--brand); }
.progress-line { height: 6px; overflow: hidden; border-radius: 99px; background: rgba(255, 255, 255, .08); }
.progress-line i { display: block; width: 100%; height: 100%; border-radius: inherit; background: var(--brand-grad); transform-origin: left; animation: fill 3.2s ease-in-out infinite; }
@keyframes fill { 0% { transform: scaleX(0); } 70%, 100% { transform: scaleX(1); } }
.progress-steps { display: flex; justify-content: space-between; margin-top: 12px; font-size: 12px; font-weight: 600; color: var(--muted); }
.progress-steps b { color: var(--brand); }
.mini-templates { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.mini-templates i {
  display: grid;
  place-items: center;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface-2);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}
.mini-templates .violet { border-color: transparent; background: var(--violet); color: #fff; }
.mini-templates .dark { border-color: rgba(200, 245, 60, .35); background: #000; color: var(--brand); }
.price-bars > div + div { margin-top: 14px; }
.price-bars span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 13px; font-weight: 700; }
.price-bars i { position: relative; display: block; height: 38px; border-radius: 10px; background: var(--surface-3); }
.price-bars i.short { width: 22%; min-width: 72px; background: var(--brand-grad); color: var(--on-accent); }
.price-bars b { position: absolute; top: 50%; right: 12px; transform: translateY(-50%); font-size: 13px; font-weight: 800; }

/* AI showcase */
.ai-showcase-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: radial-gradient(80% 90% at 100% 50%, rgba(124, 106, 255, .12), transparent 70%), var(--card);
}
.ai-copy h2 span { display: block; }
.ai-copy > p { max-width: 460px; margin: 22px 0 30px; color: var(--muted); font-size: 17px; }
.ai-points > div { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.ai-points i { padding-top: 3px; color: var(--brand); font: 500 12px/1.4 var(--mono); font-style: normal; }
.ai-points b { display: block; font-size: 16px; font-weight: 800; }
.ai-points small { display: block; color: var(--muted); font-size: 14px; }

.dimension-stage {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 45%, #1d1a36 0%, var(--dark) 72%);
}
.stage-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 75%);
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 75%);
}
.ai-prism {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  width: 210px;
  aspect-ratio: 1;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(145deg, #8b7bff 0%, #5a45e6 100%);
  color: #fff;
  box-shadow: 0 30px 80px -20px rgba(124, 106, 255, .7);
  transform: translate(-50%, -50%) rotate(-3deg);
}
.ai-prism small, .ai-prism span { font: 500 11px/1.4 var(--mono); letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.ai-prism strong { margin-top: auto; font-size: 36px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.ai-prism b { font-size: 24px; font-weight: 800; color: var(--mint); }
.ai-prism span { margin-top: 12px; padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, .3); }
.caption-plane {
  position: absolute;
  padding: 10px 16px;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .7);
  animation: float 6s ease-in-out infinite;
}
.caption-plane small { display: block; color: #6b6b75; font: 500 11px/1.4 var(--mono); }
.caption-plane b { color: var(--on-accent); font-size: 21px; font-weight: 800; letter-spacing: -.01em; }
.plane-one { top: 11%; left: 7%; rotate: -5deg; }
.plane-two { top: 15%; right: 7%; rotate: 4deg; animation-delay: -2s; }
.plane-three { bottom: 10%; left: 18%; rotate: -2deg; background: var(--mint); animation-delay: -4s; }
.plane-three small { color: #3d4a10; }
.data-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 99px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
.data-pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); }
.data-one { right: 7%; bottom: 18%; }
.data-two { top: 47%; left: 5%; }

/* Workflow */
.workflow-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 72px; align-items: center; }
.step-list { margin-top: 40px; border-top: 1px solid var(--line); }
.workflow-step {
  position: relative;
  display: flex;
  gap: 20px;
  width: 100%;
  padding: 22px 0 22px 4px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
}
.workflow-step > span { padding-top: 4px; color: var(--muted); font: 500 12px/1.4 var(--mono); }
.workflow-step h3 { color: var(--muted); font-size: 19px; font-weight: 800; transition: color .2s ease; }
.workflow-step p { margin-top: 4px; color: var(--muted); font-size: 15px; }
.workflow-step:hover h3 { color: var(--ink-2); }
.workflow-step.active h3 { color: var(--ink); }
.workflow-step.active > span { color: var(--brand); }
.workflow-step.active::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 2px; background: var(--brand-grad); }

.upload-stage { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: 26px; background: var(--card); box-shadow: var(--shadow); }
.upload-card { padding: 48px 24px; border: 1.5px dashed var(--line-strong); border-radius: 18px; background: radial-gradient(60% 70% at 50% 0%, rgba(200, 245, 60, .07), transparent 70%), rgba(255, 255, 255, .015); text-align: center; }
.upload-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: var(--on-accent);
  font-size: 22px;
  box-shadow: 0 14px 34px -12px rgba(200, 245, 60, .6);
}
.upload-card h3 { font-size: 21px; font-weight: 800; }
.upload-card p { margin: 6px 0 22px; color: var(--muted); font-size: 15px; }
.upload-card small { display: block; margin-top: 16px; color: var(--muted); font: 500 11px/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.upload-file {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 12px 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.file-thumb { display: grid; place-items: center; width: 50px; height: 38px; flex: none; border-radius: 9px; background: linear-gradient(135deg, #34406a, #b77d6d); color: #fff; font-size: 12px; }
.upload-file b { display: block; font-size: 14px; font-weight: 800; }
.upload-file span { color: var(--muted); font-size: 13px; }
.upload-file strong { margin-left: auto; color: var(--brand); font: 500 13px/1 var(--mono); }
.upload-file > i { position: absolute; left: 0; bottom: 0; width: 100%; height: 3px; background: var(--brand-grad); }
.floating-chip { position: absolute; padding: 8px 13px; border-radius: 11px; font-size: 13px; font-weight: 700; box-shadow: var(--shadow); animation: float 6s ease-in-out infinite; }
.chip-one { top: -16px; right: 28px; background: var(--ink); color: var(--on-accent); }
.chip-two { left: -22px; bottom: 96px; background: var(--mint); color: var(--on-accent); animation-delay: -3s; }

/* Templates */
.template-section { margin-top: 136px; padding: 112px 0; background: radial-gradient(70% 60% at 50% 0%, rgba(124, 106, 255, .13), transparent 70%), linear-gradient(180deg, var(--bg), #0d0d11 50%, var(--bg)); }
.template-marquee { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 52px; }
.template-card {
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.template-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.vertical-scene { position: relative; aspect-ratio: 9 / 13; overflow: hidden; border-radius: 16px; color: #fff; }
.scene-one { background: linear-gradient(165deg, #1b3561, #5a8fd0); }
.scene-two { background: linear-gradient(165deg, #9c6a4c, #e6c19b); }
.scene-three { background: linear-gradient(165deg, #33237a, #9a76da); }
.scene-four { background: linear-gradient(165deg, #232327, #8a8a92); }
.scene-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 4px 11px;
  border-radius: 99px;
  background: rgba(0, 0, 0, .32);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
.preview-copy {
  position: absolute;
  inset: auto 10px 14%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
}
.preview-copy .stroke { color: transparent; -webkit-text-stroke: 1.5px #fff; text-shadow: none; }
.preview-copy.serif { font-family: Georgia, "Times New Roman", serif; }
.preview-copy.serif span { font-size: 18px; font-style: italic; font-weight: 400; }
.preview-copy.serif b { font-size: clamp(26px, 2.6vw, 32px); font-style: italic; }
.preview-copy .pill-copy { margin: 4px 0; padding: 0 8px; border-radius: 6px; background: var(--mint); color: var(--on-accent); text-shadow: none; }
.preview-copy.mono-copy { font: 500 clamp(15px, 1.5vw, 18px)/1.3 var(--mono); }
.preview-copy.mono-copy b { margin: 2px 0; padding: 0 6px; background: #fff; color: var(--on-accent); text-shadow: none; }
.preview-copy.mono-copy i { font-style: normal; opacity: .75; }
.template-card footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 14px 8px 6px; }
.template-card footer b { display: block; font-size: 15px; font-weight: 800; }
.template-card footer span { color: var(--muted); font-size: 13px; }
.template-card footer button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-2);
}
.template-card footer button:hover { border-color: var(--line-hover); }

/* Comparison */
.comparison { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; align-items: center; }
.comparison-copy > p { max-width: 440px; margin: 22px 0 36px; color: var(--muted); font-size: 17px; }
.metrics { display: flex; gap: 48px; }
.metrics strong { display: block; font-size: 44px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.metrics span { display: block; margin-top: 6px; color: var(--muted); font-size: 14px; }
.compare-labels { display: flex; justify-content: space-between; margin-bottom: 12px; color: var(--muted); font: 500 12px/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.compare-labels span:last-child { color: var(--brand); }
.compare-screen {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line-strong);
  box-shadow: var(--shadow-lg);
}
.compare-half { position: relative; overflow: hidden; }
.compare-half.before { background: linear-gradient(170deg, #55555c, #8d8d94); }
.compare-half.after { background: linear-gradient(170deg, #2e3a64, #5d4d80 60%, #b77d6d); color: #fff; }
.plain-caption {
  position: absolute;
  inset: auto 10% 12%;
  padding: 6px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, .6);
  color: #e6e6e6;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}
.loud-caption {
  position: absolute;
  inset: auto 8px 16%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.05;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .4);
}
.loud-caption strong { margin: 4px 0; padding: 0 8px; border-radius: 6px; background: var(--mint); color: var(--on-accent); font-size: 1.3em; text-shadow: none; }
.compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--on-accent);
  box-shadow: var(--shadow);
  font: 500 12px/1 var(--mono);
  transform: translate(-50%, -50%);
}

/* Pricing */
.pricing-heading { text-align: center; }
.pricing-heading p { margin-top: 16px; color: var(--muted); font-size: 17px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: stretch; margin-top: 52px; }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.plan-name { color: var(--muted); font: 500 12px/1.4 var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.price-card h3 { margin: 22px 0 8px; font-size: 58px; font-weight: 800; letter-spacing: -.045em; line-height: 1; }
.price-card h3 small { margin-left: 4px; color: var(--muted); font-size: 15px; font-weight: 600; letter-spacing: 0; }
.price-card > p { color: var(--muted); font-size: 15px; }
.price-card ul { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 30px; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; font-size: 15px; }
.price-card li { display: flex; gap: 10px; }
.price-card li::before { content: "✓"; color: var(--brand); font-weight: 800; }
.price-card .button { width: 100%; margin-top: auto; }
.featured-price { border-color: rgba(200, 245, 60, .35); background: radial-gradient(120% 70% at 50% 0%, rgba(200, 245, 60, .14), transparent 65%), var(--surface); box-shadow: var(--glow); }
.featured-price .plan-name { color: var(--brand); }
.featured-price li::before { color: var(--mint); }
.popular {
  position: absolute;
  top: 26px;
  right: 24px;
  padding: 5px 11px;
  border-radius: 99px;
  background: var(--brand);
  color: var(--on-accent);
  font: 500 11px/1.4 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.pricing-note { margin-top: 28px; color: var(--muted); font-size: 14px; text-align: center; }

/* CTA */
.cta { padding: 136px 0 0; }
.cta-card {
  position: relative;
  isolation: isolate;
  padding: 104px 32px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(200, 245, 60, .18), transparent 70%),
    radial-gradient(50% 60% at 90% 100%, rgba(124, 106, 255, .22), transparent 70%);
}
.cta-kicker, .cta-card small { font: 500 12px/1.4 var(--mono); letter-spacing: .14em; text-transform: uppercase; opacity: .88; }
.cta-card h2 { margin: 20px 0 18px; }
.cta-card h2 span { display: inline-block; }
.cta-card p { margin-bottom: 34px; font-size: 18px; opacity: .92; }
.cta-card small { display: block; margin-top: 18px; }

/* Footer */
.footer { margin-top: 96px; padding: 64px 0 32px; border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 48px; }
.footer-brand p { max-width: 320px; margin: 16px 0 14px; color: var(--muted); font-size: 15px; }
.footer-email { color: var(--brand); font-size: 15px; font-weight: 700; text-decoration: none; }
.footer-email:hover { text-decoration: underline; }
.footer-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.footer-links b { display: block; margin-bottom: 12px; color: var(--muted); font: 500 11px/1.4 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { display: block; padding: 5px 0; color: var(--ink-2); font-size: 14px; font-weight: 600; text-decoration: none; }
.footer-links a:hover { color: var(--brand); }
.footer-region { margin-top: 10px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 500 12px/1.4 var(--mono);
  letter-spacing: .06em;
}
.system-status { display: inline-flex; align-items: center; gap: 8px; }
.system-status i { width: 8px; height: 8px; border-radius: 50%; background: #1fbf85; box-shadow: 0 0 0 3px rgba(31, 191, 133, .2); }

/* Region popover & toast (injected by app.js) */
.region-popover {
  position: fixed;
  z-index: 100;
  display: none;
  width: min(340px, calc(100vw - 24px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-2);
  box-shadow: var(--shadow-lg);
  text-align: left;
}
.region-popover.open { display: block; }
.region-popover header b { font-size: 15px; }
.region-popover header p { margin: 2px 0 12px; color: var(--muted); font-size: 13px; }
.region-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; }
.region-option {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 6px 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}
.region-option span { display: grid; place-items: center; width: 30px; height: 22px; flex: none; border-radius: 6px; background: var(--surface-2); font-size: 11px; font-weight: 800; }
.region-option:hover { background: var(--surface-2); }
.region-option.active { border-color: rgba(200, 245, 60, .3); background: var(--accent-soft); color: var(--brand); }
.region-option.active span { background: var(--brand); color: var(--on-accent); }
.region-tax { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 110;
  max-width: calc(100vw - 32px);
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--on-accent);
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .2s ease, transform .2s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .caption-float-right { right: 12px; }
}

@media (max-width: 1024px) {
  .editor-layout { grid-template-columns: 240px minmax(0, 1fr); }
  .editor-nav { display: none; }
  .caption-float-left { left: 262px; }
  .ai-showcase-card { grid-template-columns: minmax(0, 1fr); gap: 40px; padding: 40px; }
  .workflow-grid, .comparison { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .stat-grid, .pricing-grid { grid-template-columns: minmax(0, 1fr); max-width: 560px; margin-inline: auto; }
  .stat-card { min-height: 0; }
  .template-marquee { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: minmax(0, 1fr); gap: 36px; }
}

@media (max-width: 860px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: 8px; }
  .menu-button { display: flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  .menu-open .site-nav { display: flex; }
  .site-nav a { padding: 14px 16px; font-size: 16px; }
  .site-nav .nav-only-mobile { display: block; }
  .header-actions .landing-region,
  .header-actions .login-link { display: none; }
  .split-heading { flex-direction: column; align-items: flex-start; gap: 18px; }
  .floating-caption { display: none; }
  .speed-badge { right: 16px; bottom: -24px; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 32px); }
  body { font-size: 15px; }
  .site-header { padding: 8px 8px 8px 16px; }
  .brand { font-size: 20px; }
  .hero { padding-top: 56px; }
  .hero h1 { margin-top: 22px; }
  .hero-lede { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trusted-row { flex-wrap: wrap; }
  .hero-product { margin-top: 56px; }
  .window-bar { gap: 10px; height: 50px; padding: 0 12px; }
  .window-brand .status-pill, .window-actions .icon-btn { display: none; }
  .editor-layout { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .editor-panel { display: none; }
  .video-frame { width: 180px; }
  .timeline { padding: 12px; }
  .timeline-ruler { margin-left: 76px; }
  .timeline-ruler span:nth-child(even) { visibility: hidden; }
  .timeline-track { grid-template-columns: 64px minmax(0, 1fr); }
  .caption-clip i { padding: 0 5px; overflow: hidden; }
  .playhead { top: 30px; left: calc(88px + (100% - 100px) * .36); }
  .speed-badge { display: none; }
  .glow-one { left: -20%; width: 70vw; height: 70vw; }
  .glow-two { right: 0; width: 60vw; height: 60vw; }
  .logo-strip { flex-direction: column; margin-top: 64px; }
  .logo-strip div { gap: 12px 28px; }
  .logo-strip b { font-size: 18px; }
  .stats, .ai-showcase, .workflow, .comparison, .pricing { padding-top: 96px; }
  .stat-card { padding: 24px; }
  .stat-card strong { margin: 24px 0 16px; font-size: 68px; }
  .ai-showcase-card { padding: 24px; border-radius: 24px; }
  .dimension-stage { min-height: 380px; }
  .ai-prism { width: 160px; padding: 16px; }
  .ai-prism strong { font-size: 28px; }
  .ai-prism b { font-size: 19px; }
  .caption-plane { padding: 8px 12px; }
  .caption-plane b { font-size: 17px; }
  .plane-one { top: 6%; left: 5%; }
  .plane-two { top: 9%; right: 5%; }
  .plane-three { bottom: 7%; left: 10%; }
  .data-pill { display: none; }
  .upload-stage { padding: 16px; }
  .upload-card { padding: 36px 16px; }
  .chip-two { left: 8px; bottom: 88px; }
  .upload-file b { font-size: 13px; word-break: break-all; }
  .template-section { margin-top: 96px; padding: 80px 0; }
  .template-marquee {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 74%;
    grid-template-columns: none;
    width: 100%;
    padding: 0 16px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    scrollbar-width: none;
  }
  .template-marquee::-webkit-scrollbar { display: none; }
  .template-card { scroll-snap-align: start; }
  .metrics { gap: 32px; }
  .metrics strong { font-size: 36px; }
  .compare-screen { aspect-ratio: 1; }
  .plain-caption { font-size: 11px; inset: auto 6% 10%; }
  .price-card { padding: 26px; }
  .price-card h3 { font-size: 50px; }
  .cta { padding-top: 96px; }
  .cta-card { padding: 72px 20px; border-radius: 26px; }
  .cta-card p { font-size: 16px; }
  .cta-card .button { width: 100%; }
  .footer { margin-top: 72px; padding-top: 48px; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 16px; }
  .footer-bottom { flex-direction: column; margin-top: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}
