/* RadioSV — Landing styles
   Tech / futuristic, white-dominant with subtle blue glow. Light + dark via [data-theme]. */

:root {
  /* Accents — tweakable via JS */
  --accent: #1d6dbf;
  --accent-bright: #2f8aea;
  --accent-deep: #0a3d80;
  --accent-soft: #e8f1ff;

  /* Light theme defaults */
  --bg: #fafbfc;
  --bg-elev: #ffffff;
  --bg-section: #f4f7fb;
  --fg: #0a1530;
  --fg-muted: #4a5878;
  --fg-faint: #8a96b0;
  --border: rgba(10, 21, 48, 0.08);
  --border-strong: rgba(10, 21, 48, 0.16);
  --glow: 0 0 60px rgba(29, 109, 191, 0.18);
  --glow-strong: 0 0 80px rgba(29, 109, 191, 0.35);
  --shadow-sm: 0 1px 2px rgba(10, 21, 48, 0.04), 0 1px 3px rgba(10, 21, 48, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 21, 48, 0.06), 0 2px 4px rgba(10, 21, 48, 0.04);
  --shadow-lg: 0 24px 60px -12px rgba(10, 21, 48, 0.18), 0 8px 24px -8px rgba(10, 21, 48, 0.10);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter Tight", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --max-w: 1280px;
  --section-pad-y: clamp(80px, 10vw, 160px);
}

[data-theme="dark"] {
  --bg: #04070d;
  --bg-elev: #0a1019;
  --bg-section: #070b14;
  --fg: #eaf0fb;
  --fg-muted: #a8b3cc;
  --fg-faint: #5e6a85;
  --border: rgba(234, 240, 251, 0.08);
  --border-strong: rgba(234, 240, 251, 0.16);
  --accent-soft: rgba(29, 109, 191, 0.15);
  --glow: 0 0 80px rgba(74, 163, 255, 0.25);
  --glow-strong: 0 0 120px rgba(74, 163, 255, 0.5);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 60px -12px rgba(0, 0, 0, 0.7);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 16px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, border 0.3s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm), var(--glow);
  object-fit: cover;
}
.brand__name { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.brand__name strong { font-weight: 700; }
.brand__name small {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s ease;
  position: relative;
}
.nav__link:hover { color: var(--fg); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav__link:hover::after { width: 100%; }
@media (max-width: 880px) { .nav { display: none; } }

.header__actions { display: flex; align-items: center; gap: 8px; }

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.icon-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-soft);
}
.icon-btn svg { width: 18px; height: 18px; }

/* Hamburger — shown only on small screens */
.hamburger { display: none; }
.hamburger svg path { transition: transform 0.3s ease, opacity 0.2s ease; transform-origin: center; }
.hamburger.active .hamburger__top { transform: translate(0, 5px) rotate(45deg); }
.hamburger.active .hamburger__mid { opacity: 0; }
.hamburger.active .hamburger__bot { transform: translate(0, -5px) rotate(-45deg); }
@media (max-width: 880px) {
  .hamburger { display: inline-flex; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 80vw);
  background: var(--bg-elev);
  border-left: 1px solid var(--border);
  z-index: 60;
  padding: 88px 28px 28px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer__nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer__link {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-drawer__link:hover {
  color: var(--accent);
  padding-left: 8px;
}
.mobile-drawer__scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 55;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-drawer__scrim.open { opacity: 1; visibility: visible; }

.lang-switch {
  position: relative;
}
.lang-switch__btn {
  height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.lang-switch__btn:hover { color: var(--accent); border-color: var(--accent); }
.lang-switch__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  display: none;
  flex-direction: column;
  min-width: 140px;
  box-shadow: var(--shadow-lg);
}
.lang-switch.open .lang-switch__menu { display: flex; }
.lang-switch__menu button {
  text-align: left;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.15s ease;
}
.lang-switch__menu button:hover { background: var(--accent-soft); color: var(--accent); }
.lang-switch__menu button[aria-current="true"] { color: var(--accent); }
.lang-switch__menu button span:last-child {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--fg-faint);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  isolation: isolate;
}
#shader-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#shader-stage canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 70%, transparent 0%, color-mix(in oklab, var(--bg) 35%, transparent) 70%, color-mix(in oklab, var(--bg) 90%, transparent) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--bg-elev) 70%, transparent);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.hero__eyebrow .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 8px rgba(255, 59, 59, 0.6);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero__logo {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(29, 109, 191, 0.35);
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 128px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 300;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}
.hero__subtitle {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto 48px;
  text-wrap: pretty;
}

