/* ============================================================
   FUN RÁDIO · V2 "BENTO" · prémiová svetlá verzia
   ============================================================ */

/* ---------- 1. Tokeny ---------- */
:root {
  --magenta: #E60469;
  --magenta-dark: #C00457;
  --magenta-bright: #FF1F7D;
  --magenta-light: #FF7AB5;
  --tint: #FFDDEC;
  --tint-soft: #FFF0F7;
  --navy: #0B0E2B;
  --navy-2: #141838;
  --ink: #111114;
  --muted: #6F7076;
  --border: #E7E4E0;
  --border-dark: #CFCBC5;
  --soft: #F8F6F3;
  --white: #FFFFFF;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --r-pill: 999px;
  --r-card: 24px;
  --r-big: 32px;
  --r-input: 16px;

  --shadow: 0 14px 40px rgba(11, 14, 43, .12);
  --shadow-soft: 0 8px 24px rgba(11, 14, 43, .08);

  --container: 1200px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- 2. Reset a základ ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 96px; /* miesto pre dock */
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--tint); color: var(--magenta-dark); }

:focus-visible {
  outline: 3px solid rgba(230, 4, 105, .45);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- 3. Typografia a utility ---------- */
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.container--bleed { width: min(var(--container), calc(100% - 40px)); }

.section { padding: 96px 0; scroll-margin-top: 96px; }
.section--soft { background: var(--soft); }

.d1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.1rem, 7.5vw, 6rem);
  line-height: 1.06; /* čiarka v titulku nesmie padať do ďalšieho riadku */
  text-transform: uppercase;
  letter-spacing: .005em;
}
.d1 em, .d2 em { font-style: normal; color: var(--magenta); }

.d2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 3px;
  border-radius: 2px;
  background: var(--magenta);
}
.eyebrow--ondark { color: var(--magenta-light); }
.eyebrow--ondark::before { background: var(--magenta-light); }

.lead { font-size: 1.1rem; color: var(--muted); }
.lead--narrow { max-width: 360px; }
.small { font-size: .85rem; color: var(--muted); }

.link {
  font-weight: 600;
  color: var(--magenta);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .25s;
}
.link::after { content: '\2192'; transition: transform .25s var(--ease); }
.link:hover { color: var(--magenta-dark); }
.link:hover::after { transform: translateX(4px); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* ---------- 4. Tlačidlá, chipy, eq, disk ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--r-pill);
  font-weight: 600;
  padding: 13px 24px;
  transition: background .25s, color .25s, border-color .25s, transform .25s var(--ease), box-shadow .25s;
  will-change: transform;
}
.btn--primary {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(230, 4, 105, .28);
}
.btn--primary:hover { background: var(--magenta-dark); box-shadow: 0 10px 26px rgba(230, 4, 105, .34); }
.btn--outline {
  border: 1.5px solid var(--border-dark);
  color: var(--ink);
  background: var(--white);
}
.btn--outline:hover { border-color: var(--ink); background: var(--soft); }
.btn--lg { padding: 17px 30px; font-size: 1.02rem; }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn--icon {
  width: 46px; height: 46px; padding: 0;
  border: 1.5px solid var(--border-dark);
  border-radius: 50%;
  background: var(--white);
}
.btn--icon:hover { border-color: var(--ink); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: var(--white);
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.chip--tint { background: var(--tint-soft); border-color: var(--tint); color: var(--magenta-dark); }
.chip--glass {
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, .5);
}
.chip--live {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
  color: var(--white);
}
.chip--ondark {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .85);
}

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--magenta-bright);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 31, 125, .55); }
  55% { box-shadow: 0 0 0 6px rgba(255, 31, 125, 0); }
}

