/*
Theme Name: Lady Bell Radio
File: main.css
Direction: Neon gospel broadcast / “The Glow Up Is Real”
Palette: black, electric blue, cyan, violet, magenta, soft white
*/

:root {
  /* Layout */
  --max: 1240px;

  /* Core Backgrounds */
  --paper: #05070B;
  --paper-deep: #0B1020;
  --paper-dark: #03040A;
  --paper-glass: rgba(15, 20, 40, 0.72);
  --paper-glass-strong: rgba(7, 10, 24, 0.88);

  /* Text */
  --ink: #F5F7FF;
  --ink-soft: #B7C2E0;
  --ink-muted: #7D89A8;
  --white: #FFFFFF;

  /* Neon Brand Colors */
  --electric-blue: #14B8FF;
  --electric-blue-soft: #72D6FF;
  --cyan: #00E5FF;
  --cyan-soft: #7AF7FF;
  --neon-purple: #9B4DFF;
  --neon-purple-soft: #C084FF;
  --neon-pink: #FF4FD8;
  --neon-pink-soft: #FF9EF1;

  /* Legacy token mapping */
  --gold: #7B61FF;
  --gold-soft: #B7A6FF;
  --blush: #FF9EF1;
  --sage: #7AF7FF;

  /* Borders */
  --rule: rgba(122, 247, 255, 0.18);
  --dark-rule: rgba(122, 247, 255, 0.14);

  /* Shadows + Glows */
  --shadow-soft: 0 28px 70px -36px rgba(0, 0, 0, 0.85);
  --glow-blue: 0 0 12px rgba(20, 184, 255, 0.55), 0 0 32px rgba(20, 184, 255, 0.22);
  --glow-cyan: 0 0 12px rgba(0, 229, 255, 0.5), 0 0 30px rgba(0, 229, 255, 0.22);
  --glow-purple: 0 0 12px rgba(155, 77, 255, 0.5), 0 0 28px rgba(155, 77, 255, 0.22);
  --glow-pink: 0 0 10px rgba(255, 79, 216, 0.4), 0 0 24px rgba(255, 79, 216, 0.18);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00C2FF 0%, #4E7BFF 35%, #8B5CFF 70%, #FF4FD8 100%);
  --gradient-primary-reverse: linear-gradient(135deg, #FF4FD8 0%, #8B5CFF 40%, #00E5FF 100%);
  --gradient-dark: radial-gradient(circle at top left, rgba(20, 184, 255, 0.16), transparent 30%), radial-gradient(circle at bottom right, rgba(155, 77, 255, 0.18), transparent 34%), linear-gradient(180deg, #040507 0%, #090B14 100%);
  --gradient-section: radial-gradient(circle at 12% 0%, rgba(0, 229, 255, 0.11), transparent 32%), radial-gradient(circle at 88% 100%, rgba(255, 79, 216, 0.12), transparent 34%), linear-gradient(180deg, #060814 0%, #0B1020 100%);
  --player-bg: linear-gradient(145deg, rgba(12, 16, 32, 0.96), rgba(20, 10, 40, 0.96));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  padding-bottom: 104px;
  background: var(--gradient-dark);
  color: var(--ink);
  font-family: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 229, 255, 0.18), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(155, 77, 255, 0.18), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(255, 79, 216, 0.12), transparent 32%),
    #05070B;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(122, 247, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 247, 255, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

.serif {
  font-family: "Fraunces", Georgia, serif;
  font-optical-sizing: auto;
}

.smallcaps {
  font-variant-caps: all-small-caps;
  letter-spacing: 0.18em;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 8vw, 112px) 0;
  position: relative;
}

.hairline {
  border-color: var(--rule);
}

.ink-link {
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.ink-link:hover {
  color: var(--cyan-soft);
  text-shadow: var(--glow-cyan);
}

.paper-edge {
  box-shadow: var(--shadow-soft), var(--glow-blue);
}

.grain {
  position: relative;
}

.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.18;
  mix-blend-mode: screen;
  z-index: 1;
}

.grain > * {
  position: relative;
  z-index: 0;
}

/* Utility Bar */
.utility-bar {
  background: linear-gradient(135deg, rgba(3, 4, 10, 0.98), rgba(20, 8, 40, 0.96));
  color: var(--cyan-soft);
  font-size: 11px;
  border-bottom: 1px solid var(--dark-rule);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.08);
}

