/* ═══════════════════════════════════════════════════════════
   АУРА AI — дизайн-система (СВЕТЛАЯ)
   Референсы: elevenlabs.io (светлая база: тёплый белый фон,
   серые панели, чёрные кнопки-пилюли, сферы) + trysasha.ru
   (структура секций, пунктирная сетка, тарифы-ряды)
   Бренд-отличие: «аура» — градиентное свечение фиолет → бирюза
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Фон и поверхности (тёплый белый, как у Элевен Лабс) */
  --bg: #F7F3EB;
  --bg-elev: #F2ECE1;
  --panel: #EDE6D9;
  --panel-hl: #E7DFD0;
  --card-white: #FFFDF9;

  /* Линии */
  --line: rgba(74, 46, 39, 0.12);
  --line-strong: rgba(74, 46, 39, 0.26);
  --dash: rgba(74, 46, 39, 0.13);

  /* Текст */
  --ink: #231815;
  --ink-dim: #6B5A53;
  --ink-faint: #9C8B82;

  /* Аура — фирменный градиент (на светлом чуть глубже) */
  --aura-violet: #8B7CFF;
  --aura-violet-deep: #6553E8;
  --aura-teal: #4ED0C2;
  --aura-teal-deep: #17958A;
  --aura-text: #6553E8;

  /* Шоколад — второй голос бренда */
  --brown: #4A2E27;
  --brown-deep: #2A1E1A;
  --brown-soft: rgba(74, 46, 39, 0.07);

  /* Типографика */
  --font-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Геометрия */
  --container: 1200px;
  --radius: 14px;
  --radius-l: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; margin: 0; text-wrap: balance; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
b { font-weight: 600; }
img, svg { max-width: 100%; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; }

/* ── Пунктирные направляющие колонок (приём Саши, на светлом) ── */
.guides {
  position: fixed;
  inset: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 0;
}
.guides i {
  width: 1px;
  background-image: linear-gradient(to bottom, var(--dash) 55%, transparent 45%);
  background-size: 1px 12px;
}
.guides i:nth-child(2) { margin: 0 auto; }

main, .footer, .nav { position: relative; z-index: 1; }

/* ═══════════ КНОПКИ ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn .ic { width: 15px; height: 15px; flex: none; }
/* Главная — чёрная пилюля, как у Элевен Лабс */
.btn-solid { background: var(--brown); color: #FBF7F0; }
.btn-solid:hover { background: var(--brown-deep); }
/* Вторичная — белая пилюля с обводкой */
.btn-ghost { background: var(--card-white); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--line-strong); }
.btn-s { padding: 11px 18px; font-size: 14px; }
.btn-l { padding: 17px 32px; font-size: 16px; }
.btn:focus-visible { outline: 2px solid var(--aura-violet-deep); outline-offset: 3px; }