/* ekvalizér: beží len s triedou .on */
.eq { display: inline-flex; align-items: flex-end; gap: 3px; height: 18px; }
.eq i {
  width: 3px; height: 5px;
  border-radius: 2px;
  background: var(--magenta-bright);
}
.eq.on i { animation: eqbar .9s ease-in-out infinite; }
.eq.on i:nth-child(2) { animation-delay: .18s; }
.eq.on i:nth-child(3) { animation-delay: .36s; }
.eq.on i:nth-child(4) { animation-delay: .1s; }
@keyframes eqbar {
  0%, 100% { height: 5px; }
  45% { height: 17px; }
}

/* vinylový disk */
.disc {
  border-radius: 50%;
  position: relative;
  flex: none;
  background:
    radial-gradient(circle at 50% 50%, var(--magenta) 0 17%, transparent 17.5%),
    repeating-radial-gradient(circle at 50% 50%, #171b3f 0 3px, #1f2450 3px 6px),
    #171b3f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}
.disc::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 210deg, transparent 0 40%, rgba(255, 255, 255, .12) 50%, transparent 60% 100%);
}
.disc.spin { animation: spin 9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* play pill (na fotkách a podcastoch) */
.play-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-size: .85rem;
  font-weight: 600;
  transition: background .25s, color .25s, transform .25s var(--ease);
}
.play-pill:hover { transform: translateY(-2px); }
.play-pill .pp-ic { display: inline-flex; color: var(--magenta); }
.play-pill.playing { background: var(--magenta); color: var(--white); }
.play-pill.playing .pp-ic { color: var(--white); }
.play-pill--solid { background: var(--tint-soft); border: 1px solid var(--tint); color: var(--magenta-dark); }
.play-pill--solid:hover { background: var(--tint); }
.play-pill--solid.playing { background: var(--magenta); border-color: var(--magenta); }

/* ---------- 5. Navigácia ---------- */
.nav {
  position: fixed;
  top: 14px; left: 0; right: 0;
  margin-inline: auto;
  width: min(1160px, calc(100% - 24px));
  z-index: 100;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease);
}
.nav--hidden { transform: translateY(-140%); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 10px 12px 10px 20px;
}
.nav-logo { display: inline-flex; flex: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  gap: 4px;
  margin-inline: auto;
}
.nav-links a {
  padding: 9px 14px;
  border-radius: var(--r-pill);
  font-size: .92rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: var(--soft); }
.nav-links a.active { color: var(--magenta); }
.nav-cta { flex: none; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
}
.nav-burger span {
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

/* fullscreen menu */
.menu {
  position: fixed; inset: 0;
  z-index: 110;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 22px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
body.menu-open .menu { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }
.menu-top { display: flex; align-items: center; justify-content: space-between; }
.menu-close {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  display: grid; place-items: center;
}
.menu-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: auto 0;
}
.menu-links a {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 3.6rem);
  text-transform: uppercase;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .2s;
}
.menu-links a:hover { color: var(--magenta-bright); }
body.menu-open .menu-links a { opacity: 1; transform: none; }
body.menu-open .menu-links a:nth-child(1) { transition-delay: .08s; }
body.menu-open .menu-links a:nth-child(2) { transition-delay: .14s; }
body.menu-open .menu-links a:nth-child(3) { transition-delay: .2s; }
body.menu-open .menu-links a:nth-child(4) { transition-delay: .26s; }
body.menu-open .menu-links a:nth-child(5) { transition-delay: .32s; }
body.menu-open .menu-links a:nth-child(6) { transition-delay: .38s; }
.menu-foot { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- 6. Hero ---------- */
.hero { padding: 158px 0 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-title { margin: 22px 0 20px; }
.hero .lead { max-width: 460px; }
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* hero bento 2x2 */
.hero-bento {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: auto 116px 116px;
  grid-template-areas:
    "ph ph"
    "mp st"
    "mp lg";
  gap: 14px;
}
.hb-photo { grid-area: ph; aspect-ratio: 16 / 10; }
.hb-player { grid-area: mp; }
.hb-stat { grid-area: st; }
.hb-logo { grid-area: lg; }

.hb-player {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px;
}
.hb-play {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--magenta);
  color: var(--white);
  display: grid; place-items: center;
  align-self: center;
  transition: background .25s, transform .25s var(--ease);
  box-shadow: 0 10px 26px rgba(230, 4, 105, .4);
}
.hb-play:hover { background: var(--magenta-bright); transform: scale(1.06); }
.hb-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
}

