/* ============================================================
   ENERT · Тантра-медитация 15 июля — лендинг ивента
   Визуальный язык: фестивальный плакат (по дизайн-спеке референса)
   Палитра: red #FF513E / violet #685CFC / dark #040710
   Шрифты: Alumni Sans 800 (display) + Golos Text (текст) — self-host
   ============================================================ */

:root {
  --red: #FF513E;
  --red-2: #FE4839;
  --violet: #685CFC;
  --violet-deep: #4B3FD4;
  --dark: #040710;
  --ink: #252525;
  --ghost: #DFDCE8;
  --grey: #BFBFBF;
  --white: #FFFFFF;
  --amber: #FF8A3D;
  --sun: #FFB56B;

  --r-btn: 25px;
  --r-card: 40px;

  --fz-body: 17px;
  --lh-body: 26px;

  --font-display: "Alumni Sans", "Oswald", "Arial Narrow", sans-serif;
  --font-text: "Golos Text", "Inter", Arial, sans-serif;

  --container: 1200px;
  --pad-x: clamp(20px, 3.4vw, 60px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-text);
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ---------- Типографика display ---------- */

.d {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.005em;
}

.h-giant   { font-size: clamp(52px, 8.5vw, 154px); }
.h-section { font-size: clamp(44px, 7vw, 125px); }
.h-hero    { font-size: clamp(42px, 6vw, 108px); line-height: 0.96; }
.h-sub     { font-size: clamp(26px, 2.5vw, 45px); line-height: 1.05; }
.h-card    { font-size: clamp(22px, 1.6vw, 29px); line-height: 1.05; }

/* ---------- Кнопки ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0 44px;
  border: 0;
  border-radius: var(--r-btn);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 27px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #F03D2B; transform: translateY(-2px); }

.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #131a2e; transform: translateY(-2px); }

.btn-sm { height: 56px; padding: 0 30px; font-size: 21px; }

/* ---------- Чипы ---------- */

.chip {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--dark);
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 25px);
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(4, 7, 16, 0.10);
}
@media (max-width: 420px) {
  .chip { white-space: normal; text-align: center; }
}

/* ============================================================
   NAV — glass-пилюля, появляется после хиро
   ============================================================ */

.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 90;
  width: min(1720px, calc(100% - 28px));
  transform: translate(-50%, -130%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 26px;
  background: rgba(243, 242, 250, 0.78);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 14px 44px rgba(4, 7, 16, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.nav.is-visible { transform: translate(-50%, 0); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
  padding: 0 26px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.9;
  font-size: 21px;
  letter-spacing: 0.03em;
  color: var(--dark);
}
.logo small {
  display: block;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--ink);
  font-weight: 700;
}

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 16px;
  color: var(--ink);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--red); }

.nav .btn { height: 54px; padding: 0 28px; font-size: 20px; }

/* ============================================================
   HERO — закат-аврора на весь экран, скруглённый низ
   ============================================================ */

.hero {
  position: relative;
  /* компактный широкоформатный хиро: на узких окнах ограничен шириной */
  height: min(72vh, 58vw, 840px);
  min-height: 600px;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 var(--r-card) var(--r-card);
  overflow: hidden;
  color: var(--white);
}
@media (max-width: 640px) {
  .hero { height: auto; min-height: min(88dvh, 760px); }
}