.utility-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.on-air-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.16), var(--glow-cyan);
  margin-right: 8px;
}

/* Header + Navigation */
.site-header {
  position: relative;
  z-index: 20;
  background: rgba(5, 7, 11, 0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  gap: 24px;
}

.brand {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  text-shadow: 0 0 24px rgba(20, 184, 255, 0.18);
}

.brand em,
.brand .custom-logo {
  color: var(--cyan-soft);
}

.brand em {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand .custom-logo {
  max-width: 50px;
  height: auto;
}

.brand .custom-logo img {
  max-width: 50px;
  height: auto;
}


.nav-links,
.nav-links ul {
  display: flex;
  align-items: center;
  gap: 36px;
  color: var(--ink-soft);
  font-size: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-rule {
  width: min(100% - 32px, var(--max));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 247, 255, 0.28), rgba(255, 79, 216, 0.2), transparent);
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.04);
  color: var(--cyan-soft);
  border: 1px solid rgba(122, 247, 255, 0.35);
  box-shadow: var(--glow-blue);
}

.btn-dark:hover {
  color: var(--white);
  border-color: rgba(255, 79, 216, 0.55);
  box-shadow: var(--glow-pink);
}

.btn-gold,
.main-play,
.sticky-play {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--glow-purple);
}

.btn-outline {
  border: 1px solid rgba(122, 247, 255, 0.35);
  color: var(--cyan-soft);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 18px rgba(0, 229, 255, 0.06);
}

.btn-outline:hover {
  border-color: rgba(255, 79, 216, 0.55);
  color: var(--white);
  box-shadow: var(--glow-pink);
}

.btn-email {
  background: var(--gradient-primary);
  color: var(--white);
  margin-top: 32px;
  box-shadow: var(--glow-purple);
}

/* Icons */
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-lg {
  width: 24px;
  height: 24px;
}

.fill-current {
  stroke-width: 0;
  fill: currentColor;
}

/* Hero */
.hero {
  padding: clamp(56px, 7vw, 80px) 0 clamp(80px, 9vw, 112px);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 229, 255, 0.22), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(155, 77, 255, 0.2), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(255, 79, 216, 0.12), transparent 38%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px 32px;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  grid-column: span 3;
}

.hero-main {
  grid-column: span 9;
  animation: fadeUp 0.75s ease both;
}

.eyebrow,
.host-badge,
.program-no,
.guest-date,
.card-kicker,
.listen-copy > .smallcaps,
.status-row .smallcaps,
.player-info > .smallcaps,
.contact-card .smallcaps {
  color: var(--cyan-soft);
  text-shadow: 0 0 16px rgba(0, 229, 255, 0.3);
}

.eyebrow {
  font-size: 12px;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
  font-size: clamp(44px, 7.4vw, 100px);
  text-shadow: 0 0 36px rgba(20, 184, 255, 0.16);
}

