/* ============================================================
   Мостик — лендинг v2. Light-first продуктовый дизайн
   (референсы: Attio/Clerk/Linear 2026). Periwinkle-акцент из
   продукта + бирюзовый Pulse дозированно. Без GSAP — только
   IntersectionObserver-reveal и CSS-микроинтеракции.
   ============================================================ */

/* ---------- Шрифты (самохостинг, variable) ---------- */
@font-face {
  font-family: 'Outfit';
  src: url('/fonts/outfit.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('/fonts/source-sans-3.woff2') format('woff2');
  font-weight: 200 900;
  font-display: swap;
}

/* ---------- Токены ---------- */
:root {
  color-scheme: light only;

  /* нейтрали */
  --bg-page: #FCFCFA;
  --band-blue: #F3F4FB;
  --band-warm: #F1F7F5;  /* мятно-прохладная полоса (была желтоватая) */
  --surface: #FFFFFF;
  --surface-sunken: #F6F7FA;
  --ink: #171A2B;
  --ink-2: #4E5470;
  --ink-3: #666B86;          /* ≥4.5:1 на белом */
  --border: #E7E8F0;
  --border-strong: #D8DAE7;
  --dark-band: #14162B;
  --dark-band-2: #1C1F3A;

  /* акцент periwinkle */
  --accent-50: #EEF0FE;
  --accent-100: #E0E4FD;
  --accent-200: #C4CBFB;
  --accent-400: #7C88F5;
  --accent-500: #5C6BE8;
  --accent-600: #4A57D4;     /* кнопки: 5.8:1 с белым */
  --accent-700: #3B46B2;
  --accent-ink: #2B3390;

  /* бирюзовый Pulse — дозированно (премиальная пара к перивинклу; жёлтый снят решением владельца 2026-07-17; имена токенов pulse-* сохранены) */
  --pulse-500: #2CB9A8;
  --pulse-100: #DEF4F0;
  --pulse-ink: #0E7568;

  --ok: #157A52;
  --err: #C23434;

  /* Outfit latin-only → кириллица берёт Source Sans 3 */
  --ff: 'Outfit', 'Source Sans 3', system-ui, sans-serif;

  --w: 1200px;
  --r-btn: 10px;
  --r-form: 14px;
  --r-card: 16px;
  --r-bento: 20px;
  --r-panel: 24px;
  --r-band: 28px;
  --r-phone: 44px;

  --shadow-sm: 0 1px 2px rgba(23,26,43,.06), 0 0 0 1px rgba(23,26,43,.03);
  --shadow-card: 0 1px 2px rgba(23,26,43,.05), 0 4px 12px -4px rgba(23,26,43,.08);
  --shadow-lift: 0 2px 4px rgba(23,26,43,.05), 0 14px 28px -10px rgba(59,70,178,.14);
  --shadow-screenshot: 0 0 0 1px rgba(23,26,43,.05), 0 2px 6px rgba(23,26,43,.05), 0 28px 56px -16px rgba(43,51,144,.18);
  --shadow-btn: inset 0 1px 0 rgba(255,255,255,.18), 0 0 0 1px var(--accent-700), 0 1px 2px rgba(43,51,144,.35);
  --shadow-btn-hover: inset 0 1px 0 rgba(255,255,255,.18), 0 0 0 1px var(--accent-700), 0 2px 6px rgba(43,51,144,.35), 0 8px 20px -6px rgba(43,51,144,.35);

  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- База ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1, h2, h3 { line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.02em; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 1.4rem + 3.6vw, 4.25rem); font-weight: 620; letter-spacing: -.025em; line-height: 1.06; }
h2 { font-size: clamp(1.9rem, 1.2rem + 2vw, 3rem); font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; letter-spacing: -.015em; line-height: 1.25; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: .5em; }
a { color: var(--accent-600); text-underline-offset: 3px; text-decoration-color: var(--accent-200); transition: text-decoration-color .15s ease; }
a:hover { text-decoration-color: var(--accent-600); }
img { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 3px solid var(--accent-600); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: var(--w); margin: 0 auto; padding-inline: clamp(16px, 4vw, 32px); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-size: .8125rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-600); margin: 0 0 14px;
}
.lead { font-size: 1.1875rem; color: var(--ink-2); line-height: 1.55; max-width: 56ch; }

/* ---------- Reveal (IO) ---------- */
.rv {
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.rv-scale { transform: translateY(20px) scale(.97); }
.rv.in { opacity: 1; transform: none; }
html.no-js .rv { opacity: 1; transform: none; }

/* ---------- Header: floating nav ---------- */
.site-header { position: sticky; top: 12px; z-index: 90; }
.nav-bar {
  display: flex; align-items: center; gap: 20px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: var(--r-form);
  box-shadow: var(--shadow-sm);
  padding: 8px 10px 8px 18px;
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.25rem; color: var(--ink);
  text-decoration: none; letter-spacing: -.01em; white-space: nowrap; line-height: 1.05;
}
/* фирменный знак: «М» одним штрихом — пролёт моста (тот же, что в фавиконе и иконке PWA) */
.brand-mark { flex: none; width: 32px; height: 32px; color: var(--accent-600); border-radius: 8px; }
.brand-text { display: block; }
.brand .descr { display: block; font-size: .66rem; font-weight: 500; letter-spacing: .02em; color: var(--ink-3); }
.footer-sign { display: flex; align-items: center; gap: 10px; margin: 0; }
.footer-mark { flex: none; width: 24px; height: 24px; color: var(--accent-600); border-radius: 6px; }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.main-nav li { margin: 0; }
.main-nav a {
  display: inline-block; padding: 9px 10px; border-radius: 9px;
  font-size: .9rem; font-weight: 500; color: var(--ink-2); white-space: nowrap;
  text-decoration: none; transition: background .15s ease, color .15s ease;
}
.main-nav a:hover { background: var(--surface-sunken); color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.lang-switch {
  font-size: .875rem; font-weight: 600; color: var(--ink-2); text-decoration: none;
  border: 1px solid var(--border); border-radius: 9px;
  min-height: 40px; padding: 0 12px; display: inline-flex; align-items: center;
  transition: border-color .15s ease, color .15s ease;
}
.lang-switch:hover { border-color: var(--border-strong); color: var(--ink); }
.header-row { display: flex; align-items: center; gap: 10px; }
.header-row .nav-bar { flex: 1; }
.hero-cta { margin: 26px 0 8px; }
.hero-cta .btn-lg { min-height: 54px; padding: 0 28px; font-size: 1.0625rem; }
.hero-cta .mlmicro { margin-top: 12px; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 24px;
  border: 0; border-radius: var(--r-btn); cursor: pointer;
  font-family: var(--ff); font-size: 1rem; font-weight: 600; text-decoration: none;
  background: var(--accent-600); color: #fff;
  box-shadow: var(--shadow-btn);
  transition: background .18s ease, box-shadow .2s ease, transform .12s ease;
}
.btn:hover { background: var(--accent-700); box-shadow: var(--shadow-btn-hover); }
.btn:active { transform: translateY(1px); box-shadow: var(--shadow-btn); }
.btn[disabled] { opacity: .6; cursor: default; }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }
.btn-sm { min-height: 40px; padding: 8px 16px; font-size: .9375rem; }
.btn-ghost {
  background: transparent; color: var(--ink); box-shadow: none;
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--surface-sunken); box-shadow: none; }

