/* Micra — купленный дисплейный шрифт, лежит у нас (Google Fonts его не отдаёт).
   Начертаний всего два, поэтому каждое накрывает диапазон весов: без этого
   запрос font-weight:900 браузер дорисовал бы синтетическим жиром и знак поплыл.
   Шрифт капительный: строчные буквы — те же глифы, что заглавные, заголовки
   выходят капсом сами, text-transform для этого не нужен. */
@font-face{
  font-family: "Micra";
  src: url("fonts/micra_bold.woff2") format("woff2"),
       url("fonts/micra_bold.woff") format("woff");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Micra";
  src: url("fonts/micra_book.woff2") format("woff2"),
       url("fonts/micra_book.woff") format("woff");
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}

:root{
  --ink:        #0B0B0B;
  --ink-2:      #141414;
  --ink-3:      #1C1C1C;
  --line:       #2A2A2A;
  --line-2:     #3A3A3A;
  --paper:      #F2F1EC;
  --paper-2:    #E7E5DE;
  --mute:       #8A8A85;
  --mute-2:     #5A5A57;
  --acid:       #EC712E;
  --acid-ink:   #0B0B0B;
  --warn:       #E5484D;

  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  --f-display: "Micra", "Geologica", system-ui, sans-serif;
  --f-text:    "Geologica", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;
}

*,*::before,*::after{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ background:var(--ink); scroll-behavior: smooth; overflow-x: hidden; }
body{
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-text);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select{ font: inherit; color: inherit; }
img, svg{ display: block; max-width: 100%; }
::selection{ background: var(--acid); color: var(--acid-ink); }

/* Visible keyboard focus for all interactive elements */
:where(a, button, input, textarea, select, [tabindex]):focus-visible{
  outline: 2px solid var(--acid);
  outline-offset: 3px;
  border-radius: 1px;
}
.field .req{ color: var(--acid); margin-left: 3px; }
.f-bot a:hover{ color: var(--acid); }