.hero-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(115% 80% at 78% 88%, #FF6A2F 0%, rgba(255, 106, 47, 0) 55%),
    radial-gradient(90% 70% at 12% 90%, #FF513E 0%, rgba(255, 81, 62, 0) 58%),
    radial-gradient(120% 95% at 50% 108%, #FFB56B 0%, rgba(255, 181, 107, 0) 52%),
    linear-gradient(178deg, #2E1E8F 0%, #4B3FD4 34%, #8A5CF0 58%, #E8643C 86%, #FF8A3D 100%);
}

/* мягкие «энергетические» блобы (без filter: гоняем только transform) */
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
  will-change: transform;
}
.blob-1 { width: 58vw; height: 58vw; left: -16vw; top: 4vh; background: radial-gradient(circle, rgba(255,122,74,0.9) 0%, rgba(255,122,74,0) 65%); animation: drift1 17s ease-in-out infinite alternate; }
.blob-2 { width: 50vw; height: 50vw; right: -14vw; top: 26vh; background: radial-gradient(circle, rgba(255,175,94,0.85) 0%, rgba(255,175,94,0) 65%); animation: drift2 21s ease-in-out infinite alternate; }
.blob-3 { width: 44vw; height: 44vw; left: 26vw; bottom: -20vh; background: radial-gradient(circle, rgba(126,92,255,0.7) 0%, rgba(126,92,255,0) 65%); animation: drift3 25s ease-in-out infinite alternate; }

@keyframes drift1 { from { transform: translate(0, 0) scale(1); } to { transform: translate(6vw, -6vh) scale(1.12); } }
@keyframes drift2 { from { transform: translate(0, 0) scale(1.05); } to { transform: translate(-5vw, 7vh) scale(0.94); } }
@keyframes drift3 { from { transform: translate(0, 0); } to { transform: translate(4vw, -8vh) scale(1.18); } }

/* солнечный диск */
.hero-sun {
  position: absolute;
  left: 50%;
  bottom: -12vh;
  width: 46vh;
  height: 46vh;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, #FFE3B3 0%, #FFB56B 42%, rgba(255, 138, 61, 0) 72%);
  opacity: 0.9;
}

/* крупные светящиеся сгустки у кромок — «объекты в движении» по краям */
.edge-orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.edge-orb--l {
  width: 240px; height: 240px;
  left: -70px; top: 34%;
  background: radial-gradient(circle at 40% 40%, rgba(255, 217, 160, 0.95) 0%, rgba(255, 138, 61, 0.55) 42%, rgba(255, 138, 61, 0) 72%);
  animation: orbDriftL 11s ease-in-out infinite alternate;
}
.edge-orb--r {
  width: 190px; height: 190px;
  right: -55px; top: 14%;
  background: radial-gradient(circle at 45% 35%, rgba(226, 208, 255, 0.9) 0%, rgba(138, 92, 240, 0.5) 45%, rgba(138, 92, 240, 0) 74%);
  animation: orbDriftR 14s ease-in-out infinite alternate;
}
@keyframes orbDriftL { from { transform: translate(0, 0) scale(1); } to { transform: translate(34px, -30px) scale(1.12); } }
@keyframes orbDriftR { from { transform: translate(0, 0) scale(1.06); } to { transform: translate(-28px, 36px) scale(0.94); } }

/* всплывающие искры-боке (как на фото): только transform/opacity */
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-particles span {
  position: absolute;
  bottom: -6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 233, 196, 0.95) 0%, rgba(255, 181, 107, 0) 68%);
  opacity: 0;
  animation: sparkRise 12s linear infinite;
  will-change: transform, opacity;
}
.hero-particles span:nth-child(1)  { left: 5%;  width: 14px; height: 14px; animation-duration: 11s; animation-delay: -2s; }
.hero-particles span:nth-child(2)  { left: 12%; width: 26px; height: 26px; animation-duration: 15s; animation-delay: -7s; }
.hero-particles span:nth-child(3)  { left: 19%; width: 9px;  height: 9px;  animation-duration: 9s;  animation-delay: -4s; }
.hero-particles span:nth-child(4)  { left: 27%; width: 18px; height: 18px; animation-duration: 14s; animation-delay: -11s; }
.hero-particles span:nth-child(5)  { left: 35%; width: 11px; height: 11px; animation-duration: 10s; animation-delay: -6s; }
.hero-particles span:nth-child(6)  { left: 44%; width: 22px; height: 22px; animation-duration: 16s; animation-delay: -1s; }
.hero-particles span:nth-child(7)  { left: 52%; width: 8px;  height: 8px;  animation-duration: 9.5s; animation-delay: -8s; }
.hero-particles span:nth-child(8)  { left: 60%; width: 16px; height: 16px; animation-duration: 13s; animation-delay: -5s; }
.hero-particles span:nth-child(9)  { left: 68%; width: 12px; height: 12px; animation-duration: 11.5s; animation-delay: -9s; }
.hero-particles span:nth-child(10) { left: 76%; width: 24px; height: 24px; animation-duration: 15.5s; animation-delay: -3s; }
.hero-particles span:nth-child(11) { left: 84%; width: 10px; height: 10px; animation-duration: 10.5s; animation-delay: -12s; }
.hero-particles span:nth-child(12) { left: 91%; width: 19px; height: 19px; animation-duration: 14.5s; animation-delay: -6.5s; }
.hero-particles span:nth-child(13) { left: 97%; width: 13px; height: 13px; animation-duration: 12.5s; animation-delay: -10s; }
.hero-particles span:nth-child(14) { left: 40%; width: 15px; height: 15px; animation-duration: 13.5s; animation-delay: -13s;
  background: radial-gradient(circle, rgba(226, 208, 255, 0.9) 0%, rgba(138, 92, 240, 0) 68%); }
@keyframes sparkRise {
  0%   { transform: translateY(0) scale(0.7); opacity: 0; }
  8%   { opacity: 0.9; }
  70%  { opacity: 0.5; }
  100% { transform: translateY(-108vh) scale(1.2); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .edge-orb, .hero-particles span { animation: none; opacity: 0.35; }
}
@media (max-width: 640px) {
  .edge-orb--l { width: 140px; height: 140px; left: -60px; top: 24%; }
  .edge-orb--r { width: 120px; height: 120px; right: -50px; top: 9%; }
}

/* лёгкое зерно поверх — фиксированный псевдослой */
.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 1720px;
  width: 100%;
  margin-inline: auto;
  padding: 28px var(--pad-x) 56px;
}