.burger {
  display: none; background: none; border: 1px solid var(--border-strong);
  border-radius: 9px; width: 42px; height: 42px; cursor: pointer; position: relative;
}
.burger span, .burger span::before, .burger span::after {
  position: absolute; left: 50%; top: 50%; width: 18px; height: 2px;
  background: var(--ink); transform: translate(-50%, -50%);
}
.burger span::before, .burger span::after { content: ''; }
.burger span::before { transform: translate(-50%, calc(-50% - 6px)); }
.burger span::after { transform: translate(-50%, calc(-50% + 6px)); }

/* ---------- Hero ---------- */
main [id] { scroll-margin-top: 90px; }
.hero { position: relative; padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 8vw, 112px); overflow: clip; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, rgba(92,107,232,.07) 0 1px, transparent 1px 80px);
  mask-image: linear-gradient(180deg, transparent, #000 30% 75%, transparent);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(70% 55% at 50% 108%, rgba(92,107,232,.12), transparent 70%);
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-50); border: 1px solid var(--accent-200);
  border-radius: 999px; padding: 7px 14px;
  font-size: .8125rem; font-weight: 600; color: var(--accent-600);
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--pulse-500);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(44,185,168,.4); }
  70% { box-shadow: 0 0 0 7px rgba(44,185,168,0); }
  100% { box-shadow: 0 0 0 0 rgba(44,185,168,0); }
}
.grad {
  background: linear-gradient(92deg, #4A57D4 0%, #7C88F5 55%, #B49BF7 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead { font-size: 1.1875rem; color: var(--ink-2); line-height: 1.55; max-width: 34em; margin-bottom: 28px; }

/* email-форма */
.mlform { max-width: 560px; }
.ml-box {
  display: flex; gap: 4px; align-items: stretch;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-form); box-shadow: var(--shadow-card);
  padding: 4px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.ml-box:focus-within {
  border-color: var(--accent-400);
  box-shadow: 0 0 0 4px var(--accent-100), var(--shadow-card);
}
.ml-box input[type=email] {
  flex: 1 1 180px; min-width: 0; min-height: 48px;
  border: 0; background: transparent; padding: 10px 14px;
  font: inherit; color: var(--ink);
}
.ml-box input[type=email]:focus-visible { outline: none; }
.mlconsent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .875rem; color: var(--ink-2); margin-top: 14px;
}
.mlconsent input {
  flex: none; width: 18px; height: 18px; margin: 2px 0 0;
  accent-color: var(--accent-600);
}
.mlmicro { font-size: .875rem; color: var(--ink-3); margin: 12px 0 0; }

/* Капча — вторая галочка в столбик: тот же отступ и размер, что у согласия.
   ALTCHA рендерится в light DOM, поэтому переопределяем её переменные и размеры. */
.mlcaptcha {
  margin-top: 10px;
  --altcha-border-width: 0;
  --altcha-border-radius: 0;
  --altcha-max-width: 100%;
  --altcha-color-border: transparent;
  --altcha-color-base: transparent;
  --altcha-color-text: var(--ink-2);
}
.mlcaptcha .altcha { border: 0; background: transparent; padding: 0; }
.mlcaptcha .altcha-main { padding: 0; gap: 10px; align-items: flex-start; }
.mlcaptcha .altcha-checkbox { display: flex; align-items: flex-start; }
.mlcaptcha .altcha-checkbox input[type=checkbox] {
  flex: none; width: 18px; height: 18px; margin: 2px 0 0;
  accent-color: var(--accent-600);
}
.mlcaptcha .altcha-label, .mlcaptcha label { font-size: .875rem; color: var(--ink-2); line-height: 1.5; }
.cta-band .mlcaptcha { --altcha-color-text: rgba(255,255,255,.72); }
.cta-band .mlcaptcha .altcha-label, .cta-band .mlcaptcha label { color: rgba(255,255,255,.72); }
.mlhp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.ml-status { margin: 12px 0 0; min-height: 1.5em; font-size: .9375rem; font-weight: 500; }
.ml-status.is-ok { color: var(--ok); }
.ml-status.is-err { color: var(--err); }
.ml-status.is-pending { color: var(--ink-3); }

.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 7px 14px;
  font-size: .875rem; font-weight: 500; color: var(--ink-2);
}
.chip strong { color: var(--ink); font-weight: 600; }
.chip .c-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-400); }

/* hero-визуал: телефон в окружении карточек продукта (референс-композиция) */
.hero-visual { position: relative; display: flex; justify-content: center; min-height: 560px; align-items: center; }
.hero-rings { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.ring {
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: conic-gradient(from 200deg, transparent 0 38%, rgba(44,185,168,.5) 52%, rgba(23,154,138,.18) 66%, transparent 74%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 30px), #000 calc(100% - 29px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 30px), #000 calc(100% - 29px));
}
.ring.r2 {
  width: 720px; height: 720px;
  background: conic-gradient(from 20deg, transparent 0 52%, rgba(92,107,232,.32) 66%, transparent 78%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 22px), #000 calc(100% - 21px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 22px), #000 calc(100% - 21px));
}
.hero-glow { position: absolute; inset: 0; pointer-events: none; }
.hero-glow::before {
  content: ''; position: absolute; right: -16%; top: -8%; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(44,185,168,.36), rgba(44,185,168,.09) 58%, transparent 72%);
  filter: blur(4px);
}
.hero-glow::after {
  content: ''; position: absolute; left: -18%; bottom: -12%; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(92,107,232,.32), rgba(92,107,232,.08) 58%, transparent 72%);
  filter: blur(4px);
}
.phone {
  position: relative; width: min(344px, 82vw); z-index: 1;
  background: linear-gradient(150deg, #33343C 0%, #17181D 52%, #2B2C34 100%);
  border-radius: 54px; padding: 12px;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.16),
    0 0 0 1px rgba(12,13,20,.4),
    0 46px 90px -26px rgba(43,51,144,.38),
    0 20px 44px -18px rgba(23,26,43,.38);
  transform: perspective(1400px) rotateY(-6deg) rotate(5deg);
  animation: float 7s ease-in-out infinite alternate;
}
.phone::before { /* кнопка питания */
  content: ''; position: absolute; right: -2.5px; top: 138px;
  width: 3px; height: 62px; border-radius: 2px; background: #3B3C45;
}
.phone::after { /* качелька громкости */
  content: ''; position: absolute; left: -2.5px; top: 116px;
  width: 3px; height: 88px; border-radius: 2px; background: #3B3C45;
}
.phone .screen { border-radius: 42px; overflow: hidden; position: relative; background: #fff; }
.phone .screen::before { /* dynamic island */
  content: ''; position: absolute; top: 9px; left: 50%; translate: -50% 0;
  width: 88px; height: 24px; border-radius: 999px; background: #101015; z-index: 3;
}
@keyframes float { from { translate: 0 0; } to { translate: 0 -10px; } }

.hcard {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,.66);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  backdrop-filter: blur(18px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.9); border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 2px 6px rgba(23,26,43,.05),
    0 26px 52px -18px rgba(59,70,178,.26);
  padding: 22px 24px; font-size: .9rem; line-height: 1.45;
  display: flex; flex-direction: column; gap: 10px;
  animation: float-chip 6s ease-in-out infinite alternate;
}
@keyframes float-chip { from { translate: 0 0; } to { translate: 0 -8px; } }
.hc-k {
  display: flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-600);
}
.hc-k svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; }
.hc-k.warm { color: var(--pulse-ink); }
.hc-k2 { font-size: .76rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-3); }
.hc-q { font-weight: 640; color: var(--ink); font-size: 1rem; }
.hc-row { display: flex; justify-content: space-between; gap: 14px; color: var(--ink-2); margin-top: 2px; }
.hc-v { font-weight: 620; color: var(--ink); }
.hc-bar { height: 5px; border-radius: 4px; background: var(--surface-sunken); overflow: hidden; }
.hc-bar i { display: block; height: 100%; border-radius: 4px; background: var(--accent-400); }
.hc-f { color: var(--ink-3); font-size: .8rem; margin-top: 4px; }
.hc-s { color: var(--ink-2); font-size: .9rem; }
.hc-s strong { color: var(--ink); }
.hc-col { display: flex; flex-direction: column; gap: 2px; }
.hc-ico {
  flex: none; width: 42px; height: 42px; border-radius: 13px;
  display: grid; place-items: center; background: var(--accent-50); color: var(--accent-600);
}
.hc-ico svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hc-ava {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent-100); color: var(--accent-ink); font-weight: 700; font-size: .9rem;
}
.hc-map {
  flex: none; width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
  color: var(--accent-600);
  background:
    repeating-linear-gradient(0deg, rgba(74,87,212,.10) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(90deg, rgba(74,87,212,.10) 0 1px, transparent 1px 8px),
    var(--accent-50);
}
.hc-map svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; }
.hc-stats { display: flex; gap: 18px; margin-top: 4px; }
.hc-stats span { display: flex; flex-direction: column; font-size: .76rem; color: var(--ink-3); }
.hc-stats strong { font-size: 1.25rem; color: var(--ink); font-weight: 660; letter-spacing: -.01em; }
.hc-spark { width: 100%; height: 30px; margin-top: 6px; }

