/* ═══════════════════════════════════════════════
   ПЯТЫЙ ЭЛЕМЕНТ — Lenta Method
   Постмодерн / неон / футуризм
   ═══════════════════════════════════════════════ */

:root {
  --bg:        #06090c;
  --bg-2:      #0b1116;
  --panel:     #101a21;
  --ink:       #eaf2f6;
  --ink-dim:   #8fa3ad;
  --neon:      #ff6a00;   /* фирменный оранжевый из макета */
  --neon-soft: #ff9540;
  --cyan:      #00e5ff;
  --line:      rgba(255,255,255,.09);

  --pad: clamp(20px, 5vw, 80px);
  --shell: 1240px;

  /* фирменный скос угла — как на карточках спикеров в PDF */
  --bevel: 34px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Onest', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ═══════ ФОНОВЫЕ СЛОИ ═══════ */

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 100%);
  animation: grid-drift 40s linear infinite;
}
@keyframes grid-drift {
  to { background-position: 64px 64px, 64px 64px; }
}

/* ═══════ ШАПКА ═══════ */

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(6,9,12,.85), transparent);
  transition: background .3s, padding .3s;
}
.topbar.is-stuck {
  background: rgba(6,9,12,.92);
  border-bottom: 1px solid var(--line);
  padding-block: 12px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 34px; height: 34px;
  border: 2px solid var(--ink);
  position: relative;
  flex: none;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 7px;
  background: var(--ink);
  clip-path: polygon(50% 100%, 0 30%, 22% 8%, 50% 32%, 78% 8%, 100% 30%);
}
.logo-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .28em;
  line-height: 1.25;
}
.logo--sm .logo-mark { width: 28px; height: 28px; }
.logo--sm .logo-text { font-size: 11px; }

.topbar-cta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 22px;
  border: 1px solid var(--neon);
  color: var(--neon);
  transition: .25s;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}
.topbar-cta:hover {
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 24px rgba(255,106,0,.55);
}

/* ═══════ КНОПКИ ═══════ */

.btn {
  display: inline-block;
  padding: 16px 34px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: .25s;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

/* главная кнопка — жидкий металл с бегущим бликом */
.btn--neon {
  position: relative;
  overflow: hidden;
  color: #120600;
  font-weight: 700;
  background: linear-gradient(
    100deg,
    #7a2e00 0%,
    var(--neon) 18%,
    #ffd9a8 34%,
    #fff 42%,
    #ffd9a8 50%,
    var(--neon) 66%,
    #7a2e00 100%
  );
  background-size: 300% 100%;
  background-repeat: no-repeat;
  animation:
    metal-flow 4.5s linear infinite,
    pulse-neon 3.2s ease-in-out infinite;
  /* без этого Safari на телефоне иногда рисует градиент один раз
     и дальше не перерисовывает — блик выглядит замершим */
  will-change: background-position;
  transform: translateZ(0);
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
}
/* сама полировка металла */
@keyframes metal-flow {
  from { background-position: 130% 0; }
  to   { background-position: -130% 0; }
}
@keyframes pulse-neon {
  0%, 100% { box-shadow: 0 0 20px rgba(255,106,0,.4),  inset 0 1px 0 rgba(255,255,255,.5); }
  50%      { box-shadow: 0 0 52px rgba(255,106,0,.85), inset 0 1px 0 rgba(255,255,255,.7); }
}
/* резкий блик, пробегающий поперёк */
.btn--neon::after {
  content: '';
  position: absolute;
  top: -60%; bottom: -60%;
  width: 45px;
  left: -80px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.95), transparent);
  transform: skewX(-22deg);
  animation: metal-shine 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes metal-shine {
  0%, 62%  { left: -80px; }
  78%      { left: 115%; }
  100%     { left: 115%; }
}
.btn--neon:hover {
  transform: translateY(-2px) scale(1.02);
  animation-duration: 1.6s, 1.2s;
  filter: saturate(1.2);
}
.btn--neon:active { transform: translateY(0) scale(.99); }

.btn--ghost {
  border: 1px solid rgba(255,255,255,.28);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 24px rgba(0,229,255,.28);
}

.btn--wide { width: 100%; text-align: center; }

.link-neon {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--neon);
  text-decoration: none;
  border-bottom: 2px solid var(--neon);
  padding-bottom: 3px;
  transition: .25s;
}
.link-neon:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  text-shadow: 0 0 18px rgba(0,229,255,.7);
}

/* ═══════ ЭКРАН 1 — ОБЛОЖКА ═══════ */

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  max-width: var(--shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding: 150px var(--pad) 90px;
}

