:root {
  --red:        #1D6FE8;
  --red-hot:    #3880F4;
  --red-dim:    #1455BE;
  --gold:       #60A5FA;
  --gold-light: #93C5FD;
  --bg:         #050810;
  --bg2:        #0a0f1e;
  --bg3:        #0d1428;
  --bg4:        #111c35;
  --surface:    #242429;
  --border:     rgba(255,255,255,0.07);
  --text:       #F0EEE8;
  --text-dim:   #9A9890;
  --text-muted: #5A5856;
  --glow:       rgba(29,111,232,0.35);
  --glow-sm:    rgba(29,111,232,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: default;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 48px;
  height: 64px;
  background: rgba(5,8,16,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  gap: 24px;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--red); }

.on-air {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--red-hot);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}

.on-air:hover { opacity: 0.75; }
.on-air-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-hot);
  animation: pulse-dot 1.4s ease-in-out infinite;
  box-shadow: 0 0 8px var(--red-hot);
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.on-air-label { letter-spacing: 2px; flex-shrink: 0; }
.on-air-station {
  font-size: 10px;
  letter-spacing: 1px;
  color: #ff6b6b;
  text-transform: none;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  text-shadow: 0 0 8px rgba(56,128,244,0.8), 0 0 20px rgba(56,128,244,0.4);
  animation: station-glow 2s ease-in-out infinite;
}
@keyframes station-glow {
  0%, 100% {
    color: #ff6b6b;
    text-shadow: 0 0 8px rgba(56,128,244,0.8), 0 0 20px rgba(56,128,244,0.4);
  }
  50% {
    color: #ffaaaa;
    text-shadow: 0 0 12px rgba(56,128,244,1), 0 0 28px rgba(56,128,244,0.6), 0 0 48px rgba(56,128,244,0.2);
  }
}
.on-air-sep {
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  flex-shrink: 0;
  justify-content: flex-end;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-cta-secondary a,
.nav-cta a{
  background: var(--red);
  color: white;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-cta a:hover {
  background: var(--red-hot);
  transform: translateY(-2px);
  box-shadow: 0 0 60px var(--glow);
}
.nav-cta-secondary a {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
}

.nav-cta-secondary a:hover {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .04);
}


/* ─── HERO ─── */
.hero {
  padding: 100px 48px 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}


/* Radial glow behind hero text */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(29,111,232,0.14) 0%, transparent 70%);
  pointer-events: none;
}

/* Diagonal grid lines */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(29,111,232,0.12);
  border: 1px solid rgba(29,111,232,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red-hot);
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fade-up 0.7s ease both;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 10px;
  animation: fade-up 0.7s ease 0.1s both;
}
.hero-headline em {
  font-style: normal;
  color: var(--red);
  display: block;
}

.hero-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 3px;
  color: var(--text-dim);
  margin-bottom: 36px;
  animation: fade-up 0.8s ease 0.2s both;
}

.hero-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 40px;
  animation: fade-up 0.7s ease 0.2s both;
}

.hero-slot {
  max-width: 760px;
  margin: 0 auto 32px;
  color: var(--text-dim);
}

.hero-slot p,
.hero-slot ul,
.hero-slot ol {
  margin: 0 0 14px;
  line-height: 1.7;
}

.hero-slot a {
  color: var(--red-hot);
}

.home-page .hero-slot {
  margin: 0 0 32px;
}

/* Homepage keeps a distinct, larger hero treatment. */
.home-page .hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
}

.home-page .hero::before {
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 600px;
  background: radial-gradient(ellipse, rgba(29,111,232,0.18) 0%, transparent 70%);
}

.home-page .hero-inner {
  max-width: 1200px;
  width: 100%;
  text-align: left;
}

.home-page .hero-eyebrow {
  margin-bottom: 32px;
  animation: fade-up 0.8s ease both;
}

.home-page .hero-headline {
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.92;
  margin-bottom: 12px;
  animation: fade-up 0.8s ease 0.1s both;
}

.home-page .hero-sub {
  animation: fade-up 0.8s ease 0.2s both;
}

.home-page .hero-body {
  font-size: 18px;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 0 48px;
  font-weight: 400;
  animation: fade-up 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fade-up 0.8s ease 0.4s both;
  margin-bottom: 72px;
}