.hb-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 16px 18px;
}
.hb-logo { display: grid; place-items: center; padding: 14px; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
}
.stat-num em { font-style: normal; font-size: .55em; color: var(--magenta); margin-right: 4px; }
.stat-label { font-size: .82rem; color: var(--muted); line-height: 1.45; }

/* ---------- 7. Marquee ---------- */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 13px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.mq-label { color: var(--magenta); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.mq-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--magenta); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 8. Bento dlaždice (spoločné) ---------- */
.tile {
  position: relative;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.tile:hover {
  transform: translateY(-4px);
  border-color: var(--border-dark);
  box-shadow: var(--shadow);
}
.tile--navy { background: var(--navy); border-color: var(--navy-2); color: var(--white); }
.tile--navy:hover { border-color: #23295c; }
.tile--tint { background: var(--tint-soft); border-color: var(--tint); }
.tile--tint:hover { border-color: var(--magenta-light); }

.tile--photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.tile--photo:hover img { transform: scale(1.04); }

.tile-overlay-chip {
  position: absolute;
  left: 14px; bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  font-size: .82rem;
  font-weight: 600;
}

.tile-photo-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 44px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(11, 14, 43, .82));
}
.tile-photo-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.08;
}
.tile-photo-body p { font-size: .88rem; color: rgba(255, 255, 255, .82); }

.tile-arrow {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  display: grid; place-items: center;
  transition: transform .3s var(--ease), background .3s, color .3s;
  z-index: 2;
}
.tile:hover .tile-arrow {
  transform: translate(3px, -3px);
  background: var(--magenta);
  color: var(--white);
}

.tile-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  text-transform: uppercase;
  line-height: 1.08;
}
.tile-text { font-size: .88rem; color: var(--muted); }

/* ---------- 9. Hlavné bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 216px 216px 256px;
  grid-template-areas:
    "pl pl ad su"
    "pl pl ad le"
    "st fq ap qt";
  gap: 16px;
}
.tile--player { grid-area: pl; }
.tile--adela  { grid-area: ad; }
.tile--sutaz  { grid-area: su; }
.tile--leto   { grid-area: le; }
.tile--stat   { grid-area: st; }
.tile--freq   { grid-area: fq; }
.tile--app    { grid-area: ap; }
.tile--quote  { grid-area: qt; }

/* a) veľký prehrávač */
.tile--player {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
}
.bp-top { display: flex; align-items: center; justify-content: space-between; }
.bp-kbps { font-size: .8rem; font-weight: 600; color: rgba(255, 255, 255, .55); }
.bp-mid { display: flex; align-items: center; gap: 20px; flex: 1; }
.bp-disc { width: 108px; height: 108px; }
.bp-meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.bp-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.9rem;
  text-transform: uppercase;
  line-height: 1.05;
}
.bp-sub { font-size: .9rem; color: rgba(255, 255, 255, .6); }
.bp-play {
  margin-left: auto;
  width: 66px; height: 66px;
  flex: none;
  border-radius: 50%;
  background: var(--magenta);
  color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(230, 4, 105, .45);
  transition: background .25s, transform .25s var(--ease);
}
.bp-play:hover { background: var(--magenta-bright); transform: scale(1.05); }
.bp-stations { display: flex; flex-wrap: wrap; gap: 8px; }
.st-chip {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .85);
  font-size: .82rem;
  font-weight: 600;
  transition: background .25s, border-color .25s, color .25s;
}
.st-chip:hover { border-color: rgba(255, 255, 255, .6); color: var(--white); }
.st-chip.active {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--white);
}

/* fotkové dlaždice v bente */
.tile--adela .tile-photo-body { gap: 6px; }
.tile--sutaz h3, .tile--leto h3 { font-size: 1.35rem; }

