/* ============================================================
   FUN RÁDIO · V3 "SEBAVEDOMÝ EDITORIAL" · design system
   Magenta je primárna dominantná farba. Warm-white základ,
   veľká Fraunces typografia, vlasové linky, disciplinovaný set.
   Tokeny hore, komponenty všeobecné, sekcie dole.
   ============================================================ */

/* ---------- 1. TOKENY ---------- */
:root {
  /* MAGENTA — primárna dominantná */
  --magenta: #E60469;
  --magenta-deep: #B80452;
  --magenta-bright: #FF2E86;
  --magenta-soft: #FDE3EE;
  --magenta-line: rgba(230, 4, 105, .18);

  /* INK & PAPER — kontrastný editorial základ */
  --ink: #1B0E15;
  --ink-soft: #6A5560;
  --paper: #FBF6F1;
  --surface: #FFFFFF;
  --cream: #F3E9DC;            /* jediný teplý doplnok, striedmo */
  --line: rgba(27, 14, 21, .12);
  --on-magenta: #FFF1F7;       /* text/prvky na magenta ploche */

  /* spätná kompatibilita: --bg mapuje na --paper */
  --bg: var(--paper);

  /* staré candy tokeny ostávajú definované (spätná kompatibilita),
     ale v sekciách sa už NEPOUŽÍVAJÚ ako plochy — tóny sú premapované nižšie */
  --butter: #F8DC5A;      --butter-soft: #FAF0C4;
  --blush: #F3B7CE;       --blush-soft: #FAE4EE;
  --peri: #A9B6F0;        --peri-soft: #E2E7FB;
  --tang: #F2A25A;        --tang-soft: #F9E4CB;
  --mint: #A5D6A0;        --mint-soft: #E3F2DF;
  --grad-tang: linear-gradient(160deg, var(--magenta-bright), var(--magenta-deep));

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* menšie rádiusy = sebavedomejší editorial */
  --r-sm: 18px;
  --r-md: 22px;
  --r-lg: 28px;

  --shadow-soft: 0 14px 36px rgba(27, 14, 21, .09);
  --shadow-lift: 0 24px 54px rgba(27, 14, 21, .15);
  --shadow-mag: 0 22px 50px rgba(184, 4, 82, .28);
  /* značkové efektové tokeny (retéma cez override) */
  --brand-glow: rgba(255, 46, 134, .55);   /* svetlá žiara v radiáloch */
  --brand-deep-a: rgba(120, 3, 54, .5);    /* tmavý tieň v gradientoch */
  --brand-deep-b: rgba(120, 3, 54, .3);
  --voucher-grad: linear-gradient(150deg, #8F0341 0%, #6B022E 100%);

  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-out: cubic-bezier(.22, .61, .36, 1);

  --wrap: 1160px;
  --nav-h: 68px;
}

/* ---------- 2. ZÁKLAD ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open, body.player-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 3px solid var(--magenta); outline-offset: 3px; border-radius: 8px; }
[hidden] { display: none !important; }

.wrap { width: min(var(--wrap), 100% - 40px); margin-inline: auto; }
.section { padding: clamp(64px, 10vw, 118px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }

/* ---------- 3. TYPOGRAFIA ---------- */
.display, .h1, .h2, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0;
  text-transform: none;
}
.h1 { font-size: clamp(46px, 8.6vw, 92px); }
.h2 { font-size: clamp(32px, 5vw, 54px); }
.h3 { font-size: clamp(20px, 2.6vw, 26px); }
.h-dot { color: var(--magenta); }

.lead { font-size: clamp(16px, 2vw, 19px); color: var(--ink-soft); max-width: 46ch; }

.microlabel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 700 11px/1 var(--font-body);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.microlabel::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--magenta);
}
/* na magenta ploche */
.microlabel--on { color: var(--on-magenta); }
.microlabel--on::before { background: var(--cream); }