.home-page .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: 4px;
  transition: all 0.2s;
  box-shadow: 0 0 40px var(--glow);
}
.home-page .btn-primary:hover {
  background: var(--red-hot);
  box-shadow: 0 0 60px var(--glow), 0 8px 24px rgba(29,111,232,0.4);
  transform: translateY(-2px);
}

.home-page .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.home-page .btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

/* ─── EQUALIZER BARS ─── */
.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
  animation: fade-up 0.8s ease 0.5s both;
  margin-bottom: 16px;
  justify-content: center;
}
.home-page .equalizer{
  justify-content: left;
}

.eq-bar {
  width: 5px;
  border-radius: 2px 2px 0 0;
  background: var(--red);
  opacity: 0.7;
  animation: eq-dance var(--dur, 0.8s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
}


@keyframes eq-dance {
  from { height: var(--min, 8px); }
  to   { height: var(--max, 40px); }
}

.eq-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  animation: fade-up 0.8s ease 0.6s both;
}

/* ─── HERO STAT CARDS (floating right) ─── */
.home-page .hero-stats {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fade-left 1s ease 0.5s both;
}
@media (max-width: 1100px) { .home-page .hero-stats { display: none; } }

.stat-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 8px;
  padding: 18px 24px;
  min-width: 200px;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 1px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ─── SCROLL INDICATOR ─── */
.home-page .scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
  animation: fade-up 1s ease 1s both;
}
.home-page .scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ─── SECTION COMMON ─── */
section { position: relative; overflow: hidden; }

.home-page .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.home-page .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.home-page .section-tag::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--red);
}

.home-page .section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 20px;
}

.home-page .section-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 580px;
}

/* ─── DIAGONAL DIVIDER ─── */
.home-page .diagonal-divider {
  height: 80px;
  background: var(--bg2);
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
  margin-top: -1px;
}
.home-page .diagonal-divider-inv {
  height: 80px;
  background: var(--bg3);
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
  margin-top: -1px;
}

/* ─── FEATURES GRID ─── */
.features-section {
  background: var(--bg2);
  padding: 100px 0 120px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 64px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--bg2);
  padding: 36px 32px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature-card:hover { background: var(--bg3); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 40px; height: 40px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29,111,232,0.12);
  border: 1px solid rgba(29,111,232,0.2);
  border-radius: 10px;
  flex-shrink: 0;
}
.feature-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}
.feature-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-dim);
}
.feature-badge {
  display: inline-block;
  background: rgba(29,111,232,0.15);
  border: 1px solid rgba(29,111,232,0.25);
  color: var(--red-hot);
  font-size: 10px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  margin-top: 12px;
}

/* ─── BROADCAST CONTROL SECTION ─── */
.broadcast-section {
  background: var(--bg);
  padding: 100px 0;
}

.broadcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}
@media (max-width: 800px) { .broadcast-grid { grid-template-columns: 1fr; gap: 48px; } }

.format-clock {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
}
.clock-title {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}


.broadcast-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.broadcast-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.broadcast-item:last-child { border-bottom: none; }
.b-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--red);
  line-height: 1;
  min-width: 32px;
  margin-top: -2px;
}
.b-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}
.b-desc { font-size: 13px; color: var(--text-dim); line-height: 1.55; }

/* ─── VOICES / LANGUAGES ─── */
.voices-section {
  background: var(--bg2);
  padding: 100px 0;
}

.lang-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}
@media (max-width: 700px) { .lang-grid { grid-template-columns: repeat(2, 1fr); } }

.lang-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.2s;
}
.lang-card:hover {
  border-color: rgba(29,111,232,0.3);
  background: var(--bg4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--glow-sm);
}
.lang-flag { font-size: 28px; margin-bottom: 8px; display: block; }
.lang-name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.lang-sub { font-size: 11px; color: var(--text-muted); }

.voice-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 700px) { .voice-stat-row { grid-template-columns: 1fr; } }

.v-stat {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.v-stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.v-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.v-stat-num span { color: var(--red); }
.v-stat-label { font-size: 14px; color: var(--text-dim); line-height: 1.4; }

/* ─── ONREPEAT / MOBILE ─── */
.mobile-section {
  background: var(--bg);
  padding: 100px 0;
}

.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 64px;
}
@media (max-width: 800px) { .mobile-grid { grid-template-columns: 1fr; gap: 48px; } }