.hc-poll { left: max(-92px, -7vw); top: 16%; width: 204px; animation-delay: -1.6s; }
.hc-reminder { right: max(-60px, -5vw); top: -2%; max-width: 226px; flex-direction: row; align-items: center; gap: 10px; animation-delay: -3.2s; }
.hc-health { right: max(-76px, -6.5vw); top: 37%; width: 206px; animation-delay: -4.6s; }
.hc-speaker { left: max(-46px, -4.5vw); bottom: 10%; flex-direction: row; align-items: center; gap: 10px; animation-delay: -2.4s; }
.hc-venue { right: max(-52px, -4.5vw); bottom: 0; flex-direction: row; align-items: center; gap: 10px; animation-delay: -5.4s; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; padding: 18px 0; border-block: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent, #000 12% 88%, transparent);
}
.marquee-track { display: flex; gap: 12px; width: max-content; animation: mq 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes mq { to { transform: translateX(-50%); } }
.mq-chip {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 16px; font-size: .875rem; font-weight: 500; color: var(--ink-2);
}
.mq-chip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-200); }

/* ---------- Секции ---------- */
.section { position: relative; padding: clamp(72px, 10vw, 128px) 0; }
.band-blue { background: var(--band-blue); border-block: 1px solid var(--border); }
.band-warm { background: var(--band-warm); border-block: 1px solid var(--border); }
.sec-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }

/* плашки-акценты на иллюстрациях секций (стекло как в hero) */
.split-media { position: relative; }
.hcard.mc { flex-direction: row; align-items: center; gap: 12px; z-index: 3; }
.mc-tl { top: -16px; left: -12px; animation-delay: -2.2s; }
.mc-tr { top: -16px; right: -12px; animation-delay: -3.8s; }
.mc-bl { bottom: 13%; left: -14px; animation-delay: -1.2s; }
.mc-br { bottom: 13%; right: -14px; animation-delay: -4.9s; }
@media (max-width: 700px) {
  .hcard.mc { padding: 14px 16px; }
  .mc-tl { left: -4px; } .mc-tr { right: -4px; }
  .mc-bl { left: -4px; bottom: 12%; } .mc-br { right: -4px; bottom: 12%; }
}

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.flip > .split-media { order: -1; }

.fact-list { list-style: none; padding: 0; }
.fact-list li { padding-left: 30px; position: relative; margin-bottom: 14px; color: var(--ink-2); }
.fact-list li strong { color: var(--ink); }
.fact-list li::before {
  content: ''; position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px; border-radius: 6px;
  background: var(--accent-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%234A57D4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.takeaway {
  font-weight: 600; font-size: 1.0625rem; color: var(--ink);
  border-left: 3px solid var(--accent-400); padding-left: 16px; max-width: 56ch;
}
.after-title-lock { white-space: nowrap; }
.after-title-morph {
  width: .82em; height: .82em; margin-left: .2em; vertical-align: -.1em;
  color: var(--accent-600); overflow: visible;
}
.after-title-morph path {
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.after-title-vault-dot {
  fill: currentColor; stroke: none;
  opacity: 0; animation: after-vault-dot 5s linear infinite;
}
.after-title-calendar-details { animation: after-calendar-details 5s linear infinite; }
.after-title-static { display: none; }
@keyframes after-calendar-details {
  0%, 18% { opacity: 1; }
  38%, 68% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes after-vault-dot {
  0%, 18% { opacity: 0; }
  38%, 68% { opacity: 1; }
  100% { opacity: 0; }
}

/* панель-подложка для больших скриншотов */
.shot-panel {
  position: relative; background: var(--accent-50); border-radius: var(--r-panel);
  padding: clamp(20px, 3vw, 40px) clamp(20px, 3vw, 40px) 0; overflow: hidden;
}
.shot-panel::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 55% at 50% 108%, rgba(92,107,232,.12), transparent 70%);
}
.browser-frame {
  position: relative; border: 1px solid var(--border-strong); border-bottom: 0;
  border-radius: 16px 16px 0 0; overflow: hidden; background: #fff;
  box-shadow: var(--shadow-screenshot);
}
.browser-frame .bar {
  display: flex; align-items: center; gap: 6px;
  height: 38px; padding: 0 14px; background: var(--surface-sunken);
  border-bottom: 1px solid var(--border);
}
.browser-frame .bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); }
.browser-frame .addr {
  margin-left: 10px; background: #fff; border: 1px solid var(--border);
  border-radius: 999px; font-size: .72rem; color: var(--ink-3); padding: 3px 12px;
}
.phone-frame {
  width: min(300px, 100%); margin: 0 auto;
  background: #fff; border: 1px solid var(--border-strong);
  border-radius: var(--r-phone); padding: 10px; box-shadow: var(--shadow-screenshot);
}
.phone-frame .screen { border-radius: 34px; overflow: hidden; }
.media-pair { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(16px, 2.5vw, 28px); align-items: start; }
figure { margin: 0; }
figcaption { font-size: .84rem; color: var(--ink-3); margin-top: 12px; text-align: center; }

/* ---------- Шаги (self-serve) ---------- */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; position: relative; }
.step-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-bento); padding: 28px; box-shadow: var(--shadow-card);
}
.step-card .num {
  font-size: 2rem; font-weight: 620; color: var(--accent-200); line-height: 1; margin-bottom: 12px;
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step-card p { font-size: .9375rem; color: var(--ink-2); margin: 0; }
.steps-note { margin-top: 22px; font-weight: 600; color: var(--ink); }
.step-help {
  grid-column: 1 / -1; display: flex; gap: 18px; align-items: flex-start;
  background: var(--accent-50); border-color: var(--accent-100);
}
.help-badge {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--accent-600); color: #fff;
  font-size: 1.4rem; font-weight: 620; line-height: 1;
  box-shadow: var(--shadow-btn);
}
.step-help h3 { margin-bottom: 6px; }
.step-help p { max-width: 72ch; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-bento); box-shadow: var(--shadow-card);
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 22px;
  font-weight: 620; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; flex: none; width: 9px; height: 9px; margin-top: -3px;
  border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(225deg); margin-top: 4px; }