/* гардеробная: вертикальный кадр целиком, ничего не обрезаем */
.hero-img {
  position: relative;
  margin: 0;
  align-self: center;
}
.hero-img img {
  width: 100%;
  aspect-ratio: 1160 / 1856;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(var(--bevel) 0, 100% 0, 100% calc(100% - var(--bevel)), calc(100% - var(--bevel)) 100%, 0 100%, 0 var(--bevel));
  animation: hero-breathe 9s ease-in-out infinite;
}
@keyframes hero-breathe {
  0%, 100% { filter: saturate(1)    brightness(1); }
  50%      { filter: saturate(1.15) brightness(1.08); }
}

/* неоновое свечение по бокам кадра */
.hero-img-glow {
  position: absolute;
  inset: -14px;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(to bottom, transparent, var(--neon) 18%, var(--neon) 82%, transparent) left  / 3px 100% no-repeat,
    linear-gradient(to bottom, transparent, var(--cyan) 18%, var(--cyan) 82%, transparent) right / 3px 100% no-repeat;
  filter: blur(1px) drop-shadow(0 0 16px rgba(255,106,0,.65));
  animation: side-neon 3.6s ease-in-out infinite;
}
@keyframes side-neon {
  0%, 100% { opacity: .55; }
  50%      { opacity: 1; }
}

.hero-content { max-width: 640px; }

.hero-eyebrow { display: flex; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 7px 14px;
  background: var(--neon);
  color: #000;
}
.tag--ghost {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
}

