/* =========================================================
   Cre8tivEMT — Design tokens (EDIT THESE TO CUSTOMIZE)
   ========================================================= */
:root {
  /* Backgrounds — warm dark (not cold black) */
  --bg: #0d0b12;
  --bg-elevated: #16131f;
  --bg-card: #1c1828;
  --bg-soft: #221e30;

  /* Text */
  --text: #f4efe8;
  --text-muted: #b5aebc;
  --text-dim: #7e778a;

  /* Neon accents — tasteful, used sparingly */
  --neon-pink: #ff4d9a;
  --neon-cyan: #3de0ff;
  --neon-violet: #b56bff;
  --warm-amber: #ffb454;
  --accent: var(--neon-pink);
  --accent-2: var(--neon-cyan);

  /* Glows (subtle) */
  --glow-pink: 0 0 24px rgba(255, 77, 154, 0.28);
  --glow-cyan: 0 0 24px rgba(61, 224, 255, 0.22);
  --glow-soft: 0 0 40px rgba(181, 107, 255, 0.15);

  /* UI */
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);

  /* Type */
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  /* Layout */
  --container: 1120px;
  --header-h: 72px;
  --space-section: clamp(3.25rem, 7vw, 7rem);
  --page-pad: clamp(1rem, 4vw, 1.25rem);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fast: 180ms;
}

/* ========== Reset / base ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 0.92rem + 0.25vw, 1.05rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: var(--safe-bottom);
}

img,
video,
svg,
audio {
  max-width: 100%;
  height: auto;
}

img,
svg {
  display: block;
}

/* Prevent flex/grid children from blowing out page width */
img,
audio,
iframe,
video {
  max-width: 100%;
}

/* Avoid iOS zoom on form focus; keep readable */
input,
select,
textarea,
button {
  font-size: 16px;
}

a {
  color: var(--accent-2);
  text-decoration: none;
  transition: color var(--fast) var(--ease), opacity var(--fast) var(--ease);
}

a:hover {
  color: var(--text);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

code {
  font-size: 0.9em;
  color: var(--neon-cyan);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--neon-cyan);
  color: #000;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - (var(--page-pad) * 2), var(--container));
  margin-inline: auto;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(13, 11, 18, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--fast) var(--ease), background var(--fast) var(--ease);
  padding-top: var(--safe-top);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(13, 11, 18, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: min(100% - (var(--page-pad) * 2), var(--container));
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo:hover {
  color: var(--text);
}

.logo-mark {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 77, 154, 0.25), rgba(61, 224, 255, 0.18));
  border: 1px solid rgba(255, 77, 154, 0.35);
  box-shadow: var(--glow-pink);
  font-size: 1rem;
}

.logo-text {
  font-size: 1.15rem;
}

.logo-accent {
  color: var(--neon-pink);
  text-shadow: 0 0 18px rgba(255, 77, 154, 0.45);
}

.site-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-pill);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.nav-cta {
  color: #0d0b12 !important;
  background: linear-gradient(135deg, var(--neon-pink), #ff7ab8);
  box-shadow: var(--glow-pink);
  margin-left: 0.35rem;
  font-weight: 600 !important;
}

.nav-cta:hover {
  filter: brightness(1.08);
  color: #0d0b12 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-elevated);
  cursor: pointer;
  padding: 0;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--fast) var(--ease), opacity var(--fast);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform var(--fast) var(--ease), filter var(--fast), background var(--fast), border-color var(--fast);
}

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