.num {
  font-family: var(--font-display);
  font-weight: 460;
  letter-spacing: -0.01em;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
/* odometer číslice v serife: vynúť rovnaké lining figúry, aby rolujúce
   stĺpce boli rovnako široké a zarovnané (Fraunces default = oldstyle) */
.num .odo, [data-count] .odo {
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.section-head { max-width: 660px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head .h2 { margin: 14px 0 12px; }

/* ---------- 4. TÓNY · disciplinovaný set (magenta / ink / krém) ---------- */
/* candy triedy ostávajú v HTML, ale mapujú na disciplinovaný set */
.tone-butter, .tone-butter-soft { background: var(--cream); }
.tone-blush, .tone-blush-soft   { background: var(--magenta-soft); }
.tone-peri, .tone-peri-soft     { background: var(--surface); }
.tone-mint, .tone-mint-soft     { background: var(--cream); }
.tone-tang, .tone-tang-soft     { background: var(--magenta-soft); }
.tone-tang-grad                 { background: linear-gradient(155deg, var(--magenta-bright), var(--magenta-deep)); color: var(--on-magenta); }
/* prvky na magenta gradiente (deck "Fun Dance", podcast "Fun in Slovakia") */
.tone-tang-grad .deck-title,
.tone-tang-grad .sl-name { color: var(--on-magenta); }
.tone-tang-grad .chip { background: rgba(255, 241, 247, .16); border-color: transparent; color: var(--on-magenta); }
.tone-tang-grad .chip--plain { background: rgba(255, 241, 247, .18); color: var(--on-magenta); }
.tone-tang-grad .chip--live { background: var(--on-magenta); color: var(--magenta-deep); }
.tone-tang-grad .chip--live .live-dot { background: var(--magenta-deep); }
.tone-tang-grad .sl-arrow { background: rgba(255, 241, 247, .2); color: var(--on-magenta); }
.tone-tang-grad .stackl-desc,
.tone-tang-grad .stackl-desc p { color: var(--on-magenta); }
.tone-tang-grad .btn--ghost { border-color: rgba(255, 241, 247, .5); color: var(--on-magenta); }
.tone-tang-grad .btn--ghost:hover { border-color: var(--on-magenta); background: rgba(255, 241, 247, .12); }
.tone-tang-grad .episode + .episode { border-color: rgba(255, 241, 247, .22); }

/* ---------- 5. KARTY ---------- */
.pastel-card {
  border-radius: var(--r-md);
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.surface-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
}

/* ---------- 6. ORGANICKÉ MASKY ---------- */
.masked {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.masked--tall { aspect-ratio: 4 / 5; }
.masked--fill { aspect-ratio: auto; height: 100%; }
.masked--kvet    { clip-path: url(#maska-kvet); }
.masked--oblacik { clip-path: url(#maska-oblacik); }
.masked--kvapka  { clip-path: url(#maska-kvapka); }
.masked--vlnka   { clip-path: url(#maska-vlnka); }

/* ---- Bauhaus fragmenty (poster logika): čisté border-radius tvary ----
   kruh = vinyl/éter · pill = kapsula ovládača (jazyk tlačidiel a docku)
   arch = brána/okno štúdia (portrét v ňom prirodzene sedí)
   list = diagonálny fragment · kocka = digitálny obsah (podcast artwork) */
.masked--kruh   { border-radius: 50%; }
.masked--pill   { border-radius: 999px; }
.masked--arch   { border-radius: 999px 999px 24px 24px; }
.masked--archdol{ border-radius: 24px 24px 999px 999px; }
.masked--list   { border-radius: 999px 24px 999px 24px; }
.masked--listop { border-radius: 24px 999px 24px 999px; }
.masked--kocka  { border-radius: 22px; }
.masked--drop   { border-radius: 50% 0 50% 50%; }
.masked img, .masked .orb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.masked:hover img, .masked:hover .orb { transform: scale(1.03); }
.reduced .masked:hover img, .reduced .masked:hover .orb { transform: none; }

/* FLAT fragmenty — plné plochy bez gradientov a 3D (poster logika) */
.orb { display: block; border-radius: 0; }
.orb--magenta{ background: var(--magenta); }
.orb--blush  { background: var(--magenta-bright); }
.orb--butter { background: var(--ink); }
.orb--peri   { background: var(--magenta-soft); }
.orb--tang   { background: var(--magenta-deep); }
.orb--mint   { background: var(--magenta); }

/* ---------- 7. TLAČIDLÁ ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font: 600 15px/1 var(--font-body);
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s var(--ease-spring), box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover { filter: brightness(.97); }
.btn:active { transform: translateY(0) scale(.98); }
/* primárne = magenta výplň */
.btn--primary { background: var(--magenta); color: var(--on-magenta); box-shadow: var(--shadow-mag); }
.btn--primary:hover { background: var(--magenta-deep); box-shadow: var(--shadow-mag); }
.btn--ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
/* varianty na magenta ploche (hero) */
.btn--paper { background: var(--paper); color: var(--ink); box-shadow: 0 16px 34px var(--brand-deep-b); }
.btn--paper:hover { background: #fff; }
.btn--on-ghost { border-color: rgba(255, 241, 247, .5); color: var(--on-magenta); background: transparent; }
.btn--on-ghost:hover { border-color: var(--on-magenta); background: rgba(255, 241, 247, .1); }
.btn svg { flex: none; }

/* okrúhle ikonové tlačidlo */
.icon-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  transition: transform .25s var(--ease-spring), background .25s ease;
  flex: none;
}
.icon-btn:hover { transform: scale(1.06); }
.icon-btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }

/* ---------- 8. CHIPY ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font: 600 12px/1 var(--font-body);
  letter-spacing: .02em;
  white-space: nowrap;
}
.chip--live { background: var(--magenta); color: var(--on-magenta); border-color: transparent; }
.chip--live .live-dot { background: var(--on-magenta); }
.chip--time { background: var(--surface); }
.chip--plain { border-color: transparent; background: var(--magenta-soft); color: var(--ink); }
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--magenta);
  animation: live-pulse 1.6s ease-in-out infinite;
  flex: none;
}
@keyframes live-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.6); opacity: .5; }
}
.reduced .live-dot { animation: none; }

/* ---------- 9. PLAY PILL ---------- */
.play-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font: 600 14px/1 var(--font-body);
  transition: transform .25s var(--ease-spring), background .25s ease;
  white-space: nowrap;
}
.play-pill:hover { filter: brightness(.96); }
.play-pill .pp-ic { display: inline-flex; }
.play-pill .pp-arrow { font-family: var(--font-body); }
.play-pill.playing .pp-arrow { display: none; }
.play-pill.playing { background: var(--magenta); color: var(--on-magenta); }

/* ---------- 10. AVATAR ---------- */
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  border: 2px solid var(--surface);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 11. REVEAL ON SCROLL (GSAP) ----------
   Reveal riadi /v3/motion.js cez GSAP ScrollTrigger. Predvolený
   stav prvkov je VIDITEĽNÝ — skrytie/pohyb nastaví GSAP iba vo
   vetve (prefers-reduced-motion: no-preference). Takže pri
   reduced-motion ani keď GSAP nebeží nič neostane skryté.
   FOUC pred spustením GSAP bráni html.reveal-primed (inline
   skript v <head>, nikdy pri reduced-motion + failsafe po 2,5 s).
   Hook pre nový obsah: [data-reveal] (alias .fx). */
html.reveal-primed [data-reveal],
html.reveal-primed .fx { opacity: 0; }

/* skupinové reveal-y (staviteľ 2): kontajner ostáva viditeľný, položky
   sa odhalia staggerom v /v3/motion.js. Tu ich len primárne skryjeme,
   aby pred spustením GSAP neblikli. Pri reduced-motion (žiadny
   reveal-primed) aj pri failsafe ostávajú viditeľné. */
html.reveal-primed .snap-row > *,
html.reveal-primed .news-row,
html.reveal-primed .stackl-card,
html.reveal-primed .freq-table tbody [data-row],
html.reveal-primed .freq-table .ft-live { opacity: 0; }

/* scrub parallax ciele → vlastná kompozitná vrstva pre plynulý pohyb */
.stats-blob,
.feature-amount,
.band-phone,
.band-flower,
.footer-mark { will-change: transform; }

/* clip-reveal ostáva ako VIDITEĽNÝ default; GSAP mu dá clip-path
   reveal (inset 100% → 0). Trieda .reveal-clip / atribút
   data-reveal-clip len prepínajú variant animácie v motion.js. */
.reveal-clip { clip-path: inset(0 -4% 0 -4%); }

/* ============================================================
   NAVIGÁCIA · plávajúca pill kapsula
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.nav--scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 30px rgba(27, 14, 21, .07); }
.nav-bar {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 36px);
  height: var(--nav-h);
  padding: 0 clamp(14px, 2.5vw, 32px);
}
.nav-logo { display: flex; align-items: center; flex: none; }
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links > a,
.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 15px;
  border-radius: 999px;
  font: 600 15px/1 var(--font-body);
  color: var(--ink);
  text-decoration: none;
  transition: background .25s ease, color .25s ease;
}
.nav-links > a:hover,
.nav-drop-btn:hover { background: var(--magenta-soft); color: var(--magenta-deep); }
.nav-item { position: relative; }
.nav-drop-btn svg { transition: transform .25s ease; }
.nav-item:hover .nav-drop-btn svg,
.nav-item:focus-within .nav-drop-btn svg { transform: rotate(180deg); }
.nav-drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-lift);
  display: grid;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .3s var(--ease-out), visibility 0s .3s;
}
.nav-item:hover .nav-drop,
.nav-item:focus-within .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity .25s ease, transform .3s var(--ease-out);
}
.nav-drop a {
  padding: 10px 14px;
  border-radius: 10px;
  font: 500 14px/1.3 var(--font-body);
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.nav-drop a:hover { background: var(--magenta-soft); color: var(--magenta-deep); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.btn--nav { padding: 11px 20px; font-size: 14px; }
.nav-burger {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--magenta);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: none;
  transition: background .25s ease;
}
.nav-burger:hover { background: var(--magenta-deep); }
.nav-burger span {
  width: 16px; height: 2px;
  border-radius: 2px;
  background: var(--on-magenta);
  transition: transform .3s ease;
}
@media (min-width: 980px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
}
@media (max-width: 979px) {
  .btn--nav { display: none; }
  .nav-logo img { height: 32px; }
}
@media (max-width: 979px) {
  :root { --nav-h: 60px; }
  .nav { position: sticky; }
}

/* fullscreen overlay menu */
.menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility 0s .35s;
}
body.menu-open .menu { opacity: 1; visibility: visible; transition: opacity .35s ease; }
.menu-top { display: flex; justify-content: space-between; align-items: center; }
.menu-close {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--magenta);
  color: var(--on-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-links {
  list-style: none;
  margin: auto 0 0;
  padding: 24px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu-links a {
  font-family: var(--font-display);
  font-size: clamp(36px, 9vw, 62px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-decoration: none;
  display: inline-block;
  transition: color .25s ease, transform .35s var(--ease-spring);
  transform: translateY(14px);
  opacity: 0;
}
.menu-links .h-dot { color: var(--magenta); }
body.menu-open .menu-links a { transform: none; opacity: 1; }
.menu-links li:nth-child(1) a { transition-delay: .05s; }
.menu-links li:nth-child(2) a { transition-delay: .1s; }
.menu-links li:nth-child(3) a { transition-delay: .15s; }
.menu-links li:nth-child(4) a { transition-delay: .2s; }
.menu-links li:nth-child(5) a { transition-delay: .25s; }
.menu-links a:hover { color: var(--magenta); }
.menu-photo {
  margin-top: auto;
  align-self: flex-end;
  width: min(240px, 46vw);
  border-radius: var(--r-sm);
  padding: 12px;
}
.reduced .menu, .reduced .menu-links a { transition: none; }

/* ============================================================
   HERO · WOW signature · OBLÁ MAGENTA KARTA + živá morph maska + vlna
   .hero = paper rám; .hero-card = magenta karta (scroll-shrink cez
   /v3/motion.js: scale okolo stredu + rast border-radius).
   ============================================================ */
.hero {
  /* mobil: normálny flow (sticky + filter scrub na iOS seká);
     desktop: prišpendlený hero, sheet sa nasúva ponad kartu */
  position: relative;
  z-index: 0;
  height: auto;
  min-height: 100svh;
  background: var(--paper);
  padding: 0;
}
@media (min-width: 900px) {
  .hero { position: sticky; top: 0; }
}
.hero-card {
  position: relative;
  overflow: hidden;
  width: calc(100% - 12px);
  min-height: calc(100svh - var(--nav-h) - 12px);
  margin: calc(var(--nav-h) + 6px) auto 6px;
  background: var(--magenta);
  color: var(--on-magenta);
  border-radius: clamp(24px, 3vw, 36px);
  padding: clamp(36px, 5vw, 72px) 0;
  display: grid;
  align-items: center;
  transform-origin: center 30%;
  will-change: transform;
}
/* stmavenie hero karty pri push-backu — opacity overlay namiesto
   filter: brightness() (filter na veľkej sticky vrstve trhá kompozíciu) */
.hero-dim {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  border-radius: inherit;
}

/* obsahový "sheet" nad prišpendleným hero — vlastná kompozitná vrstva,
   aby sa spoľahlivo kreslil NAD hero (žiadne trhanie starých frameov) */
.page-body {
  position: relative;
  z-index: 2;
  transform: translateZ(0);
  overflow: clip;
  background: var(--paper);
}
/* zaoblený sheet s tieňom a presahom má zmysel len na desktope,
   kde sa nasúva ponad prišpendlený hero; na mobile je flow rovný */
@media (min-width: 900px) {
  .page-body {
    margin-top: -26px;
    box-shadow: 0 -22px 54px rgba(27, 14, 21, .22);
  }
}

/* jemné svetlo v pozadí magenta karty */
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 82% 8%, var(--brand-glow), transparent 60%),
    radial-gradient(90% 80% at 6% 100%, var(--brand-deep-a), transparent 55%);
  pointer-events: none;
}
.hero-card > .wrap { position: relative; z-index: 2; }

/* generatívna vlna · plná šírka karty, pod obsahom */
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: clamp(180px, 34vw, 320px);
  z-index: 1;
  pointer-events: none;
  display: block;
}

.hero-grid {
  display: grid;
  gap: clamp(40px, 6vw, 68px);
  align-items: center;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.02fr .98fr; } }

.hero-title { margin: 20px 0 20px; }
.hero .h-dot { color: var(--cream); }
.hero-lead { color: rgba(255, 241, 247, .82); max-width: 40ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.hero-avatars { display: flex; }
.hero-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--magenta);
  box-shadow: 0 0 0 1px rgba(255, 241, 247, .35);
  margin-left: -12px;
}
.hero-av:first-child { margin-left: 0; }
.hero-av img { width: 100%; height: 100%; object-fit: cover; }
.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(27, 14, 21, .28);
  border: 1px solid rgba(255, 241, 247, .28);
  font: 600 13px/1 var(--font-body);
  color: var(--on-magenta);
  white-space: nowrap;
}
.hero-live .live-dot { background: var(--cream); }
.hero-live .num { font-weight: 500; }

/* stage s morph maskou */
.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(72vw, 420px);
}
.hero-morph {
  position: relative;
  width: min(430px, 82%);
  aspect-ratio: 1 / 1;
  display: block;
  cursor: pointer;
  filter: drop-shadow(0 30px 60px rgba(90, 2, 42, .5));
}
.hero-morph-shape {
  position: absolute;
  inset: 0;
  /* geometrický radius-morph (kruh ↔ arch ↔ kapsula) riadi morph.js */
  border-radius: 50%;
  overflow: hidden;
  display: block;
}
.hero-morph-shape img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.hero-morph:hover .hero-morph-shape img { transform: scale(1.05); }
.reduced .hero-morph:hover .hero-morph-shape img { transform: none; }
/* jemný magenta lem cez masku */
.hero-morph-ring {
  position: absolute;
  inset: 0;
  clip-path: url(#hero-morph);
  -webkit-clip-path: url(#hero-morph);
  box-shadow: inset 0 0 0 3px rgba(255, 241, 247, .35);
  pointer-events: none;
}
.hero-morph-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 74px; height: 74px;
  border-radius: 50%;
  background: rgba(27, 14, 21, .42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 241, 247, .55);
  color: var(--on-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s var(--ease-spring), background .3s ease;
  z-index: 2;
}
.hero-morph:hover .hero-morph-play { transform: translate(-50%, -50%) scale(1.08); background: var(--magenta-deep); }
.reduced .hero-morph:hover .hero-morph-play { transform: translate(-50%, -50%); }

@media (max-width: 899px) {
  .hero-stage { min-height: 0; margin-top: 8px; }
  .hero-morph { width: min(360px, 80%); }
}

/* ============================================================
   MARQUEE · práve hrá · tenký editorial pás
   ============================================================ */
.marquee {
  background: var(--paper);
  overflow: hidden;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: marquee-run 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.reduced .marquee-track { animation: none; }
@keyframes marquee-run {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.mq-item {
  font: 600 13px/1 var(--font-body);
  letter-spacing: .03em;
  white-space: nowrap;
  color: var(--ink);
}
.mq-label { color: var(--magenta); text-transform: uppercase; letter-spacing: .2em; font-size: 11px; font-weight: 700; }
.mq-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--magenta); flex: none; }

/* ============================================================
   VEĽKÉ ČÍSLO · štatistiky
   ============================================================ */
.stats-grid {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
@media (min-width: 900px) { .stats-grid { grid-template-columns: 7fr 5fr; } }

.stats-main { position: relative; }
.stat-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
}
.stat-hero .stat-num {
  position: relative;
  z-index: 1;
  font-size: clamp(56px, 10.5vw, 154px);
  line-height: .92;
  color: var(--magenta);
}
.stat-hero .stat-label {
  position: relative;
  z-index: 1;
  font: 500 15px/1.4 var(--font-body);
  color: var(--ink-soft);
}
/* organický blob za číslom */
.stats-blob {
  position: absolute;
  top: -16%;
  left: 36%;
  width: clamp(170px, 24vw, 310px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--magenta-soft);
  z-index: 0;
}
/* živý chip (skrytý, kým nie sú živé dáta) */
.stats-live { display: none; margin-top: 4px; position: relative; z-index: 1; }
html.zive-live .stats-live { display: inline-flex; }
.stats-live .num { font-weight: 500; }

/* stack kariet · disciplinovaný set (surface + jedna plná magenta) */
.stats-cards { display: flex; flex-direction: column; gap: 14px; }
.stat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .3s var(--ease-spring), box-shadow .3s ease;
}
.stat-card:hover { border-color: var(--magenta-line); }
.stat-card:hover .stat-index { color: var(--magenta); }
.reduced .stat-card:hover { transform: none; }
.stat-card .stat-index {
  font: 700 11px/1 var(--font-body);
  letter-spacing: .2em;
  color: var(--magenta);
}
.stat-card .stat-num { font-size: clamp(30px, 4.5vw, 46px); line-height: 1.05; color: var(--magenta); }
.stat-card .stat-label { font: 500 13px/1.4 var(--font-body); color: var(--ink-soft); }
/* plná magenta plocha — mid-page akcent */
.stat-card--mag {
  background: var(--magenta);
  border-color: transparent;
  color: var(--on-magenta);
  box-shadow: var(--shadow-mag);
}
.stat-card--mag .stat-index { color: var(--on-magenta); opacity: .82; }
.stat-card--mag .stat-num { color: var(--on-magenta); }
.stat-card--mag .stat-label { color: rgba(255, 241, 247, .86); }
@media (max-width: 899px) {
  .stats-cards {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 18px 20px 64px 0;
    margin: 0 -20px -36px 0;
    scrollbar-width: none;
  }
  .stats-cards::-webkit-scrollbar { display: none; }
  .stat-card { flex: none; width: min(220px, 62vw); scroll-snap-align: start; }
}

/* ============================================================
   STACK DECK · Naživo teraz
   ============================================================ */
.deck-wrap { display: grid; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (min-width: 960px) { .deck-wrap { grid-template-columns: .9fr 1.1fr; align-items: start; } }

.deck {
  position: relative;
  width: min(430px, 100%);
  height: clamp(470px, 120vw, 570px);
  margin-inline: auto;
}
@media (min-width: 480px) { .deck { height: 570px; } }
.deck-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: var(--r-lg);
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  transition: transform .5s var(--ease-spring), opacity .4s ease, box-shadow .3s ease;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  will-change: transform;
}
.deck-card.is-top { cursor: grab; }
.deck-card.dragging { transition: none; cursor: grabbing; }
.deck-card.flying { transition: transform .45s cubic-bezier(.34, 1.56, .64, 1), opacity .3s ease; }
.deck-card.no-trans { transition: none; }
.reduced .deck-card { transition: opacity .3s ease; cursor: default; }

.deck-head { display: flex; align-items: center; gap: 12px; }
.deck-head .deck-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.15;
  flex: 1;
  min-width: 0;
}
.deck-media { flex: 1; min-height: 0; display: grid; }
.deck-media .masked { aspect-ratio: auto; height: 100%; }
.deck-media img { pointer-events: none; }
.deck-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }

.deck-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}
.deck-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, color .25s ease, transform .25s var(--ease-spring), border-color .25s ease;
}
.deck-arrow:hover { background: var(--magenta); color: var(--on-magenta); border-color: transparent; transform: scale(1.06); }
.deck-dots { display: flex; gap: 8px; }
.deck-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: background .25s ease, transform .25s var(--ease-spring);
  padding: 0;
}
.deck-dots .dot.active { background: var(--magenta); transform: scale(1.3); }

/* ============================================================
   SNAP SCROLLERY · stanice a program
   ============================================================ */
.snap-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* začiatok zarovnaný s nadpisom (žiadny ľavý bleed),
     doprava karty vybiehajú k okraju obrazovky;
     zvislý padding = miesto pre tiene kariet */
  padding: 18px 20px 64px 0;
  margin: 0 -20px -36px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--magenta-line) transparent;
}
.snap-row > * { scroll-snap-align: start; flex: none; }

