/* =========================================================
   ТРИУМФ ГОЛОСА · стили
   палитра: тёмный аубержин + латунно-золотой + один магентовый акцент
   ========================================================= */
:root {
  --bg: #0a0510;
  --bg-2: #0e0716;
  --surface: rgba(255, 255, 255, .025);
  --surface-2: rgba(255, 255, 255, .045);
  --ink: #f4ead9;
  --ink-soft: #cbb9a5;
  --ink-mute: #8a7c70;
  --line: rgba(244, 234, 217, .08);
  --line-2: rgba(244, 234, 217, .14);

  --pink: #ff3da8;
  --pink-soft: #ff8fc7;
  --gold: #e7be7c;
  --gold-2: #c79050;

  --grad-accent: linear-gradient(120deg, #ff3da8 0%, #b03edb 60%, #6a4ef2 100%);
  --grad-gold: linear-gradient(120deg, #f7e0a8 0%, #e7be7c 40%, #c79050 100%);

  --font-sans: 'Manrope', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-script: 'Caveat', cursive;

  --radius: 18px;
  --radius-sm: 12px;

  --maxw: 1200px;
  --maxw-narrow: 820px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: .003em;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
::selection { background: var(--pink); color: #fff; }

/* =========================================================
   ПЕРЕНОСЫ СТРОК — баланс заголовков, аккуратность абзацев
   ========================================================= */
:where(h1, h2, h3, h4, h5, h6, .display) {
  text-wrap: balance;
  hyphens: manual;
}
:where(.lead, .prose, .cta small, .price p, .prog p, .journey span, .exit p, .guests__box small, .host__seats p, .scary p) {
  text-wrap: pretty;
  hyphens: manual;
}
.nobr { white-space: nowrap; }

/* =========================================================
   ФОН — приглушённый, без анимаций
   ========================================================= */
.cosmos {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 700px at 80% 0%, rgba(255, 61, 168, .10), transparent 70%),
    radial-gradient(1100px 800px at 0% 70%, rgba(95, 38, 180, .10), transparent 70%),
    linear-gradient(180deg, #0a0510 0%, #0d0717 60%, #07030f 100%);
}
.cosmos__glow {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 90vw; height: 60vh;
  background: radial-gradient(ellipse at center, rgba(255, 61, 168, .12), transparent 60%);
  filter: blur(60px);
}
.grain {
  position: absolute; inset: 0;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.7'/></svg>");
}

/* =========================================================
   ТИПОГРАФИКА
   ========================================================= */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow {
  max-width: var(--maxw-narrow);
}

.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.12;
  letter-spacing: -.012em;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 20ch;
}
.section--intro .display,
.section--prize .display,
.section--mood .display,
.section--cta .display {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.section--cta .display { max-width: 18ch; }
.display em {
  font-style: italic;
  font-weight: 500;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.display--sm { font-size: clamp(26px, 2.8vw, 40px); }
.display--xl { font-size: clamp(40px, 6vw, 88px); letter-spacing: -.02em; }
.display--gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.display--gold em {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
}

.kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  margin-bottom: 26px;
  white-space: nowrap;
}
.kicker--gold {
  color: #f7e0a8;
  border-color: rgba(231, 190, 124, .35);
  background: rgba(231, 190, 124, .06);
}

.lead {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0 0 22px;
}
.lead--muted { color: var(--ink-mute); }

.prose {
  margin: 0 0 18px;
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.65;
}
.prose:last-child { margin-bottom: 0; }
.prose--accent { color: var(--ink); }
.prose--muted { color: var(--ink-mute); }
.prose--big { font-size: clamp(19px, 1.7vw, 24px); color: var(--ink); line-height: 1.55; }

.head {
  margin-bottom: 64px;
  max-width: 760px;
}
.head .kicker { margin-bottom: 22px; }
.head .display { margin: 0; }

/* =========================================================
   СЕКЦИИ
   ========================================================= */
.section {
  padding: clamp(96px, 13vw, 168px) 0;
  position: relative;
}
.section--dark {
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.32));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--intro {
  padding-top: clamp(56px, 7vw, 96px);
}

.quiet-divider {
  width: 60px;
  height: 1px;
  margin: 96px auto;
  background: var(--line-2);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  background: linear-gradient(180deg, rgba(10, 5, 16, .7), rgba(10, 5, 16, .3) 80%, transparent);
  transition: background .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled {
  background: rgba(10, 5, 16, .85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -.005em;
}
.nav__mark {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 14px rgba(255, 61, 168, .8);
}
.nav__links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--ink-soft);
}
.nav__links a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  transition: all .2s ease;
}
.nav__cta:hover {
  background: var(--surface-2);
  border-color: rgba(255, 61, 168, .4);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  color: var(--ink);
  background: var(--surface);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
  cursor: pointer;
  letter-spacing: -.005em;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 234, 217, .28);
  background: var(--surface-2);
}
.btn--primary {
  background: var(--grad-accent);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 36px -10px rgba(255, 61, 168, .55);
}
.btn--primary:hover {
  box-shadow: 0 22px 60px -12px rgba(255, 61, 168, .75);
  border-color: transparent;
  transform: translateY(-3px);
}
.btn--gold {
  background: var(--grad-gold);
  border-color: transparent;
  color: #2a1607;
  box-shadow: 0 14px 36px -10px rgba(231, 190, 124, .45);
  font-weight: 700;
  margin-top: 36px;
}
.btn--gold:hover {
  box-shadow: 0 22px 60px -12px rgba(231, 190, 124, .65);
  border-color: transparent;
}
.btn--ghost { background: transparent; }
.btn--xl {
  padding: 22px 38px;
  font-size: 17px;
}

/* =========================================================
   HERO — full-bleed постер на весь экран
   ========================================================= */
.hero {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.hero__poster {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  aspect-ratio: 2270 / 1306;
  max-height: 100vh;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}
.hero__poster::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 18%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
}
.hero__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05);
}

