/* ============================================================
   AVE.cms — лендинг. Автономный CSS (без внешних зависимостей).
   ============================================================ */

/* ---------- Токены темы ---------- */
:root {
  --brand-1: #2563eb;
  --brand-2: #7c3aed;
  --blue-500: #3b82f6;
  --violet-500: #8b5cf6;
  --green-500: #22c55e;
  --amber-500: #f59e0b;
  --cyan-500: #06b6d4;
  --pink-500: #ec4899;

  --bg: #f6f8fc;
  --bg-2: #eef2f9;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --text: #0f172a;
  --text-2: #475569;
  --muted: #94a3b8;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, .08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, .14);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1160px;
  --grad: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

:root[data-theme="dark"] {
  --bg: #0b1120;
  --bg-2: #0e1526;
  --surface: #131b2e;
  --surface-2: #182238;
  --text: #e8edf6;
  --text-2: #9fb0c9;
  --muted: #64748b;
  --border: #223049;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .3);
  --shadow-md: 0 12px 34px rgba(0, 0, 0, .4);
  --shadow-lg: 0 26px 64px rgba(0, 0, 0, .55);
}

/* ---------- База ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-1); margin-bottom: 14px;
}
:root[data-theme="dark"] .eyebrow { color: #93b4ff; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: inherit; font-weight: 600; font-size: 15px; line-height: 1;
  padding: 12px 20px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-lg { padding: 15px 26px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 22px rgba(37, 99, 235, .32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37, 99, 235, .42); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--brand-1); color: var(--brand-1); }
.btn-light { background: #fff; color: #1e293b; box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.icon-btn {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  border-radius: 11px; border: 1px solid var(--border); background: var(--surface);
  color: var(--text-2); cursor: pointer; transition: color .15s, border-color .15s, background .15s;
}
.icon-btn:hover { color: var(--brand-1); border-color: var(--brand-1); }

/* ---------- Навигация ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled { border-color: var(--border); background: color-mix(in srgb, var(--bg) 92%, transparent); }
.nav-inner { display: flex; align-items: center; gap: 20px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 3px; font-weight: 800; font-size: 19px; letter-spacing: -.03em; }
.brand-logo { height: 26px; width: auto; display: block; }
.brand-suffix { font-weight: 800; font-size: 19px; letter-spacing: -.03em; color: var(--text); }
.brand-mark {
  display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px;
  background: var(--grad); color: #fff; font-weight: 800; font-size: 17px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, .35);
}
.brand-dot { color: var(--brand-1); }
:root[data-theme="dark"] .brand-dot { color: #93b4ff; }
.nav-links { display: flex; gap: 6px; margin-left: 12px; margin-right: auto; }
.nav-links a {
  padding: 8px 14px; border-radius: 10px; font-size: 14.5px; font-weight: 500; color: var(--text-2);
  transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--surface-2); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-burger { display: none; }
.ico-moon { display: none; }
:root[data-theme="dark"] .ico-sun { display: none; }
:root[data-theme="dark"] .ico-moon { display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 72px 0 80px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 620px; pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(37, 99, 235, .22), transparent 70%),
    radial-gradient(closest-side, rgba(124, 58, 237, .18), transparent 70%);
  background-position: 30% 40%, 70% 30%;
  background-size: 60% 70%, 55% 65%;
  background-repeat: no-repeat;
  filter: blur(10px);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 13px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 22px;
}
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 3px rgba(34, 197, 94, .2); }
.hero-copy h1 { font-size: clamp(36px, 5.2vw, 60px); font-weight: 800; }
.lead { margin-top: 20px; font-size: clamp(16px, 2vw, 19px); color: var(--text-2); max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; color: var(--text-2); font-size: 14px; font-weight: 500; }

/* ---------- Макет админки ---------- */
.hero-mock { perspective: 1600px; }
.mock-window {
  border-radius: 16px; overflow: hidden; background: var(--surface);
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  transform: rotateY(-9deg) rotateX(4deg) translateZ(0);
  transition: transform .5s ease;
}
.hero-mock:hover .mock-window { transform: rotateY(-3deg) rotateX(2deg); }
.mock-bar {
  display: flex; align-items: center; gap: 7px; padding: 11px 14px;
  background: var(--surface-2); border-bottom: 1px solid var(--border);
}
.mock-dot { width: 11px; height: 11px; border-radius: 50%; }
.mock-dot.r { background: #f87171; } .mock-dot.y { background: #fbbf24; } .mock-dot.g { background: #34d399; }
.mock-url { margin-left: 10px; font-size: 12px; color: var(--muted); font-family: ui-monospace, monospace; }
.mock-body { display: grid; grid-template-columns: 64px 1fr; min-height: 300px; }
.mock-side { padding: 14px 12px; background: var(--surface-2); border-right: 1px solid var(--border); display: flex; flex-direction: column; gap: 11px; align-items: center; }
.mock-logo { display: grid; place-items: center; margin-bottom: 8px; }
.mock-logo img { width: 42px; height: auto; display: block; }
.mock-nav { width: 34px; height: 8px; border-radius: 5px; background: var(--border); }
.mock-nav.active { background: var(--brand-1); width: 38px; }
.mock-nav.short { width: 22px; }
.mock-main { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-kpi { background: var(--surface); border: 1px solid var(--border); border-radius: 11px; padding: 11px; box-shadow: var(--shadow-sm); }
.mock-kpi b { display: block; font-size: 15px; margin-top: 6px; }
.mock-kpi small { color: var(--muted); font-size: 10.5px; }
.mock-ico { display: block; width: 22px; height: 22px; border-radius: 7px; }
.mock-ico.blue { background: rgba(37, 99, 235, .16); } .mock-ico.green { background: rgba(34, 197, 94, .16); } .mock-ico.violet { background: rgba(124, 58, 237, .16); }
.mock-chart { background: var(--surface); border: 1px solid var(--border); border-radius: 11px; padding: 10px; box-shadow: var(--shadow-sm); }
.mock-chart svg { width: 100%; height: 90px; display: block; }
.mock-rows { display: flex; flex-direction: column; gap: 8px; }
.mock-row { height: 12px; border-radius: 6px; background: var(--border); }
.mock-row.short { width: 62%; }

/* ---------- Метрики ---------- */
.stats { padding: 8px 0 20px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat {
  text-align: center; padding: 26px 16px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.stat b { display: block; font-size: clamp(28px, 4vw, 40px); font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-variant-numeric: tabular-nums; }
.stat span { display: block; margin-top: 6px; color: var(--text-2); font-size: 14px; }

/* ---------- Секции ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-2); }
.section-head { max-width: 640px; margin: 0 auto 46px; text-align: center; }
.section-head h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; }
.section-head p { margin-top: 14px; color: var(--text-2); font-size: 17px; }

/* ---------- Возможности ---------- */
.grid { display: grid; gap: 20px; }
.features { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.feature { padding: 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--brand-1) 40%, var(--border)); }
.feat-ico {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 13px; margin-bottom: 16px;
  color: var(--fc); background: color-mix(in srgb, var(--fc) 14%, var(--surface));
}
.feat-ico svg { width: 24px; height: 24px; }
.feature h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--text-2); font-size: 14.5px; }

/* ---------- Модули ---------- */
.modules { grid-template-columns: repeat(3, 1fr); }
.mod {
  display: flex; flex-direction: column; gap: 4px; padding: 20px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease;
}
.mod:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mod-ico { font-size: 26px; line-height: 1; margin-bottom: 8px; }
.mod b { font-size: 16px; }
.mod small { color: var(--text-2); font-size: 13.5px; }

/* ---------- Почему ---------- */
.why-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: center; }
.lead-sm { margin-top: 14px; color: var(--text-2); font-size: 17px; max-width: 520px; }
.checks { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.checks li { display: flex; gap: 14px; }
.checks i {
  flex: 0 0 26px; width: 26px; height: 26px; border-radius: 8px; margin-top: 2px;
  background: color-mix(in srgb, var(--green-500) 16%, var(--surface)); position: relative;
}
.checks i::after {
  content: ""; position: absolute; left: 8px; top: 6px; width: 6px; height: 11px;
  border: solid var(--green-500); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}
.checks b { display: block; font-size: 15.5px; }
.checks span { color: var(--text-2); font-size: 14px; }

.req-card { padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-md); }
.req-card h3 { font-size: 18px; margin-bottom: 16px; }
.req-list { list-style: none; padding: 0; margin: 0 0 22px; }
.req-list li { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--border); font-size: 14.5px; }
.req-list li:last-child { border-bottom: 0; }
.req-list span { color: var(--text-2); }
.req-list b { font-weight: 700; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; padding: 40px 0 90px; }
.cta-inner {
  position: relative; text-align: center; padding: 60px 32px;
  background: var(--grad); border-radius: 28px; color: #fff;
  box-shadow: 0 30px 70px rgba(37, 99, 235, .4);
}
.cta-glow { position: absolute; inset: 0; pointer-events: none; }
.cta-inner h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; }
.cta-inner > p { margin: 16px auto 0; max-width: 560px; font-size: 17px; opacity: .92; }
.cta-actions { margin-top: 30px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-note { margin-top: 20px; font-size: 13px; opacity: .8; }

/* ---------- Подвал ---------- */
.footer { padding: 56px 0 30px; border-top: 1px solid var(--border); background: var(--surface); }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-brand p { margin-top: 12px; color: var(--text-2); font-size: 14px; max-width: 280px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.footer-links a { color: var(--text-2); font-size: 14.5px; transition: color .15s; }
.footer-links a:hover { color: var(--brand-1); }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--border); color: var(--muted); font-size: 13px; }