.station-card {
  width: 190px;
  border-radius: var(--r-sm);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-align: left;
  transition: transform .3s var(--ease-spring), box-shadow .3s ease;
}
.station-card:hover { border-color: var(--magenta-line); }
.station-card:hover .masked { transform: rotate(-5deg) scale(1.07); }
.station-card .masked { transition: transform .35s var(--ease-spring); }
.station-card .masked { width: 96px; }
.station-card .st-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.1;
}
.station-card .st-disc {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  transition: transform .25s var(--ease-spring), background .25s ease;
}
.station-card:hover .st-disc { transform: scale(1.08); background: var(--magenta); color: var(--on-magenta); }
.station-card.playing .st-disc { background: var(--magenta); color: var(--on-magenta); }

.program-card {
  width: 210px;
  border-radius: var(--r-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
}
.program-card .masked { width: 118px; }
.program-card .pg-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.15;
}
.program-card .chip { align-self: flex-start; }

/* ============================================================
   STACK LIST · podcasty (accordion)
   ============================================================ */
.stackl { display: flex; flex-direction: column; max-width: 720px; margin-inline: auto; }
.stackl-card {
  position: relative;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: 0 -12px 30px rgba(27, 14, 21, .10);
}
.stackl-card + .stackl-card { margin-top: -26px; }
/* poradie v stacku je nemenné: každá ďalšia karta prekrýva predchádzajúcu
   aj keď je otvorená — otvorená karta ostáva zastrčená pod nasledujúcou */
