/* CYBERDEF — общие стили сайта (главная, услуги, блог) */
/* =====================================================
   ТОКЕНЫ
===================================================== */
:root {
  --brand-blue: #17A2F8;
  --brand-navy: #08186E;

  --surface: #FFFFFF;
  --surface-sunken: #F1F5FA;
  --surface-brand: #08186E;
  --surface-brand-raised: #131D42;
  --accent-soft: #E4F3FE;

  --ink: #08186E;
  --ink-muted: #4D5C7D;
  --ink-on-accent: #08186E;
  --ink-on-brand: #FFFFFF;
  --ink-on-brand-muted: #AFC0E0;
  --accent-text: #0572B6;
  --accent-text-on-brand: #6CC4FF;

  --border: #D3DDEB;
  --border-strong: #7490B4;
  --focus: #08186E;

  --threat: #F04438;   --threat-soft: #FEE4E2;   --threat-text: #B42318;
  --progress: #F79009; --progress-soft: #FEF0C7; --progress-text: #93370D;
  --ok: #17B26A;       --ok-soft: #DCFAE6;       --ok-text: #067647;
  --danger-btn: #D92D20;

  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-6: 24px; --space-8: 32px; --space-12: 48px; --space-24: 96px;

  --r-btn: 6px;
  --r-card: 16px;
  --r-panel: 24px;
  --r-pill: 999px;

  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);

  --maxw: 1320px;
  --gutter: 32px;

  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 1024px) { :root { --gutter: 24px; } }
@media (max-width: 640px)  { :root { --gutter: 16px; --space-24: 64px; } }

/* =====================================================
   БАЗА
===================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-text); }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.container {
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.section { padding: var(--space-24) 0; position: relative; }
.section--sunken { background: var(--surface-sunken); }

.display-1 { font-size: 48px; line-height: 52px; font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.display-2 { font-size: 34px; line-height: 40px; font-weight: 700; letter-spacing: -0.015em; margin: 0; }
.heading   { font-size: 24px; line-height: 30px; font-weight: 700; margin: 0; }
.lead      { font-size: 18px; line-height: 28px; color: var(--ink-muted); margin: 0; }
.muted     { color: var(--ink-muted); }
.center    { text-align: center; margin-left: auto; margin-right: auto; }

@media (max-width: 640px) {
  .display-1 { font-size: 34px; line-height: 40px; }
  .display-2 { font-size: 26px; line-height: 32px; }
  .lead { font-size: 16px; line-height: 24px; }
}

/* акцентное слово в заголовке */
.hl {
  background: linear-gradient(90deg, var(--brand-navy) 0%, var(--accent-text) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.on-brand .hl {
  background: linear-gradient(90deg, #FFFFFF 0%, var(--accent-text-on-brand) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* метка-«таблетка» над заголовком */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 var(--space-6);
}
.on-brand .pill { background: rgba(108,196,255,0.12); color: var(--accent-text-on-brand); }
.pill__live { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(23,178,106,0.6); animation: live 1.8s ease-out infinite; }
@keyframes live { 0% { box-shadow: 0 0 0 0 rgba(23,178,106,0.55); } 100% { box-shadow: 0 0 0 10px rgba(23,178,106,0); } }

/* кнопки: скругление 6 px */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: var(--space-3) var(--space-6);
  border: 0;
  border-radius: var(--r-btn);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary { background: var(--brand-blue); color: var(--ink-on-accent); }
.btn--primary:hover { box-shadow: 0 10px 28px -10px rgba(23,162,248,0.8); }
.btn--danger { background: var(--danger-btn); color: #FFFFFF; }
.btn--danger:hover { box-shadow: 0 10px 28px -10px rgba(217,45,32,0.7); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--border-strong); }
.btn--ghost:hover { background: var(--surface-sunken); }
.btn--ghost-light { background: rgba(255,255,255,0.06); color: #FFFFFF; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.12); }
.btn--white { background: #FFFFFF; color: var(--ink); }

.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #FFFFFF; animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* статусы */
.status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 12px; line-height: 16px; font-weight: 600;
  white-space: nowrap;
}
.status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status--threat   { background: var(--threat-soft);   color: var(--threat-text); }
.status--progress { background: var(--progress-soft); color: var(--progress-text); }
.status--ok       { background: var(--ok-soft);       color: var(--ok-text); }

/* тёмно-синяя плашка со свечением */
.on-brand {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--surface-brand);
  color: var(--ink-on-brand);
}
.on-brand::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 70%;
  aspect-ratio: 1;
  left: 50%;
  top: -40%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(23,162,248,0.35) 0%, rgba(23,162,248,0) 65%);
  pointer-events: none;
}

/* подсветка под курсором на карточках */
.spot { position: relative; isolation: isolate; }
.spot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(23,162,248,0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.spot:hover::after { opacity: 1; }

[data-anim] { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-anim].is-visible { opacity: 1; transform: none; }

.ph { background: var(--accent-soft); color: var(--accent-text); padding: 0 4px; border-radius: 4px; font-style: normal; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-anim] { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.hdr.is-scrolled { border-color: var(--border); background: rgba(255,255,255,0.92); }
.hdr.is-menu-open { position: fixed; left: 0; right: 0; background: #FFFFFF; }

.hdr__inner {
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex; align-items: center; gap: var(--space-8);
}
.hdr__logo { display: inline-flex; flex-shrink: 0; }
.hdr__logo img { height: 24px; width: auto; min-width: 160px; }

.hdr__nav { flex: 1; display: flex; justify-content: center; }
.hdr__list { list-style: none; margin: 0; padding: 4px; display: flex; gap: 2px; background: var(--surface-sunken); border-radius: var(--r-pill); }
.hdr__item { position: relative; }
.hdr__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 14px; line-height: 20px; font-weight: 600;
  color: var(--ink); text-decoration: none; white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.hdr__link:hover { background: #FFFFFF; }
.hdr__caret { width: 10px; height: 10px; transition: transform 0.2s ease; }
.hdr__item:hover .hdr__caret { transform: rotate(180deg); }

.hdr__drop {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translate(-50%, -4px);
  min-width: 300px; padding: var(--space-2);
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: 0 24px 48px -24px rgba(8,24,110,0.25);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.25s var(--ease), visibility 0.2s;
}
.hdr__drop::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.hdr__item:hover .hdr__drop, .hdr__item:focus-within .hdr__drop { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.hdr__drop a {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3); border-radius: 10px;
  color: var(--ink); text-decoration: none;
  transition: background 0.2s ease;
}
.hdr__drop a:hover { background: var(--surface-sunken); }
.hdr__tag {
  min-width: 52px; padding: 6px 8px; border-radius: 8px;
  font-size: 12px; line-height: 16px; font-weight: 700; text-align: center;
  background: var(--accent-soft); color: var(--ink);
}
.hdr__drop-title { display: block; font-size: 14px; line-height: 20px; font-weight: 700; }
.hdr__drop-desc  { display: block; font-size: 12px; line-height: 16px; color: var(--ink-muted); }

.hdr__actions { flex-shrink: 0; }
.hdr__actions .btn { min-height: 40px; padding: 8px 16px; font-size: 14px; line-height: 20px; }

.hdr__burger {
  display: none; margin-left: auto;
  width: 44px; height: 44px;
  border: 0; border-radius: var(--r-btn);
  background: var(--surface-sunken);
  cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.hdr__burger span { width: 18px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform 0.25s ease, opacity 0.2s ease; }
.hdr__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hdr__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mmenu {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0; z-index: 99;
  background: #FFFFFF;
  padding: var(--space-6) var(--gutter) var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-2);
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s var(--ease), visibility 0.25s;
}
.mmenu.is-open { opacity: 1; visibility: visible; transform: none; }
.mmenu > a, .mmenu summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-4); border-radius: 12px;
  font-size: 16px; font-weight: 600; color: var(--ink); text-decoration: none;
  background: var(--surface-sunken); cursor: pointer; list-style: none;
}
.mmenu summary::-webkit-details-marker { display: none; }
.mmenu summary svg { width: 12px; height: 12px; transition: transform 0.2s ease; }
.mmenu details[open] summary svg { transform: rotate(180deg); }
.mmenu__sub { display: flex; flex-direction: column; padding: var(--space-2) 0 var(--space-2) var(--space-4); }
.mmenu__sub a { padding: var(--space-3) var(--space-4); font-size: 14px; font-weight: 500; color: var(--ink); text-decoration: none; }
.mmenu__bottom { margin-top: auto; display: flex; flex-direction: column; gap: var(--space-3); padding-top: var(--space-6); }
.mmenu__bottom .btn { width: 100%; }

@media (max-width: 1100px) {
  .hdr__nav, .hdr__actions { display: none; }
  .hdr__burger { display: flex; }
}
@media (min-width: 1101px) { .mmenu { display: none; } }
@media (max-width: 640px) { .hdr__inner { height: 64px; } .mmenu { top: 64px; } }
.hero { padding: var(--space-12) 0 var(--space-24); text-align: center; position: relative; overflow: hidden; isolation: isolate; }
.hero::before {
  content: "";
  position: absolute; left: 50%; top: -120px;
  width: 1100px; max-width: 140vw; aspect-ratio: 2 / 1;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(23,162,248,0.16) 0%, rgba(23,162,248,0) 60%);
  pointer-events: none;
  z-index: -1;
}
.hero__title { max-width: 24ch; margin: 0 auto var(--space-6); font-size: 56px; line-height: 60px; }
.hero__lead { max-width: 60ch; margin: 0 auto var(--space-8); }
.hero__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--space-3); }
.hero__checks { margin-top: var(--space-6); display: flex; justify-content: center; flex-wrap: wrap; gap: var(--space-2) var(--space-6); }
.hero__checks span { display: inline-flex; align-items: center; gap: var(--space-2); font-size: 14px; line-height: 20px; color: var(--ink-muted); }
.hero__checks svg { width: 16px; height: 16px; color: var(--ok-text); }