.hero-head { display: flex; justify-content: space-between; align-items: flex-start; }
.hero-head .logo { color: var(--white); }
.hero-head .logo small { color: rgba(255, 255, 255, 0.85); }

.hero-title {
  margin-top: clamp(28px, 5vh, 64px);
  text-align: center;
  color: rgba(255, 255, 255, 0.94);
  text-wrap: balance;
  position: relative;
  z-index: 1;
}

/* Наталья: сидит на нижней кромке хиро, поверх заголовка (как фигура у референса) */
.hero-guru {
  position: absolute;
  left: 50%;
  bottom: 0; /* hero-inner доходит до кромки хиро: сидит ровно на ней */
  height: min(76%, 600px);
  width: auto;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 0 60px rgba(255, 138, 61, 0.35));
  will-change: transform;
}

.hero-bottom {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  position: relative;
  z-index: 3;
}

@media (max-width: 640px) {
  .hero-guru { height: auto; width: min(80vw, 320px); }
  /* 3 строки H1 должны помещаться без переносов */
  .hero-title { font-size: min(8.4vw, 40px); }
}
/* выше хиро, чтобы голова фигуры (привязана к низу) уходила ниже заголовка/чипов.
   Два бакета — под высоту экрана (фигура на коротких мельче, потому и хиро ниже). */
@media (max-width: 640px) and (min-height: 721px) {
  .hero { min-height: 800px; }
}
/* короткие мобильные экраны: фигура меньше + хиро ниже (но всё равно голову ниже чипов) */
@media (max-width: 640px) and (max-height: 720px) {
  .hero { min-height: 640px; }
  .hero-guru { width: min(58vw, 280px); }
  .hero-chips { margin-top: 16px; }
  .hero-chips .chip { padding: 11px 18px; font-size: 15px; }
}

.hero-chips { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.hero-chips .chip:nth-child(2) { transform: rotate(-2deg); }
.hero-chips .chip:nth-child(3) { transform: rotate(1.5deg); }

.hero-cta { justify-self: end; }

/* ============================================================
   STATEMENT — гигант ghost→чёрный
   ============================================================ */

.statement {
  /* прижат к хиро; снизу воздух — лилия висит между текстом и тизером */
  padding: clamp(36px, 5vh, 64px) var(--pad-x) clamp(120px, 14vh, 160px);
  text-align: center;
  background: var(--white);
  /* overflow открыт: лилия чуть заходит на следующий блок, как стрекоза у референса */
  z-index: 2;
}
.statement .line { display: block; color: var(--ghost); }
.statement .line b { font-weight: inherit; }

/* «энергией» — магическое зажигание: градиент-перелив + дышащее свечение.
   Оверлей ::after дублирует слово (content: attr), проявление ведёт GSAP через --ignite. */
.line--energy { position: relative; --ignite: 0; }
.line--energy::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, #7E5CFF 0%, #FF513E 32%, #FFB56B 50%, #FF513E 68%, #7E5CFF 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: var(--ignite);
  animation: energyFlow 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes energyFlow {
  0%   { background-position: 0% 50%;   filter: drop-shadow(0 0 16px rgba(126, 92, 255, 0.40)); }
  50%  { background-position: 100% 50%; filter: drop-shadow(0 0 34px rgba(255, 138, 61, 0.60)); }
  100% { background-position: 0% 50%;   filter: drop-shadow(0 0 16px rgba(126, 92, 255, 0.40)); }
}
@media (prefers-reduced-motion: reduce) {
  .line--energy::after { animation: none; opacity: 1; filter: none; }
}

/* ---------- Лилия энергии: парит поверх манифеста, подсвечивается ---------- */

.statement { position: relative; }
.energy-bloom {
  position: absolute;
  left: 50%;
  bottom: calc(-1 * clamp(86px, 11vh, 118px)); /* хвост заходит на тизер-блок */
  width: clamp(180px, 19vw, 280px);
  margin-left: calc(clamp(180px, 19vw, 280px) / -2 + 4vw);
  z-index: 2;
  pointer-events: none;
  animation: orbFloat 6.5s ease-in-out infinite;
  will-change: transform;
}
.energy-bloom img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 34px rgba(232, 67, 46, 0.35));
}
/* пульсирующий ореол за цветком */
.bloom-halo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 217, 160, 0.75) 0%, rgba(255, 106, 47, 0.4) 38%, rgba(138, 92, 240, 0.25) 62%, rgba(138, 92, 240, 0) 78%);
  animation: haloPulse 4.5s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes haloPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.75; }
  50%      { transform: translate(-50%, -50%) scale(1.18); opacity: 1; }
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-16px) scale(1.035); }
}
@media (prefers-reduced-motion: reduce) {
  .energy-bloom, .bloom-halo { animation: none; }
}
@media (max-width: 640px) {
  .energy-bloom { width: 150px; margin-left: calc(-75px + 4vw); }
}

