:root {
  --navy: #07142f;
  --blue: #0349d8;
  --blue-light: #2774ff;
  --red: #f21625;
  --cream: #f5f2eb;
  --white: #fff;
  --muted: #9aa7c2;
  --line: rgba(255,255,255,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--navy);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.section-anchor { scroll-margin-top: 100px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  padding: 0 clamp(24px, 6vw, 96px);
  background: rgba(7,20,47,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand img { display: block; width: 92px; height: 68px; object-fit: contain; }
.main-menu { display: flex; align-items: center; gap: 10px; }
.main-menu a {
  padding: 12px 18px;
  color: #c8d2e8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  transition: .2s ease;
}
.main-menu a:hover, .main-menu a.active { color: var(--white); background: rgba(255,255,255,.09); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px; background: white; }

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  padding: clamp(54px, 8vw, 108px) clamp(24px, 6vw, 96px) 90px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -180px;
  top: -150px;
  border-radius: 50%;
  background: rgba(0,72,216,.28);
  filter: blur(5px);
}
.hero::after {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -260px;
  width: 440px;
  height: 440px;
  border: 90px solid rgba(242,22,37,.08);
  border-radius: 50%;
}
.hero-copy, .player-shell { position: relative; z-index: 1; }
.hero-copy { max-width: 1180px; margin: 0 auto 46px; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: #c9d6ef; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.live-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(242,22,37,.16); animation: pulse 1.8s infinite; }
.hero h1 { margin: 20px 0 18px; max-width: 850px; font-size: clamp(46px, 7vw, 92px); line-height: .96; letter-spacing: -.065em; }
.hero h1 span { color: var(--blue-light); }
.hero-copy > p { max-width: 580px; margin: 0; color: #aebbd5; font-size: clamp(16px, 2vw, 20px); line-height: 1.7; }

.player-shell {
  max-width: 1180px;
  margin: auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: #030917;
  box-shadow: 0 40px 100px rgba(0,0,0,.38);
}
.player-topline, .player-footer { display: flex; align-items: center; gap: 16px; min-height: 58px; padding: 0 22px; }
.player-topline { border-bottom: 1px solid var(--line); }
.player-topline p { margin: 0; font-size: 14px; font-weight: 700; }
.player-topline time { margin-left: auto; color: var(--muted); font-size: 13px; }
.live-badge { display: flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 8px; background: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.live-badge span { width: 7px; height: 7px; border: 2px solid white; border-radius: 50%; }
.video-frame { position: relative; aspect-ratio: 16/9; background: radial-gradient(circle at center, #102555, #020611 70%); }
.video-frame video { width: 100%; height: 100%; display: block; object-fit: contain; background: #02050c; }
.stream-state { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px; text-align: center; background: radial-gradient(circle at 50% 40%, rgba(13,60,155,.55), rgba(2,6,17,.95) 65%); }
.stream-state.hidden { display: none; }
.stream-state img { width: clamp(110px, 18vw, 210px); height: 130px; object-fit: contain; margin-bottom: 12px; filter: drop-shadow(0 15px 25px rgba(0,0,0,.25)); }
.stream-state strong { font-size: clamp(20px, 3vw, 30px); }
.stream-state span { max-width: 500px; margin: 8px 0 20px; color: var(--muted); font-size: 14px; }
.stream-state button { padding: 11px 18px; color: white; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(255,255,255,.08); cursor: pointer; }
.player-footer { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.quality { margin-left: auto; color: #b9c9e7; }
.signal { display: flex; align-items: flex-end; gap: 2px; height: 14px; }
.signal i { display: block; width: 3px; background: var(--blue-light); border-radius: 4px; }
.signal i:nth-child(1) { height: 5px; }.signal i:nth-child(2) { height: 9px; }.signal i:nth-child(3) { height: 14px; }

.info-section {
  display: grid;
  grid-template-columns: minmax(220px, .75fr) 1.25fr;
  gap: clamp(40px, 8vw, 120px);
  padding: 110px clamp(24px, 8vw, 140px);
  border-top: 1px solid var(--line);
}
.info-section:nth-of-type(2) { background: var(--cream); color: var(--navy); }
.section-number { color: var(--blue-light); font-size: 13px; font-weight: 800; }
.section-kicker { margin: 28px 0 10px; color: #66728a; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.info-section h2 { margin: 0; font-size: clamp(42px, 6vw, 72px); letter-spacing: -.06em; }
.info-card { align-self: end; padding: clamp(28px, 5vw, 54px); border-radius: 20px; background: white; color: var(--navy); box-shadow: 0 24px 70px rgba(4,18,50,.1); }
.info-section:nth-of-type(3) .info-card { color: white; background: rgba(255,255,255,.06); border: 1px solid var(--line); }
.info-card > p { margin: 0 0 30px; font-size: clamp(17px, 2vw, 22px); line-height: 1.65; }
.contact-link { display: inline-flex; align-items: center; gap: 18px; color: var(--blue); font-weight: 800; text-decoration: none; border-bottom: 2px solid currentColor; padding-bottom: 5px; }
.contact-link span { font-size: 22px; }
.contact-list { display: flex; flex-wrap: wrap; align-items: center; gap: 22px 34px; }
.masthead { padding-top: 18px; padding-bottom: 18px; }
.masthead div { display: flex; justify-content: space-between; gap: 30px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.masthead div:last-child { border: 0; }
.masthead span { color: var(--muted); font-size: 13px; }
.masthead strong { text-align: right; font-size: 14px; }

footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; padding: 36px clamp(24px, 6vw, 96px); border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
footer img { width: 68px; height: 50px; object-fit: contain; }
footer p { margin: 0; }
footer > span { text-align: right; }

@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(242,22,37,0); } }
@media (max-width: 760px) {
  .site-header { height: 74px; padding: 0 18px; }
  .brand img { width: 75px; height: 56px; }
  .menu-toggle { display: block; }
  .main-menu { position: absolute; top: 74px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 14px 18px 22px; background: rgba(7,20,47,.98); border-bottom: 1px solid var(--line); }
  .main-menu.open { display: flex; }
  .main-menu a { text-align: center; }
  .hero { min-height: auto; padding: 56px 18px 70px; }
  .hero h1 { font-size: clamp(43px, 14vw, 64px); }
  .player-shell { border-radius: 16px; }
  .player-topline { min-height: 52px; padding: 0 14px; }
  .player-topline p { font-size: 12px; }
  .player-topline time { display: none; }
  .player-footer { min-height: 46px; padding: 0 14px; }
  .stream-state img { height: 82px; }
  .stream-state span { display: none; }
  .info-section { grid-template-columns: 1fr; padding: 76px 20px; gap: 30px; }
  .info-card { padding: 28px 22px; }
  .masthead div { flex-direction: column; gap: 7px; }
  .masthead strong { text-align: left; }
  footer { grid-template-columns: 1fr auto; }
  footer p { display: none; }
}