@media (max-width: 640px) {
  .hero__title { font-size: 34px; line-height: 40px; }
  .hero__actions .btn { width: 100%; }
}

/* ---------- панель радара ---------- */
.radar {
  margin-top: var(--space-12);
  border-radius: var(--r-panel);
  padding: var(--space-8);
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 300px;
  gap: var(--space-8);
  align-items: center;
  text-align: left;
}
.radar::before { top: -20%; width: 60%; }
.radar::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 50% 110%, rgba(23,162,248,0.18), transparent 45%);
  pointer-events: none;
}

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.rpanel { padding: var(--space-6); }
.rpanel__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-4); }
.rpanel__title { font-size: 14px; line-height: 20px; font-weight: 600; margin: 0; }
.rpanel__live { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; line-height: 16px; font-weight: 600; color: var(--ok); }
.rpanel__live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ok); animation: blink 1.4s ease-in-out infinite; }

/* лента */
.feed { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-2); min-height: 316px; }
.feed__row {
  padding: var(--space-3) var(--space-4);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 4px;
  animation: rowIn 0.5s var(--ease);
}
@keyframes rowIn { from { opacity: 0; transform: translateY(-10px) scale(0.98); } to { opacity: 1; transform: none; } }
.feed__top { display: flex; justify-content: space-between; align-items: center; gap: var(--space-2); margin-bottom: 4px; }
.feed__time { font-family: var(--mono); font-size: 12px; line-height: 16px; color: var(--ink-on-brand-muted); }
.feed__type { font-size: 14px; line-height: 20px; font-weight: 600; }
.feed__target { font-family: var(--mono); font-size: 12px; line-height: 16px; color: var(--ink-on-brand-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* правая панель */
.kpi { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-bottom: var(--space-6); }
.kpi__val { font-size: 34px; line-height: 40px; font-weight: 700; font-variant-numeric: tabular-nums; }
.kpi__lbl { font-size: 12px; line-height: 16px; color: var(--ink-on-brand-muted); }
.kpi__val--ok { color: var(--ok); }
.bars { display: flex; align-items: flex-end; gap: 4px; height: 72px; margin-bottom: var(--space-2); }
.bars span { flex: 1; border-radius: 4px 4px 2px 2px; background: linear-gradient(180deg, var(--brand-blue), rgba(23,162,248,0.25)); transform-origin: bottom; animation: grow 1.2s var(--ease) both; }
@keyframes grow { from { transform: scaleY(0); } }
.bars__cap { display: flex; justify-content: space-between; font-size: 12px; line-height: 16px; color: var(--ink-on-brand-muted); }
.react { margin-top: var(--space-6); padding-top: var(--space-4); border-top: 1px solid var(--glass-border); display: flex; justify-content: space-between; align-items: baseline; }
.react b { font-size: 24px; line-height: 30px; font-variant-numeric: tabular-nums; }
.react span { font-size: 12px; line-height: 16px; color: var(--ink-on-brand-muted); }

/* ---------- сам радар ---------- */
.scope { position: relative; width: 100%; max-width: 520px; margin: 0 auto; aspect-ratio: 1; }
.scope svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.scope__ring { fill: none; stroke: rgba(255,255,255,0.10); stroke-width: 1; }
.scope__ring--dash { stroke-dasharray: 2 6; stroke: rgba(255,255,255,0.18); }
.scope__axis { stroke: rgba(255,255,255,0.06); stroke-width: 1; }

.scope__sweep {
  position: absolute; inset: 4%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(23,162,248,0) 0deg, rgba(23,162,248,0) 290deg, rgba(23,162,248,0.10) 330deg, rgba(23,162,248,0.45) 360deg);
  animation: sweep 6s linear infinite;
  -webkit-mask: radial-gradient(circle, #000 69%, transparent 70%);
  mask: radial-gradient(circle, #000 69%, transparent 70%);
}
@keyframes sweep { to { transform: rotate(360deg); } }

.scope__core {
  position: absolute; left: 50%; top: 50%;
  width: 22%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #5CC2FF 0%, var(--brand-blue) 45%, #0C7DC4 100%);
  box-shadow: 0 0 0 10px rgba(23,162,248,0.12), 0 0 0 22px rgba(23,162,248,0.06), 0 0 60px 10px rgba(23,162,248,0.45);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  color: var(--ink-on-accent);
  text-align: center;
}
.scope__core svg { position: static; width: 28%; height: auto; }
.scope__core b { font-size: 13px; line-height: 16px; font-weight: 700; }

.scope__chan {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  background: rgba(19,29,66,0.85);
  border: 1px solid var(--glass-border);
  font-size: 12px; line-height: 16px; font-weight: 600;
  color: var(--ink-on-brand);
  white-space: nowrap;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.scope__chan::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ink-on-brand-muted); transition: background 0.3s ease; }
.scope__chan.is-threat { border-color: rgba(240,68,56,0.7); color: #FFD4D0; }
.scope__chan.is-threat::before { background: var(--threat); }
.scope__chan.is-ok { border-color: rgba(23,178,106,0.7); color: #C6F6DA; }
.scope__chan.is-ok::before { background: var(--ok); }

.blip { transition: fill 0.3s ease; }
.blip-ring { fill: none; stroke-width: 1.5; animation: ping 1.2s ease-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes ping { from { transform: scale(1); opacity: 0.9; } to { transform: scale(4); opacity: 0; } }
.beam { stroke-width: 1.5; stroke-dasharray: 6 6; animation: dash 0.8s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -12; } }

.radar__caption { grid-column: 1 / -1; margin: 0; font-size: 12px; line-height: 16px; color: var(--ink-on-brand-muted); text-align: center; }

@media (max-width: 1180px) {
  .radar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scope-wrap { grid-column: 1 / -1; order: -1; }
}
@media (max-width: 720px) {
  .radar { grid-template-columns: minmax(0, 1fr); padding: var(--space-4); gap: var(--space-4); border-radius: 20px; }
  .scope__chan { font-size: 10px; padding: 4px 8px; }
  .scope__core b { font-size: 11px; }
  .feed { min-height: 0; }
}
@media (max-width: 420px) { .scope__chan span { display: none; } .scope__chan { padding: 6px; } }

/* ---------- цифры ---------- */
.stats {
  margin-top: var(--space-12);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.stat {
  padding: var(--space-8) var(--space-6);
  border-radius: var(--r-card);
  background: var(--surface-sunken);
  text-align: center;
}
.stat__value { font-size: 48px; line-height: 52px; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.stat__unit { font-size: 20px; font-weight: 600; color: var(--ink-muted); }
.stat__label { margin: var(--space-2) auto 0; font-size: 14px; line-height: 20px; color: var(--ink-muted); max-width: 26ch; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr; gap: var(--space-3); } .stat__value { font-size: 40px; line-height: 44px; } }

/* ---------- бегущая строка ---------- */
.ticker { background: var(--surface-brand); color: #FFFFFF; overflow: hidden; padding: var(--space-4) 0; }
.ticker__track { display: flex; width: max-content; animation: ticker 45s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__group { display: flex; flex-shrink: 0; }
.ticker__item { display: inline-flex; align-items: center; gap: var(--space-6); padding-right: var(--space-6); font-size: 16px; line-height: 24px; font-weight: 600; white-space: nowrap; }
.ticker__item::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-blue); }
@keyframes ticker { to { transform: translateX(-50%); } }
.pain {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-4);
}
.pain__intro {
  grid-row: 1 / span 2;
  border-radius: var(--r-panel);
  padding: var(--space-12) var(--space-8);
  display: flex; flex-direction: column; justify-content: space-between; gap: var(--space-8);
}
.pain__intro::before { left: 0; top: auto; bottom: -50%; width: 120%; transform: none; }
.pain__intro .lead { color: var(--ink-on-brand-muted); margin-top: var(--space-4); }
.pain__foot { font-size: 12px; line-height: 16px; color: var(--ink-on-brand-muted); margin: 0; }

.pcard {
  border-radius: var(--r-card);
  background: var(--surface-sunken);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-3);
  transition: transform 0.35s var(--ease), background 0.3s ease;
}
.pcard:hover { transform: translateY(-4px); background: var(--accent-soft); }
.pcard__who { align-self: flex-start; font-size: 12px; line-height: 16px; font-weight: 600; color: var(--accent-text); background: #FFFFFF; padding: 4px 10px; border-radius: var(--r-pill); }
.pcard__num { font-size: 48px; line-height: 52px; font-weight: 700; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.pcard__num small { font-size: 28px; color: var(--ink-muted); }
.pcard__text { font-size: 16px; line-height: 24px; margin: 0; flex: 1; }
.pcard__src { font-size: 12px; line-height: 16px; color: var(--ink-muted); margin: 0; }
.pcard__src a { color: var(--accent-text); }

@media (max-width: 1100px) {
  .pain { grid-template-columns: 1fr 1fr; }
  .pain__intro { grid-column: 1 / -1; grid-row: auto; padding: var(--space-8); }
}
@media (max-width: 640px) {
  .pain { grid-template-columns: 1fr; }
  .pain__intro { padding: var(--space-8) var(--space-6); }
  .pcard__num { font-size: 40px; line-height: 44px; }
}
.head-center { text-align: center; max-width: 820px; margin: 0 auto var(--space-12); }
.head-center .lead { margin-top: var(--space-4); }

.compare { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.cmp {
  border-radius: var(--r-panel);
  background: #FFFFFF;
  padding: var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-6);
}
.cmp__head { display: flex; justify-content: space-between; align-items: center; gap: var(--space-3); flex-wrap: wrap; }
.cmp__stage { font-size: 24px; line-height: 30px; font-weight: 700; margin: 0; }
.cmp--old .cmp__stage { color: var(--ink-muted); }
.cmp__tag { font-size: 12px; line-height: 16px; font-weight: 600; padding: 4px 10px; border-radius: var(--r-pill); background: var(--surface-sunken); color: var(--ink-muted); }
.cmp--now .cmp__tag { background: var(--threat-soft); color: var(--threat-text); }

.tiles { display: grid; gap: var(--space-2); }
.tiles--3 { grid-template-columns: repeat(3, 1fr); }
.tiles--2 { grid-template-columns: repeat(2, 1fr); }
.tile {
  display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-4);
  border-radius: 12px;
  background: var(--surface-sunken);
  font-size: 14px; line-height: 20px; font-weight: 600;
  color: var(--ink-muted);
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s var(--ease);
}
.tile svg { width: 24px; height: 24px; color: var(--border-strong); }
.cmp--old .tile { opacity: 0.75; }
.tile--hot { color: var(--ink); background: #FFF6F5; box-shadow: inset 0 0 0 1px #FFD9D5; }
.tile--hot:hover { transform: translateY(-3px); background: var(--threat-soft); color: var(--threat-text); }
.tile__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--threat); box-shadow: 0 0 0 0 rgba(240,68,56,0.5); animation: hot 1.8s ease-out infinite; }
@keyframes hot { to { box-shadow: 0 0 0 10px rgba(240,68,56,0); } }
.cmp__note { font-size: 14px; line-height: 20px; color: var(--ink-muted); margin: 0; }
.cmp__note b { color: var(--ink); }

.compare__vs {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--brand-navy); color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px var(--surface-sunken);
  z-index: 1;
}
.compare__vs svg { width: 22px; height: 22px; }

.statement {
  margin-top: var(--space-4);
  border-radius: var(--r-panel);
  padding: var(--space-12) var(--space-8);
  text-align: center;
}
.statement p { margin: 0 auto; max-width: 42ch; font-size: 30px; line-height: 38px; font-weight: 700; letter-spacing: -0.01em; }

@media (max-width: 900px) {
  .compare { grid-template-columns: 1fr; }
  .compare__vs svg { transform: rotate(90deg); }
}
@media (max-width: 640px) {
  .cmp { padding: var(--space-6); }
  .tiles--3 { grid-template-columns: repeat(2, 1fr); }
  .statement { padding: var(--space-8) var(--space-6); }
  .statement p { font-size: 22px; line-height: 28px; }
}
.bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-areas:
    "h  h  t1 t1"
    "t2 t3 t1 t1"
    "t4 t5 m  m";
  gap: var(--space-4);
}
.bento__head { grid-area: h; padding: var(--space-6) var(--space-6) var(--space-6) 0; align-self: center; }
.bento__head .lead { margin-top: var(--space-4); }

.task {
  border-radius: var(--r-card);
  background: var(--surface-sunken);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-3);
  transition: transform 0.35s var(--ease), background 0.3s ease;
}
.task:hover { transform: translateY(-4px); }
.task__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: #FFFFFF; color: var(--accent-text);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-2);
}
.task__icon svg { width: 24px; height: 24px; }
.task__title { font-size: 18px; line-height: 24px; font-weight: 700; margin: 0; }
.task__text { font-size: 14px; line-height: 20px; color: var(--ink-muted); margin: 0; flex: 1; }
.task__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.task__tag { font-size: 12px; line-height: 16px; font-weight: 600; padding: 4px 10px; border-radius: var(--r-pill); background: #FFFFFF; color: var(--ink); }

.task--1 { grid-area: t1; }
.task--2 { grid-area: t2; }
.task--3 { grid-area: t3; }
.task--4 { grid-area: t4; }
.task--5 { grid-area: t5; }

/* большая карточка с мини-интерфейсом */
.task--big { padding: var(--space-8); }
.task--big .task__title { font-size: 24px; line-height: 30px; }
.task--big .task__text { flex: none; }
.urls { margin-top: auto; padding-top: var(--space-4); display: flex; flex-direction: column; gap: var(--space-2); }
.url {
  display: flex; align-items: center; gap: var(--space-3);
  padding: 10px 12px;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 1px 0 var(--border);
  font-family: var(--mono); font-size: 13px; line-height: 20px;
  color: var(--ink);
}
.url__lock { width: 16px; height: 16px; flex-shrink: 0; color: var(--ink-muted); }
.url__addr { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.url--fake .url__addr { color: var(--threat-text); }
.url--done .url__addr { text-decoration: line-through; color: var(--ink-muted); }

.task--modules {
  grid-area: m;
  border-radius: var(--r-card);
  padding: var(--space-8);
  text-decoration: none;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-6);
  transition: transform 0.35s var(--ease);
}
.task--modules:hover { transform: translateY(-4px); }
.task--modules::before { left: 80%; top: -80%; width: 80%; }
.task--modules h3 { font-size: 24px; line-height: 30px; margin: 0 0 var(--space-2); color: #FFFFFF; }
.task--modules p { margin: 0; font-size: 14px; line-height: 20px; color: var(--ink-on-brand-muted); }
.task--modules .arrow {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: var(--brand-blue); color: var(--ink-on-accent);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s var(--ease);
}
.task--modules:hover .arrow { transform: rotate(-45deg); }
.task--modules .arrow svg { width: 20px; height: 20px; }

@media (max-width: 1100px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-areas: "h h" "t1 t1" "t2 t3" "t4 t5" "m m"; }
  .bento__head { padding: 0 0 var(--space-4); }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: minmax(0, 1fr); grid-template-areas: "h" "t1" "t2" "t3" "t4" "t5" "m"; }
  .task--big, .task--modules { padding: var(--space-6); }
}
.flow__hint { display: inline-flex; align-items: center; gap: var(--space-2); font-size: 14px; line-height: 20px; color: var(--ink-muted); margin-top: var(--space-4); }
.flow__stage { max-width: 1000px; margin: 0 auto; }
.flow__track { position: relative; height: 72px; }
.flow__line, .flow__progress { position: absolute; top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); border-radius: 2px; }
.flow__line { background: var(--border); }
.flow__progress { background: linear-gradient(90deg, var(--brand-navy), var(--brand-blue)); transform-origin: left center; transition: transform 0.8s var(--ease); }
.flow__nodes { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; }
.flow__node {
  justify-self: center; position: relative; z-index: 1;
  width: 56px; height: 56px; border-radius: 50%;
  border: 0; background: #FFFFFF;
  box-shadow: inset 0 0 0 2px var(--border);
  font-size: 14px; font-weight: 700; color: var(--ink-muted);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.4s var(--ease);
}
.flow__node:hover { box-shadow: inset 0 0 0 2px var(--ink); color: var(--ink); }
.flow__node--done { background: var(--brand-navy); color: #FFFFFF; box-shadow: none; }
.flow__node--active { background: var(--brand-blue); color: var(--ink-on-accent); box-shadow: 0 0 0 8px rgba(23,162,248,0.18); transform: scale(1.12); }
.flow__labels { display: grid; grid-template-columns: repeat(5, 1fr); padding-top: var(--space-4); }
.flow__label { text-align: center; font-size: 14px; line-height: 20px; font-weight: 600; color: var(--ink-muted); transition: color 0.3s ease; }
.flow__label--active, .flow__label--done { color: var(--ink); }

.flow__cards { position: relative; max-width: 880px; margin: var(--space-8) auto 0; min-height: 184px; }
.flow__card {
  position: absolute; inset: 0;
  border-radius: var(--r-card);
  background: #FFFFFF;
  padding: var(--space-8);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-3);
  opacity: 0; transform: translateY(10px) scale(0.98); pointer-events: none;
  transition: opacity 0.4s ease, transform 0.5s var(--ease);
}
.flow__card--visible { opacity: 1; transform: none; pointer-events: auto; }
.flow__card-num { font-size: 12px; line-height: 16px; font-weight: 600; padding: 4px 10px; border-radius: var(--r-pill); background: var(--accent-soft); color: var(--accent-text); }
.flow__card-title { font-size: 24px; line-height: 30px; font-weight: 700; margin: 0; }
.flow__card-text { font-size: 16px; line-height: 24px; color: var(--ink-muted); margin: 0; max-width: 62ch; }

