* {
  box-sizing: border-box;
}

:root {
  --bg: #07111f;
  --panel: #0d1b2a;
  --panel-2: #13263b;
  --text: #e6edf3;
  --muted: #b8c6d8;
  --accent: #10d3c8;
  --accent-2: #ff8b2c;
  --green: #2ac66d;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f9fc;
  color: #172033;
  line-height: 1.6;
}

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #04111b;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 900;
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  color: #d7e1e9;
  text-decoration: none;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 28px;
}

.hero {
    min-height: 76vh;
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;

    background-image: url("background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: var(--text);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% -10%;
  height: 60%;
  background:
    linear-gradient(90deg, rgba(42,198,109,.18), rgba(16,211,200,.12), rgba(255,139,44,.18));
  transform: rotate(-5deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 110px 0;
  max-width: 840px;
}

.eyebrow,
.kicker {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 800;
}

.eyebrow {
  color: var(--accent);
}

.kicker {
  color: #148a83;
  margin-bottom: 6px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .95;
  margin: 16px 0 24px;
  max-width: 900px;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  max-width: 720px;
  color: #d6e5f4;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
}

.hero-actions-below {
  background: var(--bg);
  padding: 28px 0;
}

.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, opacity .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: .92;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06111e;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.35);
  color: var(--text);
}

.section {
  padding: 90px 0;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 5px 0 24px;
}

.dark-section {
  background: var(--bg);
  color: var(--text);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.live-dot {
  width: 14px;
  height: 14px;
  background: #ff3e4d;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 62, 77, .15);
}

.video-card {
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}

.video-status {
  padding: 14px 18px;
  background: #101b29;
  color: #c8d7e6;
  font-size: .95rem;
}

.stream-note {
  color: var(--muted);
  font-size: .95rem;
  margin-top: 18px;
}

.radio-section {
  background: #0d1b2a;
  color: var(--text);
}

.audio-card {
  background: #101b29;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}

.audio-copy h3 {
  margin: 0 0 6px;
  font-size: 1.4rem;
}

.audio-copy p {
  margin: 0 0 20px;
  color: var(--muted);
}

.audio-card audio {
  width: 100%;
  display: block;
}

.audio-status {
  margin-top: 14px;
  color: #c8d7e6;
  font-size: .95rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-card,
.schedule-item {
  background: #f0f3f5;
  border: 1px solid #e6ebf2;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(34, 47, 62, .06);
}

.feature-card h3,
.schedule-item h3 {
  margin-top: 0;
}

.alt-section {
  background: #edf3f8;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.schedule-item span {
  color: #148a83;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-section {
  background: linear-gradient(135deg, #0c2438, #07111f);
  color: var(--text);
}

.contact-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

footer {
  background: #040b12;
  color: #9fb0c2;
  padding: 28px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    background: #07111f;
    flex-direction: column;
    padding: 22px 4%;
    border-top: 1px solid rgba(255,255,255,.08);
  }

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

  .brand-text {
    font-size: .95rem;
  }

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

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

  .contact-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-content {
    padding: 85px 0;
  }
}