.hero-title {
  margin: 0;
  font-size: clamp(34px, 5.6vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.02em;
  position: relative;
  /* запас справа, чтобы глитч-копии не наезжали на кадр гардеробной */
  padding-right: 16px;
  text-shadow: 0 0 34px rgba(255,106,0,.35);
}
/* глитч-двойники заголовка — цветные копии разъезжаются в стороны */
.hero-title::before,
.hero-title::after {
  content: attr(data-glitch);
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-title::before {
  color: var(--cyan);
  animation: glitch-x 3.4s steps(1, end) infinite;
}
.hero-title::after {
  color: var(--neon);
  animation: glitch-y 3.4s steps(1, end) infinite;
}
/* сам заголовок дёргается и рвётся полосами */
.hero-title { animation: glitch-main 3.4s steps(1, end) infinite; }

@keyframes glitch-main {
  0%, 70%, 100% { transform: none; clip-path: none; }
  72% { transform: translate(-3px, 1px); clip-path: inset(18% 0 54% 0); }
  74% { transform: translate(4px, -2px); clip-path: inset(62% 0 12% 0); }
  76% { transform: translate(-2px, 0);   clip-path: inset(38% 0 38% 0); }
  78% { transform: none;                 clip-path: none; }
  90% { transform: translate(3px, 1px);  clip-path: inset(72% 0 8% 0); }
  92% { transform: none;                 clip-path: none; }
}
@keyframes glitch-x {
  0%, 70%, 100% { transform: none; opacity: 0; }
  72% { transform: translate(-11px, -3px); opacity: 1; clip-path: inset(10% 0 60% 0); }
  74% { transform: translate(9px, 3px);    opacity: 1; clip-path: inset(55% 0 20% 0); }
  76% { transform: translate(-7px, 1px);   opacity: .9; clip-path: inset(30% 0 40% 0); }
  78% { opacity: 0; }
  90% { transform: translate(8px, -2px);   opacity: 1; clip-path: inset(66% 0 10% 0); }
  92% { opacity: 0; }
}
@keyframes glitch-y {
  0%, 70%, 100% { transform: none; opacity: 0; }
  72% { transform: translate(10px, 3px);   opacity: 1; clip-path: inset(48% 0 22% 0); }
  74% { transform: translate(-8px, -3px);  opacity: 1; clip-path: inset(14% 0 62% 0); }
  76% { transform: translate(6px, -1px);   opacity: .9; clip-path: inset(70% 0 6% 0); }
  78% { opacity: 0; }
  90% { transform: translate(-9px, 2px);   opacity: 1; clip-path: inset(24% 0 52% 0); }
  92% { opacity: 0; }
}

.hero-sub {
  margin: 10px 0 0;
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 700;
  color: var(--neon);
  letter-spacing: .04em;
}

.hero-lead {
  max-width: 46ch;
  margin: 24px 0 0;
  font-size: clamp(15px, 2vw, 19px);
  color: var(--ink-dim);
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

.hero-dates {
  margin: 26px 0 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: .16em;
  color: var(--cyan);
  text-transform: uppercase;
}

.scroll-hint {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-hint span {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, transparent, var(--neon));
  animation: hint 2.2s ease-in-out infinite;
}
@keyframes hint {
  0%, 100% { opacity: .25; transform: scaleY(.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ═══════ ЭКРАН 2 — ЗОРГ ═══════ */

.zorg {
  position: relative;
  z-index: 1;
  max-width: var(--shell);
  margin: clamp(70px, 12vw, 150px) auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.quote {
  margin: 0;
  font-size: clamp(26px, 4.4vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.01em;
}
.quote em {
  font-style: normal;
  color: var(--neon);
  text-shadow: 0 0 34px rgba(255,106,0,.5);
}
.quote-src {
  margin: 22px 0 0;
  color: var(--ink-dim);
  font-size: 16px;
  border-left: 2px solid var(--neon);
  padding-left: 16px;
}
.zorg-cta { margin: 30px 0 14px; font-size: 18px; }

.zorg-img { position: relative; margin: 0; }
.zorg-img img {
  width: 100%;
  clip-path: polygon(var(--bevel) 0, 100% 0, 100% calc(100% - var(--bevel)), calc(100% - var(--bevel)) 100%, 0 100%, 0 var(--bevel));
  filter: saturate(1.05) contrast(1.05);
}
.bubble {
  position: absolute;
  top: 8%; right: -4%;
  max-width: 240px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  animation: float 5s ease-in-out infinite;
}
.bubble::after {
  content: '';
  position: absolute;
  bottom: -12px; left: 26px;
  border: 8px solid transparent;
  border-top-color: #fff;
  border-right-width: 14px;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-12px) rotate(1deg); }
}

/* ═══════ ЭКРАН 3 — ПРОГРАММА ═══════ */

.program {
  position: relative;
  z-index: 1;
  max-width: var(--shell);
  margin-inline: auto;
  padding: clamp(50px, 8vw, 100px) var(--pad);
}

.section-head { margin-bottom: clamp(36px, 6vw, 64px); }
.section-num {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--neon);
  margin-bottom: 10px;
}
.section-title {
  margin: 0;
  font-size: clamp(30px, 5.5vw, 62px);
  font-weight: 900;
  letter-spacing: -.02em;
}

.speaker {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(26px, 4vw, 60px);
  padding: clamp(28px, 4vw, 48px);
  margin-bottom: clamp(28px, 4vw, 52px);
  background: linear-gradient(140deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  clip-path: polygon(var(--bevel) 0, 100% 0, 100% calc(100% - var(--bevel)), calc(100% - var(--bevel)) 100%, 0 100%, 0 var(--bevel));
  position: relative;
  transition: border-color .35s;
}
.speaker::before {
  /* неоновая полоса-акцент слева */
  content: '';
  position: absolute;
  top: var(--bevel); bottom: 0; left: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--neon), transparent 75%);
}
.speaker:hover { border-color: rgba(255,106,0,.35); }

.speaker-card { position: relative; }

.speaker-photo {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--bevel)), calc(100% - var(--bevel)) 100%, 0 100%);
  overflow: hidden;
}
.speaker-photo img {
  width: 100%;
  filter: grayscale(1) contrast(1.08);
  transition: filter .5s, transform .5s;
}
.speaker:hover .speaker-photo img {
  filter: grayscale(.15) contrast(1.05);
  transform: scale(1.04);
}

.speaker-meta { margin-top: 20px; }
.speaker-name {
  margin: 0;
  font-size: clamp(21px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: -.01em;
}
.speaker-role {
  margin: 4px 0 0;
  color: var(--neon);
  font-weight: 500;
  font-size: 15px;
}
.speaker-date {
  margin: 16px 0 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .04em;
}
.speaker-date--tba {
  color: var(--ink-dim);
  font-weight: 400;
}
.speaker-days {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* разделитель-выходной между блоками спикеров */
.program-break {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 clamp(28px, 4vw, 52px);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.program-break::before,
.program-break::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.speaker-body { display: grid; gap: 30px; align-content: start; }

.block-label {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 12px;
}
/* дата вместо номера — блок Светланы */
.block-label--date {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--cyan);
}
.block-note {
  margin: 14px 0 0;
  color: var(--ink-dim);
  font-size: 15px;
}
.block-hw {
  margin: 14px 0 0;
  font-size: 15px;
  padding: 12px 16px;
  background: rgba(0,229,255,.06);
  border-left: 2px solid var(--cyan);
}
.block-hw span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--cyan);
  margin-right: 10px;
}

/* сетка плашек — единый формат для всех трёх спикеров */
.topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: stretch;   /* плашки в ряду одной высоты */
}
.topic {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  transition: .3s;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}
.topic:hover {
  border-color: rgba(255,106,0,.4);
  background: rgba(255,106,0,.05);
  transform: translateY(-4px);
}
.topic .block-label { margin-bottom: 10px; }
/* бонусная плашка — бирюзовый акцент вместо оранжевого */
.topic--bonus {
  border-color: rgba(0,229,255,.28);
  background: rgba(0,229,255,.05);
}
.topic--bonus:hover {
  border-color: rgba(0,229,255,.55);
  background: rgba(0,229,255,.09);
}
.topic--bonus h4 { color: var(--cyan); }
.topic h4 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  color: var(--neon);
  line-height: 1.3;
}
.topic > p { margin: 0; font-size: 15px; color: var(--ink-dim); }

