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

:root {
  --bg: #04040c;
  --bg-elevated: #0a0a1c;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.66);
  --text-dim: rgba(255, 255, 255, 0.42);
  --gold: #ffd700;
  --gold-dark: #ffb300;
  --gold-tint: rgba(255, 215, 0, 0.1);
  --gold-glow: rgba(255, 215, 0, 0.22);
  --violet: #7c3aed;
  --violet-tint: rgba(124, 58, 237, 0.14);
  --cyan: #22d3ee;
  --radius: 20px;
  --radius-lg: 28px;
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', 'Segoe UI', sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter Tight', 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background:
    radial-gradient(ellipse 70% 45% at 12% -8%, rgba(124, 58, 237, 0.16), transparent 60%),
    radial-gradient(ellipse 55% 40% at 88% 15%, rgba(34, 211, 238, 0.1), transparent 60%),
    radial-gradient(ellipse 55% 45% at 50% 115%, rgba(124, 58, 237, 0.12), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* STARFIELD */
.starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: #ffffff;
  animation: twinkle var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes twinkle {
  0%, 100% { opacity: var(--min-op, 0.3); transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}

/* SELECTION + SCROLLBAR */
::selection {
  background: rgba(255, 215, 0, 0.28);
  color: #ffffff;
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.26);
  background-clip: padding-box;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* NAV */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 22, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.nav-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 215, 0, 0.35);
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--surface);
}

.nav-links a.active {
  color: var(--text);
  background: var(--surface);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0d2b;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 16px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 140px 24px 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -30% -15%;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(124, 58, 237, 0.2), transparent 60%),
    radial-gradient(ellipse 45% 40% at 15% 80%, rgba(255, 215, 0, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 90%, rgba(34, 211, 238, 0.12), transparent 60%);
  pointer-events: none;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--gold-tint);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(255, 215, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 22px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, #ffb300 50%, #ff8f00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
}

.player-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  max-width: 460px;
  margin: 0 auto 48px;
}

.btn-listen {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0d2b;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 8px 28px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-listen:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 215, 0, 0.4);
}

.volume-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 6px;
}

.volume-btn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-hover);
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.volume-btn:hover {
  border-color: rgba(255, 215, 0, 0.4);
  color: var(--gold);
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.volume-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.volume-slider::-moz-range-track {
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
}

.volume-value {
  min-width: 40px;
  text-align: right;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 34px;
  background: var(--border);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 12px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* SECTIONS */
.section {
  padding: 110px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold-tint);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 17px;
}

/* BENTO GRID (NOSOTROS) */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 72px;
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  transition: all 0.3s;
}

.bento-card:hover {
  border-color: rgba(255, 215, 0, 0.22);
  background: var(--surface-hover);
  transform: translateY(-3px);
}

.bento-feature {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-quote {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, var(--gold-tint), var(--surface));
}

.bento-quote > i {
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 14px;
}

.quote-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  max-width: 720px;
  margin-bottom: 12px;
}

.quote-ref {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--gold-tint);
  border: 1px solid rgba(255, 215, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon i {
  font-size: 20px;
  color: var(--gold);
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.bento-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* STAFF */
.staff-section {
  text-align: center;
}

.staff-section > h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.staff-card {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 36px;
  transition: all 0.3s;
}

.staff-card:hover {
  border-color: rgba(255, 215, 0, 0.22);
}

.staff-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.staff-avatar i {
  font-size: 28px;
  color: #0d0d2b;
}

.staff-info {
  text-align: left;
}

.staff-info h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.staff-info span {
  display: block;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 6px;
}

.staff-info p {
  font-size: 14px;
  color: var(--text-muted);
}

/* SCHEDULE */
.days-filter {
  display: flex;
  gap: 4px;
  margin: 0 auto 36px;
  width: max-content;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  padding: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.day-btn {
  padding: 8px 16px;
  border-radius: 11px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.day-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.day-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0d2b;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.schedule-list {
  display: grid;
  gap: 12px;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: all 0.25s;
}

.schedule-item:hover {
  border-color: rgba(255, 215, 0, 0.18);
}

.schedule-time {
  background: var(--gold-tint);
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 600;
  color: var(--gold);
  font-size: 15px;
  min-width: 80px;
  text-align: center;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.schedule-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.schedule-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* PODCASTS */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.podcast-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.podcast-card:hover {
  border-color: rgba(255, 215, 0, 0.18);
  transform: translateY(-2px);
}

.podcast-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.podcast-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-tint);
  border: 1px solid rgba(255, 215, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.podcast-icon i {
  font-size: 18px;
  color: var(--gold);
}

.podcast-meta {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

.podcast-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.podcast-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  background: transparent;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  align-self: flex-start;
}

.btn-play:hover {
  background: var(--gold-tint);
}

.btn-play.playing {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0d2b;
  border-color: transparent;
}

/* CONTACT */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: all 0.25s;
}

.contact-card:hover {
  transform: translateX(4px);
}

.contact-card i {
  font-size: 24px;
}

.contact-card.whatsapp i { color: #25d366; }
.contact-card.instagram i { color: #e4405f; }
.contact-card.email i { color: var(--gold); }

.contact-card.whatsapp:hover { border-color: rgba(37, 211, 102, 0.35); }
.contact-card.instagram:hover { border-color: rgba(228, 64, 95, 0.35); }
.contact-card.email:hover { border-color: rgba(255, 215, 0, 0.35); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 14px;
  font-family: var(--font);
  margin-bottom: 12px;
  transition: border-color 0.25s;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 215, 0, 0.4);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-dim);
}

.contact-form button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0d2b;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 215, 0, 0.35);
}

/* FOOTER */
footer {
  position: relative;
  z-index: 1;
  background: rgba(10, 10, 28, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.25s;
}

.social-icons a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-dim);
  font-size: 13px;
  margin-bottom: 4px;
}

.footer-bottom .developer {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-bottom .developer strong {
  color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 8, 12, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .stat-divider {
    display: none;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-feature {
    grid-row: auto;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .section {
    padding: 80px 0;
  }

  .staff-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .staff-info {
    text-align: center;
  }

  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ORBS */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  will-change: transform;
}

.orb-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.38), transparent 70%);
  animation: drift-a 22s ease-in-out infinite;
}

.orb-2 {
  width: 340px;
  height: 340px;
  bottom: -80px;
  right: -80px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.32), transparent 70%);
  animation: drift-b 26s ease-in-out infinite;
}

.orb-3 {
  width: 260px;
  height: 260px;
  top: 42%;
  left: 58%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.22), transparent 70%);
  animation: drift-c 30s ease-in-out infinite;
}

.orb-4 {
  width: 360px;
  height: 360px;
  top: 8%;
  right: -120px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 70%);
  animation: drift-b 28s ease-in-out infinite;
}

.orb-5 {
  width: 300px;
  height: 300px;
  bottom: -60px;
  left: -80px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.18), transparent 70%);
  animation: drift-a 24s ease-in-out infinite;
}

@keyframes drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(42px, -54px) scale(1.08); }
  66% { transform: translate(-30px, 32px) scale(0.94); }
}

@keyframes drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-54px, -42px) scale(1.1); }
}

@keyframes drift-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(52px, 40px) scale(1.06); }
}

/* REVEAL ON SCROLL */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .orb,
  [data-reveal] {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }

  .live-dot {
    animation: none;
  }
}

/* GLASSMORPHISM */
.bento-card,
.staff-card,
.schedule-item,
.podcast-card,
.contact-card,
.contact-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.bento-card.bento-quote {
  background: linear-gradient(180deg, var(--gold-tint), rgba(255, 255, 255, 0.02));
}