.stackl-card:nth-child(1) { z-index: 1; }
.stackl-card:nth-child(2) { z-index: 2; }
.stackl-card:nth-child(3) { z-index: 3; }
.stackl-card:nth-child(4) { z-index: 4; }
.stackl-card:nth-child(5) { z-index: 5; }
.stackl-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  text-align: left;
}
.stackl-head .avatar { width: 44px; height: 44px; }
.stackl-head .sl-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 600;
  flex: 1;
  min-width: 0;
}
.stackl-head .sl-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--magenta-soft);
  color: var(--magenta-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .45s var(--ease-spring);
  flex: none;
}
.stackl-card.open .sl-arrow { transform: rotate(180deg); }
.stackl-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.3,.7,.3,1);
}
.stackl-card.open .stackl-body { transition: max-height .55s cubic-bezier(.22,.9,.24,1); }
.reduced .stackl-body { transition: none; }
.stackl-inner {
  display: grid;
  gap: 20px;
  padding: 4px 24px 28px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .3s ease;
}
.stackl-card.open .stackl-inner {
  opacity: 1;
  transform: none;
  transition: opacity .4s ease .14s, transform .5s cubic-bezier(.22,.9,.24,1) .14s;
}
.reduced .stackl-inner { opacity: 1; transform: none; transition: none; }
.stackl-card.open:not(:last-child) .stackl-inner { padding-bottom: 64px; }
@media (min-width: 640px) { .stackl-inner { grid-template-columns: 200px 1fr; align-items: start; } }
.stackl-inner .masked { max-width: 200px; }
.stackl-desc { font-size: 15px; line-height: 1.65; }
.stackl-desc p { margin: 0 0 14px; }