@media (max-width: 720px) {
  .flow__labels { display: none; }
  .flow__node { width: 44px; height: 44px; }
  .flow__cards { min-height: 0; margin-top: var(--space-6); }
  .flow__card { position: relative; inset: auto; display: none; opacity: 1; transform: none; padding: var(--space-6); }
  .flow__card--visible { display: flex; }
  .flow__card-title { font-size: 18px; line-height: 24px; }
  .flow__card-text { font-size: 14px; line-height: 20px; }
}
@media (max-width: 380px) { .flow__node { width: 40px; height: 40px; } }
.head-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-8);
  align-items: end;
  margin-bottom: var(--space-12);
}
.head-split .lead { justify-self: end; max-width: 44ch; }

.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.case {
  border-radius: var(--r-card);
  background: var(--surface-sunken);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-4);
  transition: transform 0.35s var(--ease);
}
.case:hover { transform: translateY(-4px); }
.case__tag { align-self: flex-start; font-size: 12px; line-height: 16px; font-weight: 600; padding: 4px 10px; border-radius: var(--r-pill); background: #FFFFFF; }
.case__title { font-size: 18px; line-height: 24px; font-weight: 700; margin: 0; }
.case__metric { padding: var(--space-4); border-radius: 12px; background: #FFFFFF; display: flex; align-items: baseline; gap: var(--space-3); }
.case__metric b { font-size: 34px; line-height: 40px; font-weight: 700; }
.case__metric span { font-size: 14px; line-height: 20px; color: var(--ink-muted); }
.case dl { margin: 0; font-size: 14px; line-height: 20px; }
.case dt { font-weight: 700; margin-bottom: 2px; }
.case dd { margin: 0 0 var(--space-3); color: var(--ink-muted); }

.trust {
  margin-top: var(--space-12);
  display: flex; align-items: center; gap: var(--space-8);
  padding: var(--space-6) var(--space-8);
  border-radius: var(--r-card);
  box-shadow: inset 0 0 0 1px var(--border);
}
.trust__label { flex-shrink: 0; max-width: 220px; }
.trust__label b { display: block; font-size: 18px; line-height: 24px; }
.trust__label span { font-size: 12px; line-height: 16px; color: var(--ink-muted); }
.trust__logos { flex: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-4); }
.trust__logo { height: 56px; border-radius: 12px; background: var(--surface-sunken); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--ink-muted); }
.trust__logo img { max-height: 32px; width: auto; filter: grayscale(1); opacity: 0.7; transition: filter 0.2s ease, opacity 0.2s ease; }
.trust__logo:hover img { filter: none; opacity: 1; }