/* c) štatistika */
.tile--stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 24px;
}
.tile--stat .stat-num { font-size: 3rem; }

/* f) frekvencie */
.tile--freq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}
.freq-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.tile--freq .chip { border-color: var(--tint); background: var(--white); font-size: .76rem; padding: 5px 11px; }
.tile--freq .link { margin-top: auto; font-size: .88rem; }

/* g) appka */
.tile--app {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
}
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; position: relative; z-index: 2; }
.badge-row img { height: 36px; width: auto; border-radius: 8px; }
.tile-phone {
  position: absolute;
  right: -34px; bottom: -58px;
  height: 220px;
  width: auto;
  transform: rotate(-8deg);
  transition: transform .5s var(--ease);
  pointer-events: none;
}
.tile--app:hover .tile-phone { transform: rotate(-4deg) translateY(-6px); }

/* h) citát */
.tile--quote {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: var(--soft);
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--magenta-dark);
  display: grid; place-items: center;
  font-weight: 700;
}
.tile--quote blockquote {
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.5;
}
.tile--quote figcaption { font-size: .8rem; color: var(--muted); margin-top: auto; }

/* ---------- 10. Program scroller ---------- */
.pcards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 18px;
  scrollbar-width: none;
  cursor: grab;
}
.pcards::-webkit-scrollbar { display: none; }
.pcards.dragging { cursor: grabbing; scroll-snap-type: none; }
.pcards.dragging * { pointer-events: none; }

.pcard {
  flex: 0 0 282px;
  scroll-snap-align: start;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.pcard:hover {
  transform: translateY(-4px);
  border-color: var(--border-dark);
  box-shadow: var(--shadow);
}
.pcard-photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.pcard-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.pcard:hover .pcard-photo img { transform: scale(1.04); }
.pcard-photo .chip { position: absolute; left: 12px; top: 12px; }
.pcard-body {
  padding: 18px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.pcard-day {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--magenta);
}
.pcard-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  text-transform: uppercase;
  line-height: 1.1;
}
.pcard-body p { font-size: .87rem; color: var(--muted); }
.pcard-foot {
  padding: 12px 18px 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.pcard-foot a { font-size: .82rem; font-weight: 600; color: var(--muted); transition: color .2s; }
.pcard-foot a:hover { color: var(--magenta); }
.scroller-nav { display: flex; gap: 10px; }

/* ---------- 11. Podcasty ---------- */
.pod-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "e1 e1 e2 e2"
    "s1 s2 s3 s4";
  gap: 16px;
}
.pod-ep1 { grid-area: e1; }
.pod-ep2 { grid-area: e2; }
.pod-s1 { grid-area: s1; }
.pod-s2 { grid-area: s2; }
.pod-s3 { grid-area: s3; }
.pod-s4 { grid-area: s4; }

.pod-ep { display: flex; }
.pod-cover {
  flex: 0 0 42%;
  overflow: hidden;
}
.pod-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.pod-ep:hover .pod-cover img { transform: scale(1.04); }
.pod-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}
.pod-body h3 { font-size: 1.02rem; font-weight: 700; line-height: 1.4; }
.pod-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pod-mini { aspect-ratio: 1 / 1; display: block; }
.pod-mini img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.pod-mini:hover img { transform: scale(1.05); }
.pod-mini-label {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  font-size: .84rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- 12. Novinky ---------- */
.news-list {
  border-top: 1px solid var(--border);
}
.news-row {
  display: grid;
  grid-template-columns: 132px 118px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px 6px;
  border-bottom: 1px solid var(--border);
  transition: transform .3s var(--ease), background .3s;
  border-radius: 12px;
}
.news-row:hover { transform: translateX(6px); background: var(--white); }
.news-row .chip { justify-self: start; }
.news-thumb {
  width: 132px;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  display: block;
}
.news-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.news-row:hover .news-thumb img { transform: scale(1.06); }
.news-row h3 { font-size: 1.05rem; font-weight: 600; line-height: 1.4; }
.news-row time { font-size: .82rem; color: var(--muted); white-space: nowrap; }

/* ---------- 13. Frekvencie ---------- */
.freq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 12px;
}
.freq {
  border: 1px solid var(--border);
  border-radius: var(--r-input);
  background: var(--white);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.freq:hover {
  transform: translateY(-3px);
  border-color: var(--magenta-light);
  background: var(--tint-soft);
}
.freq b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ink);
}
.freq span { font-size: .82rem; color: var(--muted); }