.phone-mockup {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 20px;
  width: 260px;
  margin: 0 auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px var(--glow-sm);
  position: relative;
  overflow: hidden;
}
.phone-screen {
  background: var(--bg4);
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/17;
  display: flex;
  flex-direction: column;
}
.phone-status {
  background: var(--bg);
  padding: 12px 16px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone-app-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--red);
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.phone-station {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.station-art {
  width: 42px; height: 42px;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.station-info { flex: 1; }
.station-name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.station-type { font-size: 11px; color: var(--text-muted); }
.station-live {
  font-size: 9px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 1px;
  color: var(--red-hot);
  border: 1px solid var(--red);
  padding: 2px 6px;
  border-radius: 2px;
}

.app-badges {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 20px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 14px;
  font-weight: 600;
}
.app-badge:hover {
  border-color: rgba(255,255,255,0.15);
  background: var(--bg4);
  transform: translateY(-2px);
}
.app-badge-icon { font-size: 22px; }

.mobile-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.mob-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.mob-feat-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(29,111,232,0.12);
  border: 1px solid rgba(29,111,232,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.mob-feat-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.mob-feat-desc { font-size: 13px; color: var(--text-dim); line-height: 1.5; }

/* ─── PRICING ─── */
.pricing-section {
  background: var(--bg2);
  padding: 100px 0;
}

.pricing-intro {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 24px 28px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-top: 36px;
  margin-bottom: 48px;
  max-width: 820px;
}
.pricing-intro strong { color: var(--text); }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  font-size: 14px;
}
.pricing-table th {
  background: var(--bg4);
  padding: 16px 20px;
  text-align: left;
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.pricing-table th:first-child { color: var(--red); }
.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(odd) td { background: rgba(255,255,255,0.015); }
.pricing-table tr:hover td { background: rgba(29,111,232,0.05); }
.price-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--red);
}
.listeners-val {
  font-weight: 600;
  color: var(--text);
  font-size: 13px;
}
.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: italic;
}

/* ─── LIVE EXAMPLES ─── */
.examples-section {
  background: var(--bg);
  padding: 100px 0;
}

.stations-desc-block {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 8px;
}
.stations-desc-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 14px;
}
.stations-desc-body {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.75;
}

.stations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 700px) { .stations-grid { grid-template-columns: 1fr; } }

.station-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 18px;
}
.station-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, var(--glow-sm), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.station-card:hover { border-color: rgba(29,111,232,0.30); }
.station-card:hover::before { opacity: 1; }
.station-card.is-playing { border-color: rgba(29,111,232,0.55); background: var(--bg3); }

/* Play button */
.station-play-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  position: relative;
  z-index: 1;
}
.station-play-btn:hover { background: var(--red-hot); transform: scale(1.07); }
.station-play-btn:active { transform: scale(0.96); }
.station-play-btn svg { width: 18px; height: 18px; fill: #fff; }
.station-play-btn .icon-play { display: block; }
.station-play-btn .icon-stop { display: none; }
.station-card.is-playing .station-play-btn { background: var(--red-dim); }
.station-card.is-playing .station-play-btn .icon-play { display: none; }
.station-card.is-playing .station-play-btn .icon-stop { display: block; }

/* Station info */
.station-info-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.station-type-badge {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2px 7px;
  margin-bottom: 6px;
}
.station-card-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.station-status {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  font-family: 'DM Mono', monospace;
  display: flex;
  align-items: center;
  gap: 6px;
}
.station-status .live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  display: inline-block;
  flex-shrink: 0;
}
.station-card.is-playing .station-status { color: var(--red-hot); }
.station-card.is-playing .live-dot {
  background: var(--red-hot);
  box-shadow: 0 0 6px var(--red-hot);
  animation: pulse-dot 1.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Equalizer bars (visible when playing) */
.station-eq {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  opacity: 0;
  transition: opacity 0.3s;
  position: relative;
  z-index: 1;
}
.station-card.is-playing .station-eq { opacity: 1; }
.station-eq span {
  display: block;
  width: 3px;
  background: var(--red);
  border-radius: 2px;
  animation: eq-bar 0.8s ease-in-out infinite alternate;
}
.station-eq span:nth-child(1) { animation-duration: 0.7s; animation-delay: 0s; }
.station-eq span:nth-child(2) { animation-duration: 0.9s; animation-delay: 0.1s; }
.station-eq span:nth-child(3) { animation-duration: 0.6s; animation-delay: 0.2s; }
.station-eq span:nth-child(4) { animation-duration: 1.0s; animation-delay: 0.05s; }
@keyframes eq-bar {
  from { height: 4px; }
  to   { height: 20px; }
}

/* ─── TRIAL CTA BAND ─── */
.trial-section {
  background: var(--red);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.trial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.trial-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.trial-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 2px;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.trial-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--red);
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 18px 40px;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }

