/* ============ KLARO.FM — Radio-station bold design ============ */

:root {
  --bg: #0A0A0A;
  --bg-2: #141412;
  --paper: #F5F1E8;
  --paper-2: #EBE5D5;
  --ink: #0A0A0A;
  --fg: #F5F1E8;
  --muted: #8A8A85;
  --muted-dark: #4A4A45;
  --line: rgba(245,241,232,0.12);
  --line-dark: rgba(10,10,10,0.12);

  --cyan: #00D4F2;
  --magenta: #ED1A7B;
  --purple: #A66EF2;
  --yellow: #F2E400;

  --accent: var(--cyan);

  /* Colori show */
  --color-tech:  #00D4F2;
  --color-soldi: #ED1A7B;
  --color-noi:   #A66EF2;
  --color-fuori: #F2E400;

  --font-display: "Bricolage Grotesque", "Space Grotesk", ui-sans-serif, sans-serif;
  --font-body: "Inter Tight", "Inter", ui-sans-serif, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input { font-family: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__logo { display: flex; align-items: center; gap: 2px; font-family: var(--font-display); font-weight: 900; font-size: 28px; letter-spacing: -0.04em; }
.nav__logo .comma { font-size: 36px; line-height: 0.5; margin-left: -2px; animation: klaro-colors 16s step-start infinite; }
.nav__links { display: flex; gap: 28px; }
.nav__links a { font-family: var(--font-mono); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.7; transition: opacity 0.15s; }
.nav__links a:hover, .nav__links a.active { opacity: 1; }
.nav__links a.active { color: var(--accent); }
.nav__cta { display: flex; align-items: center; gap: 10px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 100px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; transition: all 0.15s; }
.nav__cta:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 12px var(--magenta); animation: pulse 1.4s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 60px 40px 100px;
  overflow: hidden;
}
.hero__glow { position: absolute; inset: 0; pointer-events: none; animation: klaro-glow 16s step-start infinite; z-index: 0; }
.hero__h1, .hero__row, .hero__left, .home-stats { position: relative; z-index: 1; }
.hero__left { flex: 1.2; }
.hero__meta {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 60px;
}
.hero__meta .pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border: 1px solid var(--line); border-radius: 100px; }
.hero__h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(68px, 11.9vw, 187px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  margin-bottom: 40px;
}
@keyframes klaro-glow {
  0%, 24%   { background: radial-gradient(ellipse 60% 40% at 20% 60%, rgba(0,212,242,0.12) 0%, transparent 70%); }
  25%, 49%  { background: radial-gradient(ellipse 60% 40% at 20% 60%, rgba(237,26,123,0.12) 0%, transparent 70%); }
  50%, 74%  { background: radial-gradient(ellipse 60% 40% at 20% 60%, rgba(166,110,242,0.12) 0%, transparent 70%); }
  75%, 100% { background: radial-gradient(ellipse 60% 40% at 20% 60%, rgba(255,102,0,0.12) 0%, transparent 70%); }
}
@keyframes klaro-colors {
  0%, 24%   { color: #00D4F2; }
  25%, 49%  { color: #ED1A7B; }
  50%, 74%  { color: #A66EF2; }
  75%, 100% { color: #FF6600; }
}
@keyframes klaro-colors-bg {
  0%, 24%   { background: #00D4F2; }
  25%, 49%  { background: #ED1A7B; }
  50%, 74%  { background: #A66EF2; }
  75%, 100% { background: #FF6600; }
}
.hero__h1 .flip { display: inline-block; font-style: italic; animation: klaro-colors 16s step-start infinite; }
.hero__h1 .comma { animation: klaro-colors 16s step-start infinite; }
.hero__row {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: end;
  margin-top: 20px;
}
.hero__pitch { font-size: 22px; line-height: 1.3; max-width: 560px; font-weight: 400; color: var(--fg); margin-top: 24px; }
.hero__pitch strong { color: var(--bg); padding: 0 6px; font-weight: 600; animation: klaro-colors-bg 16s step-start infinite; }
.hero__actions { display: flex; gap: 12px; justify-content: flex-end; align-items: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px; border-radius: 100px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  transition: all 0.15s;
  border: 1px solid var(--line);
}
.btn--primary { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn--primary:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.btn--ghost { border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--fg); }
.btn--accent { background: var(--accent); color: var(--bg); border-color: var(--accent); }

/* Ticker */
.ticker { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; }
.ticker__track { display: flex; gap: 60px; white-space: nowrap; animation: ticker 40s linear infinite; font-family: var(--font-display); font-weight: 800; font-size: 32px; letter-spacing: -0.02em; }
.ticker__track span { display: inline-flex; align-items: center; gap: 28px; }
.ticker__track .dot { width: 10px; height: 10px; background: #fff; border-radius: 50%; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SHOWS (home) ============ */
.shows {
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
/* ---- Show rows (homepage B layout) ---- */
.show-rows {
  border-top: 1px solid var(--line);
  margin: 0 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero { display: flex; align-items: center; gap: 60px; }
.home-stats { display: flex; flex-direction: column; gap: 0; flex: 1; border-left: 1px solid var(--line); padding-left: 48px; }
.home-stats__item { display: flex; flex-direction: column; gap: 4px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.home-stats__item:last-child { border-bottom: none; }
.home-stats__num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; line-height: 1; color: var(--fg); }
.home-stats__label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: #888; }
.wa-strip { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 40px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.wa-strip__text { font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: #888; }
.wa-strip__btn { font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: #25D366; text-decoration: none; white-space: nowrap; }
.wa-strip__btn:hover { text-decoration: underline; }

.show-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--fg);
}
.show-row:nth-child(even) { border-right: none; }
.show-row__main {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: var(--fg);
  flex: 1;
  transition: background 0.15s;
}
.show-row__main:hover { background: rgba(255,255,255,0.03); }
.show-row__accent { width: 4px; background: var(--color); flex-shrink: 0; }
.show-row__cover { padding: 20px; flex-shrink: 0; position: relative; }
.show-row__cover img { width: 94px; height: 94px; border-radius: 8px; object-fit: cover; display: block; transition: filter 0.2s; }
.show-row__cover::after { content: '▶'; position: absolute; inset: 20px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff; opacity: 0; transition: opacity 0.2s; border-radius: 8px; background: rgba(0,0,0,0.45); }
.show-row__main:hover .show-row__cover img { filter: brightness(0.6); }
.show-row__main:hover .show-row__cover::after { opacity: 1; }
.show-row__body { flex: 1; min-width: 0; padding: 20px 0; display: flex; flex-direction: column; justify-content: center; gap: 5px; }
.show-row__label { font-family: var(--font-mono); font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color); }
.show-row__title { font-size: 19px; font-weight: 700; line-height: 1.2; }
.show-row__date { font-family: var(--font-mono); font-size: 13px; color: var(--muted); margin-top: 2px; }
.show-row__arrow { font-size: 18px; color: var(--muted); padding: 20px 24px; align-self: center; transition: color 0.15s, transform 0.15s; flex-shrink: 0; }
.show-row__main:hover .show-row__arrow { color: var(--color); transform: scale(1.2); }
.show-row__archive { display: block; text-decoration: none; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); padding: 10px 20px 14px 118px; border-top: 1px solid var(--line); transition: color 0.15s; }
.show-row__archive:hover { color: var(--color); }

.show-card {
  position: relative;
  display: flex; flex-direction: column;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: #111;
  transition: transform 0.25s;
}
.show-card:hover { transform: translateY(-4px); }
.show-card__cover { position: absolute; inset: 0; }
.show-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.show-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.92)); }
.show-card__content { position: relative; margin-top: auto; padding: 28px; color: #fff; }
.show-card__status { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; padding: 6px 12px; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border-radius: 100px; margin-bottom: 16px; }
.show-card__status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color, #fff); }
.show-card__title { font-family: var(--font-display); font-weight: 900; font-size: 38px; line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 10px; }
.show-card__desc { font-size: 14px; line-height: 1.4; opacity: 0.85; margin-bottom: 16px; max-width: 90%; }
.show-card__meta { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 14px; }

/* Section header */
.section-h {
  display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 28px;
  padding: 80px 40px 30px;
  border-top: 1px solid var(--line);
}
.section-h__num { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.section-h__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(42px, 6vw, 88px); letter-spacing: -0.03em; line-height: 0.9; }
.section-h__link { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.section-h__link:hover { color: var(--fg); }

/* Latest episode card */
.latest {
  display: grid; grid-template-columns: 360px 1fr; gap: 40px;
  margin: 0 40px 80px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--bg-2);
  transition: border-color 0.15s;
}
.latest:hover { border-color: rgba(245,241,232,0.25); }
.latest__cover { position: relative; aspect-ratio: 1; border-radius: var(--r-lg); overflow: hidden; }
.latest__cover img { width: 100%; height: 100%; object-fit: cover; }
.latest__content { display: flex; flex-direction: column; justify-content: space-between; gap: 20px; }
.latest__tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }
.latest__tag .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.latest__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.03em; line-height: 1.0; }
.latest__desc { font-size: 17px; line-height: 1.5; color: var(--muted); }
.latest__meta { display: flex; gap: 24px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

/* Manifesto strip */
.manifesto {
  padding: 120px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.manifesto__label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.manifesto__text { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 4vw, 56px); line-height: 1.05; letter-spacing: -0.02em; }
.manifesto__text em { font-style: normal; color: var(--accent); }

/* ============ SHOW PAGE ============ */
.show-hero {
  padding: 60px 40px 40px;
  display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: end;
}
.show-hero__cover { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 1; }
.show-hero__cover img { width: 100%; height: 100%; object-fit: cover; }
.show-hero__info { padding-bottom: 20px; }
.show-hero__status { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: var(--magenta); color: #fff; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; border-radius: 100px; margin-bottom: 24px; }
.show-hero__status .dot { width: 7px; height: 7px; background: #fff; border-radius: 50%; animation: pulse 1.4s infinite; }
.show-hero__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(60px, 9vw, 140px); line-height: 0.85; letter-spacing: -0.05em; margin-bottom: 24px; }
.show-hero__title .comma { color: var(--accent); }
.show-hero__desc { font-size: 20px; line-height: 1.4; max-width: 580px; margin-bottom: 32px; color: var(--muted); }
.show-hero__stats { display: flex; gap: 40px; padding-top: 24px; border-top: 1px solid var(--line); font-family: var(--font-mono); align-items: flex-end; }
.show-hero__stat { display: flex; flex-direction: column; justify-content: flex-end; }
.show-hero__stat .n { font-family: var(--font-display); font-weight: 800; font-size: 32px; letter-spacing: -0.02em; line-height: 1; display: block; }
.show-hero__stat .l { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-top: 6px; }
.show-actions { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }

/* Episode list */
.ep-list {
  padding: 40px 40px 80px;
  border-top: 1px solid var(--line);
}
.ep-list__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}
.ep-list__search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 18px;
  flex: 1;
  max-width: 480px;
  color: var(--muted);
}
.ep-list__search input {
  background: none;
  border: none;
  outline: none;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
}
.ep-list__search input::placeholder { color: var(--muted); }
.ep-list__sort {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  flex-shrink: 0;
}
.sort-btn {
  background: none;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.sort-btn:hover { color: var(--fg); border-color: var(--fg); }
.sort-btn.active { background: var(--accent); border-color: var(--accent); color: #000; }

.ep-list__header {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}
.ep-list__header h2 { font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; }

.ep-row {
  display: grid;
  grid-template-columns: 52px 72px 1fr 72px 32px;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.12s;
}
.ep-row:hover { background: var(--bg-2); padding-left: 12px; padding-right: 12px; border-radius: var(--r-sm); }
.ep-row__num { font-family: var(--font-mono); font-size: 12px; color: var(--muted); text-align: right; }
.ep-row__cover { width: 64px; height: 64px; border-radius: var(--r-sm); overflow: hidden; }
.ep-row__cover img { width: 100%; height: 100%; object-fit: cover; }
.ep-row__title { font-size: 16px; font-weight: 500; letter-spacing: -0.01em; line-height: 1.3; margin-bottom: 4px; }
.ep-row__sub { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.ep-row__duration { font-family: var(--font-mono); font-size: 12px; color: var(--muted); text-align: right; }
.ep-row__arrow { color: var(--muted); text-align: center; font-size: 18px; }

/* ============ EPISODE PAGE ============ */
.ep-page { padding: 40px 40px 160px; }
.ep-page__back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 40px; }
.ep-page__back:hover { color: var(--fg); }
.ep-page__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.ep-page__cover { aspect-ratio: 1; border-radius: var(--r-lg); overflow: hidden; }
.ep-page__cover img { width: 100%; height: 100%; object-fit: cover; }
.ep-page__meta { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 20px; }
.ep-page__meta .accent { color: var(--accent); }
.ep-page__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(36px, 4vw, 64px); letter-spacing: -0.03em; line-height: 0.95; margin-bottom: 24px; }
.ep-page__desc-wrap { position: relative; margin-bottom: 32px; }
.ep-page__desc { font-size: 17px; line-height: 1.6; color: var(--muted); white-space: pre-line; max-height: calc(1.6em * 8); overflow: hidden; transition: max-height 0.4s ease; }
.ep-page__desc.expanded { max-height: 9999px; }
.ep-page__desc-fade { position: absolute; bottom: 32px; left: 0; right: 0; height: 64px; background: linear-gradient(transparent, var(--bg)); pointer-events: none; transition: opacity 0.3s; }
.ep-page__desc.expanded ~ .ep-page__desc-fade { opacity: 0; }
.ep-page__desc-more { display: block; background: none; border: none; color: var(--accent); font-size: 14px; font-family: var(--font-mono); cursor: pointer; padding: 6px 0 0; letter-spacing: .04em; position: relative; z-index: 1; }
.ep-page__player { margin-bottom: 24px; }
.ep-page__player iframe { border-radius: var(--r-md); }
.ep-page__others { margin-top: 60px; border-top: 1px solid var(--line); padding-top: 40px; }
.ep-page__others .ep-list__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0; padding-bottom: 16px; }
.ep-page__others-link { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); text-decoration: none; }
.ep-page__others-link:hover { color: var(--accent); }
.ep-page__youtube { margin-top: 32px; }
.ep-page__youtube h3 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 16px; }
.ep-page__youtube iframe { border-radius: var(--r-md); width: 100%; }

/* ============ MINI PLAYER ============ */
.mini-player {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
  padding: 12px 24px;
  background: color-mix(in srgb, var(--bg-2) 96%, transparent);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.mini-player.open { transform: translateY(0); }
.mini-player__left { display: flex; align-items: center; gap: 14px; min-width: 0; }
.mini-player__cover { width: 48px; height: 48px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; }
.mini-player__cover img { width: 100%; height: 100%; object-fit: cover; }
.mini-player__text { min-width: 0; }
.mini-player__title { font-size: 13px; font-weight: 500; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 280px; }
.mini-player__show { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.mini-player__center { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 320px; }
.mini-player__controls { display: flex; align-items: center; gap: 12px; }
.mini-player__btn { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; opacity: 0.7; cursor: pointer; }
.mini-player__btn:hover { opacity: 1; }
.mini-player__play { width: 38px; height: 38px; background: var(--fg); color: var(--bg); border-radius: 50%; display: grid; place-items: center; cursor: pointer; transition: background 0.15s; }
.mini-player__play:hover { background: var(--accent); }
.mini-player__bar { display: flex; align-items: center; gap: 10px; width: 100%; font-family: var(--font-mono); font-size: 10px; color: var(--muted); }
.mini-player__track { flex: 1; height: 3px; background: var(--muted-dark); border-radius: 2px; position: relative; cursor: pointer; overflow: hidden; }
.mini-player__track .fill { position: absolute; top:0; bottom:0; left:0; background: var(--accent); transition: width 0.1s linear; }
.mini-player__right { display: flex; align-items: center; gap: 12px; justify-content: flex-end; }
.mini-player__speed { font-family: var(--font-mono); font-size: 11px; font-weight: 600; padding: 6px 10px; border-radius: 100px; border: 1px solid var(--line); cursor: pointer; background: none; color: inherit; }
.mini-player__speed:hover { border-color: var(--fg); }

/* ============ FOOTER ============ */
.footer {
  padding: 120px 40px 80px;
  border-top: 1px solid var(--line);
}
.footer__bigword { font-family: var(--font-display); font-weight: 900; font-size: clamp(100px, 20vw, 340px); line-height: 0.8; letter-spacing: -0.06em; }
.footer__bigword .comma { color: var(--accent); }
.footer__bottom {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 40px;
  margin-top: 80px; padding-top: 40px;
  border-top: 1px solid var(--line);
}
.footer__col h4 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 16px; }
.footer__col a { display: block; padding: 6px 0; font-size: 14px; opacity: 0.85; }
.footer__col a:hover { color: var(--accent); opacity: 1; }
.footer__legal { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.footer__note { font-size: 12px; color: var(--muted); line-height: 1.6; max-width: 560px; font-family: var(--font-body); text-transform: none; letter-spacing: 0; }
.footer__platform-link { display: flex; align-items: center; gap: 8px; }

/* ============ ASCOLTA PAGE ============ */
.ascolta-page { max-width: 720px; margin: 0 auto; padding: 80px 40px 120px; }
.ascolta-page h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(52px, 9vw, 100px); letter-spacing: -0.04em; line-height: 0.88; margin-bottom: 24px; }
.ascolta-page > p { font-size: 18px; color: var(--muted); margin-bottom: 60px; line-height: 1.5; }
.show-links { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.show-links h2 { font-family: var(--font-display); font-weight: 800; font-size: 32px; letter-spacing: -0.02em; margin-bottom: 20px; }
.platform-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ INFO PAGES (manifesto, chi-siamo, contatti) ============ */
.info-page { max-width: 1100px; margin: 0 auto; padding: 80px 40px 120px; }
.info-head { margin-bottom: 80px; }
.info-num { font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.info-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(52px, 8vw, 120px); letter-spacing: -0.04em; line-height: 0.9; margin-bottom: 24px; }
.info-subtitle { font-size: 20px; color: var(--muted); }
.info-body { max-width: 720px; }
.info-lede { font-size: clamp(20px, 2.5vw, 28px); line-height: 1.4; font-weight: 500; margin-bottom: 32px; }
.info-body p { font-size: 17px; line-height: 1.7; color: var(--muted); margin-bottom: 20px; }

/* Principles */
.principles { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 0 80px; }
.principle { padding: 48px 0; border-top: 1px solid var(--line); }
.principle__n { font-family: var(--font-mono); font-size: 11px; color: var(--cyan); letter-spacing: 0.1em; margin-bottom: 16px; }
.principle__h { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2.5vw, 32px); letter-spacing: -0.02em; margin-bottom: 12px; }
.principle__body { font-size: 15px; line-height: 1.6; color: var(--muted); }

/* Team grid */
.team-photo-wrap { margin-top: 40px; border-radius: var(--r-lg); overflow: hidden; }
.team-photo { width: 100%; display: block; object-fit: cover; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 48px; margin-top: 48px; }
.team-card__name { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; margin-bottom: 4px; }
.team-card__role { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 10px; }
.team-card__bio { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* Contact grid */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 40px; }
.contact-channels { display: flex; flex-direction: column; gap: 0; }
.contact-channel { padding: 24px 0; border-top: 1px solid var(--line); }
.contact-channel h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; margin-bottom: 8px; }
.contact-channel p { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; }
.contact-form-h { font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: -0.02em; margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; }
.contact-form label span { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.contact-form input, .contact-form select, .contact-form textarea { background: var(--bg-2); border: 1px solid var(--line); color: var(--fg); padding: 12px 16px; font-family: var(--font-body); font-size: 15px; border-radius: var(--r-sm); outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--fg); }
.contact-form__consent { flex-direction: row !important; align-items: flex-start !important; gap: 12px !important; }
.contact-form__consent input { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }
.contact-form__consent span { font-family: var(--font-body) !important; font-size: 13px !important; text-transform: none !important; letter-spacing: 0 !important; color: var(--muted); line-height: 1.5; }

/* ============ LEGAL PAGES ============ */
.legal-page { max-width: 720px; margin: 0 auto; padding: 80px 40px 120px; }
.legal-page h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(40px, 6vw, 72px); letter-spacing: -0.04em; line-height: 0.9; margin-bottom: 16px; }
.legal-sub { font-size: 18px; color: var(--muted); margin-bottom: 8px; }
.legal-meta { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 60px; }
.legal-body { line-height: 1.7; }
.legal-body h2 { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin: 48px 0 16px; }
.legal-body p { color: var(--muted); margin-bottom: 16px; }
.legal-body ul, .legal-body ol { color: var(--muted); margin-bottom: 16px; padding-left: 24px; }
.legal-body li { margin-bottom: 8px; }
.legal-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.legal-body td, .legal-body th { padding: 10px 14px; border: 1px solid var(--line); color: var(--muted); text-align: left; }
.legal-body th { color: var(--fg); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.legal-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 40px 20px 60px; }
  .hero__meta { margin-bottom: 32px; }
  .shows { grid-template-columns: 1fr; padding: 40px 20px; }
  .section-h { padding: 60px 20px 24px; }
  .latest { grid-template-columns: 1fr; margin: 0 20px 60px; }
  .manifesto { grid-template-columns: 1fr; padding: 60px 20px; }
  .show-hero { grid-template-columns: 1fr; padding: 40px 20px; }
  .ep-list { padding: 24px 20px 60px; }
  .ep-page { padding: 24px 20px 120px; }
  .ep-page__grid { grid-template-columns: 1fr; }
  .mini-player { grid-template-columns: 1fr auto; }
  .mini-player__right { display: none; }
  .mini-player__center { min-width: 0; }
  .footer { padding: 60px 20px 40px; }
  .ascolta-page, .legal-page { padding: 40px 20px 80px; }
}

/* hamburger */
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--fg); transition: transform 0.2s, opacity 0.2s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 600px) {
  .nav__burger { display: flex; }
  .nav__links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--bg); padding: 16px 20px 24px; border-bottom: 1px solid var(--line); gap: 0; z-index: 100; }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
  .nav__links a:last-child { border-bottom: none; }
  .hero__h1 { font-size: clamp(60px, 18vw, 120px); }
  .hero__row { grid-template-columns: 1fr; }
  .hero__actions { justify-content: flex-start; }
  .ep-row { grid-template-columns: 64px 1fr 32px; }
  .ep-row__num, .ep-row__duration { display: none; }
  .show-card__title { font-size: 28px; }
  .hero { flex-direction: column; gap: 40px; }
  .home-stats { flex-direction: row; border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 24px; }
  .home-stats__item { flex: 1; align-items: center; border-bottom: none; border-right: 1px solid var(--line); padding: 0 12px; }
  .home-stats__item:last-child { border-right: none; }
  .home-stats__num { font-size: 2rem; }
  .show-rows { margin: 0; grid-template-columns: 1fr; }
  .show-row { border-right: none; }
  .show-row__archive { padding-left: 20px; }
  .show-row__title { font-size: 16px; }
  .team-grid { grid-template-columns: 1fr; }
  .wa-strip { flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px; }
}

/* ============ COOKIE BANNER ============ */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 40px; background: var(--bg); border-top: 1px solid var(--line); }
.cookie-banner__text { font-family: var(--font-mono); font-size: 12px; color: #888; }
.cookie-banner__text a { color: var(--fg); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-banner__btn { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; border: 1px solid var(--fg); padding: 8px 20px; cursor: pointer; white-space: nowrap; }
.cookie-banner__btn:not(.cookie-banner__btn--secondary) { background: var(--fg); color: var(--bg); }
.cookie-banner__btn--secondary { background: transparent; color: var(--fg); }
.cookie-banner__btn:hover { opacity: 0.7; }
@media (max-width: 600px) { .cookie-banner { flex-direction: column; align-items: flex-start; padding: 16px 20px; gap: 12px; } }