.btn-primary {
  color: #0d0b12;
  background: linear-gradient(135deg, var(--neon-pink), #ff8ac0 55%, var(--warm-amber));
  box-shadow: var(--glow-pink);
}

.btn-primary:hover {
  color: #0d0b12;
  filter: brightness(1.06);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  border-color: rgba(61, 224, 255, 0.45);
  box-shadow: var(--glow-cyan);
  color: var(--text);
}

/* Shop Swag — standout amber/gold */
.btn-swag {
  color: #1a1208;
  background: linear-gradient(135deg, #ffb454 0%, #ff8a3d 45%, #ff5c8a 100%);
  border-color: transparent;
  box-shadow: 0 0 22px rgba(255, 180, 84, 0.35);
  font-weight: 700;
}

.btn-swag:hover {
  color: #1a1208;
  filter: brightness(1.08);
  box-shadow: 0 0 28px rgba(255, 140, 60, 0.5);
}

/* Request a Song — bright cyan accent (top hero CTA) */
.btn-song {
  color: #041218;
  background: linear-gradient(135deg, #3de0ff 0%, #5b8cff 55%, #b56bff 100%);
  border-color: transparent;
  box-shadow: 0 0 22px rgba(61, 224, 255, 0.35);
  font-weight: 700;
}

.btn-song:hover {
  color: #041218;
  filter: brightness(1.08);
  box-shadow: 0 0 28px rgba(61, 224, 255, 0.5);
}

.btn-sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
}

.text-link {
  font-weight: 600;
  color: var(--neon-cyan);
}

.text-link:hover {
  color: var(--text);
}

/* ========== Sections ========== */
.section {
  padding: var(--space-section) 0;
  position: relative;
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.section-header h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.section-intro {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin: 0 0 0.85rem;
  text-shadow: 0 0 20px rgba(61, 224, 255, 0.25);
}

.lead {
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.55;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background:
    radial-gradient(ellipse 50% 60% at 20% 40%, rgba(255, 77, 154, 0.16), transparent 70%),
    radial-gradient(ellipse 45% 55% at 80% 30%, rgba(61, 224, 255, 0.12), transparent 70%),
    radial-gradient(ellipse 40% 50% at 50% 80%, rgba(181, 107, 255, 0.1), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.35rem, 5.2vw, 3.75rem);
  font-weight: 800;
  margin-bottom: 1.1rem;
}

.hero-highlight {
  background: linear-gradient(105deg, var(--neon-pink), var(--warm-amber) 55%, var(--neon-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.12rem;
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  align-items: center;
}

.hero-actions .btn {
  flex: 0 1 auto;
  max-width: 100%;
}

/* Role labels — not primary CTAs; quiet text links into sections */
.hero-roles {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.15rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-dim);
}

.hero-roles-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-right: 0.45rem;
}

.hero-roles a {
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding: 0 0.15rem;
  transition: color var(--fast), border-color var(--fast);
}

.hero-roles a:not(:last-child)::after {
  content: "·";
  margin-left: 0.45rem;
  color: var(--text-dim);
  pointer-events: none;
}

.hero-roles a:hover {
  color: var(--neon-cyan);
  border-bottom-color: rgba(61, 224, 255, 0.45);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: min(100%, 360px);
}

.hero-card--interactive {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  touch-action: manipulation;
}

.hero-card--interactive:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 10px;
  border-radius: 24px;
}

.hero-card--interactive:hover .hero-portrait img {
  transform: scale(1.03);
}

.hero-card--interactive.is-on-air .hero-card-ring {
  border-color: rgba(255, 60, 60, 0.75);
  box-shadow: 0 0 28px rgba(255, 40, 40, 0.45), 0 0 48px rgba(255, 77, 154, 0.25);
}

.hero-card-ring {
  position: absolute;
  inset: -12px;
  border-radius: 28px;
  border: 1px solid rgba(255, 77, 154, 0.25);
  box-shadow: var(--glow-pink), inset 0 0 30px rgba(61, 224, 255, 0.05);
  pointer-events: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.hero-portrait {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Near top (full hair); tiny nudge so subject sits slightly higher */
  object-position: center 4%;
  transform: none;
  transition: transform 0.4s var(--ease);
}

/* ON AIR easter egg */
.on-air-flash {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  background: rgba(140, 0, 0, 0.88);
  border: 1px solid rgba(255, 80, 80, 0.85);
  box-shadow: 0 0 20px rgba(255, 40, 40, 0.55);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.hero-card--interactive.is-on-air .on-air-flash {
  opacity: 1;
  transform: scale(1);
  animation: onAirBlink 0.55s ease-in-out 2;
}

.on-air-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 10px #ff3b3b;
}

@keyframes onAirBlink {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.35); }
}

.hero-photo-hint {
  display: block;
  margin-top: 1.35rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.85;
}

.portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background:
    linear-gradient(160deg, rgba(255, 77, 154, 0.2), transparent 50%),
    linear-gradient(320deg, rgba(61, 224, 255, 0.15), var(--bg-card));
}

.portrait-initials {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--text);
  text-shadow: 0 0 40px rgba(255, 77, 154, 0.4);
  line-height: 1;
}

.portrait-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge {
  position: absolute;
  left: 50%;
  bottom: -0.9rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: calc(100% - 0.5rem);
  white-space: normal;
  text-align: center;
  line-height: 1.25;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 0.55rem 0.85rem;
  box-shadow: var(--shadow);
  z-index: 2;
}



.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 0 0 rgba(255, 77, 154, 0.55);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 154, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(255, 77, 154, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 154, 0); }
}

/* ========== About ========== */
.about {
  background: linear-gradient(180deg, transparent, rgba(28, 24, 40, 0.55) 20%, transparent);
}

/* Story + featured host row */
.about-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: stretch;
  margin-bottom: 1.15rem;
}