.hero__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.play-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 72px;
  padding: 0 28px 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  box-shadow: var(--glow-strong), var(--shadow-lg);
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.2s ease;
  overflow: hidden;
}
.play-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255,255,255,0.4) 60deg, transparent 120deg);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  animation: spin 4s linear infinite;
}
.play-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--glow-strong), 0 30px 60px -10px rgba(29, 109, 191, 0.4);
}
.play-btn.playing::before { opacity: 1; }
@keyframes spin { to { transform: rotate(360deg); } }

.play-btn__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.play-btn__icon svg { width: 22px; height: 22px; }
.play-btn .pause-icon { display: none; }
.play-btn.playing .play-icon { display: none; }
.play-btn.playing .pause-icon { display: block; }
.play-btn__label { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.play-btn__label small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
  font-weight: 400;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--fg);
  background: color-mix(in oklab, var(--bg-elev) 85%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  transition: all 0.2s ease;
}
.secondary-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.secondary-btn svg { width: 16px; height: 16px; }

/* Volume control */
.volume-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--bg-elev) 85%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
}
.volume-control__btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  transition: color 0.2s ease;
}
.volume-control__btn:hover { color: var(--accent); }
.volume-control__btn .vol-icon { width: 18px; height: 18px; }
.volume-control .vol-icon--off { display: none; }
.volume-control.muted .vol-icon--on { display: none; }
.volume-control.muted .vol-icon--off { display: block; color: var(--fg-faint); }

.volume-control__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100px;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(to right, var(--accent) 0%, var(--accent) var(--vol, 80%), color-mix(in oklab, var(--fg) 18%, transparent) var(--vol, 80%), color-mix(in oklab, var(--fg) 18%, transparent) 100%);
  outline: none;
  cursor: pointer;
}
.volume-control__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px transparent, 0 2px 6px rgba(0,0,0,0.3);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.volume-control__slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 4px var(--accent-soft), 0 2px 6px rgba(0,0,0,0.3);
  transform: scale(1.1);
}
.volume-control__slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--accent);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  cursor: pointer;
}
.volume-control__slider::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--fg) 18%, transparent);
}

@media (max-width: 640px) {
  .volume-control__slider { width: 70px; }
}

.hero__meta {
  margin-top: 48px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--fg-faint);
  text-transform: uppercase;
  animation: bob 2.2s ease-in-out infinite;
}
.scroll-hint::after {
  content: "";
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

#fps {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-faint);
  padding: 4px 8px;
  background: color-mix(in oklab, var(--bg-elev) 60%, transparent);
  border-radius: 6px;
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  letter-spacing: 0.1em;
}

/* ===== SECTIONS GENERIC ===== */
section.section {
  padding: var(--section-pad-y) 0;
  position: relative;
}
section.section--alt { background: var(--bg-section); }

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  max-width: 720px;
  text-wrap: balance;
}
.section__title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 300;
}
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.section__desc {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 380px;
  text-wrap: pretty;
}