/* ---------- 14. App panel ---------- */
#appka { padding-top: 40px; }
.app-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-big);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  padding: 64px 64px 0;
  margin-top: 70px;
  overflow: visible;
}
.app-copy { padding-bottom: 64px; }
.app-copy p {
  color: rgba(255, 255, 255, .72);
  margin: 18px 0 28px;
  max-width: 400px;
}
.app-copy .badge-row img { height: 48px; }
.app-copy .badge-row a { display: inline-flex; transition: transform .3s var(--ease); }
.app-copy .badge-row a:hover { transform: translateY(-3px); }
.app-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}
.app-visual img {
  height: 470px;
  width: auto;
  margin-top: -70px; /* telefón vytŕča z panelu */
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .4));
}

/* ---------- 15. Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
  overflow: hidden;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand p { margin-top: 16px; max-width: 260px; }
.footer-cols h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer-cols div > a {
  display: block;
  padding: 5px 0;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s;
}
.footer-cols div > a:hover { color: var(--magenta); }
.footer-note {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  font-size: .82rem;
  color: var(--muted);
}
.footer-mark {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14.5vw, 12.5rem);
  line-height: .9;
  text-transform: uppercase;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border);
  user-select: none;
  white-space: nowrap;
  margin-bottom: -.12em;
}

/* ---------- 16. Dock + sheet ---------- */
.dock {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 90;
  width: min(520px, calc(100% - 24px));
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-pill);
  background: rgba(11, 14, 43, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--white);
  box-shadow: var(--shadow);
}
.dock-disc { width: 44px; height: 44px; }
.dock-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  flex: 1;
  text-align: left;
}
.dock-title { font-size: .92rem; font-weight: 700; }
.dock-sub {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.dock .eq { flex: none; }
.dock-btn {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 50%;
  background: var(--magenta);
  color: var(--white);
  display: grid; place-items: center;
  transition: background .25s, transform .25s var(--ease);
}
.dock-btn:hover { background: var(--magenta-bright); transform: scale(1.05); }
.dock-expand {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
  display: grid; place-items: center;
  color: rgba(255, 255, 255, .8);
  transition: border-color .25s, color .25s;
}
.dock-expand:hover { border-color: rgba(255, 255, 255, .6); color: var(--white); }

.sheet {
  position: fixed; inset: 0;
  z-index: 120;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.sheet.open { opacity: 1; visibility: visible; }
.sheet-top {
  width: min(560px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sheet-close {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  display: grid; place-items: center;
  transition: border-color .25s;
}
.sheet-close:hover { border-color: rgba(255, 255, 255, .6); }
.sheet-mid {
  margin: auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.sheet-disc { width: min(250px, 56vw); aspect-ratio: 1; }
.sheet-title { text-align: center; display: flex; flex-direction: column; gap: 4px; }
.sheet-title strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1.05;
}
.sheet-title span { color: rgba(255, 255, 255, .6); }
.sheet-controls { display: flex; align-items: center; gap: 20px; }
.sheet-side {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  display: grid; place-items: center;
  transition: border-color .25s;
}
.sheet-side:hover { border-color: rgba(255, 255, 255, .7); }
.sheet-play {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--magenta);
  display: grid; place-items: center;
  box-shadow: 0 14px 34px rgba(230, 4, 105, .45);
  transition: background .25s, transform .25s var(--ease);
}
.sheet-play:hover { background: var(--magenta-bright); transform: scale(1.05); }
.sheet-stations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(560px, 100%);
  margin-bottom: 26px;
}
.sheet-stations button {
  padding: 9px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
  font-weight: 600;
  transition: background .25s, border-color .25s;
}
.sheet-stations button:hover { border-color: rgba(255, 255, 255, .6); }
.sheet-stations button.active { background: var(--magenta); border-color: var(--magenta); color: var(--white); }
.sheet-vol {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(320px, 100%);
  color: rgba(255, 255, 255, .7);
}
.range {
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .25);
}
.range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--magenta);
  border: 2px solid var(--white);
  cursor: pointer;
}
.range::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--magenta);
  border: 2px solid var(--white);
  cursor: pointer;
}