.about-story {
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-story .lead {
  color: var(--text);
}

.about-story em {
  color: var(--warm-amber);
  font-style: normal;
  font-weight: 500;
}

.about-story a {
  color: var(--neon-cyan);
  font-weight: 600;
}

.info-card a {
  color: var(--neon-cyan);
  font-weight: 600;
  word-break: break-word;
}

/* Badge + primary role as one balanced card */
.about-featured {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.25rem 1.35rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 77, 154, 0.35);
  background: var(--bg-card);
  box-shadow: var(--glow-pink), var(--shadow);
  min-height: 9.5rem;
}

/* Muted studio photo for depth — not competing with text */
.about-featured-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  filter: grayscale(0.35) brightness(0.55) contrast(1.05);
  z-index: 0;
  pointer-events: none;
}

.about-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(13, 11, 18, 0.82) 0%, rgba(13, 11, 18, 0.55) 48%, rgba(13, 11, 18, 0.72) 100%),
    radial-gradient(ellipse 90% 80% at 0% 50%, rgba(255, 77, 154, 0.12), transparent 60%);
}

.about-seal {
  position: relative;
  z-index: 2;
  width: clamp(5.75rem, 12vw, 7.25rem);
  height: auto;
  flex-shrink: 0;
  border-radius: 50%;
  border: 3px solid rgba(255, 180, 84, 0.5);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), 0 0 22px rgba(255, 180, 84, 0.22);
  background: #000;
}

.about-featured-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.about-featured-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-amber);
}

.about-featured-copy h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin: 0 0 0.45rem;
  color: var(--text);
  line-height: 1.2;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.about-featured-copy p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

/* Three equal supporting roles */
.about-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  height: 100%;
  transition: border-color var(--fast), box-shadow var(--fast), transform var(--fast);
}

.info-card:hover {
  border-color: rgba(61, 224, 255, 0.28);
  box-shadow: var(--glow-soft);
  transform: translateY(-2px);
}

.info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.info-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Retired Medic — faint Star of Life watermark */
.info-card--medic {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.info-card--medic h3,
.info-card--medic p {
  position: relative;
  z-index: 1;
}

.star-of-life {
  position: absolute;
  right: -0.85rem;
  bottom: -0.95rem;
  width: 9.75rem;
  height: 9.75rem;
  object-fit: contain;
  opacity: 0.24;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-8deg);
  /* Thin edge only — no big glow blob */
  filter: drop-shadow(0 0 0.6px rgba(120, 185, 220, 0.55))
    drop-shadow(0 0 1.5px rgba(90, 160, 200, 0.35));
}

.info-card--medic:hover .star-of-life {
  opacity: 0.3;
  filter: drop-shadow(0 0 0.7px rgba(120, 185, 220, 0.65))
    drop-shadow(0 0 2px rgba(90, 160, 200, 0.4));
}


/* ========== TikRok Radio (flagship section) ========== */
.radio {
  background:
    radial-gradient(ellipse 70% 60% at 10% 20%, rgba(255, 77, 154, 0.16), transparent 55%),
    radial-gradient(ellipse 55% 50% at 90% 70%, rgba(61, 224, 255, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(22, 19, 31, 0.9), var(--bg-elevated) 40%, rgba(13, 11, 18, 0.95));
  border-block: 1px solid var(--border);
}

.radio-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: start;
  background: rgba(13, 11, 18, 0.45);
  border: 1px solid rgba(255, 77, 154, 0.28);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.25rem, 3.5vw, 2.75rem);
  box-shadow: var(--glow-pink), var(--shadow);
  position: relative;
  overflow: hidden;
}

.radio-banner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-pink), var(--warm-amber), var(--neon-cyan));
}

.radio-kicker {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-amber);
  margin: 0 0 0.5rem;
  text-shadow: 0 0 20px rgba(255, 180, 84, 0.35);
}

.radio-banner h2 {
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
  background: linear-gradient(105deg, var(--text), var(--neon-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.radio-banner-copy .lead {
  margin-bottom: 1rem;
}

.radio-banner-copy > p {
  color: var(--text-muted);
}

.radio-banner-copy strong {
  color: var(--text);
}

.radio-schedule {
  margin: 1.75rem 0 1.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.28);
}

.radio-schedule h3 {
  font-size: 0.95rem;
  margin: 0 0 0.85rem;
  color: var(--neon-cyan);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.schedule-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}



.schedule-grid li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.schedule-time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}

.schedule-zone {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.schedule-note {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.schedule-note a {
  color: var(--neon-cyan);
  font-weight: 600;
}

.radio-shop-note {
  margin-top: 1rem;
}

/* Listen live player */
.listen-live {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 77, 154, 0.3);
  background:
    radial-gradient(ellipse 80% 70% at 0% 0%, rgba(255, 77, 154, 0.12), transparent 55%),
    rgba(0, 0, 0, 0.28);
}

.listen-live--under-badge {
  margin-top: 0;
  width: 100%;
  max-width: min(100%, 340px);
  margin-inline: auto;
  padding: 0.85rem 0.9rem 0.8rem;
  box-sizing: border-box;
}

.listen-live-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}

.listen-live-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff3b5c;
  box-shadow: 0 0 0 0 rgba(255, 59, 92, 0.55);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.listen-live-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-pink);
}