/* ─── MODE PILLS ─── */
.mode-pills {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  animation: fade-up 0.8s ease 0.35s both;
}
.mode-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.25s;
  user-select: none;
}
.mode-pill:hover {
  border-color: rgba(29,111,232,0.3);
  background: var(--bg4);
}
.mode-pill.active {
  border-color: var(--red);
  background: rgba(29,111,232,0.1);
  box-shadow: 0 0 20px var(--glow-sm);
}
.mode-pill-icon { font-size: 22px; line-height: 1; }
.mode-pill-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 3px;
}
.mode-pill.active .mode-pill-title { color: var(--red-hot); }
.mode-pill-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.5px;
}

/* ─── HUMAN + AI SECTION ─── */
.human-ai-section {
  background: var(--bg2);
  padding: 100px 0 80px;
}

.hai-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-top: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .hai-split { grid-template-columns: 1fr; }
  .hai-divider { flex-direction: row; padding: 24px 0; }
  .hai-divider-line { flex: 1; height: 1px; width: auto !important; }
}

.hai-column {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}
.hai-human { border-top: 3px solid var(--gold); }
.hai-ai    { border-top: 3px solid var(--red); }

.hai-col-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.hai-col-icon {
  font-size: 32px;
  width: 56px; height: 56px;
  background: var(--bg4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hai-col-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.hai-human .hai-col-title { color: var(--gold-light); }
.hai-ai    .hai-col-title { color: var(--red-hot); }
.hai-col-sub {
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hai-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hai-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.hai-item:last-child { border-bottom: none; padding-bottom: 0; }
.hai-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(212,172,13,0.15);
  border: 1px solid rgba(212,172,13,0.3);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.hai-check-red {
  background: rgba(29,111,232,0.15);
  border-color: rgba(29,111,232,0.3);
  color: var(--red-hot);
}
.hai-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.hai-item-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

.hai-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  padding-top: 80px;
}
.hai-divider-line {
  width: 1px;
  flex: 1;
  background: var(--border);
}
.hai-divider-badge {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg4);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--red);
  flex-shrink: 0;
}

.hai-callout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(29,111,232,0.12), rgba(212,172,13,0.08));
  border: 1px solid rgba(29,111,232,0.25);
  border-radius: 12px;
  padding: 28px 32px;
}
.hai-callout-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}
.hai-callout-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 8px;
}
.hai-callout-body {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--bg2);
  padding: 100px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 64px;
}
@media (max-width: 800px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--bg4); }
.faq-chevron {
  font-size: 18px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-a {
  padding: 0 24px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--red); }