.hero__below {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 48px 32px 72px;
  text-align: center;
}

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  justify-content: center;
}
.hero__meta i {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--pink);
  display: inline-block;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================================
   ИНТРО / СТАТЕМЕНТ
   ========================================================= */
.section--intro .kicker { margin-bottom: 28px; }
.section--intro .display { margin-bottom: 36px; }
.section--intro .lead { margin-bottom: 22px; }

/* =========================================================
   TWO-COL (KICKER+H2 LEFT, PROSE RIGHT)
   ========================================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.two-col__left {
  position: sticky;
  top: 120px;
}
.two-col__left .kicker { margin-bottom: 24px; }
.two-col__left .display { margin: 0; }

/* =========================================================
   "ЕСЛИ СТРАШНО"
   ========================================================= */
.scary {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.scary .kicker { margin-bottom: 28px; }
.scary .prose { margin-left: auto; margin-right: auto; }
.quote {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 104px);
  line-height: 1;
  margin: 36px 0;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(255, 61, 168, .35));
}

/* =========================================================
   ПРОГРАММА
   ========================================================= */
.program {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.prog {
  padding: 36px 28px;
  background: var(--bg);
  transition: background .3s ease;
}
.prog:hover {
  background: rgba(255, 61, 168, .04);
}
.prog__ico {
  color: var(--pink);
  margin-bottom: 22px;
  display: block;
}
.prog h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -.005em;
}
.prog p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

/* =========================================================
   EXITS
   ========================================================= */
.exits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.exit {
  position: relative;
  padding: 56px 44px 44px;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
  background: var(--surface);
  overflow: hidden;
}
.exit__num {
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  color: var(--ink-mute);
  opacity: .35;
  letter-spacing: -.04em;
}
.exit h3 {
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 14px;
  font-weight: 500;
}
.exit__sub {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  margin: 0 0 18px;
  color: var(--ink);
  letter-spacing: -.005em;
  line-height: 1.2;
  font-weight: 500;
}
.exit p:not(.exit__sub) {
  margin: 0;
  color: var(--ink-soft);
}
.exit--accent {
  background:
    radial-gradient(500px 250px at 100% 0%, rgba(255, 61, 168, .14), transparent 70%),
    var(--surface);
  border-color: rgba(255, 61, 168, .25);
}
.exit--accent .exit__num {
  color: var(--pink-soft);
  opacity: .4;
}

.cap {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-soft);
  margin: 0;
}

/* =========================================================
   АВТОРСКАЯ ПЕСНЯ
   ========================================================= */
.song {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: start;
}
.song__left .kicker { margin-bottom: 22px; }
.song__left .display { margin-bottom: 24px; }
.song__left .prose { margin-bottom: 28px; }