.listen-live-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text);
}

.listen-live-player {
  width: 100%;
  max-width: 100%;
  height: 40px;
  border-radius: 999px;
  outline: none;
}

.listen-live-note {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.4;
  text-align: center;
}

.listen-live-note a {
  color: var(--neon-cyan);
  font-weight: 600;
}

/* App Store / Google Play download badges */
.app-downloads {
  margin-top: 1.15rem;
}

.app-downloads-label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-amber);
}

.app-download-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.app-badge {
  display: inline-flex;
  line-height: 0;
  border-radius: 8px;
  transition: transform var(--fast) var(--ease), box-shadow var(--fast);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.app-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(61, 224, 255, 0.25);
}

.app-badge img {
  display: block;
  height: 42px;
  width: auto;
}

.app-downloads--contact {
  margin-top: 1.25rem;
}

.radio-highlights {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  justify-items: center;
}

.badge-card {
  margin: 0;
  text-align: center;
  width: 100%;
  max-width: min(100%, 340px);
}

.badge-card img {
  width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 30px rgba(255, 180, 84, 0.18);
}

.badge-card--credential img {
  max-width: 100%;
  border: 1px solid rgba(255, 180, 84, 0.35);
  border-radius: 12px;
  background: #0a0a0a;
}

.radio-highlights .radio-aside-note {
  max-width: min(100%, 340px);
}

.badge-card figcaption {
  margin-top: 0.55rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

.radio-aside-note {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--neon-pink);
  background: rgba(255, 77, 154, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ========== Gen X After Dark ========== */
.shows {
  background:
    radial-gradient(ellipse 55% 50% at 90% 30%, rgba(255, 77, 154, 0.1), transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(181, 107, 255, 0.08), transparent 50%);
}

.gx-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: stretch;
}

.gx-copy {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

.gx-copy .eyebrow {
  margin-bottom: 0.65rem;
}

.gx-copy h2 {
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  margin: 0 0 0.85rem;
  line-height: 1.15;
}

.gx-subhead {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.72em;
  font-weight: 700;
  background: linear-gradient(105deg, var(--neon-cyan), var(--warm-amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gx-copy .lead {
  margin: 0 0 1.15rem;
}

.gx-copy > p {
  color: var(--text-muted);
}

.platform-cards {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.75rem;
  flex: 1;
  min-height: 0;
}

.platform-card {
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-sizing: border-box;
  overflow: hidden;
  min-width: 0;
}

.platform-card--tiktok {
  border-color: rgba(255, 77, 154, 0.35);
  background:
    radial-gradient(ellipse 90% 80% at 0% 0%, rgba(255, 77, 154, 0.12), transparent 55%),
    var(--bg-card);
}

.platform-card--tikrok {
  border-color: rgba(61, 224, 255, 0.28);
  background:
    radial-gradient(ellipse 90% 80% at 100% 0%, rgba(61, 224, 255, 0.1), transparent 55%),
    var(--bg-card);
}

.platform-label {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-amber);
}

.platform-card h3 {
  font-size: 1.02rem;
  margin: 0 0 0.35rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.platform-card > p {
  margin: 0 0 0.55rem;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.platform-schedule {
  font-size: 0.82rem !important;
  color: var(--text) !important;
  line-height: 1.4;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border);
  margin-bottom: 0.65rem !important;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.platform-schedule a {
  color: var(--neon-cyan);
  font-weight: 600;
}

.platform-card .btn {
  margin-top: 0;
  align-self: flex-start;
  font-size: 0.85rem;
  padding: 0.55rem 0.95rem;
}

.gx-art {
  position: relative;
  margin: 0;
  height: 100%;
  min-height: 100%;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid rgba(255, 77, 154, 0.3);
  box-shadow: var(--shadow), var(--glow-pink);
  background: #050308;
  display: flex;
  align-items: stretch;
}

.gx-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Invisible split zones over the artwork */
.gx-art-hotspot {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.85rem;
  text-decoration: none;
  color: #fff;
  box-sizing: border-box;
  transition: background var(--fast) var(--ease);
}

.gx-art-hotspot--left {
  left: 0;
}

.gx-art-hotspot--right {
  right: 0;
}

.gx-art-hotspot:hover,
.gx-art-hotspot:focus-visible {
  background: rgba(0, 0, 0, 0.28);
}

.gx-art-hotspot:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: -3px;
}

.gx-art-hotspot-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(13, 11, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--fast) var(--ease), transform var(--fast) var(--ease);
  pointer-events: none;
}

.gx-art-hotspot:hover .gx-art-hotspot-label,
.gx-art-hotspot:focus-visible .gx-art-hotspot-label {
  opacity: 1;
  transform: translateY(0);
}

/* On touch devices, show subtle labels so people know it's tappable */
@media (hover: none) {
  .gx-art-hotspot-label {
    opacity: 0.85;
    transform: none;
    font-size: 0.68rem;
    padding: 0.35rem 0.55rem;
  }

  .gx-art-hotspot--left {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 70%);
  }

  .gx-art-hotspot--right {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.12), transparent 70%);
  }
}

/* ========== Work ========== */
.work {
  background: linear-gradient(180deg, transparent, rgba(22, 19, 31, 0.8), transparent);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.work-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform var(--fast) var(--ease), border-color var(--fast), box-shadow var(--fast);
}

.work-card:hover {
  transform: translateY(-3px);
  border-color: rgba(181, 107, 255, 0.35);
  box-shadow: var(--glow-soft);
}

.work-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.work-card:hover .work-media img {
  transform: scale(1.04);
}

.work-body {
  padding: 1.25rem 1.3rem 1.45rem;
}

.work-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.work-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.work .section-intro a {
  color: var(--neon-cyan);
  font-weight: 600;
}

.work-cta-line {
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-start;
}

.contact-copy .lead a {
  color: var(--neon-cyan);
  font-weight: 600;
}

.contact-sites {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.contact-sites a {
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-sites a:hover {
  color: var(--neon-cyan);
}

.contact-sites-sep {
  color: var(--text-dim);
}

/* ========== Kids books ========== */
.book-shelf {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 720px;
}

.book-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.book-tile h3 {
  font-size: 1.15rem;
  margin: 0.35rem 0 0;
}

.book-tile p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin: 0;
}

.book-cover-link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 12px;
  transition: transform var(--fast) var(--ease), box-shadow var(--fast);
}

.book-cover-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-soft);
}