.episode {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}
.episode + .episode { border-top: 1px solid var(--line); }
.episode .ep-title {
  flex: 1;
  min-width: 0;
  font: 600 14px/1.4 var(--font-body);
}
.episode .play-pill { padding: 9px 16px; font-size: 13px; }

/* ============================================================
   NOVINKY
   ============================================================ */
.news-list { display: flex; flex-direction: column; }
.news-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.news-row:first-child { border-top: 1px solid var(--line); }
@media (min-width: 720px) { .news-row { grid-template-columns: 96px 1fr auto; } }
.news-thumb {
  width: 96px;
  border-radius: 16px;
  padding: 7px;
  transition: transform .4s var(--ease-spring);
}
.news-row:hover .news-thumb { transform: rotate(3deg); }
.reduced .news-row:hover .news-thumb { transform: none; }
.news-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  margin: 6px 0 0;
}
.news-row:hover .news-title { text-decoration: underline; text-decoration-color: var(--magenta); text-underline-offset: 4px; }
.news-time { font: 500 13px/1 var(--font-body); color: var(--ink-soft); white-space: nowrap; }

/* ============================================================
   FREKVENCIE
   ============================================================ */
.freq-table table { width: 100%; border-collapse: separate; border-spacing: 0; }

.freq-table .ft-th {
  text-align: left;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
}
.freq-table .ft-th--freq { width: 30%; }
.freq-table .ft-th button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 11px/1 var(--font-body);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .25s ease;
}
.freq-table .ft-th button:hover,
.freq-table .ft-th[aria-sort] button { color: var(--ink); }
.freq-table .ft-th[aria-sort] .ft-arrow { color: var(--magenta); }

.freq-table td {
  border-bottom: 1px solid var(--line);
  padding: clamp(10px, 2vw, 22px) 0;
  transition: background .3s ease;
}
.freq-table .ft-num {
  font-family: var(--font-display);
  font-weight: 460;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  color: var(--ink);
  padding-right: 18px;
  transition: color .3s ease, background .3s ease;
}
.freq-table .ft-city {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.05;
  color: var(--ink);
}
.freq-table .ft-city span { display: inline-block; }