/* ---------- 17. Reveal FX + reduced motion ---------- */
.fx {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s var(--ease);
}
.fx.in { opacity: 1; transform: none; }
.fx-d1 { transition-delay: .08s; }
.fx-d2 { transition-delay: .16s; }
.fx-d3 { transition-delay: .24s; }
.fx-d4 { transition-delay: .32s; }

body.reduced .fx { opacity: 1 !important; transform: none !important; transition: none !important; }
body.reduced .marquee-track { animation: none; }
body.reduced .disc.spin, body.reduced .live-dot, body.reduced .eq.on i { animation: none; }
body.reduced * { scroll-behavior: auto; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- 18. Responzivita ---------- */
@media (max-width: 1080px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-auto-rows: minmax(200px, auto);
    grid-template-areas:
      "pl pl"
      "pl pl"
      "ad su"
      "ad le"
      "st fq"
      "ap qt";
  }
  .tile--player { min-height: 400px; }
  .tile--adela { min-height: 420px; }
}

@media (max-width: 980px) {
  .hero { padding-top: 132px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero .lead { max-width: 560px; }

  .pod-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "e1 e1"
      "e2 e2"
      "s1 s2"
      "s3 s4";
  }

  .app-panel {
    grid-template-columns: 1fr;
    padding: 48px 36px 0;
    gap: 12px;
    margin-top: 40px;
  }
  .app-copy { padding-bottom: 8px; }
  .app-visual img { height: 380px; margin-top: 0; }

  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 8px 8px 8px 16px; justify-content: space-between; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .section-head { margin-bottom: 32px; }

  .hero { padding: 118px 0 48px; }
  .hero-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 150px 110px;
    grid-template-areas:
      "ph ph"
      "mp mp"
      "st lg";
  }
  .hb-player { flex-direction: row; align-items: center; }
  .hb-play { width: 54px; height: 54px; }

  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    grid-template-areas:
      "pl" "ad" "su" "le" "st" "fq" "ap" "qt";
  }
  .tile--player { min-height: 0; padding: 20px; }
  .bp-disc { width: 84px; height: 84px; }
  .bp-title { font-size: 1.5rem; }
  .bp-play { width: 56px; height: 56px; }
  .tile--adela { min-height: 400px; }
  .tile--sutaz, .tile--leto { min-height: 210px; }
  .tile--app { min-height: 220px; padding-right: 120px; }
  .tile-phone { right: -46px; bottom: -50px; height: 200px; }

  .pod-ep { flex-direction: column; }
  .pod-cover { flex: none; aspect-ratio: 16 / 9; }

  .news-row {
    grid-template-columns: 96px 1fr;
    grid-template-areas:
      "thumb chip"
      "thumb title"
      "thumb time";
    row-gap: 6px;
    column-gap: 14px;
  }
  .news-thumb { grid-area: thumb; width: 96px; }
  .news-row .chip { grid-area: chip; justify-self: start; }
  .news-row h3 { grid-area: title; font-size: .95rem; }
  .news-row time { grid-area: time; }

  .freq-grid { grid-template-columns: repeat(2, 1fr); }

  .app-panel { padding: 40px 24px 0; }
  .app-visual img { height: 300px; }

  .dock { gap: 9px; padding: 8px 10px; }
  .dock .eq { display: none; }
}