.quote {
  margin: var(--space-4) 0 0;
  border-radius: var(--r-panel);
  padding: var(--space-12);
  display: grid; grid-template-columns: 1fr auto; gap: var(--space-8); align-items: end;
}
.quote::before { left: 85%; top: -60%; width: 60%; }
.quote blockquote { margin: 0; font-size: 28px; line-height: 36px; font-weight: 600; letter-spacing: -0.01em; }
.quote blockquote::before { content: "«"; display: block; font-size: 72px; line-height: 48px; color: var(--brand-blue); margin-bottom: var(--space-4); }
.quote figcaption { display: flex; align-items: center; gap: var(--space-4); }
.quote__avatar { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.quote__name { margin: 0; font-weight: 700; }
.quote__role { margin: 0; font-size: 14px; line-height: 20px; color: var(--ink-on-brand-muted); }
.quote .ph { background: rgba(108,196,255,0.16); color: var(--accent-text-on-brand); }

@media (max-width: 1024px) {
  .head-split { grid-template-columns: 1fr; gap: var(--space-4); }
  .head-split .lead { justify-self: start; }
  .cases { grid-template-columns: 1fr; }
  .trust { flex-direction: column; align-items: flex-start; }
  .trust__logos { width: 100%; }
  .quote { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .trust { padding: var(--space-6); }
  .trust__logos { grid-template-columns: repeat(3, 1fr); gap: var(--space-2); }
  .quote { padding: var(--space-8) var(--space-6); }
  .quote blockquote { font-size: 20px; line-height: 28px; }
}
.why__title { font-size: 48px; line-height: 56px; }
.principles { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.principle {
  border-radius: var(--r-card);
  background: #FFFFFF;
  padding: var(--space-8) var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-3);
  transition: transform 0.35s var(--ease);
}
.principle:hover { transform: translateY(-4px); }
.principle__num { font-size: 48px; line-height: 52px; font-weight: 700; letter-spacing: -0.02em; background: linear-gradient(180deg, var(--brand-blue), rgba(23,162,248,0.25)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.principle__title { font-size: 18px; line-height: 24px; font-weight: 700; margin: 0; }
.principle__text { font-size: 14px; line-height: 20px; color: var(--ink-muted); margin: 0; }

.rule {
  margin: var(--space-4) auto 0;
  display: flex; align-items: center; justify-content: center; gap: var(--space-4);
  padding: var(--space-6) var(--space-8);
  border-radius: var(--r-card);
  background: var(--accent-soft);
  text-align: left;
}
.rule svg { width: 40px; height: 40px; flex-shrink: 0; color: var(--accent-text); }
.rule p { margin: 0; font-size: 18px; line-height: 24px; font-weight: 600; }
.rule b { color: var(--accent-text); }

.why__cards { margin-top: var(--space-4); display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.wcard { border-radius: var(--r-card); background: #FFFFFF; padding: var(--space-8); }
.wcard h3 { margin: 0 0 var(--space-3); }
.wcard p { margin: 0 0 var(--space-6); color: var(--ink-muted); }
.wcard p b { color: var(--ink); }
.chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.chip { font-size: 14px; line-height: 20px; font-weight: 600; padding: 8px 14px; border-radius: var(--r-pill); background: var(--surface-sunken); }

@media (max-width: 1024px) { .principles { grid-template-columns: repeat(2, 1fr); } .why__cards { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .why__title { font-size: 28px; line-height: 34px; }
  .principles { grid-template-columns: 1fr; }
  .rule { flex-direction: column; align-items: flex-start; padding: var(--space-6); }
  .wcard { padding: var(--space-6); }
}
.price { border-radius: var(--r-panel); padding: var(--space-12); }
.price::before { left: 15%; top: -60%; width: 70%; }
.price__top { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--space-8); align-items: end; margin-bottom: var(--space-8); }
.price__top .lead { color: var(--ink-on-brand-muted); margin-top: var(--space-4); }
.price__box { padding: var(--space-6); }
.price__from { margin: 0; font-size: 14px; line-height: 20px; color: var(--ink-on-brand-muted); }
.price__value { margin: var(--space-1) 0 var(--space-3); font-size: 40px; line-height: 48px; font-weight: 700; letter-spacing: -0.02em; }
.price__value span { font-size: 18px; color: var(--ink-on-brand-muted); font-weight: 600; }
.price__note { margin: 0; font-size: 14px; line-height: 20px; color: var(--ink-on-brand-muted); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); position: relative; }
.step { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-2); transition: background 0.3s ease, transform 0.35s var(--ease); }
.step:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.step__num { width: 40px; height: 40px; border-radius: 50%; background: var(--brand-blue); color: var(--ink-on-accent); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; margin-bottom: var(--space-2); }
.step h3 { margin: 0; font-size: 18px; line-height: 24px; }
.step p { margin: 0; font-size: 14px; line-height: 20px; color: var(--ink-on-brand-muted); }
.price__cta { margin-top: var(--space-8); display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.price__cta span { font-size: 14px; line-height: 20px; color: var(--ink-on-brand-muted); }

@media (max-width: 900px) { .price__top { grid-template-columns: 1fr; } .steps { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .price { padding: var(--space-8) var(--space-6); border-radius: 20px; } .price__cta .btn { width: 100%; } }
.faq { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--space-12); align-items: start; }
.faq__side { position: sticky; top: 112px; }
.faq__side .lead { margin: var(--space-4) 0 var(--space-6); }
.faq__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.faq__item { border-radius: var(--r-card); background: #FFFFFF; transition: box-shadow 0.25s ease; }
.faq__item.is-open { box-shadow: inset 0 0 0 1px var(--brand-blue); }
.faq__btn {
  width: 100%; border: 0; background: none; cursor: pointer; text-align: left; color: var(--ink);
  display: grid; grid-template-columns: minmax(0, 1fr) 32px; gap: var(--space-4); align-items: center;
  padding: var(--space-6);
}
.faq__q { font-size: 18px; line-height: 24px; font-weight: 600; }
.faq__icon { position: relative; width: 32px; height: 32px; border-radius: 50%; background: var(--surface-sunken); transition: background 0.25s ease, transform 0.35s var(--ease); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--ink); border-radius: 2px; transform: translate(-50%, -50%); }
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after { width: 2px; height: 12px; transition: transform 0.3s var(--ease); }
.faq__item.is-open .faq__icon { background: var(--brand-blue); transform: rotate(180deg); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.faq__item.is-open .faq__panel { grid-template-rows: 1fr; }
.faq__inner { overflow: hidden; }
.faq__a { margin: 0; padding: 0 var(--space-6) var(--space-6); color: var(--ink-muted); }

@media (max-width: 960px) { .faq { grid-template-columns: 1fr; gap: var(--space-8); } .faq__side { position: static; } }
@media (max-width: 640px) { .faq__btn { padding: var(--space-4); } .faq__q { font-size: 16px; } .faq__a { padding: 0 var(--space-4) var(--space-4); font-size: 14px; line-height: 20px; } }
.cta { border-radius: var(--r-panel); padding: var(--space-24) var(--space-8); text-align: center; }
.cta::before { top: auto; bottom: -70%; width: 90%; }
.cta h2 { max-width: 20ch; margin: 0 auto; }
.cta .lead { color: var(--ink-on-brand-muted); max-width: 52ch; margin: var(--space-4) auto var(--space-8); }
.cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--space-3); }
.cta__mail { margin: var(--space-6) 0 0; font-size: 14px; line-height: 20px; color: var(--ink-on-brand-muted); }
.cta__mail a { color: var(--accent-text-on-brand); }
@media (max-width: 640px) { .cta { padding: var(--space-12) var(--space-6); border-radius: 20px; } .cta__actions .btn { width: 100%; } }
.ftr { background: var(--surface-brand); color: #FFFFFF; }
.ftr__inner { max-width: calc(var(--maxw) + var(--gutter) * 2); margin: 0 auto; padding: var(--space-12) var(--gutter) var(--space-8); }
.ftr__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--space-12); }
.ftr__logo { display: inline-block; margin-bottom: var(--space-4); }
.ftr__logo img { height: 24px; width: auto; min-width: 160px; }
.ftr__mission { margin: 0; max-width: 36ch; font-size: 14px; line-height: 20px; color: var(--ink-on-brand-muted); }
.ftr__heading { margin: 0 0 var(--space-4); font-size: 14px; line-height: 20px; font-weight: 700; }
.ftr__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.ftr__link { font-size: 14px; line-height: 20px; color: var(--ink-on-brand-muted); text-decoration: none; transition: color 0.2s ease; }
.ftr__link:hover { color: #FFFFFF; }
.ftr__bottom { margin-top: var(--space-12); padding-top: var(--space-6); border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4); font-size: 12px; line-height: 16px; color: var(--ink-on-brand-muted); }
.ftr__bottom p { margin: 0; }
.ftr__bottom a { color: var(--ink-on-brand-muted); text-decoration: none; }
.ftr__bottom a:hover { color: #FFFFFF; }
.ftr__meta { display: flex; gap: var(--space-6); flex-wrap: wrap; }
.ftr :focus-visible { outline-color: var(--accent-text-on-brand); }
@media (max-width: 960px) { .ftr__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); } .ftr__brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .ftr__grid { grid-template-columns: 1fr; } .ftr__bottom { flex-direction: column; } }
/* =====================================================
   РЕДИЗАЙН v6 — светлая тема, смелее
   (слой поверх базовых стилей: всё ниже переопределяет исходное)
===================================================== */
:root {
  --shadow-sm: 0 1px 2px rgba(8,24,110,0.06), 0 2px 8px -2px rgba(8,24,110,0.06);
  --shadow-md: 0 2px 4px rgba(8,24,110,0.04), 0 16px 40px -16px rgba(8,24,110,0.22);
  --shadow-lg: 0 40px 120px -40px rgba(8,24,110,0.55);
  --grid-line: rgba(8,24,110,0.06);
  --r-card: 20px;
  --r-panel: 28px;
}

/* ---------- типографика крупнее и плотнее ---------- */
.display-1 { font-size: 60px; line-height: 64px; letter-spacing: -0.035em; }
.display-2 { font-size: 44px; line-height: 50px; letter-spacing: -0.03em; }
.lead { font-size: 19px; line-height: 30px; }
.hl {
  background: linear-gradient(100deg, var(--brand-navy) 0%, var(--accent-text) 35%, #0A5FA0 55%, var(--brand-navy) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  animation: hlShift 8s ease-in-out infinite alternate;
}
.on-brand .hl {
  background: linear-gradient(100deg, #FFFFFF 0%, var(--accent-text-on-brand) 45%, #BFE6FF 70%, #FFFFFF 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
}
@keyframes hlShift { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }

@media (max-width: 1024px) {
  .display-1 { font-size: 48px; line-height: 52px; }
  .display-2 { font-size: 36px; line-height: 42px; }
}
@media (max-width: 640px) {
  .display-1 { font-size: 34px; line-height: 40px; }
  .display-2 { font-size: 28px; line-height: 34px; }
  .lead { font-size: 16px; line-height: 25px; }
}

/* ---------- метки над заголовками ---------- */
.pill {
  padding: 7px 14px 7px 12px;
  background: #FFFFFF;
  box-shadow: inset 0 0 0 1px var(--border), var(--shadow-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 700;
}
.pill::before {
  content: ""; width: 14px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-blue));
}
.pill:has(.pill__live)::before { display: none; }
.on-brand .pill { background: rgba(108,196,255,0.10); box-shadow: inset 0 0 0 1px rgba(108,196,255,0.28); }
.on-brand .pill::before { background: linear-gradient(90deg, #FFFFFF, var(--accent-text-on-brand)); }

/* ---------- кнопки: блик при наведении ---------- */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn--primary, .btn--danger { box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 8px 20px -10px rgba(8,24,110,0.5); }
.btn--primary::after, .btn--danger::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn--primary:hover::after, .btn--danger:hover::after { transform: translateX(120%); }
.btn--ghost { background: #FFFFFF; box-shadow: inset 0 0 0 1px var(--border), var(--shadow-sm); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--border-strong), var(--shadow-md); background: #FFFFFF; }

/* ---------- полоса прогресса прокрутки ---------- */
.scroll-progress {
  position: fixed; left: 0; top: 0; z-index: 200;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-blue));
  transform-origin: 0 50%; transform: scaleX(0);
  pointer-events: none;
}

/* ---------- плавающая шапка ---------- */
.hdr {
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: 0;
  padding: 12px var(--gutter) 0;
}
.hdr.is-scrolled { background: transparent; }
.hdr__inner {
  max-width: var(--maxw);
  height: 64px;
  padding: 0 10px 0 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: inset 0 0 0 1px rgba(211,221,235,0.8), 0 10px 30px -18px rgba(8,24,110,0.35);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.hdr.is-scrolled .hdr__inner { background: rgba(255,255,255,0.9); box-shadow: inset 0 0 0 1px var(--border), 0 18px 40px -20px rgba(8,24,110,0.4); }
.hdr__list { background: transparent; }
.hdr__link:hover { background: var(--surface-sunken); }
.hdr.is-menu-open { padding: 12px var(--gutter) 0; background: #FFFFFF; }
.hdr.is-menu-open .hdr__inner { box-shadow: none; }
.mmenu { top: 88px; }
@media (max-width: 640px) {
  .hdr { padding: 8px var(--gutter) 0; }
  .hdr.is-menu-open { padding: 8px var(--gutter) 0; }
  .hdr__inner { height: 56px; padding: 0 6px 0 16px; border-radius: 14px; }
  .mmenu { top: 72px; }
}

/* ---------- первый экран ---------- */
.hero { padding-top: 72px; margin-top: -76px; padding-bottom: 120px; }
.hero > .container { padding-top: 76px; }
.hero::before { display: none; }
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center -1px;
  -webkit-mask: radial-gradient(ellipse 70% 55% at 50% 30%, #000 20%, transparent 75%);
  mask: radial-gradient(ellipse 70% 55% at 50% 30%, #000 20%, transparent 75%);
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(70px);
  transform: translate3d(calc(var(--px, 0) * 30px), calc(var(--py, 0) * 30px), 0);
  transition: transform 1.2s var(--ease);
}
.orb--1 { width: 520px; height: 520px; left: 50%; top: -220px; margin-left: -560px; background: rgba(23,162,248,0.28); animation: float1 14s ease-in-out infinite alternate; }
.orb--2 { width: 460px; height: 460px; left: 50%; top: -120px; margin-left: 140px; background: rgba(8,24,110,0.16); animation: float2 16s ease-in-out infinite alternate; }
.orb--3 { width: 300px; height: 300px; left: 50%; top: 260px; margin-left: -150px; background: rgba(108,196,255,0.30); animation: float1 18s ease-in-out infinite alternate-reverse; }
@keyframes float1 { to { translate: 60px 40px; } }
@keyframes float2 { to { translate: -70px 50px; } }

.hero__title { max-width: 1100px; font-size: 72px; line-height: 76px; letter-spacing: -0.04em; margin-bottom: var(--space-8); }
.hero__lead { font-size: 20px; line-height: 32px; margin-bottom: 40px; }
.hero__actions .btn { min-height: 56px; padding: 14px 28px; font-size: 17px; }
.hero__checks { margin-top: var(--space-8); gap: var(--space-2); }
.hero__checks span {
  padding: 6px 14px 6px 10px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.7);
  box-shadow: inset 0 0 0 1px var(--border);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  font-weight: 500; color: var(--ink);
}

.hero__title .hl { display: block; }

/* каскадное появление первого экрана */
.hero .container > .pill,
.hero__title, .hero__lead, .hero__actions, .hero__checks {
  animation: heroIn 1s var(--ease) both;
}
.hero__title   { animation-delay: 0.08s; }
.hero__lead    { animation-delay: 0.18s; }
.hero__actions { animation-delay: 0.28s; }
.hero__checks  { animation-delay: 0.38s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(28px); filter: blur(8px); } to { opacity: 1; transform: none; filter: none; } }

@media (max-width: 1024px) { .hero__title { font-size: 56px; line-height: 60px; } }
@media (max-width: 640px) {
  .hero { padding-bottom: 72px; margin-top: -64px; }
  .hero > .container { padding-top: 60px; }
  .hero__title { font-size: 34px; line-height: 39px; letter-spacing: -0.03em; }
  .hero__title .hl { display: inline; }
  .hero__lead { font-size: 16px; line-height: 25px; }
  .hero__grid { background-size: 40px 40px; }
  .orb--1 { width: 320px; height: 320px; margin-left: -300px; }
  .orb--2 { width: 280px; height: 280px; margin-left: 20px; }
}

/* ---------- тёмные панели: сетка + глубина ---------- */
.on-brand {
  background-color: var(--surface-brand);
  background-image:
    radial-gradient(120% 80% at 100% 100%, rgba(23,162,248,0.22) 0%, transparent 55%),
    radial-gradient(80% 60% at 0% 0%, rgba(40,70,200,0.45) 0%, transparent 60%),
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: auto, auto, 44px 44px, 44px 44px;
  box-shadow: inset 0 0 0 1px rgba(108,196,255,0.16);
}

/* радар: наклон, который выпрямляется при прокрутке */
.radar-stage { perspective: 1600px; margin-top: 72px; }
.radar {
  margin-top: 0;
  transform-origin: 50% 0%;
  transform: rotateX(var(--tilt, 0deg)) scale(var(--tscale, 1));
  box-shadow: inset 0 0 0 1px rgba(108,196,255,0.22), var(--shadow-lg);
  will-change: transform;
}
.radar-stage::after {
  content: ""; display: block; height: 0;
}
.glass { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); box-shadow: inset 0 1px 0 rgba(255,255,255,0.08); }

/* ---------- цифры одной лентой ---------- */
.stats {
  margin-top: 56px;
  gap: 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-panel);
  box-shadow: inset 0 0 0 1px var(--border), var(--shadow-md);
}
.stat { background: transparent; border-radius: 0; padding: 40px 24px; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 24px; bottom: 24px; width: 1px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}
.stat__value {
  font-size: 60px; line-height: 64px; letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--brand-navy) 30%, var(--accent-text) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__unit { -webkit-text-fill-color: var(--ink-muted); }
@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 28px 20px; }
  .stat + .stat::before { left: 24px; right: 24px; top: 0; bottom: auto; width: auto; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
  .stat__value { font-size: 44px; line-height: 48px; }
}

/* ---------- две перекрещенные бегущие строки ---------- */
.tickers { position: relative; height: 170px; overflow: hidden; margin: -24px 0; z-index: 2; }
.tickers .ticker {
  position: absolute; left: -5%; width: 110%; top: 50%;
  padding: 18px 0;
  box-shadow: 0 20px 40px -24px rgba(8,24,110,0.6);
}
.tickers .ticker:not(.ticker--alt) { transform: translateY(-50%) rotate(-2.5deg); z-index: 2; }
.ticker--alt {
  background: var(--brand-blue); color: var(--brand-navy);
  transform: translateY(-50%) rotate(2.5deg);
  z-index: 1;
}
.ticker--alt .ticker__track { animation-direction: reverse; animation-duration: 55s; }
.ticker--alt .ticker__item::after { background: var(--brand-navy); }
.ticker__item { font-size: 18px; letter-spacing: -0.01em; text-transform: none; }
@media (max-width: 640px) {
  .tickers { height: 150px; }
  .tickers .ticker { padding: 12px 0; }
  .tickers .ticker:not(.ticker--alt) { top: 36%; transform: translateY(-50%) rotate(-4deg); }
  .tickers .ticker--alt { top: 66%; transform: translateY(-50%) rotate(3deg); }
  .ticker__item { font-size: 15px; }
}

/* ---------- фон приподнятых секций: точечная сетка ---------- */
.section--sunken {
  background:
    radial-gradient(rgba(8,24,110,0.08) 1px, transparent 1.2px) 0 0 / 22px 22px,
    var(--surface-sunken);
}
.section { padding: 128px 0; }
@media (max-width: 640px) { .section { padding: 72px 0; } }

/* ---------- общая «карточка»: белая, с рамкой и тенью ---------- */
.pcard, .task, .case, .principle, .wcard, .cmp, .flow__card, .faq__item, .trust {
  background: #FFFFFF;
  box-shadow: inset 0 0 0 1px var(--border), var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.35s ease, background 0.3s ease;
}
.pcard:hover, .task:hover, .case:hover, .principle:hover, .wcard:hover {
  transform: translateY(-6px);
  box-shadow: inset 0 0 0 1px rgba(23,162,248,0.55), var(--shadow-md);
  background: #FFFFFF;
}
.spot::after { background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(23,162,248,0.12), transparent 60%); }

/* ---------- цена бездействия ---------- */
.pain { gap: 20px; }
.pain__intro { padding: 56px 40px; }
.pcard { padding: 28px; }
.pcard__who { background: var(--accent-soft); }
.pcard__num {
  font-size: 64px; line-height: 64px; letter-spacing: -0.045em;
  background: linear-gradient(180deg, var(--brand-navy) 40%, var(--accent-text));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pcard__num small { -webkit-text-fill-color: var(--ink-muted); }
@media (max-width: 640px) { .pain__intro { padding: 32px 24px; } .pcard__num { font-size: 48px; line-height: 52px; } }

/* ---------- периметр ---------- */
.head-center { margin-bottom: 64px; }
.cmp { padding: 36px; }
.cmp--now { box-shadow: inset 0 0 0 1px #FFD0CB, 0 24px 60px -30px rgba(240,68,56,0.45); }
.cmp--old .tile { background: var(--surface-sunken); }
.compare__vs {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--brand-navy), #1D3BC0);
  box-shadow: 0 0 0 8px var(--surface-sunken), 0 12px 30px -8px rgba(8,24,110,0.6);
}
.statement { padding: 72px 40px; margin-top: 20px; }
.statement p { font-size: 36px; line-height: 44px; letter-spacing: -0.025em; max-width: 36ch; }
@media (max-width: 640px) { .statement { padding: 40px 24px; } .statement p { font-size: 22px; line-height: 29px; } .cmp { padding: 24px; } }

/* ---------- задачи ---------- */
.bento { gap: 20px; }
.task__icon {
  background: linear-gradient(135deg, var(--accent-soft), #FFFFFF);
  box-shadow: inset 0 0 0 1px #CFE7FB;
  transition: transform 0.45s var(--ease);
}
.task:hover .task__icon { transform: rotate(-6deg) scale(1.06); }
.task__tag { background: var(--surface-sunken); }
.task--big {
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(23,162,248,0.10), transparent 60%),
    #FFFFFF;
}
.task--big:hover { background: radial-gradient(90% 60% at 100% 0%, rgba(23,162,248,0.14), transparent 60%), #FFFFFF; }
.url { box-shadow: inset 0 0 0 1px var(--border); background: #FFFFFF; transition: transform 0.35s var(--ease); }
.task--big:hover .url:nth-child(2) { transform: translateX(6px); }
.task--big:hover .url:nth-child(3) { transform: translateX(3px); }
.task--modules { min-height: 200px; }
.task--modules h3 { font-size: 30px; line-height: 36px; letter-spacing: -0.02em; }
.task--modules .arrow { width: 64px; height: 64px; box-shadow: 0 0 0 8px rgba(23,162,248,0.15); }

/* ---------- как работаем ---------- */
.flow__node { background: #FFFFFF; }
.flow__node--active { position: relative; }
.flow__node--active::before {
  content: ""; position: absolute; inset: -12px; border-radius: 50%;
  border: 2px dashed rgba(23,162,248,0.6);
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.flow__progress { height: 3px; }
.flow__cards { min-height: 200px; }
.flow__card { padding: 40px; box-shadow: inset 0 0 0 1px var(--border), var(--shadow-md); }
.flow__card-title { font-size: 30px; line-height: 36px; letter-spacing: -0.02em; }

/* ---------- кейсы ---------- */
.cases { gap: 20px; }
.case { padding: 28px; }
.case__metric { background: linear-gradient(135deg, var(--accent-soft), #F6FBFF); box-shadow: inset 0 0 0 1px #CFE7FB; }
.case__metric b { font-size: 44px; line-height: 48px; letter-spacing: -0.03em; }
.case__tag { background: var(--surface-sunken); }
.trust { margin-top: 48px; }
.trust__logo { background: var(--surface-sunken); transition: background 0.3s ease, transform 0.35s var(--ease); }
.trust__logo:hover { background: var(--accent-soft); transform: translateY(-2px); }
.quote { margin-top: 20px; padding: 72px 64px; }
.quote blockquote { font-size: 34px; line-height: 44px; letter-spacing: -0.02em; }
.quote blockquote::before {
  font-size: 120px; line-height: 70px;
  background: linear-gradient(180deg, var(--brand-blue), rgba(23,162,248,0.2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (max-width: 640px) { .quote { padding: 36px 24px; } .quote blockquote { font-size: 21px; line-height: 29px; } }

/* ---------- почему мы ---------- */
.why__title { font-size: 64px; line-height: 68px; letter-spacing: -0.04em; }
.principles { gap: 20px; }
.principle { padding: 32px 28px; }
.principle__num {
  font-size: 88px; line-height: 80px; letter-spacing: -0.05em;
  background: none; color: transparent;
  -webkit-text-stroke: 1.5px var(--brand-blue);
  transition: color 0.4s ease;
}
.principle:hover .principle__num { color: rgba(23,162,248,0.12); }
.rule {
  margin-top: 20px;
  background: linear-gradient(90deg, var(--accent-soft), #FFFFFF 70%);
  box-shadow: inset 0 0 0 1px #CFE7FB;
}
.why__cards { gap: 20px; margin-top: 20px; }
.wcard { padding: 40px; }
.chip { background: #FFFFFF; box-shadow: inset 0 0 0 1px var(--border); transition: background 0.2s ease, box-shadow 0.2s ease; }
.chip:hover { background: var(--accent-soft); box-shadow: inset 0 0 0 1px #9FD3F7; }
@media (max-width: 1024px) { .why__title { font-size: 44px; line-height: 50px; } }
@media (max-width: 640px) { .why__title { font-size: 30px; line-height: 36px; } .wcard { padding: 24px; } .principle__num { font-size: 64px; line-height: 60px; } }

/* ---------- тарифы ---------- */
.price { padding: 72px 64px; }
.price__value {
  font-size: 52px; line-height: 56px; letter-spacing: -0.035em;
  background: linear-gradient(90deg, #FFFFFF, var(--accent-text-on-brand));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price__value span { -webkit-text-fill-color: var(--ink-on-brand-muted); }
.price__box { box-shadow: inset 0 0 0 1px rgba(108,196,255,0.3), 0 20px 50px -20px rgba(23,162,248,0.5); }
@media (max-width: 640px) { .price { padding: 40px 24px; } .price__value { font-size: 40px; line-height: 44px; } }

/* ---------- FAQ ---------- */
.faq__item.is-open { box-shadow: inset 0 0 0 1.5px var(--brand-blue), var(--shadow-md); }
.faq__item:hover:not(.is-open) { box-shadow: inset 0 0 0 1px var(--border-strong), var(--shadow-sm); }

/* ---------- финальный призыв ---------- */
.cta { padding: 144px 40px; }
.cta h2 { font-size: 68px; line-height: 72px; letter-spacing: -0.04em; max-width: 21ch; }
.cta__rings { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.cta__rings span {
  position: absolute; left: 50%; top: 50%;
  width: 240px; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(108,196,255,0.45);
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0;
  animation: ripple 9s linear infinite;
}
.cta__rings span:nth-child(2) { animation-delay: 3s; }
.cta__rings span:nth-child(3) { animation-delay: 6s; }
@keyframes ripple {
  0%   { transform: translate(-50%, -50%) scale(0.4); opacity: 0; }
  15%  { opacity: 0.9; }
  100% { transform: translate(-50%, -50%) scale(6); opacity: 0; }
}
@media (max-width: 1024px) { .cta h2 { font-size: 48px; line-height: 52px; } }
@media (max-width: 640px) { .cta { padding: 64px 24px; } .cta h2 { font-size: 32px; line-height: 38px; } }

/* ---------- подвал: крупная надпись ---------- */
.ftr { overflow: hidden; position: relative; }
.ftr__giant {
  margin: 8px 0 -0.2em;
  font-size: min(15.2vw, 212px); line-height: 1; font-weight: 700;
  letter-spacing: -0.045em; text-align: center; white-space: nowrap;
  background: linear-gradient(180deg, rgba(108,196,255,0.55) 0%, rgba(108,196,255,0.02) 85%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  user-select: none; pointer-events: none;
}

/* ---------- появление при прокрутке: мягкий расфокус ---------- */
[data-anim] { transform: translateY(32px) scale(0.985); filter: blur(6px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease); }
[data-anim].is-visible { filter: none; }

@media (prefers-reduced-motion: reduce) {
  [data-anim] { filter: none; }
  .radar { transform: none; }
  .hl { animation: none; }
}

/* текущая страница в меню и подвале */
.hdr__drop a[aria-current] { background: var(--accent-soft); }
.ftr__link[aria-current] { color: #FFFFFF; }