/* ─── FOOTER ─── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 12px;
  white-space: nowrap;
}
.footer-brand-name span { color: var(--red); }
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--red); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── ANIMATIONS ─── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-left {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── TICKER TAPE ─── */
.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
  z-index: 10;
  margin-top: 64px;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(56,128,244,0.9), 0 0 20px rgba(56,128,244,0.5);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ticker-item::after {
  content: '◆';
  font-size: 8px;
  opacity: 0.5;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── CATEGORY FILTER ─── */
.filter-bar{background:var(--bg2);border-bottom:1px solid var(--border);padding:20px 48px;display:flex;justify-content:center;gap:10px;flex-wrap:wrap;}
.filter-btn{font-family:'DM Mono',monospace;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;padding:8px 18px;border-radius:4px;border:1px solid rgba(255,255,255,.25);background:rgba(255,255,255,.04);color:rgba(255,255,255,.65);cursor:pointer;transition:all .2s;}
.filter-btn:hover{border-color:rgba(255,255,255,.5);color:#ffffff;background:rgba(255,255,255,.08);text-shadow:0 0 8px rgba(255,255,255,0.4);}
.filter-btn.active{background:rgba(29,111,232,.18);border-color:rgba(56,128,244,.6);color:#ffffff;text-shadow:0 0 10px rgba(56,128,244,0.9),0 0 20px rgba(56,128,244,0.5);}

/* ─── FAQ CONTENT ─── */
.faq-content{max-width:860px;margin:0 auto;padding:80px 48px 120px;}

.faq-category{margin-bottom:64px;}
.faq-category-header{display:flex;align-items:center;gap:14px;margin-bottom:32px;}
.faq-category-icon{width:40px;height:40px;background:rgba(29,111,232,.12);border:1px solid rgba(29,111,232,.2);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0;}
.faq-category-title{font-family:'Bebas Neue',sans-serif;font-size:32px;letter-spacing:1.5px;color:var(--text);}
.faq-category-sub{font-size:13px;color:var(--text-muted);margin-top:2px;}

.faq-category .faq-list{display:flex;flex-direction:column;gap:0;border:1px solid var(--border);border-radius:12px;overflow:hidden;}

.faq-category .faq-item{
  background:var(--bg2);
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
}
.faq-category .faq-item:last-child{border-bottom:none;}

.faq-category .faq-q{display:flex;align-items:center;justify-content:space-between;padding:22px 28px;font-size:15px;font-weight:600;color:var(--text);cursor:pointer;transition:background .2s, color .2s;gap:16px;line-height:1.4;}
.faq-category .faq-q:hover{background:var(--bg3);}
.faq-category .faq-chevron{width:24px;height:24px;border-radius:50%;background:rgba(255,255,255,.05);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:14px;color:var(--text-muted);transition:all .25s;}

.faq-category .faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease, padding .25s ease;}
.faq-category .faq-a-inner{padding:0 28px 22px;font-size:14px;line-height:1.8;color:var(--text-dim);}
.faq-category .faq-a-inner a{color:var(--red-hot);text-decoration:none;border-bottom:1px solid rgba(56,128,244,.3);}
.faq-category .faq-a-inner a:hover{border-bottom-color:var(--red-hot);}
.faq-category .faq-a-inner code{font-family:'DM Mono',monospace;font-size:12px;background:var(--bg3);border:1px solid var(--border);border-radius:3px;padding:1px 6px;color:var(--red-hot);}

.faq-category .faq-item.open .faq-q{color:var(--red-hot);background:var(--bg3);}
.faq-category .faq-item.open .faq-chevron{background:rgba(29,111,232,.15);border-color:rgba(29,111,232,.3);color:var(--red-hot);transform:rotate(45deg);}
.faq-category .faq-item.open .faq-a{max-height:600px;}

/* ─── CTA ─── */
.cta-section{background:var(--bg2);border-top:1px solid var(--border);padding:80px 48px;text-align:center;position:relative;overflow:hidden;}
.cta-section::before{content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:700px;height:300px;background:radial-gradient(ellipse,rgba(29,111,232,.12) 0%,transparent 70%);pointer-events:none;}
.cta-inner{position:relative;z-index:2;max-width:640px;margin:0 auto;}
.cta-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(40px,5vw,72px);letter-spacing:2px;line-height:.95;color:var(--text);margin-bottom:16px;}
.cta-title em{font-style:normal;color:var(--red);}
.cta-body{font-size:16px;line-height:1.7;color:var(--text-dim);margin-bottom:36px;}
.cta-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}
.btn-primary{display:inline-flex;align-items:center;gap:8px;background:var(--red);color:white;text-decoration:none;font-weight:700;font-size:14px;padding:14px 28px;border-radius:4px;transition:all .2s;box-shadow:0 0 40px var(--glow);}
.btn-primary:hover{background:var(--red-hot);transform:translateY(-2px);box-shadow:0 0 60px var(--glow);}
.btn-secondary{display:inline-flex;align-items:center;gap:8px;background:transparent;color:var(--text);text-decoration:none;font-weight:600;font-size:14px;padding:13px 24px;border-radius:4px;border:1px solid var(--border);transition:all .2s;}
.btn-secondary:hover{border-color:rgba(255,255,255,.2);background:rgba(255,255,255,.04);}