.book-cover-link:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 4px;
}

.book-cover {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  display: grid;
  place-items: end center;
  padding: 0;
  border: 1px solid var(--border);
  overflow: hidden;
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}

.book-cover-link:hover .book-cover img {
  transform: scale(1.03);
}

.book-cover-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  color: var(--text);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.book-cover--kids-1 {
  background: linear-gradient(160deg, #ff8ac0, #5b3df5 70%);
}

.book-cover--kids-2 {
  background: linear-gradient(160deg, #3de0ff, #1a5cff 70%);
}

.book-cover--kids-3 {
  background: linear-gradient(160deg, #ffb454, #ff4d9a 70%);
}

/* ========== Featured book ========== */
.featured-book {
  background:
    radial-gradient(ellipse 60% 50% at 15% 50%, rgba(255, 77, 154, 0.1), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 40%, rgba(61, 224, 255, 0.08), transparent 55%),
    var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.featured-book-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.featured-cover-wrap {
  display: flex;
  justify-content: center;
}

.featured-cover-link {
  display: block;
  width: min(100%, 400px);
  border-radius: 14px;
  transition: transform var(--fast) var(--ease), box-shadow var(--fast);
}

.featured-cover-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-pink);
}

.featured-cover-link:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 4px;
}

.featured-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
  background: linear-gradient(155deg, #2a1f3d, #12101a 50%, #1a2a35);
  border: 1px solid rgba(255, 77, 154, 0.3);
  box-shadow: var(--glow-pink), var(--shadow);
  overflow: hidden;
  position: relative;
}

.featured-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}

.featured-cover-link:hover .featured-cover img {
  transform: scale(1.03);
}

.featured-cover-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem;
  background:
    linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.55)),
    linear-gradient(135deg, rgba(255, 77, 154, 0.2), rgba(61, 224, 255, 0.12));
}

.featured-cover-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin: 0 0 0.75rem;
}