/* disciplinovaný twist: riadky sa pri hoveri zalievajú magenta/krém odtieňmi */
@media (hover: hover) {
  .freq-table tbody tr:nth-child(odd):hover td { background: var(--magenta-soft); }
  .freq-table tbody tr:nth-child(even):hover td { background: var(--cream); }
  .freq-table tbody tr:hover .ft-num { color: var(--magenta); }
}

/* spodný live riadok tabuľky */
.freq-table .ft-live {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font: 600 14px/1.3 var(--font-body);
  text-align: left;
  color: var(--ink);
  transition: color .25s ease;
}
.freq-table .ft-live:hover { color: var(--magenta); }
.ft-live-art { width: 28px; flex: none; }
.ft-live-text { flex: 1; min-width: 0; }
.ft-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 11px/1 var(--font-body);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--magenta);
}

@media (max-width: 640px) {
  .freq-table .ft-num { font-size: clamp(1.9rem, 8.5vw, 2.4rem); padding-right: 12px; }
  .freq-table .ft-city { font-size: 1.2rem; }
  .freq-table .ft-live { flex-wrap: wrap; padding-block: 12px; }
}

/* ============================================================
   FEATURE BAND · celomagenta plocha (súťaž) · mid-page dominancia
   ============================================================ */
.feature {
  position: relative;
  overflow: hidden;
  background: var(--magenta);
  color: var(--on-magenta);
  padding: clamp(64px, 10vw, 116px) 0;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(115% 90% at 88% 4%, var(--brand-glow), transparent 58%),
    radial-gradient(90% 80% at 4% 100%, var(--brand-deep-a), transparent 55%);
  pointer-events: none;
}
.feature > .wrap { position: relative; z-index: 1; }
.feature-grid {
  display: grid;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
@media (min-width: 860px) { .feature-grid { grid-template-columns: 1.15fr .85fr; } }
.feature-title { margin: 16px 0 16px; font-size: clamp(48px, 8vw, 104px); }
.feature .h-dot { color: var(--cream); }
.feature-lead { color: rgba(255, 241, 247, .84); max-width: 40ch; }
.feature-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.feature-figure {
  /* reálne proporcie platobnej karty (ISO 1.586) */
  aspect-ratio: 1.586;
  width: min(560px, 100%);
  margin-inline: auto;
  border-radius: clamp(18px, 3.2vw, 26px);
  padding: clamp(20px, 3.6vw, 34px) clamp(22px, 4vw, 38px);
  background: var(--voucher-grad);
  border: 1px solid rgba(255, 241, 247, .16);
  box-shadow: 0 30px 50px -22px rgba(40, 0, 18, .55);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  color: var(--on-magenta);
  transform-style: preserve-3d;
  will-change: transform;
}
/* decentný sheen ako na skutočnej karte */
.feature-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255, 255, 255, .10) 0%, transparent 32%, transparent 68%, rgba(255, 255, 255, .05) 100%);
  pointer-events: none;
}
.feature-figure { position: relative; }
.ffc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ffc-label {
  font: 700 11px/1 var(--font-body);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 241, 247, .75);
}
.ffc-logo { height: 26px; width: auto; background: var(--surface); border-radius: 999px; padding: 3px 8px; }
.ffc-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.feature-amount {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--on-magenta);
}
.feature-amount .num { font-size: clamp(48px, 8.5vw, 92px); line-height: .95; font-weight: 440; }
.feature-cur {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 600;
  color: var(--cream);
}
.feature-when {
  font: 700 11px/1.5 var(--font-body);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 241, 247, .78);
}
.ffc-brand {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 241, 247, .9);
}

/* ============================================================
   APP BAND
   ============================================================ */
.band {
  border-radius: var(--r-lg);
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  gap: 36px;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 860px) { .band { grid-template-columns: 1.1fr .9fr; } }
.band .h2 { margin: 14px 0 14px; }
.band-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.band-badges img { height: 48px; width: auto; }
.band-visual { position: relative; min-height: 320px; }
.band-flower {
  /* Bauhaus kvapka: kruh s jedným ostrým rohom (poster fragment) */
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(340px, 90%);
  aspect-ratio: 1 / 1;
  border-radius: 50% 0 50% 50%;
  background: var(--magenta-soft);
}
.band-phone {
  position: relative;
  z-index: 1;
  width: min(240px, 62%);
  margin-inline: auto;
  filter: drop-shadow(0 24px 40px rgba(27, 14, 21, .22));
}

/* ============================================================
   FOOTER · veľká magenta plocha
   ============================================================ */
.footer {
  background: var(--magenta);
  color: var(--on-magenta);
  padding: clamp(56px, 8vw, 96px) 0 28px;
  margin-top: clamp(48px, 8vw, 96px);
}
.footer a { color: inherit; text-decoration: none; }
.footer a:hover { color: var(--cream); }
.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.footer-col h3 {
  font: 700 11px/1 var(--font-body);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col ul a, .footer-col ul li { color: rgba(255, 241, 247, .9); }
.footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.footer-social a {
  padding: 9px 16px;
  border: 1px solid rgba(255, 241, 247, .32);
  border-radius: 999px;
  font: 600 13px/1 var(--font-body);
  color: var(--on-magenta);
  transition: background .25s ease, border-color .25s ease;
}
.footer-social a:hover { background: rgba(255, 241, 247, .12); border-color: var(--cream); color: var(--on-magenta); }
.footer-note {
  margin-top: 44px;
  font-size: 13px;
  color: rgba(255, 241, 247, .68);
  max-width: 60ch;
}
.footer-mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 15vw, 190px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--on-magenta);
  margin-top: clamp(28px, 5vw, 56px);
  white-space: nowrap;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 241, 247, .22);
  font-size: 12px;
  color: rgba(255, 241, 247, .68);
}

/* ============================================================
   DOCK · mini prehrávač
   ============================================================ */