/* ─── CONTACT BAND ─── */
.contact-band{background:var(--bg3);border:1px solid var(--border);border-left:4px solid var(--gold);border-radius:12px;padding:28px 32px;margin:0 48px 48px;max-width:860px;margin-left:auto;margin-right:auto;display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;}
.contact-band-text p{font-size:15px;color:var(--text-dim);line-height:1.6;}
.contact-band-text strong{color:var(--text);}

/* ─── VIDEO SECTION ─── */
.video-section {
  background: var(--bg2);
  padding: 80px 48px 100px;
}
.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--red);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 16px;
}
.section-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 48px;
}

.video-frame-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 80px var(--glow-sm);
  aspect-ratio: 16/9;
  background: var(--bg3);
}
.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.video-label-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-hot);
  animation: pulse-dot 1.4s ease-in-out infinite;
  box-shadow: 0 0 6px var(--red-hot);
}

.video-tabs {
  margin-top: 24px;
}

.video-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.video-tab-btn {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  background: var(--bg3);
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.video-tab-btn:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}

.video-tab-btn.is-active {
  color: #ffffff;
  border-color: rgba(56,128,244,0.6);
  background: rgba(29,111,232,0.18);
  text-shadow: 0 0 8px rgba(56,128,244,0.7);
}

.video-tabs-frame {
  margin-bottom: 18px;
}

.video-tabs-active-body {
  margin-top: 10px;
  max-width: 100%;
}

/* ─── DEMO CREDENTIALS ─── */
.demo-section {
  background: var(--bg);
  padding: 80px 48px;
}
.demo-cred-block {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  padding: 36px 40px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
  align-items: start;
}
@media (max-width: 700px) { .demo-cred-block { grid-template-columns: 1fr; } }
.demo-cred-intro {
  grid-column: 1 / -1;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.demo-cred-intro strong { color: var(--text); }
.cred-field label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(56,128,244,0.9), 0 0 20px rgba(56,128,244,0.5);
  display: block;
  margin-bottom: 8px;
}
.cred-value {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
}
.cred-value code {
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(56,128,244,0.9), 0 0 20px rgba(56,128,244,0.5);
  letter-spacing: 1px;
  flex: 1;
}
.copy-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
}
.copy-btn:hover { border-color: var(--red); color: var(--red); }
.copy-btn.copied { border-color: #27ae60; color: #27ae60; }
.demo-reset-notice {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(56,128,244,0.9), 0 0 20px rgba(56,128,244,0.5);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.5px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.demo-reset-notice svg { flex-shrink: 0; color: var(--gold); }

/* ─── WHAT YOU'LL SEE ─── */
.walkthrough-section {
  background: var(--bg2);
  padding: 80px 48px 100px;
}
.walkthrough-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 56px;
}
@media (max-width: 900px) { .walkthrough-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .walkthrough-grid { grid-template-columns: 1fr; } }
.wt-card {
  background: var(--bg2);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.wt-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.wt-card:hover { background: var(--bg3); }
.wt-card:hover::before { transform: scaleX(1); }
.wt-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: rgba(29,111,232,0.25);
  margin-bottom: 12px;
}
.wt-icon {
  width: 40px; height: 40px;
  background: rgba(29,111,232,0.12);
  border: 1px solid rgba(29,111,232,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}
.wt-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.wt-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-dim);
}