.faq-item > p { padding: 0 22px 18px; margin: 0; color: var(--ink-2); font-size: .9375rem; }
.faq-item a { color: var(--accent-600); }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.bento > * { grid-column: span 4; }
.bento .b7 { grid-column: span 7; }
.bento .b5 { grid-column: span 5; }
.bento .b6 { grid-column: span 6; }
.bento-card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-bento); padding: 26px; box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.bento-card:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: var(--shadow-lift); }
.bento-card h3 { font-size: 1.1rem; margin: 14px 0 6px; }
.bento-card p { font-size: .9375rem; color: var(--ink-2); margin: 0; }
.b-ico {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-100); color: var(--accent-600);
}
.b-ico.warm { background: var(--pulse-100); color: var(--pulse-ink); }
.b-ico svg { width: 20px; height: 20px; }
/* Сцена сборки в секции конструктора: палитра → готовое приложение */
.palette-viz {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  gap: clamp(48px, 8vw, 110px);
  background: linear-gradient(135deg, var(--accent-50), #fff 52%, var(--pulse-100));
  border: 1px solid var(--border); border-radius: var(--r-panel);
  padding: clamp(22px, 3.5vw, 40px) clamp(22px, 3.5vw, 40px) clamp(52px, 6vw, 68px);
  box-shadow: var(--shadow-card); overflow: visible;
}
.pz-palette { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; flex: 1; max-width: 240px; }
.pz-tile {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 12px; font-size: .8rem; font-weight: 620; color: var(--ink);
  box-shadow: var(--shadow-card); min-height: 74px; justify-content: center;
}
.pz-ico { width: 28px; height: 28px; border-radius: 9px; background: var(--accent-50); color: var(--accent-600); display: grid; place-items: center; }
.pz-ico svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pz-ghost { background: transparent; border: 1.5px dashed var(--accent-200); box-shadow: none; }
.pz-fly {
  position: absolute; left: 37%; top: 5%; z-index: 3; width: 112px;
  border-color: var(--accent-400); box-shadow: var(--shadow-lift);
  transform: rotate(5deg);
  animation: float-chip 5s ease-in-out infinite alternate;
}
.pz-fly .pz-ico { background: var(--pulse-100); color: var(--pulse-ink); }
.pz-arc { position: absolute; left: 25%; top: 22%; width: 36%; height: 40%; pointer-events: none; z-index: 1; }
.pz-phone {
  flex: none; width: clamp(140px, 15vw, 168px); position: relative;
  background: #fff; border: 1.5px solid var(--border-strong); border-radius: 24px;
  box-shadow: var(--shadow-screenshot); padding: 20px 12px 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.pz-notch { position: absolute; top: 7px; left: 50%; translate: -50% 0; width: 34px; height: 6px; border-radius: 999px; background: var(--border-strong); }
.pz-appbar { display: flex; align-items: center; gap: 6px; padding: 4px 2px 2px; }
.pz-appbar i { width: 14px; height: 14px; border-radius: 5px; background: var(--accent-600); }
.pz-appbar b { flex: 1; height: 7px; border-radius: 4px; background: var(--surface-sunken); }
.pz-block { border-radius: 9px; padding: 8px; display: flex; flex-direction: column; gap: 5px; }
.pz-block i { display: block; height: 6px; border-radius: 3px; background: rgba(23,26,43,.16); }
.pz-block i.w2 { width: 72%; }
.pz-block i.w3 { width: 52%; }
.pz-feed { background: var(--pulse-100); border: 1px solid var(--pulse-500); }
.pz-feed i { background: rgba(14,117,104,.3); }
.pz-agenda { background: var(--accent-50); border: 1px solid var(--accent-200); }
.pz-agenda i { background: rgba(74,87,212,.25); }
.pz-slot { border: 1.5px dashed var(--pulse-500); border-radius: 9px; height: 34px; background: rgba(44,185,168,.07); }
.pz-map { background: var(--accent-100); border: 1px solid var(--accent-400); align-items: center; justify-content: center; min-height: 40px; color: var(--accent-600); }
.pz-map svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.pz-tabs { display: flex; justify-content: space-around; padding-top: 4px; border-top: 1px solid var(--border); }
.pz-tabs i { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); }
.pz-tabs i.on { background: var(--accent-600); }
#builder .hcard.mc-tr { top: -26px; right: -16px; }
#builder .hcard.mc-bl { bottom: 8%; }
@media (max-width: 700px) {
  .palette-viz { gap: 20px; }
  .pz-fly { left: 34%; top: 6%; width: 104px; }
}

/* Конструктор-виньетка в bento (нарисована, не скриншот) */
/* .builder-viz: базовая панель задана выше */
.bv-list { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.bv-row {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 10px 12px; font-size: .84rem; font-weight: 600; color: var(--ink);
  box-shadow: 0 1px 2px rgba(23,26,43,.04);
}
.bv-row.bv-drag {
  border-color: var(--accent-400); box-shadow: var(--shadow-lift);
  transform: translateY(-2px) rotate(-1.2deg);
}
.bv-grip {
  flex: none; width: 10px; height: 14px;
  background: radial-gradient(circle, var(--border-strong) 1.4px, transparent 1.5px);
  background-size: 5px 5px;
}
.bv-ico { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--accent-50); color: var(--accent-600); display: grid; place-items: center; }
.bv-ico svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bv-name { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bv-eye { flex: none; color: var(--ink-3); }
.bv-eye svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.bv-badge {
  flex: none; font-size: .6rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent-100); border-radius: 999px; padding: 2px 7px;
}
.bv-add {
  border: 1.5px dashed var(--accent-200); border-radius: 12px; padding: 9px 12px;
  font-size: .84rem; font-weight: 600; color: var(--accent-600); text-align: center;
}
.bv-phone {
  flex: none; width: 96px; border-radius: 18px; position: relative; align-self: stretch;
  background: #fff; border: 1.5px solid var(--border-strong);
  box-shadow: 0 1px 2px rgba(23,26,43,.04); padding: 16px 10px 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.bv-notch { position: absolute; top: 6px; left: 50%; translate: -50% 0; width: 26px; height: 5px; border-radius: 999px; background: var(--border-strong); }

/* мини-виньетки малых bento-карточек */
.bento-card { display: flex; flex-direction: column; align-items: flex-start; }
/* виньетка = вставная панель: растёт до низа карточки, содержимое центрировано —
   ни дыр, ни полос-обрубков; спокойный плоский фон вместо градиента */
.bento-card .mini-viz, .bento-card .pulse-viz, .bento-card .builder-viz {
  flex: 1; align-self: stretch;
  margin: 18px 0 0; border: 0; border-radius: 16px;
  background: var(--band-blue);
  padding: 16px; display: flex; flex-direction: column; justify-content: center; gap: 10px;
}
.bento-card .builder-viz { flex-direction: row; align-items: center; gap: 14px; }
/* .mini-viz: базовая панель задана выше (bento-card …) */
.mv-card {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 10px 12px; box-shadow: 0 1px 2px rgba(23,26,43,.04);
  font-size: .8125rem; flex-wrap: wrap;
}
.mv-card.mv-col { flex-direction: column; align-items: stretch; gap: 5px; }
.mv-ico { flex: none; width: 28px; height: 28px; border-radius: 9px; background: var(--accent-50); color: var(--accent-600); display: grid; place-items: center; }
.mv-ico svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mv-t { flex: 1; min-width: 0; font-weight: 620; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mv-chip {
  flex: none; font-size: .7rem; font-weight: 700; color: var(--accent-ink);
  background: var(--accent-100); border-radius: 999px; padding: 3px 9px; white-space: nowrap;
}
.mv-chip.mv-teal { color: var(--pulse-ink); background: var(--pulse-100); }
.mv-row { display: flex; justify-content: space-between; gap: 12px; font-size: .78rem; color: var(--ink-2); }
.mv-v { font-weight: 620; color: var(--ink); }
.mv-bar { height: 5px; border-radius: 4px; background: var(--surface-sunken); overflow: hidden; }
.mv-bar i { display: block; height: 100%; border-radius: 4px; background: var(--accent-400); }
.mv-check { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--pulse-100); color: var(--pulse-ink); display: grid; place-items: center; }
.mv-check svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.mv-badge {
  position: absolute; left: 8px; bottom: 8px;
  font-size: .7rem; font-weight: 700; color: var(--accent-ink);
  background: rgba(255,255,255,.92); border: 1px solid var(--border); border-radius: 999px; padding: 3px 9px;
}

/* Pulse-виньетка в bento (нарисована, не скриншот) */
/* .pulse-viz: базовая панель задана выше */
.pv-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 1px 2px rgba(23,26,43,.04); }
.pv-main { display: flex; gap: 14px; padding: 16px 18px; align-items: flex-start; }
.pv-ico {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-100); color: var(--accent-600); display: grid; place-items: center;
}
.pv-ico svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.pv-col { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.pv-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--pulse-ink);
}
.pv-chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--pulse-500); animation: pulse-dot 2s infinite; }
.pv-title { font-weight: 660; font-size: 1.05rem; color: var(--ink); letter-spacing: -.01em; }
.pv-sub { font-size: .875rem; color: var(--ink-2); }
.pv-next { display: flex; align-items: center; gap: 12px; padding: 12px 18px; width: 90%; align-self: flex-end; }
.pv-time { font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--accent-600); white-space: nowrap; }
.pv-title2 { font-weight: 620; font-size: .92rem; color: var(--ink); flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pv-live {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-size: .75rem; font-weight: 600; color: var(--pulse-ink);
  background: var(--pulse-100); border-radius: 999px; padding: 4px 10px;
}
.pv-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--pulse-500); }