/* ===== LOCUTORES ===== */
.hosts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.host-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.host-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--accent-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.host-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.host-card:hover::before { opacity: 1; }
.host-card__photo {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  margin-bottom: 20px;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, var(--bg-section) 0 12px, var(--bg) 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.host-card__photo span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--fg-faint);
  text-transform: uppercase;
  text-align: center;
  padding: 0 10px;
}
.host-card__photo--filled span { display: none; }
.host-card__live {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 1;
}
.host-card__live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  animation: pulse 1.4s ease-in-out infinite;
}
.host-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.host-card__role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.host-card__show {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ===== SOCIAL WALLS ===== */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) { .social-grid { grid-template-columns: 1fr; } }

.social-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.social-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.social-card__head {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.social-card__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.social-card__icon svg { width: 18px; height: 18px; }
.social-card[data-platform="facebook"] .social-card__icon { background: #1877f2; }
.social-card[data-platform="tiktok"]   .social-card__icon { background: linear-gradient(135deg, #25f4ee 0%, #000 50%, #fe2c55 100%); }
.social-card[data-platform="instagram"] .social-card__icon { background: linear-gradient(135deg, #feda75 0%, #fa7e1e 40%, #d62976 70%, #962fbf 90%, #4f5bd5 100%); }

.social-card__handle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.social-card__handle small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}
.social-card__follow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  transition: all 0.2s ease;
}
.social-card__follow:hover { background: var(--accent); color: white; }

.social-card__body {
  flex: 1;
  height: 640px;
  background: var(--bg-section);
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
}
/* Anything inside the body that isn't the placeholder sits on top */
.social-card__body > *:not(.social-card__placeholder) {
  position: relative;
  z-index: 2;
}
.social-card__embed {
  width: 100%;
  border: 0;
  flex: 1;
  position: relative;
  z-index: 2;
  background: var(--bg-section);
}

/* Placeholder sits BEHIND the iframe as a loading background.
   If the iframe loads fine, you see the iframe. If it fails (display:none via onerror),
   the placeholder shows through. */
.social-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 2px;
  padding: 16px;
  z-index: 1;
  pointer-events: none;
}
.social-card__placeholder div {
  background:
    repeating-linear-gradient(45deg, transparent 0 8px, color-mix(in oklab, var(--accent) 6%, transparent) 8px 9px),
    color-mix(in oklab, var(--bg) 60%, var(--bg-elev));
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.social-card__placeholder div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--accent) 12%, transparent), transparent);
  animation: shimmer 2.4s linear infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.social-card__placeholder div:nth-child(1) { grid-column: 1 / -1; }

/* Fallback placeholders: only show when the embed actually fails (iframe is display:none).
   By default, hide them so they don't peek out behind a loaded embed. */
.social-card__placeholder--fallback { display: none; }
.social-card__embed[style*="display: none"] + .social-card__placeholder--fallback,
.social-card__embed[style*="display:none"] + .social-card__placeholder--fallback {
  display: grid;
}

/* Instagram fallback — looks like an IG-style mini-grid with a CTA bar */
/* When used as a behind-the-iframe fallback, sit at z-index 1 */
.ig-fallback--bg {
  position: absolute !important;
  inset: 0;
  z-index: 1 !important;
}

.ig-fallback {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.ig-fallback__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  padding: 2px;
  background: var(--bg-section);
}
.ig-fallback__grid div {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 30%, color-mix(in oklab, var(--accent) 22%, transparent), transparent 60%),
    linear-gradient(135deg, color-mix(in oklab, var(--bg) 50%, var(--bg-elev)) 0%, var(--bg-section) 100%);
  overflow: hidden;
}
.ig-fallback__grid div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, color-mix(in oklab, var(--accent) 14%, transparent) 50%, transparent 70%);
  animation: shimmer 3.2s linear infinite;
}
.ig-fallback__grid div:nth-child(1)::after { animation-delay: 0s; }
.ig-fallback__grid div:nth-child(2)::after { animation-delay: 0.4s; }
.ig-fallback__grid div:nth-child(3)::after { animation-delay: 0.8s; }
.ig-fallback__grid div:nth-child(4)::after { animation-delay: 1.2s; }
.ig-fallback__grid div:nth-child(5)::after { animation-delay: 1.6s; }
.ig-fallback__grid div:nth-child(6)::after { animation-delay: 2.0s; }