/* ── Type helpers ───────────────────────────── */
.f-mono{ font-family: var(--f-mono); }
.f-disp{ font-family: var(--f-display); }
.eyebrow{
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before{
  content: ""; width: 28px; height: 1px; background: var(--mute);
}
.eyebrow.acid{ color: var(--acid); }
.eyebrow.acid::before{ background: var(--acid); }

h1,h2,h3,h4{ font-family: var(--f-display); margin: 0; font-weight: 700; letter-spacing: -0.02em; }
h1{ font-size: clamp(56px, 9.5vw, 168px); line-height: 0.92; font-weight: 900; letter-spacing: -0.035em; }
/* ══ Перекалибровка дисплейной шкалы под Micra (07.08.2026) ══
   Старая шкала кеглей была подобрана под СТРОЧНЫЙ Unbounded. Micra капительная
   и широкая: та же фраза капсом в ней почти вдвое длиннее (замер: 0.49 к
   строчному Unbounded, 0.67 капс-к-капсу), заголовки распухали из колонок в
   столбы. Все дисплейные clamp() ниже ужаты в ~1.5 раза. Полное равенство
   строк со старой версией недостижимо без кеглей ×0.5 — принят капс-к-капс
   коэффициент как баланс постерности и компактности. */
h2{ font-size: clamp(26px, 3.5vw, 58px); line-height: 0.96; letter-spacing: -0.03em; }
h3{ font-size: clamp(17px, 1.5vw, 22px); line-height: 1.1; }
p{ margin: 0; }

.lede{ font-size: clamp(18px, 1.5vw, 22px); line-height: 1.4; color: var(--paper); }
.muted{ color: var(--mute); }
.dim{ color: var(--mute); }
.slab .dim{ color: var(--mute-2); }

/* ── Layout ─────────────────────────────────── */
.wrap{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section{ position: relative; }

/* Tag chip */
.chip{
  display: inline-flex; align-items: center; gap: 8px;
  height: 28px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(255,255,255,0.02);
}
.chip .dot{ width: 6px; height: 6px; border-radius: 99px; background: var(--acid); }
.chip.solid{ background: var(--acid); color: var(--acid-ink); border-color: var(--acid); }
.chip.outline{ background: transparent; }

/* Buttons */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px;
  height: 56px;
  padding: 0 24px;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn .arr{ width: 14px; height: 14px; flex: 0 0 auto; }
.btn:hover{ background: var(--acid); border-color: var(--acid); color: var(--acid-ink); }
.btn.acid{ background: var(--acid); border-color: var(--acid); color: var(--acid-ink); }
.btn.acid:hover{ background: var(--paper); border-color: var(--paper); color: var(--ink); }
.btn.ghost{ background: transparent; color: var(--paper); border-color: var(--line-2); }
.btn.ghost:hover{ border-color: var(--paper); background: transparent; color: var(--paper); }
.btn.sm{ height: 40px; padding: 0 16px; font-size: 13px; }
.btn.lg{ height: 64px; padding: 0 28px; font-size: 16px; }
.btn.block{ width: 100%; }

/* Section frame helpers */
.section-pad{ padding: clamp(52px, 6vw, 96px) 0; }
.section-tight{ padding: clamp(40px, 4.5vw, 68px) 0; }

.rule{ height: 1px; background: var(--line); width: 100%; }
.rule.faint{ background: var(--line); opacity: .6; }

/* Header */
.hdr{
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,11,11,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.hdr-inner{
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand{
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 18px;
}
.brand .mark{
  width: 24px; height: 24px;
  flex: 0 0 24px; display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.35));
}
.nav{ display: flex; gap: 28px; align-items: center; }
.nav a{
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: .82;
}
.nav a:hover{ color: var(--acid); opacity: 1; }
.hdr-cta{ display: flex; align-items: center; gap: 12px; }
.lang{
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mute);
  border-left: 1px solid var(--line);
  padding-left: 14px;
}

/* Marquee ticker */
.ticker{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--ink);
}
.ticker-track{
  display: flex; gap: 48px;
  white-space: nowrap;
  padding: 14px 0;
  animation: tk 38s linear infinite;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
}
.ticker-track span{ display: inline-flex; align-items: center; gap: 14px; }
.ticker-track span::after{
  content: "●"; color: var(--acid); font-size: 10px;
}
@keyframes tk { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Hero (single-screen, mouse-reactive) ───── */
.hero{
  position: relative;
  min-height: calc(100svh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

/* Mouse-reactive backdrop: vinyl grooves + acid ring */
.hero-bg{ position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-grooves{
  position: absolute; top: 50%; left: 72%;
  width: 165vmax; height: 165vmax;
  transform: translate(-50%, -50%);
  background: repeating-radial-gradient(circle at center,
    transparent 0 17px, rgba(242,241,236,0.05) 17px 18px);
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, #000 36%, transparent 66%);
  mask-image: radial-gradient(circle at center, #000 0%, #000 36%, transparent 66%);
  will-change: transform;
}
.hero-ring{
  position: absolute; top: 50%; left: 72%;
  width: 43vmax; height: 43vmax;
  border-radius: 50%;
  border: 1px solid rgba(236,113,46,0.22);
  transform: translate(-50%, -50%);
  will-change: transform;
}
.hero-ring::after{
  content: ""; position: absolute; inset: 15%;
  border-radius: 50%; border: 1px solid rgba(236,113,46,0.10);
}

.hero-inner{
  position: relative; z-index: 2; flex: 0 1 auto;
  display: grid; grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding-top: clamp(20px, 3vw, 44px);
  padding-bottom: 0;
}
.hero-left{ min-width: 0; display: flex; flex-direction: column; gap: clamp(14px, 1.5vw, 22px); }
.hero-headline{
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(58px, 8.2vw, 150px);
  line-height: 0.84; letter-spacing: -0.05em; margin: 0;
}
.hero-headline .accent{ color: var(--acid); }
/* Слоган намеренно НЕ в дисплейном шрифте: Micra капительный, и рядом с H1 слоган
   капсом сливался с ним в одну кричащую массу. Строчная Geologica даёт контраст
   «знак — человеческая речь». 21ch ломает строку после «теперь», чтобы оба
   оранжевых акцента легли на вторую строку вместе. */
.hero-slogan{ font-family: var(--f-text); font-weight: 500; font-size: clamp(22px, 2.4vw, 34px); line-height: 1.16; letter-spacing: -0.012em; margin: 0; color: var(--paper); max-width: 21ch; }
.hero-slogan .accent{ color: var(--acid); }
.hero-gloss{ font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.hero-gloss b{ color: var(--paper); font-weight: 500; }
.hero-sub{ font-size: clamp(16px, 1.2vw, 20px); line-height: 1.4; max-width: 42ch; color: var(--paper); }
.hero-ctarow{ display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 4px; }
.hero-ctarow .quiet{
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mute); padding-left: 8px; border-left: 1px solid var(--line); margin-left: 4px;
}
.hero-ctarow .quiet:hover{ color: var(--acid); }
.hero-badges{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }

/* Disc stage (tilts toward cursor) */
.hero-right{ position: relative; min-width: 0; display: grid; place-items: center; perspective: 1200px; }
.hero-disc-stage{
  position: relative; width: clamp(248px, 33vw, 470px); aspect-ratio: 1/1;
  transform-style: preserve-3d; will-change: transform;
}
.hero-disc-stage .edible-disc{ width: 100%; }
.hd-tag{
  position: absolute; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mute);
  background: rgba(11,11,11,0.62); border: 1px solid var(--line);
  padding: 6px 11px; white-space: nowrap;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  transform: translateZ(48px);
}
.hd-tag.tl{ top: 2%; left: -7%; }
.hd-tag.tr{ top: 16%; right: -9%; color: var(--acid); border-color: rgba(236,113,46,0.45); }
.hd-tag.bl{ bottom: 18%; left: -11%; }
.hd-tag.br{ bottom: 1%; right: -3%; }

/* Edible record video disc — circular crop + label overlay */
.edible-disc{
  width: min(470px, 100%); aspect-ratio: 1/1; position: relative;
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.75), 0 0 0 1px rgba(242,241,236,0.06);
}
.edible-media{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); display: block; }
.edible-label{
  position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none;
  /* let the video's own light sweep across the printed text */
  mix-blend-mode: multiply;
  transform-origin: 50% 50%;
}
.edible-label text{
  fill: #3a1d0a;
  font-family: var(--f-display); font-weight: 700; text-transform: uppercase;
  text-anchor: middle;
}
/* ── Printed label — curved type wrapping the spindle hole, like a real pressing ── */
.edible-label .vk-arc-top{ font-size: 13px; letter-spacing: 0.5px; }
.edible-label .vk-arc-bot{
  font-size: 6.8px; letter-spacing: 2px; font-weight: 600;
  font-family: var(--f-mono); fill: #4a2a10;
}
.edible-label .vk-star{ font-size: 8px; fill: #4a2a10; }

/* the label is printed onto the record — it stays fixed relative to the grooves
   and simply rides the disc's wobble/tilt (the video has no rigid spin to match) */

/* light OFF: paint flat dark ink that ignores the video shine */
.edible-disc[data-label-blend="off"] .edible-label{ mix-blend-mode: normal; }
.edible-disc[data-label-blend="off"] .edible-label text,
.edible-disc[data-label-blend="off"] .edible-label textPath{ fill: #120d07; }
.edible-disc[data-label-blend="off"] .edible-label .vk-arc-bot,
.edible-disc[data-label-blend="off"] .edible-label .vk-arc-bot textPath,
.edible-disc[data-label-blend="off"] .edible-label .vk-star{ fill: #241708; }
.edible-disc[data-label="off"] .edible-label{ display: none; }

/* ── Rotating seal badge at the disc edge ───── */
.hd-seal{
  position: absolute;
  left: -6%; bottom: 0%;
  width: clamp(86px, 9.5vw, 124px);
  aspect-ratio: 1/1;
  transform: translateZ(64px);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.45));
  pointer-events: none;
}
.hd-seal svg{ width: 100%; height: 100%; display: block; }
.hd-seal .seal-bg{ fill: var(--acid); }
.hd-seal .seal-spin{
  transform-box: view-box; transform-origin: 50% 50%;
  animation: vk-seal-rot 18s linear infinite;
}
.hd-seal .seal-t{
  font-family: var(--f-mono); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  fill: var(--acid-ink);
}
.hd-seal .seal-star{
  font-size: 22px; fill: var(--acid-ink);
}
@keyframes vk-seal-rot{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce){
  .hd-seal .seal-spin{ animation: none; }
}

/* Bottom spec strip */
.hero-specstrip{
  position: relative; z-index: 2;
  margin-top: clamp(22px, 3.4vh, 48px);
  display: flex; flex-wrap: wrap; gap: clamp(14px, 2.4vw, 40px); align-items: center;
  padding-top: 16px; padding-bottom: clamp(18px, 2vw, 26px);
  border-top: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mute);
}
.hero-specstrip .s{ display: inline-flex; gap: 9px; align-items: baseline; }
.hero-specstrip .s b{ color: var(--paper); font-weight: 500; }
.hero-specstrip .s .k{ color: var(--mute); }
.hero-specstrip .sep{ color: var(--acid); }

@media (max-width: 860px){
  .hero{ min-height: 0; }
  .hero-inner{ grid-template-columns: 1fr; gap: clamp(20px, 5vw, 36px); padding-top: clamp(24px, 6vw, 44px); }
  .hero-right{ order: 2; }
  .hero-grooves, .hero-ring{ left: 50%; top: 46%; }
  .hero-disc-stage{ width: clamp(220px, 56vw, 360px); }
  .hd-tag{ font-size: 10px; padding: 5px 9px; }
}
@media (max-width: 720px){
  .hd-tag.tl{ left: 0%; } .hd-tag.bl{ left: -2%; }
  .hd-tag.tr{ right: -2%; } .hd-tag.br{ right: 0%; }
}
/* Short viewports — compress so the hero stays one screen */
@media (min-width: 1101px) and (max-height: 760px){
  .hero-headline{ font-size: clamp(64px, 9vw, 130px); }
  .hero-left{ gap: clamp(10px, 1.2vw, 16px); }
  .hero-sub{ font-size: 16px; }
  .hero-inner{ padding-top: clamp(14px, 2vw, 28px); }
  .hero-disc-stage{ width: clamp(220px, 26vw, 360px); }
  .hero-specstrip{ padding-top: 12px; padding-bottom: 14px; }
}

/* ── Generic section title block ──────────── */
.title-block{ display: block; margin-bottom: clamp(28px, 4vw, 48px); }
.title-block .left{ display: block; }
.title-block .right{ display: block; max-width: 62ch; margin-top: 14px; }
.title-block .eyebrow{ margin-bottom: 18px; }
.title-block h2{ font-size: clamp(24px, 3.45vw, 54px); line-height: 1.06; max-width: 24ch; text-wrap: balance; }
.slab .title-block h2, .paid .title-block h2{ font-size: clamp(26px, 3.6vw, 56px); }

/* What-is */
.what-grid{
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); border-block: 1px solid var(--line);
}
.what-cell{
  background: var(--ink); padding: clamp(28px, 3vw, 48px);
  display: flex; flex-direction: column; gap: 16px;
}
.what-cell p{ max-width: 50ch; }
.what-cell .num{
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--mute); text-transform: uppercase;
}
.note{
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.04em;
  color: var(--mute); line-height: 1.5;
  padding: 14px 16px;
  border: 1px dashed var(--line-2);
  background: rgba(255,255,255,0.015);
}