/* ─── FORM ─── */
.form-section {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-section:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.field-group { display: flex; flex-direction: column; gap: 5px; }
.field-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
}
.field-required { color: var(--red-hot); margin-left: 2px; }

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea,
select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(29,111,232,0.1);
  background: var(--bg4);
}
input::placeholder { color: var(--text-muted); }
/* Submit */
.form-section input[type="submit"]{
  width: 100%;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 15px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 32px var(--glow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-section input[type="submit"]:hover {
  background: var(--red-hot);
  box-shadow: 0 0 48px var(--glow), 0 8px 20px rgba(29,111,232,0.3);
  transform: translateY(-1px);
}
.form-section input[type="submit"]:active { transform: translateY(0); }

/* Field errors */
.field-error { font-size: 11px; color: var(--red-hot); display: none; margin-top: 2px; }
.field-group.has-error input,
.field-group.has-error select { border-color: rgba(56,128,244,0.6); }
.field-group.has-error .field-error { display: block; }
.wpcf7-not-valid-tip{
  font-size: 11px; color: var(--red-hot); margin-top: 2px;
}
.wpcf7-response-output{
  display: none;
}

.section-slot {
  margin-top: 28px;
}

.section-bg-lighter {
  background: var(--bg2);
}

.section-bg-darker {
  background: var(--bg);
}

/* ─── POSTS PAGE ─── */
.posts-page-main {
  background: var(--bg);
}

.posts-page-hero .hero-inner {
  max-width: 1000px;
}

.posts-page-listing {
  padding: 0 0 90px;
}

.posts-page-listing-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 48px;
}

.press-post-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 30px;
  margin-bottom: 20px;
}

.press-post-card-title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  margin: 0 0 12px;
}

.press-post-card-title a {
  color: var(--text);
  text-decoration: none;
}

.press-post-card-title a:hover {
  color: var(--red-hot);
}

.press-post-card-excerpt {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.press-post-card-excerpt p:last-child {
  margin-bottom: 0;
}
.press-post-card-excerpt p{
  margin: 1em 0;
}
.press-post-card-excerpt a{
  color: var(--red-hot);
  text-decoration: none;
}

.press-post-card-footer {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.press-post-meta {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.press-post-meta a {
  color: var(--text-muted);
  text-decoration: none;
}

.press-post-meta a:hover {
  color: var(--red-hot);
}

.press-post-meta-sep {
  margin: 0 7px;
}

.press-post-read-more {
  color: var(--red-hot);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.press-post-read-more:hover {
  color: var(--text);
}

.posts-page-pagination {
  margin-top: 34px;
}

.posts-page-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.posts-page-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-dim);
  text-decoration: none;
  background: var(--bg2);
  font-size: 13px;
}

.posts-page-pagination .page-numbers.current,
.posts-page-pagination .page-numbers:hover {
  color: #fff;
  border-color: rgba(56,128,244,0.6);
  background: rgba(29,111,232,0.22);
}

.posts-page-empty {
  color: var(--text-dim);
  font-size: 15px;
}

.single-post-nav {
  margin-top: 20px;
}

.single-post-nav-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.single-post-nav-item {
  min-height: 100%;
}

.single-post-nav-next {
  text-align: right;
}

.single-post-nav-link {
  display: block;
  text-decoration: none;
  color: var(--text-dim);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  line-height: 1.5;
  font-size: 13px;
}

.single-post-nav-link:hover {
  color: var(--text);
  border-color: rgba(56,128,244,0.45);
  background: var(--bg3);
}


/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 0 32px; gap: 16px; }
  .nav-links { gap: 20px; }
  .on-air-station { max-width: 140px; }
}
@media (max-width: 768px) {
  nav {
    padding: 0 16px;
    gap: 8px;
    grid-template-columns: auto 1fr auto;
    height: 56px;
  }
  .nav-logo {
    font-size: 18px;
    letter-spacing: 1.5px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .nav-toggle { display: inline-flex; justify-self: end; }
  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(5,8,16,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 16px 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    z-index: 101;
  }
  nav.is-open .nav-links { display: flex; }
  .nav-links li { list-style: none; }
  .nav-links a {
    display: block;
    padding: 10px 8px;
    border-radius: 4px;
  }
  .nav-links a:hover { background: rgba(255,255,255,0.04); }
  .on-air-station, .on-air-sep { display: none; }
  .on-air { justify-content: flex-end; }
  .ticker-wrap {
    margin-top: 56px;
  }
  .hero { padding: 90px 24px 60px; }
  .home-page .hero { padding: 100px 24px 60px; }
  .home-page .section-inner { padding: 0 24px; }
  .posts-page-listing-inner { padding: 0 24px; }
  .single-post-nav-inner { grid-template-columns: 1fr; }
  .single-post-nav-next { text-align: left; }
  .trial-inner { padding: 0 24px; }
  .footer-inner { padding: 0 24px; }
}