/* ============================================================
   TEASER — фиолетовая панель с пилюлями
   ============================================================ */

.teaser { background: var(--white); padding: clamp(30px, 5vh, 60px) 0 clamp(50px, 7vh, 90px); }
.teaser-panel {
  position: relative;
  background: var(--violet);
  border-radius: var(--r-card);
  padding: clamp(36px, 5vh, 56px) clamp(24px, 4vw, 64px) clamp(32px, 4.5vh, 52px);
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
/* волнистый паттерн, как у референса — свой SVG, едва заметный */
.teaser-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='320' viewBox='0 0 420 320'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.09' stroke-width='26' stroke-linecap='round'%3E%3Cpath d='M-40 60 Q 80 -20 200 60 T 460 60'/%3E%3Cpath d='M-60 200 Q 60 120 180 200 T 440 200'/%3E%3Cpath d='M-20 330 Q 100 250 220 330 T 480 330'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 420px 320px;
  pointer-events: none;
}
.teaser-panel > * { position: relative; }
.teaser-title {
  font-size: clamp(22px, 2.2vw, 38px);
  line-height: 1.08;
  margin-bottom: clamp(24px, 3.5vh, 40px);
}
.teaser-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.teaser-pill {
  background: var(--dark);
  border-radius: 22px;
  padding: 22px 24px;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.35;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .teaser-pills { grid-template-columns: 1fr; }
}

/* ============================================================
   INTRO — тёмная секция «что это»
   ============================================================ */