.bento-shot { margin: 20px -26px -26px; }
.bento-shot img { width: 100%; display: block; border-top: 1px solid var(--border); }

/* ---------- Приватность ---------- */
.privacy-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.privacy-item { display: flex; gap: 14px; align-items: flex-start; }
.privacy-item .b-ico { flex: none; }
.privacy-item p { margin: 0; font-size: .9375rem; color: var(--ink-2); }
.privacy-item strong { display: block; color: var(--ink); font-size: 1rem; margin-bottom: 2px; }

/* ---------- Pricing ---------- */
@property --a { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.price-card {
  max-width: 640px; margin: 0 auto; position: relative;
  border: 1px solid transparent; border-radius: var(--r-panel);
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(from var(--a), var(--accent-200), var(--accent-500), var(--pulse-500), var(--accent-200)) border-box;
  animation: spin-border 8s linear infinite;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lift);
}
@keyframes spin-border { to { --a: 360deg; } }
.price-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.plan-name { font-size: 1.05rem; font-weight: 600; color: var(--ink-2); }
.price-line { display: flex; align-items: baseline; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.price-line .amount { font-size: clamp(2.6rem, 2rem + 2vw, 3.5rem); font-weight: 620; letter-spacing: -.02em; line-height: 1; font-feature-settings: "tnum"; }
.price-line .per { color: var(--ink-3); font-size: 1.05rem; font-weight: 500; }
.freebadge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--pulse-100); color: var(--pulse-ink);
  border-radius: 999px; padding: 7px 14px; font-size: .8125rem; font-weight: 600;
}
.freebadge .d { width: 6px; height: 6px; border-radius: 50%; background: var(--pulse-500); }
.plan-feats {
  list-style: none; padding: 0; margin: 26px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px;
}
.plan-feats li { margin: 0; padding-left: 28px; position: relative; font-size: .9375rem; color: var(--ink-2); }
.plan-feats li::before {
  content: ''; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 6px;
  background: var(--accent-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%234A57D4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.addons {
  max-width: 640px; margin: 28px auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 32px;
}
.addon {
  display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
  border-bottom: 1px dashed var(--border); padding: 12px 0;
}
.addon .aname { font-weight: 600; font-size: .9375rem; }
.addon .adesc { display: block; font-weight: 400; font-size: .8125rem; color: var(--ink-3); margin-top: 2px; }
.addon .aprice { font-weight: 620; font-size: .9375rem; white-space: nowrap; font-feature-settings: "tnum"; }

/* ---------- Почему Мостик ---------- */
.why-head { text-align: center; margin-inline: auto; }
.why-head .lead { margin-inline: auto; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  position: relative;
}
/* линия-связка между карточками: три моста — одна конструкция */
.why-grid::before {
  content: ''; position: absolute; top: 58px; left: 12%; right: 12%;
  border-top: 1px dashed var(--accent-200); z-index: 0;
}
.why-signal {
  position: absolute; z-index: 3; top: 58px; left: 54px;
  width: 9px; height: 9px; border-radius: 50%; pointer-events: none;
  background: var(--pulse-500);
}
.why-signal.rv {
  opacity: 0; transform: translate(-50%, -50%); transition: none;
}
.why-signal.rv.in {
  animation: why-signal-cross 2.8s cubic-bezier(.4, 0, .2, 1) .35s both;
}
@keyframes why-signal-cross {
  0% { left: 54px; opacity: 0; transform: translate(-50%, -50%) scale(.7); box-shadow: 0 0 0 0 rgba(44,185,168,.45); }
  8% { opacity: 1; transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 7px rgba(44,185,168,0); }
  50% { left: 50%; opacity: 1; transform: translate(-50%, -50%) scale(1); }
  92% { left: calc(100% - 54px); opacity: 1; transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 7px rgba(44,185,168,0); }
  100% { left: calc(100% - 54px); opacity: 0; transform: translate(-50%, -50%) scale(.7); box-shadow: 0 0 0 0 rgba(44,185,168,0); }
}
.why-card {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-bento); padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.why-card:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: var(--shadow-lift); }
.why-ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent-50); border: 1px solid var(--accent-100);
  color: var(--accent-600); margin-bottom: 18px;
}
.why-ico svg {
  width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.why-card h3 { font-size: 1.2rem; margin: 0 0 8px; }
.why-card p { font-size: .9375rem; color: var(--ink-2); margin: 0 0 18px; }
.why-space {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface-sunken); border: 1px solid var(--border);
  border-radius: 999px; padding: 5px 12px;
  font-size: .8125rem; font-weight: 620; color: var(--ink-2);
}
.why-space::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-400); }
.why-card.rv.in .why-space::before {
  animation: why-space-light 1s ease-out calc(.35s + var(--i, 0) * 1.05s) both;
}
@keyframes why-space-light {
  0%, 100% { background: var(--accent-400); transform: scale(1); box-shadow: 0 0 0 0 rgba(44,185,168,0); }
  35% { background: var(--pulse-500); transform: scale(1.45); box-shadow: 0 0 0 6px rgba(44,185,168,.16); }
}
.why-foot {
  margin: 28px 0 0; text-align: center;
  font-size: 1.05rem; font-weight: 600; color: var(--ink);
}
.why-aside {
  width: fit-content; margin: 20px auto 0; text-align: center;
  font-size: 1.05rem; font-weight: 600; line-height: 1.45; color: var(--pulse-ink);
}
.why-aside::before {
  content: ''; display: block; width: 38px; height: 1px;
  margin: 0 auto 16px; background: var(--accent-200); transform: rotate(-4deg);
}
.why-aside span {
  padding: 0 .18em .08em;
  background: linear-gradient(transparent 45%, var(--pulse-100) 45%);
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.why-aside-icon {
  width: 1.55em; height: 1.55em; margin-left: .5em; vertical-align: -.42em;
  color: var(--accent-600);
  overflow: visible;
}
.why-aside-icon-static { display: none; }
@media (prefers-reduced-motion: reduce) {
  .why-aside-icon-morph { display: none; }
  .why-aside-icon-static { display: block; }
}
.price-cta { width: 100%; margin-top: 4px; }

/* ---------- Финальный CTA-band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--dark-band); border-radius: var(--r-band);
  padding: clamp(48px, 7vw, 88px) clamp(24px, 5vw, 72px);
  color: #fff;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 80px);
  mask-image: linear-gradient(180deg, transparent, #000 40%);
}
.cta-band::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 50% 115%, rgba(92,107,232,.3), transparent 70%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band .grad-w { background: linear-gradient(92deg, #AAB4FF, #FFD873); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-band p { color: rgba(255,255,255,.72); }
.cta-band .ml-box { background: var(--dark-band-2); border-color: rgba(255,255,255,.14); box-shadow: none; }
.cta-band .ml-box:focus-within { border-color: var(--accent-400); box-shadow: 0 0 0 4px rgba(92,107,232,.25); }
.cta-band .ml-box input[type=email] { color: #fff; }
.cta-band .ml-box input[type=email]::placeholder { color: rgba(255,255,255,.45); }
.cta-band .mlconsent { color: rgba(255,255,255,.72); }
.cta-band .mlconsent a { color: #C7CDFF; text-decoration-color: rgba(199,205,255,.4); }
.cta-band .mlmicro { color: rgba(255,255,255,.55); }
.cta-band .ml-status.is-ok { color: #6FE0AE; }
.cta-band .ml-status.is-err { color: #FF9C9C; }
.cta-band .ml-status.is-pending { color: rgba(255,255,255,.6); }
.cta-bridge-icon {
  width: 28px; height: 18px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
}
.cta-bridge-icon path {
  d: path("M2 9 C10 9 18 9 34 9 C32 7 30 5 28 3 C30 5 32 7 34 9 C32 11 30 13 28 15");
  transition: d .45s cubic-bezier(.4, 0, .2, 1);
}
.cta-band .btn:is(:hover, :focus, :active) .cta-bridge-icon path {
  d: path("M4 14 C4 10 4 6 4 4 C8 4 14 12 20 12 C26 12 32 4 36 4 C36 7 36 10 36 14");
}

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-page); padding: 40px 0 56px; font-size: .9375rem; color: var(--ink-2); }
.footer-meta { display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center; justify-content: space-between; }
.footer-meta ul { display: flex; flex-wrap: wrap; gap: 8px 24px; list-style: none; margin: 0; padding: 0; }
.footer-meta li { margin: 0; }
.footer-meta a { color: var(--ink-2); }

/* ---------- Адаптив ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 20px; min-height: 0; }
  .ring, .ring.r2 { display: none; }
  /* одна колонка: карточки прижимаются к краям сцены, не вылезая за экран */
  .hc-poll { left: 0; top: 10%; }
  .hc-health { right: 0; top: 32%; }
  .hc-reminder { right: 0; top: -2%; }
  .hc-speaker { left: 2%; bottom: 4%; }
  .hc-venue { right: 2%; bottom: -2%; }
  .bento .b7, .bento .b5, .bento .b6 { grid-column: span 12; }
  .bento > * { grid-column: span 6; }
}
@media (max-width: 700px) {
  /* мобайл: телефон прямой, + две компактные карточки, без нагромождения */
  .phone { transform: none; }
  .hc-poll, .hc-health, .hc-venue { display: none; }
  .hc-reminder { right: -2px; top: 2%; max-width: 200px; }
  .hc-speaker { left: -2px; bottom: 5%; }
}
@media (max-width: 1140px) {
  .main-nav {
    display: none; position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-form); box-shadow: var(--shadow-lift);
    padding: 10px; z-index: 5;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { display: block; padding: 12px 14px; font-size: 1.05rem; }
  .burger { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .header-actions { margin-left: auto; }
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-grid::before, .why-signal { display: none; }
  .split { grid-template-columns: 1fr; }
  .split.flip > .split-media { order: 0; }
  .steps-row { grid-template-columns: 1fr; }
  .privacy-row { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .bento > *, .bento .b7, .bento .b5, .bento .b6 { grid-column: span 12; }
  .plan-feats { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
  .float-chip.fc1 { left: 0; }
  .float-chip.fc2 { right: 0; }
  .ml-box { flex-wrap: wrap; }
  .ml-box .btn { flex: 1 1 100%; }
}
@media (max-width: 480px) {
  .brand { font-size: 1.05rem; gap: 8px; }
  .brand-mark { width: 28px; height: 28px; }
  .brand .descr { display: none; }
  .nav-bar { gap: 10px; padding-left: 14px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .why-card { transition: none; }
  .rv { transition: none; opacity: 1; transform: none; }
  .phone, .hcard, .hero-badge .dot, .marquee-track, .price-card, .mv-scanline { animation: none; }
  .btn, .bento-card, .main-nav a { transition: none; }
  .after-title-animated, .why-signal { display: none; }
  .after-title-static { display: inline; }
  .why-card.rv.in .why-space::before { animation: none; }
  .cta-bridge-icon path,
  .cta-band .btn:is(:hover, :focus, :active) .cta-bridge-icon path {
    d: path("M2 9 C10 9 18 9 34 9 C32 7 30 5 28 3 C30 5 32 7 34 9 C32 11 30 13 28 15");
    transition: none;
  }
}

/* ============================================================
   Аккордеон виджетов + блок App Builder
   ============================================================ */
.builder-note { margin-top: 8px; font-size: .9375rem; color: var(--ink-3); }

/* акцентная ссылка-якорь на полный список блоков */
.jump-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 600; color: var(--accent-600);
  text-decoration: underline; text-decoration-color: var(--accent-200);
  text-underline-offset: 3px;
  transition: text-decoration-color .15s ease, color .15s ease;
}
.jump-link:hover { color: var(--accent-700); text-decoration-color: var(--accent-600); }
.jump-arr { transition: transform .2s ease; }
.jump-link:hover .jump-arr { transform: translateY(2px); }
@media (prefers-reduced-motion: reduce) { .jump-link, .jump-arr { transition: none; } }
.widgets-trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; margin-top: 28px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 18px 22px; cursor: pointer;
  font-family: var(--ff); font-size: 1rem; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-card);
  transition: border-color .18s ease, box-shadow .2s ease;
}
.widgets-trigger:hover { border-color: var(--border-strong); box-shadow: var(--shadow-lift); }
.widgets-trigger .tlabel { display: flex; align-items: center; gap: 12px; text-align: left; }
.widgets-trigger .tnum {
  background: var(--accent-100); color: var(--accent-600);
  border-radius: 999px; padding: 4px 12px; font-size: .875rem; font-weight: 620;
  font-feature-settings: "tnum"; white-space: nowrap;
}
.widgets-trigger .chev { width: 20px; height: 20px; flex: none; color: var(--ink-3); transition: transform .25s var(--ease-out); }
.widgets-trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }
.widgets-panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease-out);
}
.widgets-panel.open { grid-template-rows: 1fr; }
.widgets-panel > .widgets-inner { overflow: hidden; }
.widgets-inner { display: grid; gap: 20px; padding-top: 4px; }
.widgets-panel.open > .widgets-inner { padding-top: 20px; }
.wgroup {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 18px 20px;
}
.wglabel {
  display: flex; align-items: center; gap: 8px;
  font-size: .8125rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 12px;
}
.wgnum {
  background: var(--surface-sunken); color: var(--ink-2);
  border-radius: 999px; padding: 2px 8px; font-size: .75rem; letter-spacing: 0;
  font-feature-settings: "tnum";
}
.wchips { display: flex; flex-wrap: wrap; gap: 7px; }
.wchip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg-page); border: 1px solid var(--border); border-radius: 999px;
  padding: 6px 13px 6px 10px; font-size: .875rem; color: var(--ink-2);
  transition: border-color .15s ease, color .15s ease;
}
/* иконки Lucide — те же, что в конструкторе админки: наружу отдаём только контур */
.wchip svg {
  flex: none; width: 15px; height: 15px; color: var(--accent-500);
  fill: none; stroke: currentColor; stroke-width: 1.9;
  stroke-linecap: round; stroke-linejoin: round;
  transition: color .15s ease;
}
.wchip:hover { border-color: var(--accent-200); color: var(--ink); }
.wchip:hover svg { color: var(--accent-600); }
@media (prefers-reduced-motion: reduce) {
  .widgets-panel, .widgets-trigger .chev, .widgets-trigger, .wchip { transition: none; }
}