/* Positioning slab */
.slab{
  background: var(--paper);
  color: var(--ink);
  padding: clamp(56px, 6.5vw, 104px) 0;
}
.slab .eyebrow{ color: var(--mute-2); }
.slab .eyebrow::before{ background: var(--mute-2); }
.slab h2{ color: var(--ink); }
.slab .triplet{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(11,11,11,0.18);
  border-block: 1px solid rgba(11,11,11,0.18);
  margin-top: 56px;
}
.slab .triplet .tile{
  background: var(--paper); padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 200px;
}
.slab .triplet h3{
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.05;
}
.slab .triplet .strike{ text-decoration: line-through; color: var(--mute-2); }
.slab .triplet .ok{ font-weight: 800; }
.slab .triplet .ok::after{
  content: ""; display: inline-block; width: 10px; height: 10px;
  background: var(--ink); margin-left: 8px; vertical-align: middle;
}
.slab-foot{
  margin-top: 56px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: end;
}
.slab-foot p{
  max-width: 56ch;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.35;
}

/* Why cards */
.why-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border-block: 1px solid var(--line);
}
.why-card{
  background: var(--ink); padding: clamp(24px, 2.4vw, 36px);
  min-height: 320px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.why-card .num{
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--mute); text-transform: uppercase;
}
.why-card h3{ font-size: clamp(18px, 1.5vw, 20px); }
.why-card p{ color: var(--paper); max-width: 32ch; }
.why-card .ico{
  width: 56px; height: 56px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--acid);
  margin-top: auto;
}

/* Custom badges flow */
.custom{
  display: grid; grid-template-columns: 0.5fr 0.5fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.custom .badges{
  display: flex; flex-wrap: wrap; gap: 10px;
}
.custom .badges .b{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line-2);
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.custom .badges .b.acid{
  background: var(--acid); color: var(--acid-ink);
  border-color: var(--acid);
}
.custom .badges .b .x{ color: var(--mute); }

/* Process steps */
.steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border-block: 1px solid var(--line);
}
.step{
  background: var(--ink); padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
  position: relative;
}
.step .stepnum{
  font-family: var(--f-display);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--paper);
}
.step .stepnum .lil{ font-size: 0.4em; color: var(--mute); vertical-align: top; }
.step h3{ font-size: clamp(17px, 1.4vw, 20px); }
.step p{ color: var(--mute); max-width: 32ch; font-size: 14.5px; }
.step .tag{
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--acid); margin-top: auto;
}