.ig-fallback__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  transition: background 0.2s ease;
}
.ig-fallback:hover .ig-fallback__cta {
  background: var(--accent-soft);
}
.ig-fallback__handle {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.ig-fallback__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ===== Instagram real feed (Behold.so) ===== */
.ig-feed {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.ig-feed--loaded .ig-fallback { display: none; }
.ig-feed__grid {
  flex: 1 1 0;
  min-height: 0;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2px;
  padding: 2px;
  background: var(--bg-section);
  overflow: hidden;
}
.ig-post {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bg-section);
  min-width: 0;
  min-height: 0;
}
.ig-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
}
.ig-post:hover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}
.ig-post__badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  backdrop-filter: blur(4px);
}
.ig-feed__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  transition: background 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.ig-feed__cta:hover { background: var(--accent-soft); }
.ig-feed__handle {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.ig-feed__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.social-card__hint {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--fg-faint);
  text-transform: uppercase;
  background: color-mix(in oklab, var(--bg-elev) 80%, transparent);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* ===== SPONSORS ===== */
.sponsors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.sponsor {
  aspect-ratio: 16 / 9;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.sponsor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-soft), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sponsor:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.sponsor:hover::before { opacity: 1; }
.sponsor span { position: relative; z-index: 1; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.contact-item:hover { border-color: var(--accent); transform: translateX(2px); }
.contact-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item__icon svg { width: 18px; height: 18px; }
.contact-item__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 4px;
}
.contact-item__value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.contact-form {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--fg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.field textarea { resize: vertical; min-height: 110px; }

.submit-btn {
  align-self: flex-start;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: var(--glow);
}
.submit-btn:hover { transform: translateY(-1px); box-shadow: var(--glow-strong); }
.submit-btn svg { width: 16px; height: 16px; }
.form-status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  min-height: 16px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 64px 0 32px;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 720px) { .footer__top { grid-template-columns: 1fr; gap: 32px; } }

.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.footer__brand img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  box-shadow: var(--glow);
}
.footer__tag {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.footer__claim {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 320px;
}

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

/* ===== TWEAKS PANEL ===== */
.tweaks-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  display: none;
  min-width: 260px;
  font-family: var(--font-body);
}
.tweaks-panel.open { display: block; }
.tweaks-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.tweaks-panel__title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.tweaks-panel__close {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-faint);
  transition: color 0.2s ease, background 0.2s ease;
}
.tweaks-panel__close:hover { color: var(--fg); background: var(--accent-soft); }
.tweaks-panel__group { margin-bottom: 14px; }
.tweaks-panel__group:last-child { margin-bottom: 0; }
.tweaks-panel__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 8px;
}
.swatches {
  display: flex;
  gap: 8px;
}
.swatch {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
  box-shadow: 0 0 0 1px var(--border) inset;
}
.swatch:hover { transform: scale(1.1); }
.swatch.active { border-color: var(--fg); box-shadow: 0 0 0 2px var(--bg-elev) inset; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ====================================================================
   NOW PLAYING STRIP (top bar above header)
==================================================================== */
.np-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 51;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  height: 32px;
}
.np-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.np-strip__left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  overflow: hidden;
}
.np-strip__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff3b3b;
  font-weight: 600;
  letter-spacing: 0.16em;
  flex-shrink: 0;
}
.np-strip__live .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 6px rgba(255, 59, 59, 0.7);
}
.np-strip__track {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.np-strip__title { color: var(--fg); font-weight: 500; }
.np-strip__sep { color: var(--fg-faint); }
.np-strip__artist { color: var(--fg-muted); }
.np-strip__right {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.np-strip__listeners {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--fg-muted);
}
.np-strip__listeners-count { color: var(--accent); font-weight: 600; }

/* Push the header down to fit the strip */
.header { top: 32px; }
.hero { padding-top: 152px; }

@media (max-width: 720px) {
  .np-strip__artist, .np-strip__sep { display: none; }
}

/* ====================================================================
   STICKY HEADER PLAY BUTTON
==================================================================== */
.header-play-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 var(--accent-soft), var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  margin-right: 4px;
}
.header-play-btn.visible { display: inline-flex; }
.header-play-btn:hover { transform: scale(1.06); }
.header-play-btn svg { width: 14px; height: 14px; }
.header-play-btn .pause-icon { display: none; }
.header-play-btn.playing .play-icon { display: none; }
.header-play-btn.playing .pause-icon { display: block; }
.header-play-btn__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
}
.header-play-btn.playing .header-play-btn__pulse {
  animation: ring-pulse 1.8s ease-out infinite;
}
@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ====================================================================
   SLEEP TIMER