.hero h1 em,
.section-title em,
.listen-copy .section-title em {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.hero-copy-row {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.hero-copy {
  grid-column: span 7;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.hero-actions {
  grid-column: span 5;
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 12px;
  flex-wrap: wrap;
}

.wave-note {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
}

.soft-wave {
  display: flex;
  height: 40px;
  align-items: end;
  gap: 3px;
  overflow: hidden;
}

.soft-wave span {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: var(--gradient-primary);
  opacity: 0.8;
  box-shadow: var(--glow-cyan);
  animation: wave 2.2s ease-in-out infinite;
}

/* Editorial Image Grid */
.editorial-grid {
  grid-column: span 12;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin: 16px 0 0;
  animation: fadeUp 0.95s ease 0.15s both;
}

.portrait-block {
  grid-column: span 7;
  position: relative;
}

.portrait-card,
.image-card,
.gallery-item,
.marquee-image,
.guest-image {
  overflow: hidden;
  border-radius: 22px;
  background: var(--paper-glass);
  border: 1px solid rgba(122, 247, 255, 0.14);
  box-shadow: var(--shadow-soft), var(--glow-blue);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.portrait-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.host-badge {
  position: absolute;
  left: 24px;
  bottom: -16px;
  background: rgba(5, 7, 11, 0.86);
  border: 1px solid rgba(122, 247, 255, 0.26);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 11px;
  box-shadow: var(--glow-blue);
}

.quote-column {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.quote-column blockquote {
  margin: 0;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(122, 247, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 30px rgba(0, 229, 255, 0.05);
}

.quote-text {
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-style: italic;
  margin: 16px 0 0;
  color: var(--ink);
}

.quote-note {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 16px 0 0;
}

.station-flyer img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
}

/* Pillars */
.pillars-section {
  background: var(--gradient-section);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px 32px;
}

.section-intro {
  grid-column: span 4;
}

.section-intro-wide {
  max-width: 700px;
}

.section-title {
  margin: 16px 0 0;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-size: clamp(32px, 4vw, 52px);
  text-shadow: 0 0 28px rgba(20, 184, 255, 0.13);
}

.section-title.lg {
  font-size: clamp(34px, 4.6vw, 60px);
}

.section-title.xl {
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
}

.pillars {
  grid-column: span 8;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  border: 1px solid rgba(122, 247, 255, 0.14);
  background: var(--paper-glass);
  padding: 24px;
  border-radius: 22px;
  animation: fadeUp 0.65s ease both;
  box-shadow: var(--shadow-soft), var(--glow-blue);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.card-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.pillar-card h3 {
  margin: 20px 0 0;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--ink);
}

.pillar-card p {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 15px;
  margin: 12px 0 0;
}

/* Programs */
.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 48px;
}

.section-heading-row p {
  max-width: 440px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

.program-list {
  border: 1px solid rgba(122, 247, 255, 0.14);
  background: var(--paper-glass);
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-soft), var(--glow-blue);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.program-item {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 4vw, 40px);
  color: var(--ink);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.program-item:not(:last-child) {
  border-bottom: 1px solid rgba(122, 247, 255, 0.12);
}

.program-item:hover {
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 28px rgba(0, 229, 255, 0.07);
}

.program-no {
  grid-column: span 1;
  font-size: 32px;
  font-style: italic;
}

.program-title {
  grid-column: span 5;
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0;
  font-weight: 500;
  color: var(--ink);
}

.program-blurb {
  grid-column: span 4;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 15px;
  margin: 0;
}

.program-meta {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: end;
  color: var(--ink-muted);
  font-size: 11px;
}

.program-meta .icon {
  margin-left: 16px;
  transition: transform 0.25s ease;
  color: var(--cyan-soft);
}

.program-item:hover .program-meta .icon {
  transform: translateX(4px);
}

/* Host */
.host-section {
  background: var(--gradient-section);
  border-top: 1px solid var(--rule);
}

.host-image {
  grid-column: span 5;
  position: relative;
}

.host-copy {
  grid-column: span 7;
  padding-left: 24px;
}

.host-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.initiative-card {
  position: absolute;
  right: -16px;
  bottom: -24px;
  width: 224px;
  background: rgba(5, 7, 11, 0.88);
  border: 1px solid rgba(122, 247, 255, 0.18);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--glow-blue);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.initiative-card p {
  margin: 0;
}

.initiative-card p:first-child {
  color: var(--cyan-soft);
  font-size: 10px;
}

.initiative-card p:last-child {
  font-size: 20px;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 4px;
}

.host-role {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.body-copy {
  margin-top: 32px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
}

.body-copy p {
  margin: 0 0 20px;
}

.stats {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-k {
  font-size: 38px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
  color: var(--cyan-soft);
  text-shadow: var(--glow-cyan);
}

.stat-v {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
}

/* Marquee */
.marquee-section {
  background: rgba(5, 7, 11, 0.72);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.marquee-intro {
  padding-top: clamp(64px, 7vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.marquee-intro p {
  max-width: 440px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.marquee-wrap {
  position: relative;
  margin-top: 40px;
  padding-bottom: clamp(64px, 7vw, 80px);
}

.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 128px;
  z-index: 3;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}

.fade-right {
  right: 0;
  background: linear-gradient(270deg, var(--paper), transparent);
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: scroll 60s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  flex: 0 0 auto;
  margin: 0;
}

.marquee-image {
  width: 320px;
  height: 208px;
}

.marquee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.marquee-item figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* Guests */
.guests-intro {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px 32px;
  margin-bottom: 48px;
}

.guests-intro > div {
  grid-column: span 7;
}

.guests-intro > p {
  grid-column: span 5;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  padding-left: 40px;
}

.guest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.guest-card {
  margin: 0;
}

.guest-image {
  aspect-ratio: 3 / 4;
  position: relative;
}

.guest-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 11, 0.78));
}

.guest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 0.7s ease;
}

.guest-card:hover img {
  transform: scale(1.02);
}

.guest-card figcaption {
  margin-top: 16px;
}

.guest-name {
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.guest-date {
  margin: 4px 0 0;
  font-size: 11px;
}

/* Listen Section */
.listen-section {
  background: linear-gradient(135deg, rgba(5, 10, 25, 0.96), rgba(20, 8, 40, 0.98));
  color: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.listen-copy {
  grid-column: span 5;
}

.listen-card-wrap {
  grid-column: span 7;
}

.listen-copy .section-title {
  color: var(--ink);
}

.listen-copy > .smallcaps,
.status-row .smallcaps {
  color: var(--cyan-soft);
  font-size: 12px;
}

.listen-desc {
  max-width: 440px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 16px;
  margin-top: 24px;
}

.status-row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.listen-card {
  overflow: hidden;
  border: 1px solid rgba(122, 247, 255, 0.18);
  background: var(--player-bg);
  border-radius: 28px;
  box-shadow: var(--shadow-soft), var(--glow-purple);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.listen-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(122, 247, 255, 0.14);
  padding: 12px 20px;
}

.listen-live-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.listen-live-label .smallcaps,
.js-stream-state {
  color: var(--cyan-soft);
  font-size: 11px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  display: inline-block;
  animation: pulse 1.6s infinite;
  box-shadow: var(--glow-cyan);
}

.listen-card-body {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding: clamp(24px, 4vw, 32px);
  align-items: center;
}

.artwork {
  grid-column: span 4;
  aspect-ratio: 1;
  background: #060814;
  overflow: hidden;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(122, 247, 255, 0.16);
  box-shadow: var(--glow-blue);
}

.artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-art {
  color: var(--cyan-soft);
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: var(--glow-cyan);
}

.brand-art em {
  color: var(--neon-purple-soft);
}

.artwork .soft-wave {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  justify-content: center;
}

.player-info {
  grid-column: span 8;
}

.player-info > .smallcaps {
  color: var(--cyan-soft);
  font-size: 11px;
  margin: 0;
}

.now-title {
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 8px 0 0;
}

.track-meta {
  color: var(--ink-soft);
  font-size: 13px;
  margin: 8px 0 0;
}

.controls-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.main-play {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.main-play:hover {
  transform: scale(1.04);
  box-shadow: var(--glow-pink);
}

.volume-control {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
}

.icon-button {
  background: transparent;
  color: var(--cyan-soft);
  display: grid;
  place-items: center;
  padding: 0;
}

.listen-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-soft);
}

.player-error {
  margin-top: 16px;
  font-size: 12px;
  color: var(--neon-pink-soft);
  display: none;
}

/* Range Inputs */
.range {
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: linear-gradient(var(--cyan), var(--cyan)) no-repeat, rgba(255, 255, 255, 0.18);
  background-size: var(--fill, 85%) 100%;
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  width: 100%;
  box-shadow: var(--glow-cyan);
}

.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--neon-pink);
  border: 2px solid var(--ink);
  box-shadow: var(--glow-pink);
}

.range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--neon-pink);
  border: 2px solid var(--ink);
  box-shadow: var(--glow-pink);
}

/* Submit */
.submit-copy {
  grid-column: span 5;
}

.submit-gallery {
  grid-column: span 7;
}

.submit-description,
.contact-copy > p:last-child {
  margin-top: 20px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 16px;
}

.submission-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border: 1px solid rgba(122, 247, 255, 0.14);
  background: var(--paper-glass);
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--glow-blue);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.submission-list div {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
}

.bullet {
  width: 6px;
  height: 6px;
  margin-top: 9px;
  flex: none;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.gallery-item img {
  width: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.span-6 {
  grid-column: span 6;
}

.span-3 {
  grid-column: span 3;
}

.span-2 {
  grid-column: span 2;
}

.h-main {
  height: 384px;
}

.h-mid {
  height: 224px;
}

.h-small {
  height: 176px;
}

/* Contact */
.contact-section {
  background: var(--gradient-section);
  border-top: 1px solid var(--rule);
}

.contact-copy {
  grid-column: span 7;
}

.contact-actions {
  grid-column: span 5;
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  border: 1px solid rgba(122, 247, 255, 0.16);
  background: var(--paper-glass);
  border-radius: 22px;
  padding: 20px;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  text-align: left;
  box-shadow: var(--glow-blue);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--glow-pink);
  transform: translateY(-2px);
}

.contact-card.dark {
  background: var(--player-bg);
  color: var(--ink);
}

.contact-card p {
  margin: 0;
}

.contact-card.dark .smallcaps {
  color: var(--cyan-soft);
}

.contact-card-title {
  font-size: 22px;
  color: var(--ink);
  margin-top: 4px !important;
}

.contact-card.dark .contact-card-title {
  color: var(--ink);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, rgba(5, 10, 25, 0.96), rgba(20, 8, 40, 0.98));
  color: var(--cyan-soft);
  border-top: 1px solid var(--rule);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding: 48px 0;
}

.footer-brand {
  grid-column: span 6;
}

.footer-brand p:first-child {
  color: var(--ink);
  font-size: 24px;
  margin: 0;
  letter-spacing: -0.015em;
}

.footer-brand em {
  color: var(--cyan-soft);
}

.footer-brand p:last-child {
  color: var(--ink-soft);
  font-size: 13px;
  margin: 8px 0 0;
  max-width: 560px;
}

.footer-col {
  grid-column: span 3;
}

.footer-col p {
  margin: 0;
  font-size: 11px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.footer-col a,
.footer-col span {
  color: var(--ink);
}

.footer-bottom {
  grid-column: span 12;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--dark-rule);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 12px;
}

/* Sticky Player */
.sticky-player {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(8, 12, 28, 0.92) 0%, rgba(9, 4, 22, 0.98) 100%);
  border-top: 1px solid rgba(122, 247, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 -10px 40px -10px rgba(0, 0, 0, 0.72), var(--glow-blue);
  color: var(--ink);
}

.sticky-accent {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--neon-purple), var(--neon-pink), transparent);
  opacity: 0.72;
}