.song__price {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  padding: 18px 26px;
  border-radius: var(--radius-sm);
  background: rgba(255, 61, 168, .08);
  border: 1px solid rgba(255, 61, 168, .25);
  margin-bottom: 24px;
}
.song__price span {
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.song__price b {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.song__list {
  padding: 28px 0;
  border-top: 1px solid var(--line-2);
}
.song__list:last-child { border-bottom: 1px solid var(--line-2); }
.song__list h5 {
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin: 0 0 16px;
}
.song__list ul {
  list-style: none;
  margin: 0; padding: 0;
}
.song__list li {
  padding: 8px 0;
  color: var(--ink);
  font-size: 16.5px;
}
.song__list--accent li {
  position: relative;
  padding-left: 22px;
}
.song__list--accent li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
}

/* =========================================================
   ПРИЗ (золотой)
   ========================================================= */
.section--prize {
  text-align: center;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(231, 190, 124, .14), transparent 65%),
    linear-gradient(180deg, rgba(60, 30, 5, .18), rgba(0,0,0,.1));
  border-top: 1px solid rgba(231, 190, 124, .15);
  border-bottom: 1px solid rgba(231, 190, 124, .15);
}
.section--prize .kicker { margin-bottom: 32px; }
.section--prize .display { margin-bottom: 28px; }
.section--prize .lead { margin: 0 auto 40px; color: var(--ink-soft); }
.platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.platforms span {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(231, 190, 124, .35);
  background: rgba(231, 190, 124, .05);
  color: #f7e0a8;
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: .015em;
}
.prize__finale {
  margin: 0 auto;
  max-width: 640px;
}
.prize__finale em {
  font-style: italic;
  font-weight: 500;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-display);
}

/* =========================================================
   ЖЮРИ / ГОСТИ
   ========================================================= */
.jury {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 48px 0 0;
}
.jury span {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
  transition: all .25s ease;
  text-transform: lowercase;
}
.jury span:hover {
  border-color: rgba(255, 61, 168, .35);
  background: rgba(255, 61, 168, .06);
}

.guests {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.guests .kicker { margin-bottom: 22px; }
.guests .display { margin-bottom: 18px; }

.guests__box {
  padding: 32px 36px;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
  background: var(--surface);
}
.guests__box span {
  display: block;
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
  font-weight: 500;
}
.guests__box b {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
}
.guests__box small {
  display: block;
  margin-top: 10px;
  color: var(--ink-mute);
  font-size: 13.5px;
  line-height: 1.4;
}
.guests__box-line {
  height: 1px;
  background: var(--line-2);
  margin: 22px 0;
}

/* =========================================================
   ЦЕНЫ
   ========================================================= */
.prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.price {
  padding: 44px 36px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: background .3s ease;
}
.price:hover { background: rgba(255, 255, 255, .015); }
.price__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--line-2);
  background: var(--surface);
  margin-bottom: 26px;
  font-weight: 500;
}
.price__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 1;
  margin-bottom: 22px;
  color: var(--ink);
  letter-spacing: -.02em;
}
.price__num i {
  font-style: normal;
  font-size: 24px;
  color: var(--ink-mute);
  margin-left: 10px;
  font-family: var(--font-sans);
  font-weight: 500;
}
.price p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  flex: 1;
}
.price small {
  display: block;
  margin-top: 22px;
  color: var(--ink-mute);
  font-size: 13.5px;
  line-height: 1.5;
}
.price--accent {
  background:
    radial-gradient(400px 200px at 100% 0%, rgba(255, 61, 168, .15), transparent 70%),
    var(--bg);
}
.price--accent .price__num {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price--accent .price__tag {
  color: var(--pink-soft);
  border-color: rgba(255, 61, 168, .35);
  background: rgba(255, 61, 168, .06);
}

/* =========================================================
   ПУТЬ
   ========================================================= */
.journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  list-style: none;
  padding: 0; margin: 0;
  counter-reset: jcount;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.journey li {
  counter-increment: jcount;
  position: relative;
  padding: 32px 32px 32px 80px;
  background: var(--bg);
  transition: background .3s ease;
}
.journey li:hover { background: rgba(255, 61, 168, .03); }
.journey li::before {
  content: counter(jcount, decimal-leading-zero);
  position: absolute;
  left: 28px; top: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.journey li b {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  font-size: 19px;
  margin-bottom: 4px;
  letter-spacing: -.005em;
}
.journey li span {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.45;
}

/* =========================================================
   АТМОСФЕРА
   ========================================================= */
.section--mood {
  text-align: center;
}
.section--mood .kicker { margin-bottom: 28px; }
.section--mood .display { margin-bottom: 32px; }
.section--mood .prose--big { margin: 0 auto 22px; max-width: 600px; }
.section--mood .prose { margin: 0 auto; }

/* =========================================================
   ВЕДУЩАЯ + МЕСТА
   ========================================================= */
.host {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.host__left .kicker { margin-bottom: 22px; }
.host__left .display { margin-bottom: 24px; }
.host__left .prose { margin-bottom: 18px; }

.host__seats {
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 61, 168, .25);
  background: rgba(255, 61, 168, .04);
}
.host__seats .kicker { margin-bottom: 22px; }
.seats__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 16px;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.02em;
}
.host__seats p {
  color: var(--ink-soft);
  margin: 0 0 24px;
  font-size: 15.5px;
  line-height: 1.55;
}
.seats__bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  overflow: hidden;
}
.seats__bar > div {
  height: 100%;
  width: 0;
  background: var(--grad-accent);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(255, 61, 168, .5);
}
.host__seats small {
  display: block;
  margin-top: 12px;
  color: var(--ink-mute);
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* =========================================================
   CTA
   ========================================================= */
.section--cta {
  text-align: center;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(255, 61, 168, .12), transparent 70%);
}
.section--cta .kicker { margin-bottom: 32px; }
.section--cta .display { margin-bottom: 22px; }
.section--cta .lead { margin: 0 auto 48px; }