.intro {
  background:
    radial-gradient(80% 90% at 85% 10%, rgba(104, 92, 252, 0.35) 0%, rgba(104, 92, 252, 0) 60%),
    radial-gradient(70% 80% at 10% 90%, rgba(255, 81, 62, 0.28) 0%, rgba(255, 81, 62, 0) 55%),
    var(--dark);
  color: var(--white);
  padding: clamp(44px, 6vh, 78px) 0;
  border-radius: var(--r-card);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.intro h2 { margin-bottom: 28px; }
.intro p { color: rgba(255, 255, 255, 0.86); max-width: 62ch; }
.intro p + p { margin-top: 16px; }

.intro-facts { display: grid; gap: 14px; }
.fact {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 22px 26px;
}
.fact .d { font-size: 26px; color: var(--sun); }
.fact p { font-size: 15px; line-height: 22px; color: rgba(255, 255, 255, 0.75); margin-top: 4px; }

/* ============================================================
   WHO — ghost-заголовок + 3 наклонённые карточки
   ============================================================ */

.who {
  position: relative;
  background: var(--white);
  padding: clamp(40px, 6vh, 76px) 0;
  overflow: hidden;
}

/* сцена: плотный кластер карточек вокруг заголовка (как в референсе) */
.who-scatter {
  position: relative;
  max-width: 1280px;
  margin-inline: auto;
  height: clamp(540px, 72vh, 680px);
}
.who-title {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 0;
  width: max-content;
  max-width: 96vw;
  will-change: transform;
}
.who-title span { display: block; }
.who-title-main { color: var(--dark); }
.who-title-ghost { color: var(--ghost); }
.who-lead {
  margin-top: clamp(14px, 1.8vh, 24px);
  font-family: var(--font-text);
  font-weight: 500;
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  color: #6B6675;
}

.who-card {
  border-radius: var(--r-card);
  width: clamp(260px, 21vw, 300px);
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 24px;
  color: var(--white);
  position: absolute;
  z-index: 1;
  transform: rotate(calc(var(--tilt, 0) * 1deg));
  will-change: transform;
}
.pos-1 { --tilt: -7;   top: 0;      left: 13%; }
.pos-2 { --tilt: 2;    top: 10%;    right: 9%; }
.pos-3 { --tilt: -3;   bottom: 18%; left: 3%; }
.pos-4 { --tilt: 1.5;  bottom: 0;   left: 50%; margin-left: -150px; }
.pos-5 { --tilt: 6;    bottom: 12%; right: 3%; }

.who-card--violet { background: var(--violet); }
.who-card--red    { background: var(--red); }
.who-card--sunset {
  background:
    radial-gradient(120% 110% at 20% 100%, #FF6A2F 0%, rgba(255, 106, 47, 0) 60%),
    radial-gradient(120% 130% at 85% 0%, #7E5CFF 0%, rgba(126, 92, 255, 0) 65%),
    linear-gradient(160deg, #4B3FD4, #E8643C);
}
.who-card--sunset2 {
  background:
    radial-gradient(130% 120% at 75% 100%, #FFB56B 0%, rgba(255, 181, 107, 0) 55%),
    radial-gradient(110% 120% at 15% 10%, #8A5CF0 0%, rgba(138, 92, 240, 0) 60%),
    linear-gradient(200deg, #685CFC, #E8432E);
}

/* энерго-ауры (Flux Schnell) как фон карточек + радиальный скрим:
   центр темнее (под белым текстом), края ярче (аура дышит) */
.who-card.pos-1, .who-card.pos-2, .who-card.pos-3,
.who-card.pos-4, .who-card.pos-5 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.who-card.pos-1 { background-image: url("../img/who/aura-1.webp"); }
.who-card.pos-2 { background-image: url("../img/who/aura-2.webp"); }
.who-card.pos-3 { background-image: url("../img/who/aura-3.webp"); }
.who-card.pos-4 { background-image: url("../img/who/aura-4.webp"); }
.who-card.pos-5 { background-image: url("../img/who/aura-5.webp"); }
/* текст на лёгкой матовой «стеклянной» плашке — читаемо на яркой ауре,
   при этом карточка остаётся светлой/воздушной (аура горит вокруг плашки) */
.who-card.pos-1 .h-card, .who-card.pos-2 .h-card, .who-card.pos-3 .h-card,
.who-card.pos-4 .h-card, .who-card.pos-5 .h-card {
  display: inline-block;
  padding: 0.5em 0.72em;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(6px) saturate(1.1);
  backdrop-filter: blur(6px) saturate(1.1);
  color: #1b1424;
  text-shadow: none;
  box-shadow: 0 6px 20px rgba(20, 10, 30, 0.18);
}

/* узкий десктоп: карточки компактнее, кластер сохраняем */
@media (min-width: 1025px) and (max-width: 1300px) {
  .who-title { font-size: clamp(40px, 6vw, 78px); }
  .who-card { width: 236px; min-height: 170px; padding: 22px 18px; }
  .pos-1 { top: 0;      left: 9%; }
  .pos-2 { top: 8%;     right: 5%; }
  .pos-3 { bottom: 20%; left: 2%; }
  .pos-5 { bottom: 14%; right: 2%; }
  .pos-4 { margin-left: -118px; }
}

/* ============================================================
   EVENING — фиолетовая секция, горизонтальная лента этапов
   ============================================================ */

.evening {
  background: var(--violet);
  color: var(--white);
  border-radius: var(--r-card);
  margin: 0;
  overflow: hidden;
}
.evening-pin { padding: clamp(70px, 9vh, 110px) 0 clamp(70px, 10vh, 120px); }
.evening h2 { max-width: 900px; padding-inline: var(--pad-x); }
.evening-sub {
  padding-inline: var(--pad-x);
  margin-top: 18px;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.82);
}

/* клик-карусель этапов (по образцу референса) */
.car { position: relative; margin-top: clamp(26px, 4vh, 46px); }
.car-viewport { overflow: hidden; }
.car-track {
  display: flex;
  gap: clamp(18px, 2.4vw, 34px);
  padding: 26px clamp(20px, 4vw, 60px) 0;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.slide { flex: 0 0 min(680px, 64vw); }
.slide-card {
  height: clamp(340px, 46vh, 440px);
  border-radius: var(--r-card);
  transform: rotate(calc(var(--tilt, 0) * 1deg));
  box-shadow: 0 24px 60px rgba(4, 7, 16, 0.18);
}
.slide-info {
  position: relative;
  z-index: 2;
  margin-top: -46px;
  margin-left: 50%;
  width: min(380px, 46%);
}
.sticker-mini {
  display: inline-block;
  transform: rotate(-1.5deg);
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1;
  color: var(--white);
}
.sticker-mini b {
  display: inline-block;
  font-weight: inherit;
  background: var(--red);
  padding: 8px 18px 11px;
  border-radius: 12px;
}
.sticker-mini b + b { display: block; width: max-content; margin-left: 34px; margin-top: -5px; }
.slide-info p { margin-top: 14px; font-size: 15.5px; line-height: 22px; color: rgba(255, 255, 255, 0.92); }

.car-btn {
  position: absolute;
  top: 40%;
  z-index: 3;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(4, 7, 16, 0.22);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.car-btn:hover { transform: scale(1.07); }
.car-btn:active { transform: scale(0.96); }
.car-btn--prev { left: clamp(10px, 2vw, 30px); }
.car-btn--next { right: clamp(10px, 2vw, 30px); }
.car-btn[disabled] { opacity: 0.4; cursor: default; pointer-events: none; }

/* фоны слайдов: фото практик */
.stage--1 { background: url("../img/stage-krug.webp") center / cover no-repeat, linear-gradient(200deg, #FF8A3D, #E8432E); }
.stage--2 { background: url("../img/stage-dyhanie.webp") center / cover no-repeat, linear-gradient(150deg, #7E5CFF, #4B3FD4); }
.stage--3 { background: url("../img/stage-stihii2.webp") center / cover no-repeat, linear-gradient(170deg, #FF9D52, #FF513E); }
.stage--4 { background: url("../img/stage-gong.webp") center / cover no-repeat, linear-gradient(140deg, #5A4AE8, #2E1E8F); }
.stage--5 { background: url("../img/stage-tishina.webp") center / cover no-repeat, linear-gradient(200deg, #FFB56B, #E8643C); }

/* ---------- marquee ---------- */

.marquee {
  background: var(--white);
  padding: clamp(46px, 7vh, 80px) 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 4.6vw, 84px);
  text-transform: uppercase;
  line-height: 1;
  color: var(--ghost);
}
.marquee-track span:nth-child(even) { color: var(--dark); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   TAKEAWAY — стикер-заголовок + 2×2 карточки с ghost-словами
   ============================================================ */

.takeaway {
  position: relative;
  background: var(--violet);
  border-radius: var(--r-card);
  color: var(--white);
  padding: clamp(44px, 6vh, 78px) 0 clamp(48px, 6.5vh, 84px);
  overflow: hidden;
}

.sticker-wrap { text-align: center; padding-inline: var(--pad-x); }
.sticker {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 10px 34px 14px;
  border-radius: 18px;
  transform: rotate(-1.2deg);
  position: relative;
}
.sticker + .sticker { transform: rotate(0.8deg); margin-top: -6px; }
.sticker .d { font-size: clamp(34px, 4.2vw, 76px); line-height: 1; }

.takeaway-sub {
  text-align: center;
  margin-top: clamp(40px, 6vh, 70px);
  padding-inline: var(--pad-x);
}

.takeaway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vh, 64px) clamp(24px, 3vw, 48px);
  margin-top: clamp(44px, 7vh, 84px);
}

.take {
  position: relative;
}
/* стихия-слово стоит НАД карточкой (как в референсе), слегка заходя на неё */
.take-ghost {
  display: block;
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: clamp(56px, 6.25vw, 112px);
  color: var(--white);
  white-space: nowrap;
  margin-bottom: -0.12em;
  pointer-events: none;
}
.take-card {
  position: relative;
  z-index: 1;
  background: var(--red);
  border-radius: var(--r-card);
  padding: 40px 40px 44px;
  min-height: 220px;
  text-align: center;
  overflow: hidden;
}
/* фото стихий + тёмный скрим для читабельности белого текста */
.take-card--fire  { background: linear-gradient(rgba(4, 7, 16, 0.28), rgba(4, 7, 16, 0.5)), url("../img/elem-fire.webp") center / cover no-repeat, var(--red); }
.take-card--water { background: linear-gradient(rgba(4, 7, 16, 0.28), rgba(4, 7, 16, 0.5)), url("../img/elem-water.webp") center / cover no-repeat, var(--red); }
.take-card--air   { background: linear-gradient(rgba(4, 7, 16, 0.32), rgba(4, 7, 16, 0.54)), url("../img/elem-air.webp") center / cover no-repeat, var(--red); }
.take-card--earth { background: linear-gradient(rgba(4, 7, 16, 0.28), rgba(4, 7, 16, 0.5)), url("../img/elem-earth.webp") center / cover no-repeat, var(--red); }
.take-card .h-card { margin-bottom: 12px; }
.take-card p { font-size: 15.5px; line-height: 23px; color: rgba(255, 255, 255, 0.92); max-width: 46ch; margin-inline: auto; }

/* ============================================================
   HOST — ведущая
   ============================================================ */

.host { background: var(--white); padding: clamp(44px, 6vh, 78px) 0 clamp(30px, 4vh, 50px); }
.host-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.host-photo {
  position: relative;
  border-radius: var(--r-card);
  aspect-ratio: 4 / 5;
  transform: rotate(-2.5deg);
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 70% 15%, #FFB56B 0%, rgba(255, 181, 107, 0) 55%),
    radial-gradient(110% 120% at 20% 90%, #7E5CFF 0%, rgba(126, 92, 255, 0) 60%),
    linear-gradient(165deg, #4B3FD4 0%, #E8643C 80%);
  display: flex;
  align-items: flex-end;
  padding: 26px;
}
.host-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* лайтбокс вертикального видео-отзыва */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 7, 16, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-lightbox video {
  max-height: 86vh;
  max-width: min(92vw, 480px);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.25); }
.host h2 { margin-bottom: 22px; }
.host p { max-width: 58ch; color: var(--ink); }
.host p + p { margin-top: 14px; }

/* ============================================================
   CTA-BANNER — красная полоса записи
   ============================================================ */

.cta-banner {
  background: var(--red-2);
  border-radius: var(--r-card);
  color: var(--white);
  padding: clamp(70px, 10vh, 120px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(45% 60% at 20% 30%, rgba(255, 217, 160, 0.35) 0%, transparent 60%),
    radial-gradient(50% 70% at 85% 70%, rgba(139, 30, 22, 0.45) 0%, transparent 55%);
  pointer-events: none;
}
.cta-banner > .container { position: relative; }
.cta-banner h2 { max-width: 820px; margin-inline: auto; }
.cta-banner .cta-note {
  margin: 22px auto 40px;
  max-width: 56ch;
  font-size: clamp(17px, 1.6vw, 24px);
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  margin-top: 26px;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}
.cta-phone a { text-decoration: underline; text-underline-offset: 5px; }
.cta-phone a:hover { color: var(--white); }

/* ---------- Форма заявки ---------- */

.lead-form { max-width: 720px; margin-inline: auto; }
.lead-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lead-input {
  height: 72px;
  border: 0;
  border-radius: var(--r-btn);
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-text);
  font-size: 19px;
  font-weight: 500;
  padding: 0 26px;
  width: 100%;
  outline: none;
  box-shadow: inset 0 0 0 2px transparent;
  transition: box-shadow 0.2s ease;
}
.lead-input::placeholder { color: #8b8b94; }
.lead-input:focus { box-shadow: inset 0 0 0 3px var(--dark); }
.lead-input.is-invalid { box-shadow: inset 0 0 0 3px #7a0f04; }

/* honeypot: визуально нет, для ботов есть */
.lead-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.lead-choice {
  border: 0;
  padding: 0;
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.lead-choice-title {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
}
.choice-pill { cursor: pointer; }
.choice-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice-pill span {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-size: 16.5px;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.choice-pill:hover span { background: rgba(255, 255, 255, 0.28); }
.choice-pill input:checked + span {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
  font-weight: 600;
}
.choice-pill input:focus-visible + span { outline: 3px solid var(--dark); outline-offset: 2px; }

.lead-consent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px auto 22px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  max-width: 52ch;
}
.lead-consent input {
  width: 20px; height: 20px;
  accent-color: var(--dark);
  flex: 0 0 auto;
  cursor: pointer;
}

.lead-submit { min-width: 320px; }
.lead-submit[disabled] { opacity: 0.6; cursor: default; transform: none; }

.lead-status {
  min-height: 26px;
  margin-top: 16px;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}
.lead-form.is-done .lead-fields,
.lead-form.is-done .lead-consent,
.lead-form.is-done .lead-submit { display: none; }
.lead-form.is-done .lead-status { font-size: clamp(20px, 2vw, 28px); }

@media (max-width: 640px) {
  .lead-fields { grid-template-columns: 1fr; }
  .lead-submit { width: 100%; min-width: 0; }
}

/* ============================================================
   VIDEO — отзывы: превью-«клякса» со стикером и play
   ============================================================ */

.video-block { background: var(--white); padding: clamp(10px, 1.5vh, 22px) 0 clamp(30px, 4.5vh, 52px); }
.video-sticker { text-align: center; position: relative; z-index: 2; }
.video-sticker .sticker .d { font-size: clamp(30px, 3.4vw, 58px); }
.video-shape {
  position: relative;
  max-width: 900px;
  margin: -14px auto 0;
  transform: rotate(-1.6deg);
  overflow: hidden;
  /* органичная «клякса»: крупные неравные скругления */
  border-radius: 34% 15% 36% 18% / 28% 30% 22% 34%;
  box-shadow: 0 30px 80px rgba(4, 7, 16, 0.22);
}
.video-shape img,
.video-shape video {
  display: block;
  width: 100%;
  height: auto;
}
.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 120px;
  height: 120px;
  border: 0;
  background: none;
  cursor: pointer;
  filter: drop-shadow(0 8px 30px rgba(4, 7, 16, 0.45));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-play:hover { transform: scale(1.12); }
.video-play:active { transform: scale(0.98); }

@media (max-width: 640px) {
  .video-shape { margin-top: -8px; border-radius: 24% 12% 26% 14% / 20% 22% 16% 26%; }
  .video-play { width: 84px; height: 84px; }
  .video-play svg { width: 84px; height: 84px; }
}

/* ============================================================
   FAQ — тёплый размытый фон
   ============================================================ */

.faq {
  position: relative;
  color: var(--white);
  padding: clamp(44px, 6vh, 78px) 0;
  overflow: hidden;
  border-radius: var(--r-card);
  background:
    radial-gradient(90% 80% at 15% 20%, #E8432E 0%, rgba(232, 67, 46, 0) 60%),
    radial-gradient(100% 90% at 85% 30%, #FF9D52 0%, rgba(255, 157, 82, 0) 55%),
    radial-gradient(90% 90% at 50% 100%, #2E1E8F 0%, rgba(46, 30, 143, 0) 65%),
    linear-gradient(175deg, #C2492F 0%, #8F3A28 50%, #3B2B66 100%);
}
.faq h2 { text-align: center; font-size: clamp(40px, 3.5vw, 63px); margin-bottom: clamp(40px, 6vh, 64px); }

.faq-list { max-width: 1100px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.28); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  color: var(--white);
  font-family: var(--font-text);
  font-weight: 500;
  font-size: clamp(19px, 1.7vw, 30px);
  line-height: 1.3;
  text-align: left;
  padding: 26px 56px 26px 4px;
  position: relative;
  cursor: pointer;
}
.faq-q::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background:
    linear-gradient(#fff, #fff) center / 18px 2px no-repeat,
    linear-gradient(#fff, #fff) center / 2px 18px no-repeat;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.is-open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-a p {
  padding: 0 4px 28px;
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.88);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer { background: var(--dark); color: var(--white); padding: clamp(60px, 9vh, 100px) 0 36px; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}
.footer .logo { font-size: clamp(34px, 3.4vw, 58px); color: var(--white); }
.footer .logo small { font-size: clamp(15px, 1.3vw, 22px); color: rgba(255, 255, 255, 0.75); }

.footer-actions { display: grid; gap: 12px; }
.glass-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 15.5px;
  font-weight: 500;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.glass-btn:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-1px); }

/* соцсети автора */
.footer-socials { display: grid; gap: 10px; }
.socials-label { font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.socials-row { display: flex; gap: 12px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.social-btn:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-2px); }
.social-btn svg { width: 23px; height: 23px; }
.footer-legal {
  margin-top: clamp(28px, 4vh, 44px);
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  max-width: 60ch;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(40px, 7vh, 70px);
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

/* ============================================================
   Reveal-состояния (GSAP управляет, тут только старт)
   ============================================================ */

/* скрытие для reveal-анимаций активно только при работающем JS (класс .js на <html>) */
.js .reveal { opacity: 0; transform: translateY(34px); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .blob, .marquee-track { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Адаптив
   ============================================================ */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  /* сцена складывается в столбик */
  .who-scatter { height: auto; display: flex; flex-direction: column; align-items: center; gap: 26px; padding-inline: 20px; }
  .who-title { position: static; transform: none; margin-bottom: 14px; }
  .who-card { position: static; width: min(100%, 480px); margin-left: 0 !important; }
  .intro-grid, .host-grid { grid-template-columns: 1fr; }
  .takeaway-grid { grid-template-columns: 1fr; gap: 70px; }
}

/* мобильная карусель: нативный свайп, стрелки скрыты */
@media (max-width: 767px) {
  .car-btn { display: none; }
  .car-viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }
  .car-track { transition: none; padding-top: 18px; }
  .slide { flex: 0 0 82vw; scroll-snap-align: center; }
  .slide-info { margin-left: 5%; width: 90%; margin-top: -34px; }
}

@media (max-width: 640px) {
  .btn { height: 68px; font-size: 22px; padding: 0 32px; }
  /* чипы уезжают под заголовок (над головой), CTA остаётся внизу поверх */
  .hero-bottom { display: contents; }
  .hero-chips { align-items: center; align-self: center; margin-top: 24px; position: relative; z-index: 3; }
  .hero-cta { margin-top: auto; align-self: center; position: relative; z-index: 3; }
  .hero-title { margin-top: 16px; }
  .host-photo { max-width: 420px; margin-inline: auto; }
  .footer-grid { flex-direction: column; }
  .footer-meta { flex-direction: column; gap: 6px; }
}

/* ============================================================
   Cookie-уведомление (152-ФЗ notice) + политика-ссылка
   ============================================================ */
.cookie-notice {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 200;
  max-width: 660px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 22px;
  background: rgba(12, 8, 22, 0.93);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 50px rgba(4, 7, 16, 0.42);
  color: rgba(255, 255, 255, 0.9);
}
.cookie-notice[hidden] { display: none; }
.cookie-notice__text { font-size: 13.5px; line-height: 1.5; margin: 0; }
.cookie-notice__text a { color: #fff; text-decoration: underline; }
.cookie-notice__btn {
  flex: none;
  height: 44px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.cookie-notice__btn:hover { transform: translateY(-1px); background: var(--red-2, #e8432e); }
@media (max-width: 560px) {
  .cookie-notice { flex-direction: column; align-items: stretch; }
  .cookie-notice__btn { width: 100%; }
}
.footer-meta a { color: rgba(255, 255, 255, 0.6); text-decoration: underline; }
.footer-meta a:hover { color: #fff; }