.dock {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 60;
  width: min(430px, calc(100% - 24px));
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 18px 44px rgba(27, 14, 21, .38);
}
.dock-art {
  width: 44px; height: 44px;
  clip-path: url(#maska-kvapka);
  overflow: hidden;
  flex: none;
  cursor: pointer;
}
.dock-art img, .dock-art .orb { width: 100%; height: 100%; object-fit: cover; }
.dock-meta { flex: 1; min-width: 0; cursor: pointer; line-height: 1.25; }
.dock-meta strong { display: block; font: 600 14px/1.2 var(--font-body); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dock-meta span { font: 500 11px/1.2 var(--font-body); color: rgba(251, 246, 241, .62); }
.dock-eq { flex: none; width: 64px; height: 22px; display: none; }
@media (min-width: 480px) { .dock-eq { display: block; } }
@keyframes wave-run { to { stroke-dashoffset: -18; } }

.dock-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--magenta);
  color: var(--on-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform .25s var(--ease-spring), background .25s ease;
}
.dock-btn:hover { transform: scale(1.07); background: var(--magenta-bright); }
.dock-expand {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(251, 246, 241, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: rgba(251, 246, 241, .8);
}

/* ============================================================
   FULLSCREEN PREHRÁVAČ
   ============================================================ */
.player {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  padding: 18px 20px calc(22px + env(safe-area-inset-bottom, 0px));
  transform: translateY(102%);
  visibility: hidden;
  transition: transform .55s var(--ease-out), visibility 0s .55s;
  overflow-y: auto;
}
body.player-open .player {
  transform: none;
  visibility: visible;
  transition: transform .55s var(--ease-out);
}
.reduced .player { transition: none; }
/* počas GSAP otvárania jazdí reveal cez clip-path, nie transform */
.player.player--anim { transition: none; transform: none; }
.player-top {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(560px, 100%);
  margin-inline: auto;
}
.player-top .pt-meta { flex: 1; min-width: 0; line-height: 1.25; }
.player-top .pt-meta span { font: 700 11px/1 var(--font-body); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.player-top .pt-meta strong { display: block; font: 600 15px/1.3 var(--font-body); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.player-close {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.player-stage {
  width: min(430px, 100%);
  margin: auto;
  padding: 22px 0;
}
.player-card { border-radius: var(--r-lg); padding: 22px; transition: background .5s ease; }
.player-card .masked { max-width: 340px; margin-inline: auto; }
.player-timeline { margin-top: 26px; }
.player-times {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}
.player-times .num { font-size: 15px; font-weight: 400; }
.player-times .pt-live { display: inline-flex; align-items: center; gap: 8px; font: 700 12px/1 var(--font-body); letter-spacing: .12em; }
.player-wave { color: var(--magenta-line); }
.player-progress {
  height: 3px;
  border-radius: 3px;
  background: var(--line);
  overflow: hidden;
  position: relative;
}
.player-progress .bar {
  position: absolute;
  inset: 0;
  width: 0%;
  border-radius: 3px;
  background: var(--magenta);
  transition: width .4s linear;
}
.player-progress.live .bar {
  width: 34%;
  animation: prog-slide 1.8s ease-in-out infinite alternate;
}
@keyframes prog-slide {
  from { transform: translateX(-40%); opacity: .5; }
  to { transform: translateX(230%); opacity: 1; }
}
.reduced .player-progress.live .bar { animation: none; width: 100%; opacity: .4; }
.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.player-play { padding: 16px 34px; font-size: 16px; background: var(--magenta); color: var(--on-magenta); box-shadow: var(--shadow-mag); }
.player-play:hover { background: var(--magenta-deep); }
.player-play.playing { background: var(--magenta-deep); }
.count-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font: 600 14px/1 var(--font-body);
}
.count-chip svg { color: var(--magenta); }
.player-stations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .5s var(--ease-out), opacity .4s ease;
}
.player-stations.open { max-height: 220px; opacity: 1; }
.player-stations button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font: 600 13px/1 var(--font-body);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.player-stations button:hover { border-color: var(--ink); }
.player-stations button.active { background: var(--magenta); color: var(--on-magenta); border-color: transparent; }

/* ---------- pomocné ---------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

/* ============================================================
   STANICE · grid s featured kartou (žiadne odseknutie)
   ============================================================ */
.st-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .st-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .st-grid { grid-template-columns: repeat(3, 1fr); } }
.st-hero {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  padding: clamp(20px, 3vw, 28px);
  background:
    radial-gradient(90% 130% at 100% 0%, var(--magenta-bright), transparent 55%),
    radial-gradient(80% 120% at 0% 100%, var(--magenta-deep), transparent 60%),
    var(--magenta);
  color: var(--on-magenta);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  text-align: left;
}
@media (min-width: 760px) {
  .st-hero { grid-template-columns: auto 1fr auto; gap: clamp(20px, 3vw, 34px); }
}
@media (min-width: 1024px) { .st-hero { grid-column: span 3; } }

/* vizuál: Bauhaus arch so živým EQ vnútri */
.sh-visual {
  position: relative;
  width: clamp(96px, 12vw, 128px);
  aspect-ratio: 1;
  border-radius: 999px 999px 22px 22px;
  overflow: hidden;
  background: var(--brand-deep-a);
  flex: none;
}
.st-hero-eq { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
@media (max-width: 759px) { .sh-visual { width: 100%; aspect-ratio: 16 / 7; border-radius: 18px; } }

.sh-info { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.sh-label {
  font: 700 11px/1 var(--font-body);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 241, 247, .72);
}
.st-hero-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1;
}
.st-hero-desc { color: rgba(255, 241, 247, .82); font-size: 14.5px; line-height: 1.5; max-width: 42ch; }
.sh-now-row {
  display: none;
  align-items: center;
  gap: 9px;
  margin-top: 3px;
  font: 600 13px/1.35 var(--font-body);
  color: var(--cream);
  min-width: 0;
}
.sh-now-row .live-dot { background: var(--cream); flex: none; }
html.zive-live .sh-now-row { display: flex; }
.st-now { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
html.zive-live .st-now:not(:empty)::before { content: "Práve hrá · "; color: rgba(255, 241, 247, .68); }

.sh-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; flex: none; }
@media (min-width: 760px) { .sh-cta { align-items: flex-end; } }
.st-hero-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  background: var(--on-magenta);
  color: var(--magenta-deep);
  font: 600 15px/1 var(--font-body);
  white-space: nowrap;
  transition: filter .25s ease;
}
.st-hero:hover .st-hero-play { filter: brightness(.94); }

.station-card .st-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.station-card .st-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}
.st-live {
  display: none;
  font: 600 12px/1 var(--font-body);
  color: var(--magenta-deep);
  white-space: nowrap;
}
html.zive-live .st-live:not(:empty) { display: inline-flex; align-items: center; }
.sh-cta .st-live { color: rgba(255,241,247,.85); font-size: 12.5px; }
.btn--nav .st-live { color: inherit; display: none; }
html.zive-live .btn--nav .st-live:not(:empty) { display: inline; }
.btn--nav .live-dot { background: var(--on-magenta); margin-right: 8px; }
.station-card { width: auto; }
.ep-link { padding: 9px 16px; font-size: 13px; flex: none; }