.sticky-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

.sticky-thumb {
  width: 56px;
  height: 56px;
  flex: none;
  overflow: hidden;
  border-radius: 16px;
  background: #060814;
  border: 1px solid rgba(122, 247, 255, 0.22);
  position: relative;
  display: grid;
  place-items: center;
  box-shadow: var(--glow-blue);
}

.sticky-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  filter: brightness(1.2);
}

.mini-wave {
  position: absolute;
  inset-inline: 5px;
  bottom: 4px;
  height: 12px;
  display: none;
  align-items: end;
  justify-content: center;
  gap: 2px;
}

.mini-wave span {
  width: 2px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: var(--glow-cyan);
  animation: miniWave 1.1s ease-in-out infinite;
}

.sticky-play {
  width: 48px;
  height: 48px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sticky-play:hover {
  transform: scale(1.05);
  box-shadow: var(--glow-pink);
}

.sticky-text {
  min-width: 0;
  flex: 1;
}

.sticky-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan-soft);
  font-size: 11px;
}

.sticky-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan-soft);
  flex: none;
  box-shadow: var(--glow-cyan);
}

.sticky-title {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-volume {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-volume .range {
  width: 112px;
}

.sticky-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(122, 247, 255, 0.18);
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--cyan-soft);
  font-size: 12px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.sticky-contact:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--glow-blue);
}