/* ---------- Появление при скролле ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Гибкие поля ---------- */
.field-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 880px; margin: 0 auto; }
.field-chip {
  padding: 9px 15px; border-radius: 999px; font-size: 14px; font-weight: 500;
  background: var(--surface); color: var(--text); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: transform .15s ease, border-color .15s, box-shadow .2s;
}
.field-chip:hover { transform: translateY(-2px); border-color: var(--brand-1); box-shadow: var(--shadow-md); }
.fields-note { text-align: center; color: var(--text-2); font-size: 15px; margin-top: 26px; }

/* ---------- Модули: строка-факты ---------- */
.mod-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 42px; }
.mod-badge {
  padding: 10px 16px; border-radius: 999px; font-size: 14px; font-weight: 600;
  color: var(--brand-1);
  background: color-mix(in srgb, var(--brand-1) 8%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--brand-1) 24%, transparent);
}
:root[data-theme="dark"] .mod-badge { color: #93b4ff; }

/* ---------- Для разработчиков ---------- */
.dev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.dev-copy, .code-card { min-width: 0; }
.dev-copy code, .checks code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .88em; padding: 1px 6px; border-radius: 6px; background: var(--surface); border: 1px solid var(--border); overflow-wrap: anywhere; }
.code-window { min-width: 0; max-width: 100%; border-radius: 14px; overflow: hidden; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.code-window + .code-window { margin-top: 16px; }
.code-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.code-file { margin-left: 10px; font-family: ui-monospace, monospace; font-size: 12px; color: var(--muted); }
.code-body { margin: 0; padding: 18px 20px; overflow-x: auto; background: var(--surface); }
.code-body code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; line-height: 1.75; color: var(--text); white-space: pre; }
.tok-c { color: var(--muted); font-style: italic; }
.tok-k { color: var(--brand-2); font-weight: 600; }
.tok-s { color: #16a34a; }
.tok-f { color: var(--brand-1); }
.tok-v { color: var(--text); }
:root[data-theme="dark"] .tok-s { color: #4ade80; }

/* ---------- Hero: строка доверия ---------- */
.hero-trust { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; padding: 8px 14px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--text-2); background: color-mix(in srgb, var(--green-500) 10%, var(--surface)); border: 1px solid color-mix(in srgb, var(--green-500) 26%, transparent); }
.hero-trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 3px color-mix(in srgb, var(--green-500) 22%, transparent); }