/* ============================================================
   SLEDUJ NÁS · sociálne kanály
   ============================================================ */
.soc-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .soc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .soc-grid { grid-template-columns: repeat(4, 1fr); } }
.soc-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  text-decoration: none;
  transition: transform .3s var(--ease-spring), border-color .25s ease, box-shadow .25s ease;
}
.soc-card:hover { border-color: var(--magenta-line); background: var(--paper); }
.soc-net {
  font: 700 11px/1 var(--font-body);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--magenta);
}
.soc-handle { font-family: var(--font-display); font-weight: 600; font-size: 19px; }
.soc-card:hover .soc-handle { color: var(--magenta-deep); }
.soc-desc { font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }

/* mobil: lišta je sticky v toku — karta začína VŽDY presne 6px pod jej
   reálnou hranou, bez závislosti na --nav-h (iOS vie bar zväčšiť) */
@media (max-width: 979px) {
  .hero { min-height: 0; }
  .hero-card { margin: 6px auto; }
}

.accent-dot { position: absolute; left: -6%; bottom: 8%; width: 27%; aspect-ratio: 1; border-radius: 50%; background: var(--cream); z-index: 3; pointer-events: none; }

/* ============================================================
   EQ vo fullscreen prehrávači · bary cez spodok fotky
   ============================================================ */
.player-eq {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 42%;
  display: block;
  pointer-events: none;
  z-index: 2;
}

/* ============================================================
   SOCIAL ikonky vo fragmentových plateoch (rovnaká veľkosť,
   rôzne tvary — poster logika)
   ============================================================ */
.soc-ic {
  width: 64px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.soc-ic svg { width: 27px; height: 27px; }
.soc-ic--arch    { border-radius: 999px 999px 14px 14px; }
.soc-ic--archdol { border-radius: 14px 14px 999px 999px; }
.soc-ic--kruh    { border-radius: 50%; }
.soc-ic--list    { border-radius: 999px 14px 999px 14px; }
.soc-ic--drop    { border-radius: 50% 0 50% 50%; }
.soc-ic--ink   { background: var(--ink); color: var(--paper); }
.soc-ic--mag   { background: var(--magenta); color: var(--on-magenta); }
.soc-ic--soft  { background: var(--magenta-soft); color: var(--magenta-deep); }
.soc-ic--cream { background: var(--cream); color: var(--ink); }
.soc-card:hover .soc-ic { transform: scale(1.06) rotate(-3deg); }
.soc-ic { transition: transform .3s var(--ease-spring); }

/* ============================================================
   PODCASTY · najnovšie epizódy (list + featured s fotkou)
   ============================================================ */
.pod-filter {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 6px 20px 18px 0;
  margin: 0 -20px 10px 0;
  scrollbar-width: none;
}
.pod-filter::-webkit-scrollbar { display: none; }
.pf-chip {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font: 600 14px/1 var(--font-body);
  color: var(--ink);
  transition: border-color .25s ease, background .25s ease, transform .25s var(--ease-spring);
}
.pf-chip:hover { border-color: var(--magenta); }
.pf-chip:hover .pf-ava { transform: rotate(-6deg) scale(1.08); }
.pf-ava { transition: transform .3s var(--ease-spring); }
.pf-chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.pf-ava {
  width: 34px; height: 34px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  display: block;
}
.pf-ava img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pf-ava--logo { background: var(--surface); display: grid; place-items: center; }
.pf-ava--logo img { width: 78%; height: auto; object-fit: contain; }

.pod-layout {
  display: grid;
  gap: 16px;
  align-items: start;
}
@media (min-width: 960px) { .pod-layout { grid-template-columns: 1.05fr .95fr; } }

.pod-list { display: grid; gap: 14px; }
.pod-ep {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .3s var(--ease-spring), box-shadow .3s ease, border-color .25s ease;
}
.pod-ep:hover { border-color: var(--magenta-line); }
.pod-ep:hover .pe-title { color: var(--magenta-deep); }
.pe-title { transition: color .25s ease; }
.pod-ep[hidden] { display: none; }
.pe-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pe-host {
  font: 700 11px/1 var(--font-body);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--magenta-deep);
}
.pe-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.2;
  margin: 0;
}
.pe-desc { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.pe-play {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font: 600 14px/1 var(--font-body);
  color: var(--ink);
  text-decoration: none;
  transition: color .2s ease;
}
.pe-play:hover { color: var(--magenta); }
.pe-ic {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  flex: none;
  position: relative;
  transition: background .25s ease, transform .25s var(--ease-spring);
}
.pe-play:hover .pe-ic { background: var(--magenta); transform: scale(1.08); }
.pe-ic::after {
  content: "";
  position: absolute;
  left: 55%; top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--paper);
}
.pe-play.playing .pe-ic { background: var(--magenta); }

.pod-feat {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  overflow: hidden;
  border-radius: var(--r-md);
  min-height: 480px;
  max-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--magenta-soft);
}
.pf-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.pod-feat::after {
  content: "";
  position: absolute;
  inset: 40% 0 0 0;
  background: linear-gradient(to bottom, transparent, rgba(27, 14, 21, .78) 78%);
  pointer-events: none;
}
.pf-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 20px;
}
.pf-top .chip { background: rgba(251, 246, 241, .9); }
.pf-body {
  position: relative;
  z-index: 2;
  padding: 0 24px 26px;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.pf-host {
  font: 700 11px/1 var(--font-body);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(251, 246, 241, .8);
}
.pf-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
  margin: 0;
}
.pf-play { color: var(--paper); margin-top: 6px; }
.pf-play:hover { color: var(--magenta-bright); }
.pf-play .pe-ic { background: var(--magenta); }
@media (max-width: 959px) { .pod-feat { position: relative; top: auto; min-height: 420px; max-height: 500px; order: -1; } }