.mobile-mute {
  display: none;
  background: transparent;
  color: var(--cyan-soft);
}

/* Loading / Playing States */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 999px;
  animation: spin 0.9s linear infinite;
  display: none;
}

.is-loading .spinner {
  display: block;
}

.is-loading .play-icon,
.is-loading .pause-icon {
  display: none !important;
}

.pause-icon {
  display: none;
}

.is-playing .pause-icon {
  display: block;
}

.is-playing .play-icon {
  display: none;
}

.is-playing .mini-wave {
  display: flex;
}

.is-playing .sticky-dot {
  background: var(--cyan);
  animation: pulse 1.6s infinite;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.75);
    opacity: 0.45;
  }
  50% {
    transform: scaleY(1.18);
    opacity: 0.9;
  }
}

@keyframes miniWave {
  0%,
  100% {
    height: 4px;
  }
  50% {
    height: 12px;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.42);
  }
  100% {
    box-shadow: 0 0 0 7px rgba(0, 229, 255, 0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track {
    animation: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  body {
    padding-bottom: 96px;
  }

  .nav-links {
    display: none;
  }

  .hero-kicker,
  .hero-main,
  .portrait-block,
  .quote-column,
  .section-intro,
  .pillars,
  .host-image,
  .host-copy,
  .listen-copy,
  .listen-card-wrap,
  .submit-copy,
  .submit-gallery,
  .contact-copy,
  .contact-actions {
    grid-column: span 12;
  }

  .hero-copy,
  .hero-actions {
    grid-column: span 12;
    justify-content: start;
  }

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

  .section-heading-row,
  .marquee-intro {
    align-items: start;
    flex-direction: column;
  }

  .program-no {
    grid-column: span 2;
  }

  .program-title {
    grid-column: span 10;
  }

  .program-blurb,
  .program-meta {
    grid-column: span 12;
    justify-content: space-between;
  }

  .host-copy {
    padding-left: 0;
  }

  .initiative-card {
    display: none;
  }

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

  .guests-intro > div,
  .guests-intro > p {
    grid-column: span 12;
    padding-left: 0;
  }

  .artwork,
  .player-info {
    grid-column: span 12;
  }

  .artwork {
    max-width: 340px;
  }

  .footer-brand,
  .footer-col {
    grid-column: span 12;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .sticky-contact,
  .sticky-volume {
    display: none;
  }

  .mobile-mute {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 999px;
  }

  .sticky-inner {
    gap: 12px;
  }

  .sticky-thumb {
    width: 48px;
    height: 48px;
  }

  .sticky-play {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 640px) {
  .utility-inner span:nth-child(2) {
    display: none;
  }

  .utility-inner {
    font-size: 10px;
  }

  .brand {
    font-size: 22px;
  }

  .nav {
    padding: 22px 0;
  }

  .btn {
    width: 100%;
    padding-inline: 18px;
  }

  .nav .btn {
    width: auto;
    padding: 10px 16px;
  }

  .portrait-card img {
    height: auto;
  }

  .station-flyer img {
    height: 280px;
  }

  .host-image img {
    height: 460px;
  }

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

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

  .submission-list {
    grid-template-columns: 1fr;
  }

  .span-3,
  .span-2 {
    grid-column: span 6;
  }

  .h-main {
    height: 320px;
  }

  .h-mid,
  .h-small {
    height: 220px;
  }

  .marquee-image {
    width: 280px;
    height: 188px;
  }

  .fade-left,
  .fade-right {
    width: 64px;
  }

  .sticky-title {
    font-size: 13px;
  }

  .sticky-status {
    font-size: 10px;
  }

  .mobile-hide {
    display: none !important;
  }
}

/* =========================================================
   Additional Page Templates: Media + Donations
   ========================================================= */
.lbr-page-hero {
  background: radial-gradient(circle at 15% 0%, rgba(0, 229, 255, .12), transparent 32%), radial-gradient(circle at 92% 20%, rgba(255, 79, 216, .12), transparent 34%);
  border-bottom: 1px solid var(--rule);
}

.lbr-page-hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: end;
}

.lbr-page-hero-grid > div {
  grid-column: span 7;
}

.lbr-page-hero-copy {
  grid-column: span 5;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.lbr-content-section.alt {
  background: var(--gradient-section, rgba(255, 255, 255, .03));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.lbr-card-grid {
  display: grid;
  gap: 24px;
}

.lbr-card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.lbr-feature-card,
.lbr-video-card,
.lbr-event-card,
.lbr-donation-panel,
.lbr-donation-cta {
  background: var(--paper-glass, rgba(255,255,255,.05));
  border: 1px solid var(--rule);
  border-radius: 24px;
  box-shadow: var(--shadow-soft, 0 28px 70px -36px rgba(0,0,0,.85)), var(--glow-blue, none);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.lbr-feature-card.horizontal {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.lbr-card-image {
  aspect-ratio: 16 / 11;
  background: var(--paper-deep);
  overflow: hidden;
}

.lbr-feature-card.horizontal .lbr-card-image {
  aspect-ratio: auto;
  min-height: 100%;
}

.lbr-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform .6s ease;
}

.lbr-feature-card:hover .lbr-card-image img {
  transform: scale(1.03);
}

.lbr-card-body {
  padding: 24px;
}

.lbr-card-body h3,
.lbr-event-card h3,
.lbr-video-card h3 {
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 8px 0 0;
  font-weight: 500;
}

.lbr-card-body p,
.lbr-event-card p,
.lbr-video-card p,
.lbr-donation-panel p,
.lbr-donation-cta p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.lbr-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--cyan-soft, var(--gold));
  font-weight: 700;
  transition: color .25s ease, text-shadow .25s ease, transform .25s ease;
}

.lbr-text-link:hover {
  color: var(--neon-pink-soft, var(--gold-soft));
  text-shadow: var(--glow-pink, none);
  transform: translateX(2px);
}

.lbr-event-list {
  display: grid;
  gap: 16px;
}

.lbr-event-card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.lbr-event-date {
  display: grid;
  place-items: center;
  min-height: 100px;
  border-radius: 20px;
  border: 1px solid var(--rule);
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 0 24px rgba(0, 229, 255, .05);
}

.lbr-event-date span {
  color: var(--cyan-soft, var(--gold));
  font-size: 12px;
}

.lbr-event-date strong {
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.lbr-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lbr-video-embed {
  aspect-ratio: 16 / 9;
  background: rgba(0,0,0,.35);
  border-bottom: 1px solid var(--rule);
}

.lbr-video-embed iframe,
.lbr-video-embed embed,
.lbr-video-embed object,
.lbr-video-embed video {
  width: 100%;
  height: 100%;
  display: block;
}

.lbr-video-placeholder {
  min-height: 100%;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  color: var(--cyan-soft, var(--gold));
  background: radial-gradient(circle at center, rgba(0, 229, 255, .12), transparent 58%);
}

.lbr-video-placeholder strong {
  color: var(--ink);
  font-size: 28px;
  font-weight: 500;
}

.lbr-donation-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: start;
}

.lbr-donation-copy {
  grid-column: span 6;
}

.lbr-donation-panel {
  grid-column: span 6;
  padding: 28px;
}

.lbr-donation-methods {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.lbr-donation-method {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--rule);
  background: rgba(255,255,255,.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.lbr-donation-method:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 79, 216, .35);
  box-shadow: var(--glow-pink, none);
  background: rgba(255,255,255,.065);
}

.lbr-method-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: var(--ink);
  font-weight: 800;
  background: var(--gradient-primary, var(--gold));
  box-shadow: var(--glow-purple, none);
}

.lbr-donation-method strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 500;
}

.lbr-donation-method small {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
  margin-top: 4px;
  word-break: break-word;
}

.lbr-donation-note {
  margin: 20px 0 0;
  font-size: 14px;
}

.lbr-donation-cta {
  text-align: center;
  max-width: 880px;
  margin-inline: auto;
  padding: clamp(32px, 5vw, 56px);
}

.lbr-donation-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 28px;
}

@media (max-width: 980px) {
  .lbr-page-hero-grid > div,
  .lbr-page-hero-copy,
  .lbr-donation-copy,
  .lbr-donation-panel {
    grid-column: span 12;
  }

  .lbr-card-grid-3,
  .lbr-card-grid-2,
  .lbr-video-grid {
    grid-template-columns: 1fr;
  }

  .lbr-feature-card.horizontal {
    grid-template-columns: 1fr;
  }

  .lbr-event-card {
    grid-template-columns: 92px 1fr;
  }

  .lbr-event-card .btn {
    grid-column: 1 / -1;
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .lbr-event-card,
  .lbr-donation-method {
    grid-template-columns: 1fr;
  }

  .lbr-event-date {
    min-height: 84px;
    width: 100%;
  }

  .lbr-donation-method .icon {
    display: none;
  }
}

/* Partner icon strip */
.partner-icons-section {
  background: radial-gradient(circle at 12% 0%, rgba(0,229,255,.10), transparent 32%), radial-gradient(circle at 88% 100%, rgba(155,77,255,.12), transparent 34%), rgba(5,7,11,.72);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.partner-icons-heading {
  margin-bottom: 36px;
}
.partner-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.partner-icon-card {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(122,247,255,.16);
  border-radius: 22px;
  background: rgba(15,20,40,.72);
  box-shadow: 0 0 12px rgba(20,184,255,.22), 0 28px 70px -42px rgba(0,0,0,.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
a.partner-icon-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,79,216,.42);
  box-shadow: 0 0 14px rgba(255,79,216,.26), 0 0 32px rgba(0,229,255,.14), 0 28px 70px -42px rgba(0,0,0,.85);
  background: rgba(255,255,255,.055);
}
.partner-icon-mark {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0,0,0,.32);
  border: 1px solid rgba(122,247,255,.18);
  box-shadow: 0 0 18px rgba(0,229,255,.16);
}
.partner-icon-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partner-icon-label {
  color: var(--cyan-soft, #7AF7FF);
  text-align: center;
  font-size: 11px;
  line-height: 1.35;
  text-shadow: 0 0 16px rgba(0,229,255,.25);
}
@media (max-width: 980px) {
  .partner-icon-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .partner-icon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-icon-card { min-height: 146px; padding: 16px; }
  .partner-icon-mark { width: 68px; height: 68px; }
}
