:root {
  --navy: #10233d;
  --blue: #425197;
  --bright: #1079bf;
  --aqua: #1caebb;
  --ink: #172033;
  --muted: #667085;
  --surface: #f5f7fb;
  --line: #e1e6ef;
  --white: #ffffff;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}
a { color: inherit; }
.shell { width: min(calc(100% - 34px), var(--shell)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(225,230,239,.9);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -.025em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}
.nav nav { display: flex; align-items: center; gap: 26px; }
.nav nav a {
  text-decoration: none;
  color: #4e596b;
  font-size: .88rem;
  font-weight: 750;
}
.nav nav a:hover { color: var(--bright); }

.hero {
  overflow: hidden;
  padding: 92px 0 100px;
  background:
    radial-gradient(circle at 88% 12%, rgba(16,121,191,.10), transparent 29%),
    radial-gradient(circle at 70% 88%, rgba(28,174,187,.10), transparent 28%),
    linear-gradient(180deg, #ffffff, #f9fbfe);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 76px;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--bright);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow.light { color: #cfe9ff; }
.hero h1 {
  margin: 0 0 26px;
  font-size: clamp(3.8rem, 7.4vw, 6.9rem);
  line-height: .91;
  letter-spacing: -.065em;
}
.hero h1 span { color: var(--blue); }
.lede {
  max-width: 660px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}
.primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(16,35,61,.18);
}
.text-link { text-decoration: none; color: var(--bright); font-weight: 850; }

.hero-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.85);
  box-shadow: 0 24px 65px rgba(26,45,75,.10);
}
.network-title {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.network-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  min-height: 88px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  text-decoration: none;
}
.network-card + .network-card { margin-top: 12px; }
.network-card.live {
  border-color: rgba(16,121,191,.28);
  box-shadow: 0 10px 30px rgba(16,121,191,.08);
}
.network-card strong { display: block; font-size: 1.02rem; }
.network-card small { display: block; margin-top: 3px; color: var(--muted); }
.network-card.live small { color: var(--aqua); font-weight: 850; }
.network-card b { color: var(--bright); font-size: 1.3rem; }
.network-card i {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d6dce6;
}
.sport-icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--surface);
  font-size: 1.35rem;
}

.competitions { padding: 98px 0; }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head.compact { max-width: 680px; }
.section-head h2 {
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: .98;
  letter-spacing: -.052em;
}
.section-head p { margin: 0; color: var(--muted); font-size: 1.08rem; }

.competition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.competition-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}
.competition-card.featured {
  border-color: rgba(66,81,151,.28);
  box-shadow: 0 18px 42px rgba(35,48,80,.08);
}
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.card-icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--surface);
  font-size: 1.4rem;
}
.card-icon.cycling { background: rgba(16,121,191,.09); }
.status {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: .70rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.live-status { background: rgba(28,174,187,.12); color: #147e88; }
.competition-card h3 {
  margin: 30px 0 5px;
  font-size: 2rem;
  letter-spacing: -.04em;
}
.competition-card .subtitle {
  min-height: 52px;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 800;
}
.competition-card p:not(.subtitle) { color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0 26px; }
.tags span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 750;
}
.card-link {
  margin-top: auto;
  text-decoration: none;
  color: var(--bright);
  font-weight: 900;
}
.card-link span { margin-left: 6px; }
.muted-link { color: #9aa4b5; }

.how { padding: 94px 0; background: var(--surface); }
.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
}
.principles article { min-height: 230px; padding: 28px; }
.principles article + article { border-left: 1px solid var(--line); }
.principles span {
  color: var(--bright);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .11em;
}
.principles h3 { margin: 54px 0 10px; font-size: 1.35rem; }
.principles p { margin: 0; color: var(--muted); }

.cta { padding: 94px 0; }
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 54px;
  border-radius: 28px;
  background: var(--navy);
  color: var(--white);
}
.cta-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.05em;
}
.cta-panel p { margin: 0; color: rgba(255,255,255,.75); }
.light-button { flex: 0 0 auto; background: var(--white); color: var(--navy); }

footer { border-top: 1px solid var(--line); padding: 42px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { margin-bottom: 10px; }
.footer-grid p { color: var(--muted); }
.footer-links { display: grid; align-content: start; gap: 9px; }
.footer-links strong { margin-bottom: 5px; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-links a, .footer-links span {
  color: var(--muted);
  text-decoration: none;
  font-size: .88rem;
}
.footer-links a:hover { color: var(--bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #8b95a6;
  font-size: .79rem;
}

@media (max-width: 950px) {
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .competition-grid { grid-template-columns: 1fr; }
  .competition-card { min-height: auto; }
  .competition-card .subtitle { min-height: auto; }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .principles article:nth-child(3) { border-left: 0; }
  .principles article:nth-child(n+3) { border-top: 1px solid var(--line); }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 24px), var(--shell)); }
  .nav { min-height: 64px; }
  .nav nav a:not(:last-child) { display: none; }
  .hero { padding: 58px 0 68px; }
  .hero h1 { font-size: clamp(3.25rem, 16vw, 5.2rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .text-link { text-align: center; }
  .hero-panel { padding: 18px; border-radius: 22px; }
  .competitions, .how, .cta { padding: 68px 0; }
  .competition-card { padding: 24px; }
  .principles { grid-template-columns: 1fr; }
  .principles article { min-height: auto; }
  .principles article + article { border-left: 0; border-top: 1px solid var(--line); }
  .principles h3 { margin-top: 28px; }
  .cta-panel { align-items: flex-start; flex-direction: column; padding: 34px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}