/* ============================================================
   Юридические страницы (общий шаблон и цвета)
   ============================================================ */
.legal { padding: clamp(48px, 7vw, 88px) 0 clamp(64px, 8vw, 104px); }
.legal-inner { max-width: 760px; margin: 0 auto; }
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .9375rem; font-weight: 500; color: var(--accent-600);
  text-decoration: none; margin-bottom: 36px;
}
.back-link:hover { text-decoration: underline; }
.back-link svg { width: 16px; height: 16px; }
.legal h1 { font-size: clamp(2rem, 1.4rem + 2vw, 2.75rem); margin-bottom: 8px; }
.legal-meta { font-size: .875rem; color: var(--ink-3); margin: 0 0 40px; }
.legal-body { color: var(--ink-2); line-height: 1.75; }
.legal-body h2 {
  font-size: 1.3rem; font-weight: 600; color: var(--ink);
  margin: 40px 0 12px; letter-spacing: -.01em;
}
.legal-body h3 { font-size: 1.05rem; margin: 28px 0 8px; color: var(--ink); }
.legal-body p { margin: 0 0 14px; }
.legal-body ul, .legal-body ol { margin: 0 0 16px; padding-left: 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-body strong { color: var(--ink); }
.legal-body a { color: var(--accent-600); }
.legal-body table {
  width: 100%; border-collapse: collapse; margin: 0 0 18px; font-size: .9375rem;
}
.legal-body th, .legal-body td {
  border: 1px solid var(--border); padding: 10px 12px; text-align: left; vertical-align: top;
}
.legal-body th { background: var(--surface-sunken); color: var(--ink); font-weight: 600; }
.offer-fallback {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 20px 22px;
}

/* ---------- Журнал ---------- */
.article-body table {
  width: 100%; border-collapse: collapse; margin: 20px 0 8px;
  font-size: .9rem; line-height: 1.5;
}
.article-body th, .article-body td {
  border: 1px solid var(--border); padding: 10px 12px; text-align: left; vertical-align: top;
}
.article-body th { background: var(--surface-sunken); color: var(--ink); font-weight: 620; }
.article-body blockquote {
  margin: 20px 0; padding: 14px 20px; border-left: 3px solid var(--accent-600);
  background: var(--accent-50); border-radius: 0 10px 10px 0; color: var(--ink);
}
.article-body blockquote p { margin: 0 0 .4em; }
.article-body blockquote p:last-child { margin: 0; font-size: .875rem; color: var(--ink-3); }
@media (max-width: 640px) {
  .article-body { overflow-x: visible; }
  .article-body table { display: block; overflow-x: auto; }
}
/* ---------- Журнал: блоки-акцентов в статьях ----------
   Три компонента выделения ключевых мыслей: .art-callout (плашка,
   модификатор -pulse — бирюзовая), .art-big (крупная мысль-deck),
   blockquote.art-quote (цитата с крупной типографикой). */
.article-body .art-callout {
  margin: 28px 0;
  padding: 20px 24px;
  background: var(--accent-50);
  border-left: 4px solid var(--accent-500);
  border-radius: 4px 16px 16px 4px;
  color: var(--accent-ink);
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 500;
}
.article-body .art-callout-pulse {
  background: var(--pulse-100);
  border-left-color: var(--pulse-500);
  color: var(--pulse-ink);
}
.article-body .art-big {
  margin: 32px 0;
  font-size: clamp(1.3rem, 1.05rem + 1.2vw, 1.6rem);
  line-height: 1.4;
  font-weight: 650;
  letter-spacing: -.015em;
  color: var(--ink);
}
.article-body blockquote.art-quote {
  margin: 30px 0;
  padding: 4px 0 4px 26px;
  border-left: 4px solid var(--pulse-500);
  background: none;
  border-radius: 0;
  color: var(--ink);
}
.article-body blockquote.art-quote p,
.article-body blockquote.art-quote p:last-child {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.5;
  font-weight: 550;
  color: var(--ink);
}
.article-body blockquote.art-quote footer {
  margin-top: 10px; font-size: .9rem; font-weight: 400; color: var(--ink-3);
}

.blog-list { display: grid; gap: 14px; }
.blog-card {
  display: block; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-bento); padding: 22px 24px; box-shadow: var(--shadow-card);
  text-decoration: none; transition: box-shadow .2s ease, transform .15s ease;
}
.blog-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.blog-card h2 { font-size: 1.2rem; margin: 0 0 6px; color: var(--ink); }
.blog-card p { font-size: .9375rem; color: var(--ink-2); margin: 0 0 10px; }
.blog-date { font-size: .8125rem; color: var(--ink-3); }