/* Scenarios */
.scenarios{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line); border-block: 1px solid var(--line);
}
.scn{
  background: var(--ink); padding: clamp(24px, 2vw, 36px);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 260px;
  position: relative;
  transition: background .2s ease;
}
.scn:hover{ background: var(--ink-2); }
.scn .tagrow{
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mute);
}
.scn h3{ font-size: clamp(15px, 1.25vw, 18px); }
.scn p{ color: var(--paper); font-size: 14.5px; line-height: 1.45; }

/* Queue */
.queue-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.q-card{
  background: var(--ink); padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; gap: 18px;
  min-height: 440px;
  position: relative;
  transition: background .2s ease;
}
.q-card.active{ background: var(--ink-2); }
.q-card .toprow{
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.q-card .badge{
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 10px; border: 1px solid var(--line-2);
  color: var(--mute);
}
.q-card.priority .badge{ background: var(--acid); color: var(--acid-ink); border-color: var(--acid); }
.q-card.urgent  .badge{ background: var(--warn); color: var(--ink); border-color: var(--warn); }
.q-card .qtitle{
  font-family: var(--f-display);
  font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(21px, 1.8vw, 26px);
  line-height: 1;
}
.q-card .sub{
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--mute);
}
.q-card p{ color: var(--paper); font-size: 15px; max-width: 36ch; }
.q-card .meter{
  display: flex; flex-direction: column; gap: 8px;
  margin-top: auto;
}
.q-card .meter .bar{
  height: 8px; background: var(--line); position: relative; overflow: hidden;
}
.q-card .meter .bar::after{
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, var(--paper) 0 6px, transparent 6px 10px);
  width: 35%;
}
.q-card.priority .meter .bar::after{ background: var(--acid); width: 78%; }
.q-card.urgent .meter .bar::after{ background: var(--warn); width: 92%; }
.q-card .meter .lbl{
  display: flex; justify-content: space-between;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute);
}
.q-card .micro{
  font-family: var(--f-mono); font-size: 11px;
  color: var(--mute); line-height: 1.5;
  padding-top: 10px; border-top: 1px dashed var(--line);
}

/* Paid priority — «приоритет-пасс» */
.paid{
  background: var(--acid);
  color: var(--acid-ink);
  padding: clamp(56px, 6.5vw, 104px) 0;
  position: relative;
  overflow: hidden;
}
.paid .eyebrow{ color: var(--acid-ink); }
.paid .eyebrow::before{ background: var(--acid-ink); }
.paid h2{
  color: var(--acid-ink);
  font-size: clamp(24px, 2.5vw, 40px);
  line-height: 1.04; letter-spacing: -0.02em;
  max-width: 17ch; text-wrap: balance;
}
.paid .layout{
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.paid .copy{ display: flex; flex-direction: column; gap: 26px; max-width: 56ch; }
.paid .ctas{ display: flex; flex-wrap: wrap; gap: 14px; }
.paid .btn{ background: var(--ink); color: var(--paper); border-color: var(--ink); }
.paid .btn:hover{ background: var(--paper); color: var(--ink); border-color: var(--paper); }
.paid .btn.ghost{ background: transparent; color: var(--ink); border-color: var(--ink); }
.paid .btn.ghost:hover{ background: var(--ink); color: var(--paper); }
.paid-no{ padding-top: 20px; border-top: 1px dashed rgba(11,11,11,0.35); }
.paid-no .cap{
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; opacity: .8; margin-bottom: 10px;
}
.paid-no ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.paid-no li{ font-size: 14.5px; line-height: 1.45; display: flex; gap: 10px; }
.paid-no li::before{ content: "—"; font-family: var(--f-mono); flex: 0 0 auto; }
.paid .fine{
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
}

/* чёрный пропуск приоритета: въезд из «кассы», парение, 3D-тилт, блик */
.pass-io{
  justify-self: end; width: min(430px, 100%);
  perspective: 1100px;
  opacity: 0; transform: translateY(56px) rotate(3.5deg);
  transition: transform .95s cubic-bezier(.16,1,.3,1), opacity .55s ease;
}
.pass-io.in{ opacity: 1; transform: translateY(0) rotate(-2.2deg); }
.pass-io.lvl{ transform: translateY(-6px) rotate(-0.6deg); }
.pass{
  width: 100%;
  background: var(--ink); color: var(--paper);
  border-radius: 10px;
  box-shadow: 0 40px 80px -36px rgba(11,11,11,.6), inset 0 0 0 1px rgba(242,241,236,.08);
  transform-style: preserve-3d;
  position: relative; overflow: hidden;
  transition: box-shadow .3s cubic-bezier(.16,1,.3,1);
}
.pass-io.lvl .pass{
  box-shadow: 0 54px 90px -40px rgba(11,11,11,.65), inset 0 0 0 1px rgba(242,241,236,.14);
}
.pass::after{
  content: ""; position: absolute; top: -40%; bottom: -40%; left: 0; width: 38%;
  background: linear-gradient(105deg, transparent 0%,
    rgba(242,241,236,.07) 42%, rgba(242,241,236,.15) 50%, rgba(242,241,236,.07) 58%, transparent 100%);
  transform: translateX(-160%) skewX(-12deg);
  pointer-events: none;
}
.pass-io.lvl .pass::after{ animation: passShine .9s cubic-bezier(.3,.6,.3,1) forwards; }
@keyframes passShine{ to{ transform: translateX(420%) skewX(-12deg); } }
.pass-top{
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 20px 24px 0;
}
.pass-top .id{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--mute);
}
.pass-top .id svg{ width: 20px; height: 20px; }
.pass-top .num{ font-family: var(--f-mono); font-size: 13px; letter-spacing: .1em; color: var(--acid); white-space: nowrap; }
.pass-head{ padding: 16px 24px 20px; }
.pass-head .t{
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(32px, 2.75vw, 40px); line-height: .95;
  letter-spacing: -.02em; text-transform: uppercase;
}
.pass-head .s{ margin-top: 9px; font-size: 13.5px; line-height: 1.5; color: var(--mute); }
.pass-perf{ position: relative; border-top: 2px dashed rgba(242,241,236,.2); }
.pass-perf::before, .pass-perf::after{
  content: ""; position: absolute; top: -12px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--acid);
}
.pass-perf::before{ left: -11px; }
.pass-perf::after{ right: -11px; }
.pass-list{ list-style: none; margin: 0; padding: 10px 24px; }
.pass-list li{
  display: flex; gap: 12px; align-items: baseline;
  padding: 12.5px 0; border-bottom: 1px solid rgba(242,241,236,.09);
  font-size: 15px; line-height: 1.45;
}
.pass-list li:last-child{ border-bottom: 0; }
.pass-list li::before{
  content: ""; width: 8px; height: 8px; background: var(--acid);
  flex: 0 0 8px; transform: translateY(-1px);
}
.pass-foot{
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 24px 22px;
}
.pass-foot .note{
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mute);
  max-width: 22ch; line-height: 1.55;
}
.pass-code{
  flex: 0 1 150px; height: 30px; opacity: .5;
  background: repeating-linear-gradient(90deg,
    var(--paper) 0 2px, transparent 2px 5px,
    var(--paper) 5px 6px, transparent 6px 10px,
    var(--paper) 10px 13px, transparent 13px 16px);
}
@media (max-width: 1000px){
  .paid .layout{ grid-template-columns: 1fr; }
  .pass-io{ justify-self: start; }
  .pass-io.in{ transform: translateY(0) rotate(0); }
  .pass-io.lvl{ transform: translateY(-4px) rotate(0); }
}
@media (prefers-reduced-motion: reduce){
  .pass-io, .pass-io.in, .pass-io.lvl{ opacity: 1; transform: none; transition: none; }
  .pass{ transform: none !important; }
  .pass::after{ display: none; }
}