==================================================================== */
.sleep-timer {
  position: relative;
  height: 52px;
  display: inline-flex;
  align-items: center;
}
.sleep-timer__btn {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--bg-elev) 85%, transparent);
  border: 1px solid var(--border-strong);
  color: var(--fg);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  transition: border-color 0.2s ease, color 0.2s ease, padding 0.2s ease, width 0.2s ease;
}
.sleep-timer.active .sleep-timer__btn {
  width: auto;
  padding: 0 14px;
  color: var(--accent);
  border-color: var(--accent);
  border-radius: 999px;
}
.sleep-timer__label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.sleep-timer:not(.active) .sleep-timer__label { display: none; }
.sleep-timer__btn:hover { color: var(--accent); border-color: var(--accent); }
.sleep-timer__menu {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 50;
}
.sleep-timer__menu.open { display: flex; }
.sleep-timer__menu-title {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-faint);
  padding: 8px 12px 6px;
}
.sleep-timer__menu button {
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--fg);
  transition: background 0.15s ease, color 0.15s ease;
}
.sleep-timer__menu button:hover { background: var(--accent-soft); color: var(--accent); }
.sleep-timer__cancel { color: var(--fg-faint) !important; border-top: 1px solid var(--border); margin-top: 4px; }

/* ====================================================================
   MINI PLAYER (sticky bottom)
==================================================================== */
.mini-player {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, calc(100% + 32px));
  z-index: 60;
  width: min(440px, calc(100vw - 32px));
  background: color-mix(in oklab, var(--bg-elev) 96%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 8px 8px 8px 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg), var(--glow);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.3s ease;
  overflow: visible;
}
.mini-player.visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.mini-player.dismissed { display: none; }
.mini-player__play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.mini-player__play:hover { transform: scale(1.06); }
.mini-player__play svg { width: 16px; height: 16px; }
.mini-player__play .pause-icon { display: none; }
.mini-player.playing .play-icon { display: none; }
.mini-player.playing .pause-icon { display: block; }
.mini-player__art {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-section);
}
.mini-player__art img { width: 100%; height: 100%; object-fit: cover; }
.mini-player__info {
  flex: 1;
  min-width: 0;
}
.mini-player__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-player__artist {
  font-size: 11px;
  color: var(--fg-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}
.mini-player__progress {
  position: absolute;
  bottom: -1px;
  left: 12px;
  right: 56px;
  height: 2px;
  background: linear-gradient(to right, var(--accent) var(--progress, 0%), transparent var(--progress, 0%));
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.6;
}
.mini-player__close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--fg-faint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.mini-player__close:hover { color: var(--fg); background: var(--accent-soft); }

@media (max-width: 480px) {
  .mini-player { width: calc(100vw - 16px); bottom: 12px; }
}

/* ====================================================================
   WHATSAPP FLOATING BUTTON
==================================================================== */
.wa-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 59;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), var(--shadow-lg);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 480px) {
  .wa-float { left: 12px; bottom: 12px; width: 48px; height: 48px; }
  .wa-float svg { width: 18px; height: 18px; }
}