/* no-JS: панель 53 блоков раскрыта, триггер спрятан (краулеры и выключенный JS) */
html.no-js .widgets-panel { grid-template-rows: 1fr; }
html.no-js .widgets-trigger { display: none; }
.footer-about { font-size: .875rem; color: var(--ink-3); max-width: 76ch; margin: 0 0 18px; }

/* hero: плашки компактнее секционных — акцент на телефоне */
.hero-visual .hcard { padding: 14px 16px; border-radius: 18px; font-size: .8125rem; gap: 7px; }
.hero-visual .hc-q { font-size: .875rem; }
.hero-visual .hc-s { font-size: .8125rem; }
.hero-visual .hc-k { font-size: .68rem; }
.hero-visual .hc-k2 { font-size: .68rem; }
.hero-visual .hc-k svg { width: 13px; height: 13px; }
.hero-visual .hc-ico, .hero-visual .hc-ava, .hero-visual .hc-map { width: 34px; height: 34px; border-radius: 10px; }
.hero-visual .hc-ava { border-radius: 50%; font-size: .8rem; }
.hero-visual .hc-ico svg { width: 17px; height: 17px; }
.hero-visual .hc-map svg { width: 16px; height: 16px; }
.hero-visual .hc-stats { gap: 13px; }
.hero-visual .hc-stats strong { font-size: 1.02rem; }
.hero-visual .hc-stats span { font-size: .7rem; }
.hero-visual .hc-spark { height: 22px; margin-top: 3px; }
.hero-visual .hc-f { font-size: .72rem; }