.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}
.cta {
  position: relative;
  padding: 32px 28px 30px;
  text-decoration: none;
  color: var(--ink);
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
  background: var(--surface);
  transition: all .25s ease;
  display: block;
}
.cta:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 61, 168, .35);
  background: var(--surface-2);
}
.cta__num {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-mute);
  margin-bottom: 18px;
  letter-spacing: -.005em;
}
.cta b {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: -.005em;
}
.cta small {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}
.cta--accent {
  background:
    radial-gradient(360px 200px at 100% 0%, rgba(255, 61, 168, .14), transparent 70%),
    var(--surface);
  border-color: rgba(255, 61, 168, .3);
}

.phone {
  display: inline-block;
  margin-top: 28px;
  color: var(--ink-soft);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: .04em;
  font-size: 15.5px;
}
.phone:hover { color: var(--ink); }

/* =========================================================
   TOAST
   ========================================================= */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(10, 5, 16, .96);
  color: var(--ink);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid rgba(255, 61, 168, .35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px -10px rgba(255, 61, 168, .35);
  opacity: 0;
  pointer-events: none;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  z-index: 200;
  max-width: calc(100vw - 40px);
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 48px 0 56px;
  border-top: 1px solid var(--line);
  color: var(--ink-mute);
  font-size: 14px;
}
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer a {
  color: var(--ink-soft);
  text-decoration: none;
}
.footer a:hover { color: var(--ink); }

/* =========================================================
   REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .program { grid-template-columns: repeat(2, 1fr); }
  .prices { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col__left { position: static; }
  .song { grid-template-columns: 1fr; gap: 48px; }
  .guests { grid-template-columns: 1fr; gap: 36px; }
  .host { grid-template-columns: 1fr; gap: 48px; }
  .journey { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 16.5px; }
  .container { padding: 0 22px; }
  .nav { padding: 14px 18px; }
  .nav__links { display: none; }
  .nav__cta { padding: 9px 14px; font-size: 12.5px; }

  .hero__below { padding: 36px 18px 56px; gap: 24px; }
  .hero__meta { font-size: 10.5px; letter-spacing: .18em; padding: 10px 16px; gap: 10px; }
  .hero__cta { width: 100%; flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }

  .section { padding: 80px 0; }
  .quiet-divider { margin: 64px auto; }
  .head { margin-bottom: 44px; }

  .program { grid-template-columns: 1fr; }
  .prog { padding: 28px 24px; }

  .exits { grid-template-columns: 1fr; }
  .exit { padding: 44px 28px 28px; }
  .exit__num { font-size: 60px; top: 20px; right: 22px; }

  .jury { gap: 8px; }
  .jury span { padding: 9px 16px; font-size: 13.5px; }

  .guests__box { padding: 24px 26px; }

  .price { padding: 32px 26px; min-height: auto; }
  .journey { grid-template-columns: 1fr; }

  .host__seats { padding: 28px; }

  .scary .quote { font-size: 64px; margin: 28px 0; }
}

@media (max-width: 480px) {
  .footer__row { flex-direction: column; text-align: center; }
  .display { font-size: 30px; }
  .nav__brand span:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