/* ---------- Установка за 3 шага ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { display: flex; gap: 16px; padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step-num { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-weight: 800; font-size: 18px; color: #fff; background: var(--grad); box-shadow: 0 6px 16px rgba(37,99,235,.3); }
.step-body b { display: block; font-size: 16px; margin-bottom: 5px; }
.step-body p { color: var(--text-2); font-size: 14.5px; }
.step-body code, .install-doc code, .faq code, .cta-meta code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .88em; padding: 1px 6px; border-radius: 6px; background: var(--surface-2); border: 1px solid var(--border); }
.install-doc { text-align: center; margin-top: 26px; color: var(--text-2); font-size: 15px; }

/* ---------- Под капотом ---------- */
.spec-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.spec-item { display: flex; flex-direction: column; gap: 2px; padding: 16px 22px; min-width: 160px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.spec-item b { font-size: 16px; }
.spec-item small { color: var(--text-2); font-size: 13px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 800px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; font-size: 16px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; font-size: 20px; font-weight: 400; color: var(--brand-1); background: color-mix(in srgb, var(--brand-1) 10%, var(--surface)); transition: transform .2s ease; }
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq-item p { padding: 0 22px 20px; color: var(--text-2); font-size: 15px; line-height: 1.6; }

/* ---------- CTA: метаданные загрузки ---------- */
.cta-meta { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; margin-top: 24px; font-size: 14px; color: rgba(255,255,255,.9); }
.cta-meta b { font-weight: 700; }
.cta-meta code { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.2); color: #fff; }
.cta-meta-sep { opacity: .5; }

/* ---------- Кнопка «наверх» ---------- */
.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 46px; height: 46px; border-radius: 14px; border: 1px solid var(--border); background: var(--surface); color: var(--brand-1); box-shadow: var(--shadow-md); cursor: pointer; display: grid; place-items: center; opacity: 0; transform: translateY(12px); transition: opacity .2s ease, transform .2s ease, box-shadow .2s; }
.to-top.show { opacity: 1; transform: none; }
.to-top:hover { box-shadow: var(--shadow-lg); border-color: var(--brand-1); }
.to-top[hidden] { display: none; }

/* ---------- Доступность ---------- */
a:focus-visible, button:focus-visible, summary:focus-visible, .btn:focus-visible { outline: 2px solid var(--brand-1); outline-offset: 2px; border-radius: 8px; }

/* ---------- Адаптив ---------- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-mock { order: 2; max-width: 560px; }
  .why-inner, .dev-grid { grid-template-columns: 1fr; gap: 34px; }
  .features, .modules { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; gap: 4px; margin: 0; padding: 14px 24px 20px;
    background: var(--bg); border-bottom: 1px solid var(--border);
    transform: translateY(-140%); transition: transform .28s ease; box-shadow: var(--shadow-md);
  }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 12px 14px; }
  .nav-burger { display: inline-grid; }
  .btn-primary.nav-download { display: none; }
}
@media (max-width: 560px) {
  .features, .modules, .stats-grid { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .cta-inner { padding: 44px 22px; }
  .hero-meta { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .mock-window { transform: none; }
}