/* ═══════════ НАВИГАЦИЯ ═══════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo b {
  font-weight: 600;
  margin-left: 4px;
  color: var(--aura-text);
}
/* Мини-версия большой сферы из хиро (статичная картинка) */
.logo-orb {
  width: 27px;
  height: 27px;
  margin-right: 12px;
  border-radius: 50%;
  background: url("../img/orb-mini.svg") center / cover no-repeat;
  box-shadow: 0 0 18px rgba(139, 124, 255, 0.5), 0 2px 8px rgba(20, 20, 24, 0.18);
  flex: none;
}
.nav-links { display: flex; gap: 28px; margin: 0 auto; }
.nav-links a {
  font-size: 14.5px;
  color: var(--ink-dim);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
/* Вход и регистрация: спокойные, не спорят с главной кнопкой */
.nav-login {
  font-size: 14.5px;
  color: var(--ink-dim);
  padding: 8px 6px;
  transition: color 0.15s ease;
}
.nav-login:hover { color: var(--ink); }
.nav-reg {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-faint);
  background: var(--card-white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: not-allowed;
}

/* ═══════════ ХИРО ═══════════ */
.hero {
  position: relative;
  padding: 120px 32px 130px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
/* Аура-свечение: на светлом — пастельное, нежное */
.hero-aura {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 620px;
  background:
    radial-gradient(ellipse 55% 45% at 42% 40%, rgba(139, 124, 255, 0.22), transparent 65%),
    radial-gradient(ellipse 50% 42% at 62% 52%, rgba(78, 208, 194, 0.16), transparent 65%);
  filter: blur(46px);
  pointer-events: none;
  animation: aura-drift 14s ease-in-out infinite alternate;
}
@keyframes aura-drift {
  from { transform: translateX(-54%) scale(1); }
  to   { transform: translateX(-46%) scale(1.06); }
}
.hero-waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.6;
}
.hero-waves path {
  fill: none;
  stroke: rgba(20, 20, 24, 0.08);
  stroke-width: 1.2;
}
.hero-inner { position: relative; max-width: 880px; margin: 0 auto; }
.hero-orb {
  position: relative;
  width: 92px;
  aspect-ratio: 1 / 1;
  margin: 30px auto 0;
}
.hero-orb canvas { display: block; width: 100%; height: 100%; border-radius: 50%; }
/* Сетка связей поверх ядра */
.orb-mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
/* Светлые линии на тёмном ядре: режим screen делает их ярче, не пересвечивая фон */
.orb-mesh { mix-blend-mode: screen; }
.mesh-lines * {
  fill: none;
  stroke: rgba(190, 205, 255, 0.5);
  stroke-width: 0.7;
}
.mesh-lines circle { stroke: rgba(214, 208, 255, 0.75); stroke-width: 1.1; }
.mesh-links use {
  fill: none;
  stroke: rgba(201, 193, 255, 0.45);
  stroke-width: 0.9;
  stroke-linecap: round;
}
/* Импульс-звонок, летящий по дуге */
.mesh-pings circle {
  fill: #FFFFFF;
  filter: drop-shadow(0 0 4px rgba(201, 193, 255, 0.95));
}
.mesh-pings .p2 { fill: #9BF0E4; filter: drop-shadow(0 0 4px rgba(126, 230, 216, 0.95)); }
.mesh-pings .p3 { fill: #D8D2FF; }
/* Узлы: точка + расходящаяся радар-волна */
.mesh-nodes .dot {
  fill: #FFFFFF;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.9));
}
.mesh-nodes .dot.t { fill: #9BF0E4; filter: drop-shadow(0 0 3px rgba(126, 230, 216, 0.9)); }
.mesh-nodes .halo {
  fill: none;
  stroke: rgba(201, 193, 255, 0.9);
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
  animation: mesh-halo 3s ease-out infinite;
}
.mesh-nodes .halo.t { stroke: rgba(126, 230, 216, 0.9); }
.mesh-nodes .d1 .halo { animation-delay: 0.5s; }
.mesh-nodes .d2 .halo { animation-delay: 1s; }
.mesh-nodes .d3 .halo { animation-delay: 1.5s; }
.mesh-nodes .d4 .halo { animation-delay: 2s; }
.mesh-nodes .d5 .halo { animation-delay: 2.5s; }
@keyframes mesh-halo {
  0% { transform: scale(0.5); opacity: 0.9; }
  70% { opacity: 0; }
  100% { transform: scale(3.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .mesh-nodes .halo { animation: none; opacity: 0.35; }
  .mesh-pings circle { display: none; }
}
/* Фолбэк, если WebGL недоступен: статичная аура-сфера */
.orb-fallback { background: radial-gradient(circle at 32% 30%, #C9C1FF 0%, var(--aura-violet) 45%, #241E4A 78%, #14101F 100%); }
.orb-fallback canvas { visibility: hidden; }
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aura-text);
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 26ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: 13.5px; color: var(--ink-faint); }

/* ═══════════ ПОЛОСА ЦИФР ═══════════ */
.strip { border-bottom: 1px solid var(--line); background: var(--card-white); }
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip-item { padding: 34px 28px; }
.strip-item + .strip-item { border-left: 1px solid var(--line); }
.strip-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(100deg, var(--ink) 40%, var(--aura-violet-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.strip-cap { font-size: 13.5px; line-height: 1.5; color: var(--ink-dim); }

/* ═══════════ СЕКЦИИ ═══════════ */
.section { padding: 110px 0; border-bottom: 1px solid var(--line); }
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aura-text);
  margin-bottom: 18px;
}
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.section-sub {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-dim);
  max-width: 600px;
}
.section-head-center .section-sub { margin-left: auto; margin-right: auto; }

/* ═══════════ КАРТОЧКИ ПРОБЛЕМЫ ═══════════ */
/* Серые панели на белом — фирменный приём Элевен Лабс */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--panel);
  border: 1px solid transparent;
  border-radius: var(--radius-l);
  padding: 28px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--ink-dim); }

.formula-band {
  margin-top: 56px;
  padding: 44px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background:
    radial-gradient(ellipse 60% 90% at 15% 0%, rgba(139, 124, 255, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 90% at 85% 100%, rgba(78, 208, 194, 0.09), transparent 60%),
    var(--card-white);
  text-align: center;
}
.formula-line {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 34px);
  letter-spacing: -0.01em;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: baseline;
}
.formula-line span { color: var(--aura-text); font-size: 0.75em; }
.formula-sub { margin: 16px auto 0; max-width: 560px; font-size: 15px; color: var(--ink-dim); }

/* ═══════════ ТЕХНОЛОГИИ ═══════════ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.tech-card {
  background: var(--panel);
  border: 1px solid transparent;
  border-radius: var(--radius-l);
  padding: 34px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.tech-card:hover { background: var(--panel-hl); border-color: var(--line); }
.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: var(--card-white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 22px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-faint); }
.dot-aura {
  background: radial-gradient(circle at 35% 30%, #C9C1FF, var(--aura-violet) 60%, var(--aura-teal));
  box-shadow: 0 0 8px rgba(139, 124, 255, 0.6);
}
.tech-card h3 { font-size: 22px; margin-bottom: 12px; letter-spacing: -0.01em; }
.tech-card > p { font-size: 15px; color: var(--ink-dim); margin-bottom: 20px; }
.tech-card ul { display: grid; gap: 9px; }
.tech-card li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--ink-dim);
}
.tech-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--aura-violet), var(--aura-teal));
}

/* ═══════════ БАЗЫ (сплит) ═══════════ */
.split {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: start;
}
.split-left { position: sticky; top: 110px; }
.split-right { display: grid; gap: 12px; }
.row-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.row-card h3 { font-size: 17px; margin-bottom: 6px; }
.row-card p { font-size: 14.5px; color: var(--ink-dim); }

/* ═══════════ ЭКОНОМИКА ═══════════ */
.vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.vs-col {
  background: var(--panel);
  border: 1px solid transparent;
  border-radius: var(--radius-l);
  padding: 34px;
}
.vs-col-hl {
  border-color: rgba(101, 83, 232, 0.35);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139, 124, 255, 0.12), transparent 70%),
    var(--card-white);
}
.vs-label { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 14px; }
.vs-col-hl .vs-label { color: var(--aura-text); }
.vs-price {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 22px;
}
.vs-list { display: grid; gap: 10px; }
.vs-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--ink-dim);
}
.vs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink-faint);
}
.vs-col-hl .vs-list li::before { background: linear-gradient(90deg, var(--aura-violet), var(--aura-teal)); }
.vs-mid {
  align-self: center;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.econ-note { margin-top: 28px; text-align: center; font-size: 15px; color: var(--ink-dim); }

/* ═══════════ ШАГИ ═══════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  background: var(--panel);
  border-radius: var(--radius-l);
  padding: 28px;
}
.step-n {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--aura-text);
  margin-bottom: 40px;
}
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--ink-dim); }

/* ═══════════ СТЕНОГРАММА ЗВОНКА ═══════════ */
.transcript {
  background: var(--card-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 30px 32px;
  display: grid;
  gap: 18px;
}
.transcript-title {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.line { display: grid; grid-template-columns: 64px 1fr; gap: 14px; align-items: baseline; }
.line p { font-size: 15px; line-height: 1.55; }
.who {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  padding-top: 2px;
}
.who-bot { color: var(--aura-text); }
.line:has(.who-bot) p { color: var(--ink); }
.line p { color: var(--ink-dim); }
.transcript-note {
  font-size: 13px;
  color: var(--ink-faint);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ═══════════ КЕЙСЫ ═══════════ */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.case-card {
  background: var(--panel);
  border-radius: var(--radius-l);
  padding: 30px;
}
.case-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(100deg, var(--ink) 40%, var(--aura-violet-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.case-num-text { font-size: 26px; padding-top: 8px; }
.case-card h3 { font-size: 19px; margin-bottom: 10px; }
.case-card p { font-size: 14.5px; color: var(--ink-dim); }

/* ═══════════ МАНИФЕСТ ═══════════ */
/* Манифест — тёмная шоколадная секция, второй голос бренда */
.manifesto-wrap {
  background: var(--brown-deep);
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.manifesto-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(760px 340px at 50% 0%, rgba(139, 124, 255, 0.16), transparent 70%);
  pointer-events: none;
}
.manifesto-wrap .container,
.manifesto-wrap .container-narrow { position: relative; z-index: 1; }
.manifesto-wrap .eyebrow { color: #B9AEFF; }
.manifesto-wrap .manifesto-text { color: #F5EFE6; }
.manifesto-wrap .manifesto-sign { color: #B9AEFF; }
.manifesto-wrap .btn-ghost {
  border-color: rgba(245, 239, 230, 0.28);
  color: #F5EFE6;
  background: transparent;
}
.manifesto-wrap .btn-ghost:hover {
  border-color: rgba(245, 239, 230, 0.55);
  background: rgba(245, 239, 230, 0.07);
}
.manifesto { text-align: center; }
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.8vw, 28px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.manifesto-sign {
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aura-text);
}
.manifesto-btn { margin-top: 28px; }

/* ═══════════ ТИЗЕРЫ НА ГЛАВНОЙ ═══════════ */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.teaser-card {
  display: block;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.teaser-card:hover { border-color: var(--line-strong); background: var(--panel-hl); }

/* ═══════════ ЦЕНА (принципы) ═══════════ */
.price-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.principle {
  background: var(--card-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 30px;
}
.principle-n {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--aura-text);
  margin-bottom: 34px;
}
.principle h3 { font-size: 19px; margin-bottom: 10px; }
.principle p { font-size: 14.5px; color: var(--ink-dim); }
.price-cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.price-cta-note { width: 100%; text-align: center; margin-top: 6px; font-size: 13.5px; color: var(--ink-faint); }
.cta-left { justify-content: flex-start; margin-top: 0; }

/* ═══════════ ТАРИФЫ (страница tarify.html, ряды как у Саши) ═══════════ */
.plans { display: grid; gap: 16px; align-content: start; }
.plan {
  background: var(--card-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  transition: border-color 0.2s ease;
}
.plan:hover { border-color: var(--line-strong); }
.plan-hl {
  border-color: rgba(101, 83, 232, 0.45);
  box-shadow: 0 10px 34px rgba(101, 83, 232, 0.08);
}
.plan-label {
  grid-column: 1 / -1;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aura-text);
}
.plan-main h3 { font-size: 24px; letter-spacing: -0.01em; margin-bottom: 10px; }
.plan-desc { font-size: 14.5px; color: var(--ink-dim); margin-bottom: 26px; }
.plan-price {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.plan-price span { font-size: 15px; color: var(--ink-dim); letter-spacing: 0; }
.plan-specs { display: grid; gap: 13px; align-content: start; }
.plan-specs li { border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.plan-specs li:last-child { border-bottom: none; padding-bottom: 0; }
.plan-specs b { display: block; font-size: 15px; }
.plan-specs span { font-size: 13.5px; color: var(--ink-faint); }
.plans-cta { margin-top: 30px; }
.plans-note { margin-top: 14px; font-size: 13px; color: var(--ink-faint); max-width: 34ch; }
.plans-section { padding-top: 72px; }

/* Конструктор «Свой пакет» */
.plan-custom { border-style: dashed; border-color: var(--line-strong); }
.custom-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: start; }
.custom-fields .btn { grid-column: 1 / -1; justify-content: center; margin-top: 4px; }
.field select {
  background: var(--card-white);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13.5px;
  padding: 12px 26px 12px 11px;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235C5C63' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}
.field select:focus { outline: none; border-color: var(--aura-violet-deep); }

/* ═══════════ КОМАНДА ═══════════ */
/* Раскладка 3+3: сооснователи сверху, команда снизу */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.team-card { display: grid; gap: 6px; align-content: start; text-align: center; }
.team-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-l);
  background: var(--panel);
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 12px;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Страховка единого стиля: любые фото приводятся к ч/б.
     Если серия цветная (вариант Б из PHOTO-GUIDE.md) — убери строку с filter */
  filter: grayscale(1);
}
.team-initial {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  color: var(--ink-faint);
  opacity: 0.55;
}
.team-card h3 { font-size: 19px; }
.team-card p { font-size: 14.5px; color: var(--ink-dim); }
.team-role { font-size: 13.5px; color: var(--ink-faint); }

/* ═══════════ БЕЗОПАСНОСТЬ (ряды с линиями, как у Саши) ═══════════ */
.sec-list { display: grid; align-content: start; }
.sec-item { padding: 26px 0; border-bottom: 1px solid var(--line); }
.sec-item:first-child { padding-top: 4px; }
.sec-item:last-child { border-bottom: none; }
.sec-item h3 { font-size: 18px; margin-bottom: 8px; }
.sec-item p { font-size: 14.5px; color: var(--ink-dim); max-width: 56ch; }

/* ═══════════ FAQ ═══════════ */
.faq-list { display: grid; gap: 10px; }
.faq-list details {
  background: var(--card-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 26px;
  transition: border-color 0.2s ease;
}
.faq-list details[open] { border-color: var(--line-strong); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-x {
  position: relative;
  width: 14px;
  height: 14px;
  flex: none;
}
.faq-x::before, .faq-x::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--ink-dim);
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.faq-x::before { width: 14px; height: 2px; }
.faq-x::after { width: 2px; height: 14px; }
details[open] .faq-x::after { transform: rotate(90deg); }
.faq-list details p { padding: 0 0 22px; font-size: 15px; color: var(--ink-dim); max-width: 62ch; }

/* ═══════════ ФИНАЛЬНЫЙ CTA ═══════════ */
.cta-final { position: relative; overflow: hidden; border-bottom: none; }
.cta-aura {
  position: absolute;
  bottom: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 820px;
  height: 520px;
  background:
    radial-gradient(ellipse 55% 45% at 50% 55%, rgba(139, 124, 255, 0.20), transparent 65%),
    radial-gradient(ellipse 45% 40% at 62% 45%, rgba(78, 208, 194, 0.14), transparent 65%);
  filter: blur(48px);
  pointer-events: none;
}
.demo-form {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; }
.field span { font-size: 13px; color: var(--ink-dim); }
.field input {
  background: var(--card-white);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  transition: border-color 0.15s ease;
  width: 100%;
}
.field input::placeholder { color: var(--ink-faint); }
.field input:focus { outline: none; border-color: var(--aura-violet-deep); }
.demo-form .btn { justify-content: center; margin-top: 8px; }
.form-note { font-size: 12.5px; color: var(--ink-faint); text-align: center; }
.form-note a { color: var(--aura-text); text-decoration: underline; text-underline-offset: 3px; }
.form-ok {
  text-align: center;
  font-size: 15px;
  color: var(--aura-teal-deep);
  padding: 10px 0 0;
}

/* ═══════════ ПЛАТФОРМА: текст и скриншот ═══════════ */
.plat-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 44px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.plat-row:first-of-type { border-top: none; padding-top: 0; }
.plat-rev .plat-text { order: 2; }
.plat-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aura-text);
  background: var(--aura-violet-soft, #EFECFF);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
}
.plat-text h3 { font-size: 26px; letter-spacing: -0.01em; margin-bottom: 12px; }
.plat-text p { font-size: 15.5px; color: var(--ink-dim); margin-bottom: 12px; }
.plat-text p:last-child { margin-bottom: 0; }
/* Рамка под скриншот кабинета */
.shot {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--card-white);
  box-shadow: var(--shadow);
}
.shot-frame {
  height: 34px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 14px;
}
.shot-dots { display: flex; gap: 6px; }
.shot-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); opacity: 0.5; }
.shot-body {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  font-size: 13.5px;
  color: var(--ink-faint);
  background:
    radial-gradient(ellipse 60% 60% at 30% 20%, rgba(139, 124, 255, 0.07), transparent 70%),
    var(--panel);
}
.shot-body img { width: 100%; height: 100%; object-fit: cover; object-position: top left; display: block; }

/* ═══════════ КАРТОЧКИ МОДЕЛЕЙ (страница технологий) ═══════════ */
.models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.model-card {
  background: var(--card-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.mc-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.mc-tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 12px;
}
.mc-call { color: var(--aura-text); background: var(--aura-violet-soft, #EFECFF); }
.mc-chat { color: var(--aura-teal-deep); background: #E1F3EA; }
.mc-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.model-card h3 { font-size: 23px; letter-spacing: -0.01em; margin-bottom: 10px; }
.mc-desc { font-size: 15px; color: var(--ink-dim); margin-bottom: 18px; }
.mc-pros { display: grid; gap: 9px; margin-bottom: 20px; }
.mc-pros li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--ink-dim);
}
.mc-pros li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--aura-violet), var(--aura-teal));
}
.mc-honest {
  margin-top: auto;
  background: var(--brass-soft);
  border-radius: 12px;
  padding: 14px 16px;
}
.mc-h {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 6px;
}
.mc-honest p { font-size: 14px; color: var(--ink-dim); line-height: 1.55; }
.extra-tool {
  margin-top: 16px;
  background: var(--panel);
  border-radius: var(--radius-l);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.extra-tool h3 { font-size: 19px; margin-bottom: 6px; }
.extra-tool p { font-size: 14.5px; color: var(--ink-dim); max-width: 62ch; }
.extra-label { font-size: 13px; color: var(--ink-faint); white-space: nowrap; }

/* ═══════════ ВОПРОСЫ: открытый формат вместо аккордеона ═══════════ */
.qa { border-top: 1px solid var(--line); }
.qa-group {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aura-text);
  padding: 30px 0 4px;
}
.qa-group:first-child { padding-top: 26px; }
.qa-row {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.qa-q {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.qa-a { font-size: 15px; color: var(--ink-dim); line-height: 1.65; }
.qa-foot {
  margin-top: 26px;
  font-size: 15px;
  color: var(--ink-faint);
}

/* ═══════════ ЮРИДИЧЕСКИЕ СТРАНИЦЫ ═══════════ */
.legal { max-width: 68ch; }
.legal h3 { font-size: 19px; margin: 34px 0 12px; }
.legal p { font-size: 15px; color: var(--ink-dim); margin: 0 0 12px; line-height: 1.7; }
.legal a { color: var(--aura-text); text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════ ФУТЕР ═══════════ */
.footer { border-top: 1px solid var(--line); background: var(--bg-elev); }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 44px;
}
.footer-brand p { margin-top: 14px; font-size: 14px; color: var(--ink-dim); max-width: 30ch; }
.footer-h { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }
.footer-col { display: grid; gap: 10px; align-content: start; }
.footer-col a { font-size: 14.5px; color: var(--ink-dim); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--ink); }
.footer-fine { font-size: 12.5px; color: var(--ink-faint); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  padding-bottom: 26px;
  font-size: 13px;
  color: var(--ink-faint);
}

/* ═══════════ АНИМАЦИЯ ПОЯВЛЕНИЯ ═══════════ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-aura { animation: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════ АДАПТИВ ═══════════ */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .strip-item:nth-child(3) { border-left: none; }
  .strip-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .cards-3 { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr; }
  .plat-row { grid-template-columns: 1fr; gap: 24px; }
  .qa-row { grid-template-columns: 1fr; gap: 10px; }
  .plat-rev .plat-text { order: 0; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-left { position: static; }
  .steps { grid-template-columns: 1fr 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .teaser-grid { grid-template-columns: 1fr; }
  .price-principles { grid-template-columns: 1fr; }
  .vs { grid-template-columns: 1fr; }
  .vs-mid { justify-self: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-cta .btn-ghost, .nav-reg { display: none; }
  .hero { padding: 80px 20px 90px; }
  .hero-orb { width: 76px; margin: 22px auto 0; }
  .section { padding: 72px 0; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item { border-left: none !important; }
  .strip-item + .strip-item { border-top: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .line { grid-template-columns: 1fr; gap: 4px; }
  .transcript { padding: 22px 20px; }
  .plan { grid-template-columns: 1fr; padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .guides { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   БЛОКИ ГЛАВНОЙ v2 (структура из STRUCTURE-MAIN.md)
   «Ядра» — смысловые анимации: canvas-холсты с фиксированной
   геометрией, чтобы разметка не прыгала до старта скрипта.
   ═══════════════════════════════════════════════════════════ */

/* ── Демо-звонок в первом экране ── */
.hero-form {
  display: flex;
  gap: 10px;
  max-width: 540px;
  margin: 34px auto 0;
}
.hero-form input {
  flex: 1;
  min-width: 0;
  height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--card-white);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.hero-form input:focus {
  outline: none;
  border-color: var(--aura-violet);
  box-shadow: 0 0 0 4px rgba(139, 124, 255, 0.16);
}
.hero-form .btn { height: 54px; flex: none; }
.hero-ok {
  margin-top: 34px;
  font-size: 15px;
  color: var(--aura-text);
}

/* ── Лента ниш под цифрами ── */
.ticker {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.ticker-label {
  flex: none;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.ticker-track {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 92%, transparent);
}
.ticker-run {
  display: flex;
  gap: 10px;
  padding-right: 10px;
  animation: ticker-run 38s linear infinite;
}
.ticker-run span {
  white-space: nowrap;
  font-size: 14px;
  color: var(--ink-dim);
  background: var(--panel);
  border-radius: 999px;
  padding: 6px 16px;
}
@keyframes ticker-run { to { transform: translateX(-100%); } }

/* ── Общее для ядер ── */
.core-canvas { display: block; width: 100%; }
.core-wrap { margin-top: 48px; }
.core-caption {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 620px;
}
.core-caption-center { margin: 26px auto 0; text-align: center; }
#core-break { height: 132px; }

/* ── Ядро системы: три звена ── */
.section-core {
  background: var(--card-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.system { max-width: 800px; margin: 0 auto; }
.system-stage { position: relative; }
#core-system { aspect-ratio: 8 / 5; }
.sys-node {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 8px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--card-white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}
.sys-node:hover, .sys-node:focus-visible { border-color: var(--aura-violet); color: var(--aura-text); }
.sys-node:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(139, 124, 255, 0.18); }
.sys-node.is-off { color: var(--ink-faint); border-color: var(--line); opacity: 0.75; }
.sys-node[data-node="0"] { left: 50%; top: calc(22% - 56px); }
.sys-node[data-node="1"] { left: 16%; top: calc(76% + 56px); }
.sys-node[data-node="2"] { left: 84%; top: calc(76% + 56px); }
.system-note {
  margin: 22px auto 0;
  max-width: 560px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-dim);
  min-height: 72px;
  transition: color 0.25s ease;
}
.system-note.is-warn { color: var(--ink); }

/* ── Голос: две волны ── */
.voice { display: grid; gap: 14px; }
.voice-row {
  display: grid;
  grid-template-columns: 132px 1fr 250px;
  align-items: center;
  gap: 26px;
  padding: 20px 26px;
  border-radius: var(--radius-l);
  background: var(--panel);
}
.voice-row-live {
  background: var(--card-white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(101, 83, 232, 0.07);
}
.voice-tag { font-family: var(--font-display); font-size: 15px; font-weight: 500; }
.voice-tag-dim { color: var(--ink-faint); }
.voice-canvas { height: 64px; }
.voice-desc { font-size: 13.5px; line-height: 1.5; color: var(--ink-dim); }
.tech-more {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 52px;
}

/* ── Базы: поле точек ── */
.dots {
  background: var(--card-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 26px 26px 30px;
  margin-bottom: 44px;
}
#core-dots { aspect-ratio: 3 / 1; }
.dots-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  gap: 28px;
  margin-top: 24px;
}
.dots-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(100deg, var(--ink) 30%, var(--aura-violet-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dots-num-dim { background: none; color: var(--ink-faint); }
.dots-metric p { margin-top: 6px; font-size: 13.5px; color: var(--ink-dim); }

/* ── Запуск: линия времени ── */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.timeline::before,
.timeline::after {
  content: '';
  position: absolute;
  top: 5px;
  height: 1px;
}
.timeline::before { left: 0; right: 0; background: var(--line); }
.timeline::after {
  left: 0;
  width: 0;
  background: linear-gradient(90deg, var(--aura-violet), var(--aura-teal));
  transition: width 2s ease 0.25s;
}
.timeline.in::after { width: 100%; }
.tl-step { position: relative; padding-right: 12px; }
.tl-mark {
  display: block;
  width: 11px;
  height: 11px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--card-white);
  border: 2px solid var(--aura-violet);
  position: relative;
  z-index: 1;
}
.tl-when {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aura-text);
  margin-bottom: 8px;
}
.tl-step h3 { font-size: 18px; margin-bottom: 8px; }
.tl-text { font-size: 14px; line-height: 1.55; color: var(--ink-dim); }

/* ── Цена: шкала «за что списывают» ── */
.meter { margin-top: 20px; }
.meter-bar {
  height: 10px;
  border-radius: 999px;
  background: var(--panel-hl);
  overflow: hidden;
}
.meter-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--aura-violet), var(--aura-teal));
  transition: width 1.6s ease 0.35s;
}
.price-principles.in .meter-fill { width: 32%; }
.meter-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--ink-dim);
}
.meter-legend span { display: inline-flex; align-items: center; gap: 7px; }
.mk {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--aura-violet), var(--aura-teal));
}
.mk-dim { background: var(--panel-hl); border: 1px solid var(--line-strong); }

/* ── Кто за этим стоит: доверие ── */
.manifesto-wrap .manifesto { margin: 0 auto; }
.manifesto-wrap .eyebrow { margin-bottom: 20px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 60px;
}
.trust-item {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.trust-item h3 { font-size: 15px; margin-bottom: 6px; }
.trust-item p { font-size: 13.5px; line-height: 1.5; color: var(--ink-dim); }

@media (max-width: 980px) {
  .voice-row { grid-template-columns: 110px 1fr; row-gap: 14px; }
  .voice-desc { grid-column: 1 / -1; }
  .tech-more { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; }
  .timeline::before, .timeline::after { display: none; }
  .dots-legend { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero-form { flex-direction: column; }
  .hero-form .btn { width: 100%; justify-content: center; }
  .ticker { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ticker-track { width: 100%; }
  #core-system { aspect-ratio: 1 / 1; }
  .sys-node { font-size: 13.5px; padding: 6px 14px; }
  .sys-node[data-node="0"] { top: calc(22% - 42px); }
  .sys-node[data-node="1"] { left: 20%; top: calc(76% + 42px); }
  .sys-node[data-node="2"] { left: 80%; top: calc(76% + 42px); }
  .system-note { min-height: 96px; }
  #core-dots { aspect-ratio: 3 / 2; }
  #core-break { height: 104px; }
  .voice-row { grid-template-columns: 1fr; gap: 12px; padding: 18px 20px; }
  .timeline { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .dots { padding: 18px 18px 22px; }
  .dots-num { font-size: 32px; }
}

/* ═══════════ ЭКРАН ПОСЛЕ ОТПРАВКИ ЗАЯВКИ ═══════════ */
.lead-done {
  text-align: center;
  padding: 38px 28px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background:
    radial-gradient(120% 140% at 50% -10%, rgba(139, 124, 255, 0.14) 0%, rgba(139, 124, 255, 0) 60%),
    var(--card-white);
  box-shadow: 0 14px 40px rgba(101, 83, 232, 0.08);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.lead-done.on { opacity: 1; transform: none; }
.lead-done-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 34% 30%, #C9C0FF 0%, #8B7CFF 55%, #4ED0C2 100%);
  box-shadow: 0 0 0 8px rgba(139, 124, 255, 0.12), 0 10px 26px rgba(101, 83, 232, 0.28);
  animation: leadPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.lead-done-mark svg { width: 30px; height: 30px; }
@keyframes leadPop {
  0% { transform: scale(0.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.lead-done h3 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.lead-done p {
  font-size: 15.5px;
  color: var(--ink-dim);
  line-height: 1.6;
  max-width: 46ch;
  margin: 0 auto;
}
.lead-done-btn { margin-top: 20px; }
.hero .lead-done {
  max-width: 520px;
  margin: 0 auto;
  padding: 30px 24px 26px;
}
.hero .lead-done h3 { font-size: 22px; }
.hero .lead-done p { font-size: 14.5px; }
@media (max-width: 720px) {
  .lead-done { padding: 30px 20px 26px; }
  .lead-done h3 { font-size: 21px; }
}

/* Версия в логотипе: Аура AI 2.0 */
.logo-ver {
  margin-left: 7px;
  font-size: 0.72em;
  font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: 0;
}

/* Лого-сфера на хиро */
.orb-logo { display: block; width: 100%; height: 100%; }