.featured-cover-name {
  font-size: 1.85rem;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.featured-cover-author {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.featured-copy .lead {
  margin-bottom: 1rem;
}

.featured-copy > p {
  color: var(--text-muted);
}

.feature-list {
  margin: 1.25rem 0 1.75rem;
  display: grid;
  gap: 0.55rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 10px rgba(255, 77, 154, 0.6);
}

/* ========== Gallery ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform var(--fast) var(--ease), box-shadow var(--fast);
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-soft);
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img,
.gallery-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item--wide .gallery-placeholder,
.gallery-item--wide img {
  aspect-ratio: 16 / 9;
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.gp-1 { background: linear-gradient(135deg, #5b1f4a, #1a1030); }
.gp-2 { background: linear-gradient(135deg, #1f3a5b, #101828); }
.gp-3 { background: linear-gradient(135deg, #3a2a1f, #1a1420); }
.gp-4 { background: linear-gradient(135deg, #2a1f4a, #120f20); }
.gp-5 { background: linear-gradient(135deg, #1f4a3a, #0f1a18); }
.gp-6 { background: linear-gradient(135deg, #4a2a1f, #1a1018); }

.gallery-item figcaption {
  padding: 0.7rem 0.9rem 0.85rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== Support ========== */
.support {
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(255, 180, 84, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 45% at 90% 70%, rgba(255, 77, 154, 0.1), transparent 50%);
}

.support-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 180, 84, 0.28);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(255, 180, 84, 0.08), transparent 55%),
    var(--bg-elevated);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

/* Ship's wheel watermark — full photo kept intact.
   multiply on dark panel: white becomes invisible, wood shows softly */
.support-wheel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(90%, 500px);
  height: auto;
  max-height: 94%;
  object-fit: contain;
  transform: translate(-50%, -50%) rotate(-12deg);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
  filter: none;
}

.support-header,
.support-grid {
  position: relative;
  z-index: 1;
}

.support-header {
  margin-bottom: 1.5rem;
}

.support-header h2 {
  margin-bottom: 0;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

@media (max-width: 960px) {
  .support-wheel {
    width: min(100%, 420px);
    opacity: 0.06;
  }
}

.support-copy .lead {
  margin-bottom: 0.85rem;
}

.support-copy > p {
  color: var(--text-muted);
}

.support-copy em {
  color: var(--warm-amber);
  font-style: normal;
  font-weight: 600;
}

.support-thanks {
  margin-top: 1rem !important;
  color: var(--text) !important;
  font-weight: 600;
}

.support-methods {
  display: grid;
  gap: 0.75rem;
}

.support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.85rem 0.95rem 0.85rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  text-decoration: none;
  transition: transform var(--fast) var(--ease), border-color var(--fast), box-shadow var(--fast);
}

.support-card:hover {
  transform: translateY(-2px);
  color: var(--text);
  border-color: rgba(255, 180, 84, 0.45);
  box-shadow: 0 0 24px rgba(255, 180, 84, 0.2);
}

.support-card--cashapp {
  border-color: rgba(0, 200, 83, 0.35);
  background:
    radial-gradient(ellipse 90% 80% at 0% 0%, rgba(0, 200, 83, 0.12), transparent 55%),
    var(--bg-card);
}

.support-card--venmo {
  border-color: rgba(61, 149, 206, 0.4);
  background:
    radial-gradient(ellipse 90% 80% at 0% 0%, rgba(61, 149, 206, 0.12), transparent 55%),
    var(--bg-card);
}