/* списки внутри плашек */
.topic ul { margin: 0; padding: 0; list-style: none; }
.topic li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.45;
}
.topic li:last-child { margin-bottom: 0; }
.topic li::before {
  content: '';
  position: absolute;
  left: 0; top: .58em;
  width: 6px; height: 6px;
  background: var(--neon);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.topic .block-note { margin-top: 14px; }
.topic .block-hw   { margin-top: 14px; }

/* ═══════ ЭКРАН 4 — ОПЛАТА ═══════ */

.buy {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 9vw, 120px) var(--pad);
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255,106,0,.13), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.buy-inner { max-width: 620px; margin-inline: auto; text-align: center; }

.buy-title {
  margin: 0 0 30px;
  font-size: clamp(30px, 6vw, 62px);
  font-weight: 900;
  letter-spacing: -.02em;
}

.buy-facts {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 5vw, 54px);
  margin-bottom: 34px;
}
.fact { display: flex; flex-direction: column; gap: 2px; }
.fact b {
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 900;
  color: var(--neon);
  line-height: 1;
}
.fact span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}
.price-note {
  margin: 0 0 30px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
}
.price-old {
  font-size: 20px;
  color: var(--ink-dim);
  text-decoration: line-through;
}
.price-now {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 900;
  color: var(--ink);
  text-shadow: 0 0 34px rgba(255,106,0,.45);
}

.buy-form { display: grid; gap: 16px; text-align: left; }

.field { display: grid; gap: 7px; }
.field > span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.field input {
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  transition: .25s;
}
.field input::placeholder { color: rgba(143,163,173,.5); }
.field input:focus {
  outline: none;
  border-color: var(--neon);
  background: rgba(255,106,0,.05);
  box-shadow: 0 0 0 3px rgba(255,106,0,.12);
}
.field input:user-invalid { border-color: #ff4d4d; }

.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.45;
}
.consent input {
  margin-top: 3px;
  accent-color: var(--neon);
  width: 17px; height: 17px;
  flex: none;
}
.consent a { color: var(--cyan); }

.form-note {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: var(--ink-dim);
}

/* ═══════ ПОДВАЛ ═══════ */

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  align-items: center;
  padding: 40px var(--pad);
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-dim);
}
.footer-links { display: grid; gap: 6px; text-align: right; }
.footer-links a { color: var(--ink-dim); }
.footer-links a:hover { color: var(--neon); }
.footer-legal { margin: 0; opacity: .65; }

/* ═══════ ПОЯВЛЕНИЕ ПРИ СКРОЛЛЕ ═══════ */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ═══════ АДАПТИВ ═══════ */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 120px;
  }
  .hero-img { order: -1; max-width: 340px; margin-inline: auto; }
  .zorg { grid-template-columns: 1fr; }
  .zorg-img { order: -1; }
  .bubble { right: 4%; max-width: 200px; }
  .speaker { grid-template-columns: 1fr; }
  .speaker-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    align-items: center;
  }
  .speaker-meta { margin-top: 0; }
}

@media (max-width: 560px) {
  :root { --bevel: 22px; }
  body { font-size: 16px; }
  .topbar-cta { display: none; }
  .hero { padding-top: 110px; }
  .buy-facts { gap: 18px; }
}

/* ═══════ ДОСТУПНОСТЬ ═══════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }

  /* Движение выключено, но кнопка не должна становиться плоской:
     останавливаем градиент на светлой части, чтобы металл остался виден. */
  .btn--neon {
    animation: none !important;
    background-position: 50% 0 !important;
  }
  .btn--neon::after { display: none; }
}
