:root {
  --bg: #040b0a;
  --panel: #091211;
  --panel2: #0d1418;

  --text: #f6f7f4;
  --muted: #b6c0b8;
  --line: #1d3029;

  --yellow: #ffe32a;
  --green: #76b943;
  --red: #ff2e1f;
}

/* =========================
   RESET
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  background:
    radial-gradient(
      circle at 15% 10%,
      #10251f 0,
      #040b0a 34%,
      #020706 100%
    );
  color: var(--text);
}

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

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

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;

  display: flex;
  align-items: center;
  gap: 26px;

  padding: 14px 5.5%;

  background: rgba(3, 10, 9, 0.9);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 245px;
  height: auto;
}

.main-nav {
  margin-left: auto;

  display: flex;
  gap: 30px;

  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.main-nav a {
  padding: 14px 0;
  color: #e8ede8;
}

.main-nav .active,
.main-nav a:hover {
  color: var(--yellow);
  border-bottom: 3px solid var(--yellow);
}

.live-btn {
  background: var(--red);

  padding: 14px 24px;
  border-radius: 8px;

  text-transform: uppercase;
  font-weight: 900;

  box-shadow: 0 10px 24px rgba(255, 46, 31, 0.25);
}

.live-btn span {
  display: inline-block;

  width: 9px;
  height: 9px;

  margin-right: 8px;

  background: white;
  border-radius: 50%;
}

.menu-toggle {
  display: none;

  background: none;
  border: 0;

  color: white;
  font-size: 28px;
}

/* =========================
   HERO
========================= */

.hero {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 60px;
  align-items: center;

  padding: 42px 6% 58px;

  border-bottom: 1px solid var(--line);
}

.hero h1 {
  margin: 10px 0 20px;

  font-size: 58px;
  line-height: 1.05;
  letter-spacing: 0.02em;

  text-transform: uppercase;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-copy p {
  color: #d6ddd8;

  font-size: 18px;
  line-height: 1.65;
}

.eyebrow,
.section-kicker {
  color: var(--green);

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;

  text-transform: uppercase;
}

/* =========================
   VIDEO CARD
========================= */

.video-card {
  overflow: hidden;

  background: #030606;
  border: 1px solid #13221e;
  border-radius: 16px;

  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.video-poster {
  position: relative;

  aspect-ratio: 16 / 8.4;
  background: #000;
}

.video-poster img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.play {
  position: absolute;
  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  width: 78px;
  height: 78px;

  border: 0;
  border-radius: 50%;

  background: rgba(255, 227, 42, 0.92);

  font-size: 34px;
  color: #111;

  padding-left: 6px;
  cursor: pointer;
}

.player-bar {
  display: flex;
  align-items: center;
  gap: 18px;

  height: 48px;
  padding: 0 26px;

  background: linear-gradient(90deg, #050606, #101010);
}

.player-bar .dot {
  width: 8px;
  height: 8px;

  background: red;
  border-radius: 50%;
}

.player-bar .screen {
  margin-left: auto;
}

/* =========================
   BUTTONS
========================= */

.actions {
  display: flex;
  gap: 16px;

  margin-top: 34px;
}

.btn,
button {
  border-radius: 9px;

  font-weight: 900;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 32px;
}

.primary,
form button {
  background: var(--yellow);
  color: #111;
}

.ghost {
  border: 1px solid #315244;
  color: white;
}

/* =========================
   SECTIONS
========================= */

.mission,
.videos,
.schedule {
  padding: 56px 6%;

  background: rgba(8, 14, 17, 0.65);
  border-bottom: 1px solid var(--line);
}

.mission h2,
.videos h2,
.schedule h2 {
  margin: 8px 0 16px;
  font-size: 32px;
}

.mission p {
  max-width: 920px;

  color: #d3dbd5;
  line-height: 1.75;
}

/* =========================
   STATS
========================= */

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

  max-width: 760px;
  margin-top: 30px;
}

.stats div {
  padding: 24px;

  background: #07100f;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.stats strong {
  display: block;

  font-size: 34px;
  color: var(--yellow);
}

.stats span {
  color: var(--muted);
}

/* =========================
   SECTION HEAD
========================= */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;

  margin-bottom: 24px;
}

.section-head a {
  color: var(--green);
  font-weight: 800;
}

/* =========================
   VIDEO GRID
========================= */

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

.video-item img {
  width: 100%;

  aspect-ratio: 16 / 9;
  object-fit: cover;

  border: 1px solid #25362f;
  border-radius: 8px;
}

.video-item h3 {
  margin: 16px 0 8px;
  font-size: 20px;
}

.video-item p {
  margin: 0;
  color: var(--muted);
}

/* =========================
   SCHEDULE
========================= */

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

.schedule-list div {
  padding: 24px;

  background: #07100f;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.schedule-list time {
  display: block;

  margin-bottom: 8px;

  color: var(--yellow);
  font-size: 28px;
  font-weight: 900;
}

/* =========================
   CONTACT
========================= */

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;

  gap: 0;

  background: #07100f;
  border-bottom: 1px solid var(--line);
}

.contact-panel > div {
  padding: 34px 6%;
  border-right: 1px solid var(--line);
}

.contact-panel h2 {
  margin: 0 0 14px;
  font-size: 30px;
}

.contact-panel p,
.contact-panel dd {
  color: #d2dad3;
}

.contact-panel dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;

  margin: 20px 0;
}

.contact-panel dt {
  color: var(--muted);
  font-weight: 800;
}

/* =========================
   FORM
========================= */

form {
  display: grid;
  gap: 14px;

  margin-top: 26px;
}

input {
  height: 48px;

  padding: 0 16px;
  border: 0;

  font: inherit;
}

form button {
  height: 48px;

  border: 0;
  cursor: pointer;
}

/* =========================
   SOCIAL ICONS
========================= */

.icons {
  display: flex;
  gap: 16px;

  margin: 26px 0;
}

.icons a {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  background: #14231f;
  border-radius: 10px;

  font-weight: 900;
}

.icons a:nth-child(1) {
  background: #fb1b12;
}

.icons a:nth-child(2) {
  background: #2470d8;
}

.icons a:nth-child(3) {
  background: #c846d6;
}

.icons a:nth-child(4) {
  background: #22c55e;
  color: #06250f;
  font-size: 11px;
}

/* =========================
   FOOTER
========================= */

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 18px 6%;

  background: #050908;

  color: #b6c0b8;
  font-size: 13px;
}

footer img {
  width: 180px;
}

footer nav {
  display: flex;
  gap: 18px;

  text-transform: uppercase;
  font-weight: 800;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    flex-direction: column;

    position: absolute;
    left: 0;
    right: 0;
    top: 72px;

    padding: 20px 6%;

    background: #030a09;
  }

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

  .live-btn {
    display: none;
  }

  .brand img {
    width: 190px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .video-grid,
  .stats,
  .schedule-list,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}