/* ====================================================================
   COOKIE BANNER
==================================================================== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, calc(100% + 40px));
  z-index: 70;
  width: min(580px, calc(100vw - 32px));
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-lg), var(--glow);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.3s ease;
}
.cookie-banner.visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.cookie-banner.hidden { display: none; }
.cookie-banner__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}
.cookie-banner__icon { font-size: 28px; }
.cookie-banner__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cookie-banner__text p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
  margin: 0;
}
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-banner__reject,
.cookie-banner__accept {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cookie-banner__reject {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border-strong);
}
.cookie-banner__reject:hover { color: var(--fg); border-color: var(--fg-muted); }
.cookie-banner__accept {
  background: var(--accent);
  color: white;
}
.cookie-banner__accept:hover { background: var(--accent-deep); }

@media (max-width: 640px) {
  .cookie-banner__inner { grid-template-columns: 1fr; }
  .cookie-banner__icon { font-size: 22px; }
  .cookie-banner__actions { width: 100%; justify-content: flex-end; }
}

/* ====================================================================
   DEDICATIONS FORM
==================================================================== */
.dedi-form {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dedi-form__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 720px) {
  .dedi-form__grid { grid-template-columns: 1fr; }
  .dedi-form { padding: 24px; }
}
.dedi-form__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ====================================================================
   PODCASTS
==================================================================== */
.podcasts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.podcast-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.podcast-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.podcast-card__art {
  width: 92px;
  height: 92px;
  border-radius: var(--radius);
  flex-shrink: 0;
  background:
    repeating-linear-gradient(135deg, color-mix(in oklab, var(--accent) 10%, transparent) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 500;
}
.podcast-card__meta { flex: 1; min-width: 0; }
.podcast-card__date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--fg-faint);
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}
.podcast-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.podcast-card__desc {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 10px;
  line-height: 1.4;
}
.podcast-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  background: transparent;
  transition: all 0.2s ease;
}
.podcast-card__btn:hover { background: var(--accent); color: white; }

/* ====================================================================
   DONATE + NEWSLETTER
==================================================================== */
.support-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}
@media (max-width: 880px) { .support-grid { grid-template-columns: 1fr; } }

.support-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.support-card--donate {
  background:
    radial-gradient(ellipse at top right, var(--accent-soft), transparent 60%),
    var(--bg-elev);
}
.support-card--donate::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 35%, transparent), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.support-card > * { position: relative; z-index: 1; }
.support-card__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
  margin-top: 12px;
}
.support-card__title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 300;
}
.support-card__desc {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 28px;
  max-width: 480px;
}
.support-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}
.donate-btn {
  background: var(--accent);
  color: white;
  box-shadow: var(--glow);
}
.donate-btn:hover { transform: translateY(-1px); box-shadow: var(--glow-strong); }
.donate-btn--ko { background: #ff5e5b; }
.donate-btn--bizum { background: #00afef; }

.support-card--news { padding: 32px; }
.support-card--news h3.support-card__title {
  font-size: 26px;
  margin-bottom: 8px;
}
.news-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.news-form input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--fg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
}
.news-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.news-form .submit-btn { height: 44px; padding: 0 18px; font-size: 13px; }

/* ====================================================================
   LEGAL PAGES (privacy.html, legal.html)
==================================================================== */
.legal-page {
  padding: 140px 0 80px;
  min-height: 60vh;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 12px 0 12px;
}
.legal-page__lead {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 48px;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 40px 0 12px;
  color: var(--fg);
}
.legal-page p, .legal-page li {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.legal-page ul { padding-left: 22px; margin-bottom: 12px; }
.legal-page a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-page a:hover { color: var(--accent-bright); }
.legal-page .container { max-width: 760px; }

/* Footer bottom links wrap */
.footer__bottom-links { display: flex; gap: 16px; }