/* ===== графика виньеток v2 (художественный проход) ===== */
/* Pulse: стопка карточек — глубина */
.pv-stack { position: relative; }
.pv-ghostcard { position: absolute; left: 14px; right: -6px; top: 12px; bottom: -6px; border-radius: 14px; background: #fff; border: 1px solid var(--border); opacity: .55; }
.pv-stack .pv-main { position: relative; z-index: 1; }
.pv-react { display: flex; gap: 14px; align-items: center; margin-top: 7px; }
.pv-r { display: inline-flex; gap: 5px; align-items: center; font-size: .72rem; font-weight: 600; color: var(--ink-3); }
.pv-r svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pv-seen { margin-left: auto; font-weight: 500; }

/* конструктор: телефон с живыми блоками */
.bv-s { display: flex; gap: 6px; border-radius: 8px; padding: 6px 7px; align-items: center; }
.bv-s > span:last-child { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.bv-feed { background: var(--pulse-100); border: 1px solid var(--pulse-500); }
.bv-dot { flex: none; width: 10px; height: 10px; border-radius: 50%; background: var(--pulse-500); }
.bv-agenda { background: var(--accent-50); border: 1px solid var(--accent-200); }
.bv-tick { flex: none; width: 3px; height: 16px; border-radius: 2px; background: var(--accent-400); }
.bv-l { display: block; height: 4px; border-radius: 2px; background: rgba(43,51,144,.25); }
.bv-feed .bv-l { background: rgba(14,117,104,.32); }
.bv-l.w1 { width: 86%; } .bv-l.w2 { width: 62%; } .bv-l.w3 { width: 42%; }
.bv-slot { border: 1.5px dashed var(--pulse-500); background: rgba(44,185,168,.06); justify-content: center; min-height: 26px; color: var(--pulse-ink); }
.bv-slot svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; }
.bv-tabs { display: flex; justify-content: space-around; padding-top: 6px; margin-top: auto; border-top: 1px solid var(--border); }
.bv-tabs i { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); }
.bv-tabs i.on { background: var(--accent-600); }

/* мгновенные обновления: OS-тост с волнами доставки */
.mv-toast { position: relative; overflow: hidden; }
.mv-rings i { position: absolute; left: 30px; top: 50%; translate: -50% -50%; border: 1px solid var(--accent-200); border-radius: 50%; width: 74px; height: 74px; opacity: .55; }
.mv-rings i:nth-child(2) { width: 118px; height: 118px; opacity: .3; }
.mv-appico { flex: none; width: 34px; height: 34px; color: var(--accent-600); position: relative; z-index: 1; }
.mv-appico svg { width: 100%; height: 100%; }
.mv-col { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; position: relative; z-index: 1; }
.mv-sub { font-size: .75rem; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* опрос: шапка + градиентные бары */
.mv-col2 { flex-direction: column; align-items: stretch; gap: 6px; }
.mv-pollhead { display: flex; justify-content: space-between; align-items: baseline; font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--accent-600); margin-bottom: 2px; }
.mv-pollhead b { font-weight: 600; letter-spacing: 0; text-transform: none; color: var(--ink-3); }

/* QR: настоящий узор + скан-линия + галочка с кольцом */
.mv-scan { position: relative; }
.mv-qrtile { flex: none; width: 46px; height: 46px; border-radius: 10px; border: 1px solid var(--border); background: #fff; padding: 3px; overflow: hidden; }
.mv-qrtile svg { width: 100%; height: 100%; display: block; }
.mv-scanline { animation: scanline 2.6s ease-in-out infinite; }
@keyframes scanline { 0%, 100% { transform: translateY(3px); } 50% { transform: translateY(38px); } }
.mv-check { position: relative; }
.mv-check i { position: absolute; inset: -4px; border: 1.5px solid var(--pulse-500); border-radius: 50%; opacity: .35; }

/* карта: SVG-сцена */
.mv-map {
  position: relative; flex: 1; min-height: 112px; border-radius: 12px; overflow: hidden;
  background: #fff; border: 1px solid var(--border); box-shadow: 0 1px 2px rgba(23,26,43,.04);
}
.mv-mapsvg { position: absolute; inset: 0; width: 100%; height: 100%; }
.mv-mapsvg text { font-family: var(--ff); }

/* vault: стопка файлов */
.mv-files { display: flex; flex-direction: column; gap: 8px; }
.mv-fico { flex: none; width: 32px; height: 32px; border-radius: 10px; background: var(--accent-50); color: var(--accent-600); display: grid; place-items: center; }
.mv-fico svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mv-back { width: 90%; align-self: flex-end; opacity: .85; padding: 8px 12px; }

/* ============ PRE-LAUNCH: попап «заявка принята» (lead-dialog) ============
   Показывается после успешной отправки формы вместо мгновенного magic-link
   (lea-docs#1061, вариант-попап). Убрать вместе с разметкой и JS-обвязкой
   при сентябрьском запуске (маркеры PRE-LAUNCH). */
/* Браузеры без нативного <dialog> (Safari <15.4, Firefox <98) не имеют
   UA-правила dialog:not([open]){display:none} — без этой строки карточка
   рендерилась бы в потоке страницы ещё до отправки формы. */
.lead-dialog:not([open]) { display: none; }
.lead-dialog {
  border: 0;
  border-radius: 28px;
  padding: 40px 36px 32px;
  max-width: min(440px, calc(100vw - 32px));
  width: 100%;
  text-align: center;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(23, 26, 43, .28);
}
.lead-dialog::backdrop {
  background: rgba(20, 22, 43, .55);
  backdrop-filter: blur(4px);
}
.lead-dialog[open] { animation: ld-in .28s cubic-bezier(.2, .9, .3, 1.2); }
@media (prefers-reduced-motion: reduce) {
  .lead-dialog[open] { animation: none; }
}
@keyframes ld-in {
  from { opacity: 0; transform: translateY(14px) scale(.96); }
  to { opacity: 1; transform: none; }
}
.lead-dialog h3 { font-size: 1.5rem; margin: 18px 0 10px; }
.lead-dialog p { color: var(--ink-2); line-height: 1.55; margin: 0 0 22px; }
.lead-dialog .ld-email { color: var(--ink); font-weight: 600; overflow-wrap: anywhere; }
.ld-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--pulse-100); color: var(--pulse-ink);
}
.ld-ico svg { width: 30px; height: 30px; }
.ld-ok { min-width: 180px; }
.ld-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border: 0; border-radius: 50%;
  background: var(--surface-sunken); color: var(--ink-3);
  font-size: 22px; line-height: 1; cursor: pointer;
}
.ld-close:hover { background: var(--border); color: var(--ink); }