/* Синестезия: оффер после заявки + инлайн-ссылки */
.syn-offer{
  margin-top: 10px; padding-top: 22px;
  border-top: 1px dashed var(--line);
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
}
.syn-offer .cap{
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--acid);
}
.syn-inline{
  color: var(--acid); text-decoration: none;
  border-bottom: 1px solid rgba(236,113,46,.4);
  transition: border-color .18s ease;
}
.syn-inline:hover{ border-color: var(--acid); }
.f2-mega .o{ transition: transform .22s cubic-bezier(.16,1,.3,1); }
.f2-mega a.o{ display: block; cursor: pointer; }
.f2-mega a.o:hover{ transform: scale(1.08); }

/* Trust list */
.trust{
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.trust ol{
  list-style: none; margin: 0; padding: 0;
  counter-reset: tr;
}
.trust li{
  counter-increment: tr;
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.trust li:last-child{ border-bottom: 1px solid var(--line); }
.trust li::before{
  content: "0" counter(tr);
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--acid);
}
.trust li h3{
  font-family: var(--f-display);
  font-size: clamp(16px, 1.4vw, 20px); margin: 0 0 6px;
}
.trust li p{ color: var(--mute); max-width: 56ch; font-size: 15px; }

/* Investor block */
.investor{
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.inv-grid{
  display: grid; grid-template-columns: 0.5fr 0.5fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: start;
}
.inv-left{ display: flex; flex-direction: column; gap: 28px; max-width: 56ch; }
.inv-stats{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  margin-top: 16px;
}
.inv-stats .s{
  background: var(--ink-2); padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.inv-stats .big{
  font-family: var(--f-display); font-weight: 800; font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.02em; line-height: 0.95;
}
.inv-stats .big .ac{ color: var(--acid); }
.inv-stats .lbl{
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--mute); text-transform: uppercase;
}
.inv-right .col{ display: flex; flex-direction: column; gap: 18px; }
.inv-right h3{
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mute); margin: 0;
}
.inv-list{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.inv-list li{
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 24px 1fr; gap: 12px;
  align-items: baseline;
}
.inv-list li::before{
  content: "→"; color: var(--acid); font-family: var(--f-mono);
}
.inv-list li:last-child{ border-bottom: 0; }
.inv-ctas{ display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

/* Form */
.form-wrap{
  display: grid; grid-template-columns: 0.4fr 0.6fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
}
.form-card{
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: clamp(28px, 3vw, 44px);
}

.field{ display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label{
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mute);
}
.field input, .field textarea, .field select{
  background: transparent;
  border: 0; border-bottom: 1px solid var(--line-2);
  padding: 12px 0;
  font-size: 15px;
  color: var(--paper);
  outline: none;
  transition: border-color .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus{
  border-color: var(--acid);
}
.field input::placeholder, .field textarea::placeholder{ color: var(--mute); }
.field textarea{ resize: vertical; min-height: 88px; }
.field select{
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--mute) 50%),
                    linear-gradient(135deg, var(--mute) 50%, transparent 50%);
  background-position: calc(100% - 14px) center, calc(100% - 9px) center;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.field select option{ background: var(--ink-2); color: var(--paper); }
.field-row{
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.formfoot{
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 24px;
}
.formfoot .hint{
  font-family: var(--f-mono); font-size: 11px;
  color: var(--mute); max-width: 36ch; line-height: 1.5;
}

/* FAQ */
.faq-list{
  border-top: 1px solid var(--line);
}
.faq-item{
  border-bottom: 1px solid var(--line);
}
.faq-q{
  width: 100%; text-align: left;
  display: grid; grid-template-columns: 1fr 32px; gap: 16px;
  align-items: center;
  padding: 28px 0;
  font-family: var(--f-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.faq-q .ico{
  width: 28px; height: 28px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  transition: background .15s, color .15s, border-color .15s;
}
.faq-item.open .faq-q .ico{ background: var(--acid); color: var(--acid-ink); border-color: var(--acid); }
.faq-item.open .faq-q .ico .v{ transform: rotate(45deg); }
.faq-q .ico .v{ transition: transform .25s ease; display: inline-block; line-height: 1; }
.faq-a{
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-item.open .faq-a{ grid-template-rows: 1fr; }
.faq-a > .inner{
  overflow: hidden;
}
.faq-a p{
  padding: 0 0 28px;
  max-width: 64ch;
  color: var(--paper); font-size: 16px;
}

/* Footer */
footer{
  background: var(--ink);
  overflow-x: hidden;
  border-top: 1px solid var(--line);
  padding: clamp(48px, 5vw, 88px) 0 32px;
}
.f-top{
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 56px; border-bottom: 1px solid var(--line);
}
.f-col h5{
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mute);
  margin: 0 0 16px;
}
.f-col a{ display: block; padding: 6px 0; }
.f-col a:hover{ color: var(--acid); }
.f-blurb{ color: var(--mute); max-width: 36ch; margin: 16px 0; font-size: 15px; }
.f-bot{
  margin-top: 32px;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 16px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--mute); text-transform: uppercase;
}
.f-mega{
  position: relative;
  font-family: var(--f-display);
  font-weight: 900;
  /* sized to the wrap so “Вкусноты” always fits on one line */
  font-size: min(calc((100vw - var(--gutter) * 2) / 7.05), calc((var(--maxw) - 112px) / 7.05));
  line-height: 0.82;
  letter-spacing: -0.06em;
  margin: clamp(48px, 7vw, 96px) 0 0;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  max-width: 100%;
}
.f-mega .fm-b{ color: var(--acid); }
.f-mega .fm-pun{
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  align-self: flex-start;
  margin-left: 0.5em;
  margin-top: 0.4em;
}

/* ── Redesign additions (review pass) ───────── */
/* Slab */
.slab-head{ max-width: none; margin-bottom: 8px; }
.slab-head .eyebrow{ margin-bottom: 22px; }
/* Второй множитель — предохранитель от «Инфоповод.» (10.31em с плашкой в Micra):
   на узких экранах слово шире clamp-минимума 40px и вылезало за вьюпорт. */
.slab-head h2{ font-size: min(clamp(30px, 4.5vw, 64px), calc((100vw - var(--gutter)*2) / 10.4)); line-height: 0.96; max-width: 20ch; text-wrap: balance; }
/* .hl → маркер-система V3.1 (в конце файла) */
.slab-line{
  margin-top: 44px; max-width: 60ch;
  font-size: clamp(18px, 1.5vw, 24px); line-height: 1.4; color: var(--ink);
  text-wrap: pretty;
}
.slab .triplet{ margin-top: 44px; }
.slab .triplet .tile{ min-height: 0; gap: 10px; }
.slab .triplet .tile h3{ font-size: clamp(17px, 1.5vw, 22px); }
.slab .triplet .tile .strike{ font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.slab .triplet .tile .dim{ font-size: 15px; line-height: 1.45; }

/* Why card icon at top */
.why-card{ min-height: 0; }
.why-card .ico{ position: static; margin-bottom: 4px; color: var(--acid); display: grid; place-items: center; }

/* Customization → spec list */
.custom{ grid-template-columns: 0.92fr 1.08fr; align-items: start; }
.custom-intro h2{ font-size: clamp(24px, 3.1vw, 44px); line-height: 1.0; }
.custom-list{
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.cd-row{
  background: var(--ink); padding: 22px 24px;
  display: flex; align-items: baseline; gap: 14px;
}
.cd-n{ font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; color: var(--mute); flex: 0 0 auto; }
.cd-t{ font-family: var(--f-display); font-weight: 700; font-size: clamp(17px, 1.35vw, 20px); letter-spacing: -.01em; }
.cd-d{ color: var(--mute); font-size: 13.5px; margin-left: auto; text-align: right; max-width: 18ch; }

/* Process compact row */
.process-head{ margin-bottom: 0; }
.steps-row{ grid-template-columns: repeat(4, 1fr); margin-top: 48px; }
.steps-row .step{ gap: 18px; }
.steps-row .step .step-body{ display: flex; flex-direction: column; gap: 12px; }

/* Queue two-up */
.queue-grid.two{ grid-template-columns: repeat(2, 1fr); }
.q-card .qtitle{ font-size: clamp(24px, 2.5vw, 33px); }
.q-points{ list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 0; }
.q-points li{
  padding: 12px 0; border-top: 1px solid var(--line);
  display: flex; gap: 12px; align-items: baseline;
  color: var(--paper); font-size: 14.5px;
}
.q-points li::before{ content: "—"; color: var(--acid); font-family: var(--f-mono); }
.q-card .btn.block{ margin-top: auto; }
.q-card.priority{ background: var(--ink-2); }

/* Investors headings */
.inv-h{
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mute); margin: 0 0 4px;
}

@media (max-width: 1100px){
  .custom-list{ grid-template-columns: 1fr; }
  .steps-row{ grid-template-columns: repeat(2, 1fr); }
  .queue-grid.two{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .cd-d{ margin-left: 0; text-align: left; }
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1100px){
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .scenarios{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: repeat(2, 1fr); }
  .queue-grid{ grid-template-columns: 1fr; }
  .hero-row1{ grid-template-columns: 1fr; }
  .hero-vis{ grid-template-columns: 1fr; }
  .title-block{ grid-template-columns: 1fr; align-items: start; }
  .form-wrap{ grid-template-columns: 1fr; }
  .inv-grid{ grid-template-columns: 1fr; }
  .paid .layout{ grid-template-columns: 1fr; }
  .trust{ grid-template-columns: 1fr; }
  .custom{ grid-template-columns: 1fr; }
  .what-grid{ grid-template-columns: 1fr; }
  .slab .triplet{ grid-template-columns: 1fr; }
  .f-top{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px){
  body{ font-size: 15px; }
  .nav{ display: none; }
  .hdr-cta .lang{ display: none; }
  /* keep the primary CTA in the header on mobile (nav is hidden, so this is the only persistent entry point) */
  .hero-headline{ font-size: 22vw; }
  .why-grid{ grid-template-columns: 1fr; }
  .scenarios{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .field-row{ grid-template-columns: 1fr; }
  .inv-stats{ grid-template-columns: 1fr; }
  .f-top{ grid-template-columns: 1fr; }
}

/* ── Mid-funnel CTA band ────────────────────── */
.cta-band{
  border-block: 1px solid var(--line);
  background:
    radial-gradient(120% 140% at 88% 50%, rgba(236,113,46,0.08), transparent 60%),
    var(--ink-2);
}
.cta-band .wrap{
  display: grid; grid-template-columns: 1fr auto;
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  padding-top: clamp(40px, 4.6vw, 64px);
  padding-bottom: clamp(40px, 4.6vw, 64px);
}
.cta-band .cb-l{ display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.cta-band .cb-eyebrow{
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mute);
}
.cta-band h3{
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 34px); line-height: 1.0;
  letter-spacing: -0.025em; text-wrap: balance;
}
.cta-band h3 .acc{ color: var(--acid); }
.cta-band .cb-r{ display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-band .cb-note{
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--mute);
}
@media (max-width: 820px){
  .cta-band .wrap{ grid-template-columns: 1fr; gap: 22px; }
  .cta-band .cb-r{ align-items: stretch; }
  .cta-band .cb-r .btn{ width: 100%; justify-content: center; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .ticker-track{ animation: none !important; transform: none !important; }
}


/* ═══ V3.1 — маркер-выделение и ритм ═══ */
html{ scroll-padding-top: 84px; }
.section-pad{ padding: clamp(64px, 8vw, 112px) 0; }
.section-tight{ padding: clamp(48px, 6vw, 88px) 0; }
.trust{ grid-template-columns: 1fr; gap: 22px; }
.slab-head h2{ line-height: 1.08; max-width: 22ch; text-wrap: balance; }
@media (max-width: 720px){
  .what-cell, .step, .scn, .q-card, .why-card{ min-height: 0; }
}

/* маркер: плашка «Инфоповод.» рисуется движением при скролле */
.hl{ position: relative; display: inline-block; padding: 0 .1em .04em; color: var(--paper); z-index: 0; }
.hl::before{ content: ""; position: absolute; inset: 0; background: var(--ink); z-index: -1; transform-origin: left center; }
.js-anim .hl{ color: var(--ink); transition: color .18s ease .24s; }
.js-anim .hl::before{ transform: scaleX(0); transition: transform .6s cubic-bezier(.65,0,.35,1); }
.js-anim .hl.on{ color: var(--paper); }
.js-anim .hl.on::before{ transform: scaleX(1); }

/* тот же жест на акцентах CTA-полос (карамельный маркер) */
.js-anim .cta-band h3 .acc{ position: relative; display: inline-block; padding: 0 .08em .03em; z-index: 0; transition: color .18s ease .22s; }
.js-anim .cta-band h3 .acc::before{ content: ""; position: absolute; inset: 0; background: var(--acid); z-index: -1; transform-origin: left center; transform: scaleX(0); transition: transform .55s cubic-bezier(.65,0,.35,1); }
.js-anim .cta-band h3 .acc.on{ color: var(--ink); }
.js-anim .cta-band h3 .acc.on::before{ transform: scaleX(1); }

@media (prefers-reduced-motion: reduce){
  .js-anim .hl{ color: var(--paper); transition: none; }
  .js-anim .hl::before{ transform: none; transition: none; }
  .js-anim .cta-band h3 .acc{ transition: none; }
  .js-anim .cta-band h3 .acc::before{ transform: none; transition: none; }
  .js-anim .cta-band h3 .acc.on{ color: var(--ink); }
}


/* ═══ V4 — воздушный hero + поле бороздок + курсор-знак ═══ */
.hero-v4{
  min-height: 100svh;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  padding: 0;
}
.hero-canvas{
  position: absolute; inset: 0; width: 100%; height: 100%; display: block;
}
.hero-air{
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: clamp(16px, 2.2vw, 26px);
  margin-top: auto;
  padding-top: clamp(90px, 12vh, 140px);
  padding-bottom: clamp(30px, 7vh, 78px);
}
.hero-air .hero-headline{ margin-left: -0.045em; }
/* Делитель = ширина слова «Вкусноты» при кегле 1px, он держит заголовок в одну
   строку. Нижний предел для Micra при трекинге -0.03em — 8.28 (меньше — слово
   обрежется краем экрана). Стоит 9.5 НАМЕРЕННО: слово занимает ~80% ширины,
   справа остаётся воздух для колец фона — ревью 06.08 признало полноширинную
   растяжку дешёвкой. Трекинг здесь перекрывает -0.05em базового правила:
   квадратной капители Micra плотная посадка Unbounded не идёт. */
.hero-air .hero-headline{ font-size: min(clamp(44px, 10.6vw, 150px), calc((100vw - var(--gutter)*2) / 9.5)); letter-spacing: -0.03em; }
.hero-air .hero-sub{ max-width: 54ch; }
.hero-v4 .hero-specstrip{ position: relative; z-index: 2; }
/* витрина продукта: диск слева, аргументы справа */
.showcase{
  display: grid; grid-template-columns: 1fr 1.08fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}
.sc-left{ display: grid; place-items: center; perspective: 1200px; }
.sc-stage{ width: clamp(240px, 30vw, 420px); }
.edible-rot{ position: absolute; inset: 0; animation: discspin 8s linear infinite; }
.edible-img{ width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); display: block; }
@keyframes discspin{ to{ transform: rotate(360deg); } }
/* печатный лейбл поверх карамели — крутится вместе с диском */
.edible-label{
  position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none;
  mix-blend-mode: multiply;
  transform-origin: 50% 50%;
}
.edible-label text{
  fill: #3a1d0a;
  font-family: var(--f-display); font-weight: 700; text-transform: uppercase;
  text-anchor: middle;
}
.edible-label .vk-arc-top{ font-size: 13px; letter-spacing: 0.5px; }
.edible-label .vk-arc-bot{
  font-size: 6.8px; letter-spacing: 2px; font-weight: 600;
  font-family: var(--f-mono); fill: #4a2a10;
}
.edible-label .vk-star{ font-size: 8px; fill: #4a2a10; }
.sc-right{ display: flex; flex-direction: column; gap: 16px; }
.sc-right h2{ font-size: clamp(24px, 2.7vw, 40px); line-height: 1.05; max-width: 20ch; text-wrap: balance; }
.args{ list-style: none; margin: 6px 0 0; padding: 0; }
.args li{
  padding: 14px 0; border-top: 1px solid var(--line);
  display: flex; gap: 12px; align-items: baseline;
  font-size: 15px; line-height: 1.5;
}
.args li::before{ content: "—"; color: var(--acid); font-family: var(--f-mono); flex: 0 0 auto; }
.args li b{ color: var(--paper); font-weight: 600; }
.args li span{ color: var(--mute); }
@media (max-width: 1100px){
  .showcase{ grid-template-columns: 1fr; }
  .sc-left{ order: -1; }
  .sc-stage{ width: clamp(220px, 56vw, 360px); }
}

/* сценарии: спокойная сетка вместо тесной */
.scenarios{ grid-template-columns: repeat(2, 1fr); }
.scn{ min-height: 0; }

/* ═══ V4 — футер: мега-слово + рябь от курсора ═══ */
.f2{
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--ink);
  padding: clamp(44px, 6vw, 88px) 0 26px;
}
.f2-top{
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-bottom: clamp(30px, 5vw, 60px);
}
.f2-mark svg{ width: 30px; height: 30px; display: block; animation: f2spin 9s linear infinite; }
@keyframes f2spin{ to{ transform: rotate(360deg); } }
.f2-line{
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--mute);
  margin-right: auto; max-width: 46ch; line-height: 1.6;
}
.f2-mega{
  display: flex; align-items: center; justify-content: flex-start;
  font-family: var(--f-display); font-weight: 900;
  /* 8.0 = ширина «ВКУСН⚬ТЫ» (буквы + кольцо-«О») при кегле 1px в Micra;
     под Unbounded было 7.1. Пересчитывать при смене шрифта — overflow:hidden
     футера молча съедает хвост слова. */
  font-size: min(13.2vw, calc((100vw - var(--gutter)*2) / 8.0), calc((var(--maxw) - 112px) / 8.0));
  line-height: .9; letter-spacing: -.045em;
  white-space: nowrap;
  user-select: none;
  position: relative; z-index: 2;
}
.f2-mega .lt{ transition: color .16s ease, transform .16s ease; }
.f2-mega .lt:hover{ color: var(--acid); transform: translateY(-.035em); }
.f2-mega .o{
  width: .72em; height: .72em; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--ink) 0 42%, var(--acid) 43% 100%);
  margin: 0 .02em; flex: 0 0 auto;
}
.f2 .ripple{
  position: absolute; width: 26px; height: 26px;
  border: 1.5px solid var(--acid); border-radius: 50%;
  pointer-events: none; z-index: 1;
  transform: translate(-50%,-50%) scale(.4); opacity: .55;
  animation: rip 1.15s cubic-bezier(.2,.7,.3,1) forwards;
}
.f2 .ripple.big{ border-color: var(--paper); opacity: .8; animation-duration: 1.5s; }
@keyframes rip{ to{ transform: translate(-50%,-50%) scale(16); opacity: 0; } }
.f2-meta{
  display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between;
  margin-top: clamp(26px, 4vw, 48px);
  padding-top: 20px; border-top: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--mute);
  position: relative; z-index: 2;
}
.f2-links{ display: flex; flex-wrap: wrap; gap: 8px 18px; }
.f2-links a:hover{ color: var(--acid); }
@media (prefers-reduced-motion: reduce){
  .edible-rot, .f2-mark svg{ animation: none !important; }
  .f2 .ripple{ display: none; }
}


/* ═══ V4.1 — фиксы QA-ревью ═══ */
@media (max-width: 720px){ .scenarios{ grid-template-columns: 1fr; } }
.scn:last-child:nth-child(odd){ grid-column: 1 / -1; }


/* ═══ V4.2 — hero: полная ширина, текст от края вьюпорта ═══ */
.hero-v4 > .wrap{ max-width: none; width: 100%; margin-left: 0; margin-right: 0; }
.hdr-inner{ max-width: none; }


/* ═══ V5.1 — фиксы предделойного аудита ═══ */
/* шапка: меню перестаёт помещаться раньше 720px — с полноширинным hdr-inner
   на 721–880px оно слипалось с лого и выталкивало CTA за край вьюпорта */
@media (max-width: 880px){
  .nav{ display: none; }
  .hdr-cta .lang{ display: none; }
}
/* кнопки: nowrap на узких экранах распирал сетку (#investors упирался в край) */
@media (max-width: 560px){
  .btn{
    white-space: normal; text-align: center;
    height: auto; min-height: 56px; padding: 16px 20px; line-height: 1.25;
  }
  .btn.lg{ height: auto; min-height: 64px; }
  .btn.sm{ height: auto; min-height: 44px; padding: 10px 14px; }
  /* кнопка шапки — исключение: перенос ломал её внутри 69px-шапки */
  .hdr-cta .btn{ white-space: nowrap; height: 44px; min-height: 44px; padding: 0 14px; }
}
/* самые узкие экраны: лого и кнопка шапки упирались друг в друга */
@media (max-width: 400px){
  .hdr-inner{ gap: 12px; }
  .brand{ font-size: 15px; gap: 8px; min-width: 0; }
  .hdr-cta .btn.sm{ padding: 0 12px; font-size: 12px; }
}