.support-card-text {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.support-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.support-card-handle {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.support-card-cta {
  margin-top: 0.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--neon-cyan);
}

.support-card-art {
  width: 5.25rem;
  height: 5.25rem;
  flex-shrink: 0;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.support-note {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.45;
}

.support-note a {
  color: var(--neon-cyan);
  font-weight: 600;
}

/* ========== Contact ========== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.contact-details {
  margin: 1.5rem 0;
  display: grid;
  gap: 0.85rem;
}

.contact-details li {
  display: grid;
  gap: 0.2rem;
}

.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

.contact-details a {
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-details a:hover {
  color: var(--neon-cyan);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.contact-linktree-note {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-linktree-note a {
  color: var(--neon-cyan);
  font-weight: 600;
}

.social-link {
  display: inline-flex;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--bg-elevated);
}

.social-link:hover {
  color: var(--text);
  border-color: rgba(255, 77, 154, 0.4);
  box-shadow: var(--glow-pink);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1rem;
  display: grid;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  transition: border-color var(--fast), box-shadow var(--fast);
}

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

.form-row input:hover,
.form-row select:hover,
.form-row textarea:hover {
  border-color: var(--border-strong);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(61, 224, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(61, 224, 255, 0.12);
  outline: none;
}

.form-row select {
  cursor: pointer;
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  min-height: 1.25em;
}

.form-note.is-success {
  color: var(--neon-cyan);
}

.form-note.is-error {
  color: var(--neon-pink);
}

/* ========== Footer ========== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  background: #0a0810;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
  text-align: center;
  justify-items: center;
}

.footer-brand p {
  margin: 0.35rem 0 0;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1rem;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--neon-cyan);
}

.footer-nav .footer-swag {
  color: #1a1208;
  background: linear-gradient(135deg, #ffb454 0%, #ff8a3d 45%, #ff5c8a 100%);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.9rem;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(255, 180, 84, 0.3);
}

.footer-nav .footer-swag:hover {
  color: #1a1208;
  filter: brightness(1.08);
}

.social-row .btn-swag {
  align-self: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ========== Global overflow safety ========== */
.hero-copy,
.about-story,
.radio-banner-copy,
.gx-copy,
.featured-copy,
.support-copy,
.contact-copy,
.platform-card,
.info-card {
  min-width: 0;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.radio-banner,
.support-panel,
.hero-grid,
.about-top,
.gx-layout,
.featured-book-grid,
.contact-grid,
.support-grid {
  max-width: 100%;
}

/* ========== Ultra-wide desktops ========== */
@media (min-width: 1400px) {
  :root {
    --container: 1180px;
  }
}

@media (min-width: 1800px) {
  :root {
    --container: 1240px;
  }
}

/* ========== Mid desktops / large laptops ========== */
@media (max-width: 1280px) {
  :root {
    --container: 1040px;
  }

  .site-nav a {
    font-size: 0.82rem;
    padding: 0.42rem 0.48rem;
  }

  .nav-cta {
    margin-left: 0.1rem;
    padding-inline: 0.8rem !important;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 3.6vw, 3rem);
  }

  .work-grid,
  .about-roles {
    gap: 0.75rem;
  }

  .schedule-grid--three {
    grid-template-columns: 1fr;
  }
}

/* ========== Compact laptops / small desktops ========== */
@media (max-width: 1180px) {
  :root {
    --container: 960px;
    --header-h: 66px;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    min-width: 44px;
    min-height: 44px;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-h) + var(--safe-top));
    left: 0;
    right: 0;
    bottom: auto;
    max-height: min(78vh, calc(100dvh - var(--header-h) - var(--safe-top)));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background: rgba(13, 11, 18, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 0.65rem var(--page-pad) calc(1rem + var(--safe-bottom));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--fast) var(--ease), opacity var(--fast);
    z-index: 99;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .site-nav a:active {
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
    justify-content: center;
    margin-top: 0.45rem;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .hero-card {
    width: min(100%, 300px);
  }

  .about-top,
  .gx-layout,
  .featured-book-grid,
  .contact-grid,
  .radio-banner,
  .support-grid {
    gap: 1.35rem;
  }

  .radio-banner {
    padding: 1.35rem 1.2rem;
  }

  .featured-cover-link {
    width: min(100%, 340px);
  }

  .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-roles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .info-card {
    padding: 1rem 0.95rem;
  }

  .info-card h3 {
    font-size: 0.96rem;
  }

  .info-card p {
    font-size: 0.86rem;
  }

  .hero-actions .btn {
    font-size: 0.92rem;
    padding: 0.75rem 1.1rem;
  }
}

/* ========== Tablets & resized desktop windows ========== */
@media (max-width: 960px) {
  :root {
    --header-h: 64px;
    --container: 100%;
    --space-section: clamp(2.75rem, 6vw, 4.5rem);
  }

  .hero-grid,
  .about-top,
  .featured-book-grid,
  .contact-grid,
  .support-grid,
  .radio-banner,
  .gx-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-copy h1 {
    font-size: clamp(1.75rem, 6.5vw, 2.45rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-visual {
    order: -1;
    justify-content: center;
  }

  .hero-card {
    width: min(100%, 270px);
  }

  .hero-roles {
    font-size: 0.84rem;
  }

  .about-featured {
    flex-direction: row;
    align-items: center;
  }

  .about-roles,
  .work-grid,
  .book-shelf {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .radio-banner {
    padding: 1.15rem 1rem;
  }

  .radio-banner h2 {
    font-size: clamp(1.65rem, 6.5vw, 2.25rem);
  }

  .radio-banner .hero-actions {
    gap: 0.55rem;
  }

  .schedule-grid,
  .schedule-grid--three {
    grid-template-columns: 1fr;
  }

  .gx-art {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
    aspect-ratio: 1 / 1;
    height: auto;
  }

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

  .platform-cards {
    grid-template-rows: auto;
  }

  .platform-card {
    height: auto;
  }

  .featured-cover-link {
    width: min(100%, 320px);
  }

  .featured-cover-wrap {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .contact-form {
    padding: 1.1rem 0.95rem;
  }

  .logo-text {
    font-size: 1.02rem;
  }

  .section-header {
    margin-bottom: 1.5rem;
    max-width: none;
  }

  .section-header h2,
  .gx-copy h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    overflow-wrap: anywhere;
  }

  .lead {
    font-size: 1.02rem;
  }

  .badge-card,
  .listen-live--under-badge,
  .radio-highlights .radio-aside-note {
    max-width: min(100%, 360px);
  }

  .badge-card--credential img {
    max-width: 100%;
  }

  .footer-nav {
    gap: 0.45rem 0.75rem;
  }

  .footer-nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.35rem;
  }

  .social-row {
    gap: 0.45rem;
  }

  .social-link {
    min-height: 40px;
    align-items: center;
  }

  .app-download-badges {
    justify-content: flex-start;
  }

  .work-cta-line {
    flex-direction: column;
    align-items: stretch;
  }

  .work-cta-line .btn {
    width: 100%;
    justify-content: center;
  }

  .support-wheel {
    width: min(100%, 380px);
    opacity: 0.22;
  }
}

/* ========== Phones / narrow tablets ========== */
@media (max-width: 768px) {
  .about-featured {
    flex-direction: column;
    text-align: center;
    gap: 0.85rem;
    padding: 1.1rem 1rem;
  }

  .about-seal {
    width: 6.25rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 calc(50% - 0.5rem);
    justify-content: center;
    text-align: center;
  }

  .listen-live--under-badge {
    max-width: min(100%, 360px);
  }

  .radio-highlights {
    justify-items: center;
  }

  .contact-sites {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .contact-sites-sep {
    display: none;
  }
}

/* ========== Small phones ========== */
@media (max-width: 520px) {
  :root {
    --header-h: 60px;
    --page-pad: 0.85rem;
  }

  body {
    line-height: 1.6;
  }

  .hero {
    padding-top: 1.5rem;
    padding-bottom: 2.75rem;
  }

  .hero-card {
    width: min(100%, 230px);
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 0.42rem 0.6rem;
    bottom: -1rem;
    max-width: calc(100% + 0.5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    flex: 1 1 auto;
  }

  .hero-roles {
    font-size: 0.8rem;
  }

  .hero-photo-hint {
    margin-top: 1.5rem;
  }

  .schedule-grid,
  .schedule-grid--three {
    grid-template-columns: 1fr;
  }

  .schedule-time {
    font-size: 1.02rem;
  }

  .platform-card {
    padding: 0.8rem 0.85rem;
  }

  .platform-card h3 {
    font-size: 0.96rem;
  }

  .platform-card > p,
  .platform-schedule {
    font-size: 0.8rem !important;
  }

  .platform-card .btn {
    width: 100%;
    justify-content: center;
  }

  .gx-art {
    max-width: 100%;
  }

  .featured-cover-link {
    width: min(100%, 260px);
  }

  .featured-copy .feature-list {
    margin-top: 1rem;
  }

  .feature-list li {
    font-size: 0.92rem;
  }

  .book-tile h3 {
    font-size: 1.02rem;
  }

  .work-body {
    padding: 1rem 0.95rem 1.1rem;
  }

  .contact-details a {
    font-size: 0.95rem;
    word-break: break-word;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    padding: 0.85rem 0.9rem;
    min-height: 48px;
    font-size: 16px;
  }

  .form-row textarea {
    min-height: 140px;
  }

  .app-badge img {
    height: 40px;
  }

  .btn-swag,
  .btn-song {
    width: 100%;
    justify-content: center;
  }

  .social-row {
    width: 100%;
  }

  .social-row .btn-swag {
    width: 100%;
  }

  .support-card {
    flex-wrap: wrap;
  }

  .support-card-art {
    width: 4.5rem;
    height: 4.5rem;
    margin-left: auto;
  }

  .star-of-life {
    width: 8rem;
    height: 8rem;
  }
}

/* ========== Very narrow phones ========== */
@media (max-width: 360px) {
  .logo-mark {
    display: none;
  }

  .radio-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
  }

  .hero-copy h1 {
    font-size: 1.55rem;
  }

  .listen-live-title {
    font-size: 0.88rem;
  }

  .about-featured-copy h3 {
    font-size: 1.05rem;
  }
}

/* Landscape phones — keep content usable */
@media (max-height: 480px) and (orientation: landscape) {
  .hero {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }

  .hero-visual {
    display: none;
  }

  .site-nav {
    max-height: 70vh;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
