:root {
  --navy: #0e2a47;
  --navy-deep: #0a2038;
  --ink: #12283f;
  --bg: #ffffff;
  --panel: #f6f8fb;
  --muted: #5b6b7c;
  --line: rgba(14, 42, 71, 0.12);
  --line-soft: rgba(14, 42, 71, 0.08);
  --white: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.site-header {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--navy-deep);
  position: sticky;
  top: 0;
  background: var(--navy);
  z-index: 20;
  margin: 0 calc(clamp(20px, 5vw, 64px) * -1);
}

.brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  color: var(--white);
  white-space: nowrap;
}

nav {
  display: flex;
  gap: 26px;
  margin-left: 12px;
  font-size: 14.5px;
  font-weight: 500;
}

nav a { color: rgba(255, 255, 255, 0.7); }
nav a:hover { color: var(--white); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 56px;
  align-items: stretch;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.hero-copy,
.hero-panel,
.panel,
.match-card,
.player-card {
  border-top: 2px solid var(--navy);
  background: var(--white);
}

.hero-copy {
  padding: 0;
}

.eyebrow,
.panel-kicker {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11.5px;
  font-weight: 700;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--navy);
}

h2 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.22;
  color: var(--navy);
}

p, small {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 680px;
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 700;
}

.button.primary {
  background: var(--navy);
  color: var(--white);
}

.button.primary:hover { background: var(--navy-deep); }

.button.secondary {
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--white);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 390px;
  padding: 32px;
  background: var(--panel);
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  border-top: 4px solid var(--navy);
}

.hero-panel span {
  width: fit-content;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.feature-grid,
.insight-grid,
.player-grid,
.stat-grid,
.split-section {
  display: grid;
  gap: 28px;
}

.feature-grid,
.insight-grid,
.player-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel,
.player-card,
.match-card {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: var(--white);
}

.panel span {
  color: var(--navy);
  font-weight: 700;
}

.report-section { padding-top: 64px; }
.match-card { margin: 28px 0; background: var(--panel); }

.match-meta,
.scoreline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.match-meta {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 13.5px;
}

.scoreline { text-align: center; }
.scoreline h2 { margin-bottom: 0; font-size: clamp(26px, 4vw, 44px); }
.scoreline span { color: var(--muted); }

.score {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 82px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.05em;
}

.score span { padding: 0 8px; color: var(--muted); }

.stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.stat-card {
  padding: 18px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line-soft);
}

.stat-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.stat-card strong {
  color: var(--navy);
  font-size: 24px;
}

.player-card {
  position: relative;
  min-height: 250px;
}

.player-card span {
  color: var(--muted);
  font-size: 13px;
}

.player-score {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
}

.large-panel { min-height: 250px; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 42px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer span {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
}

footer p { max-width: 560px; margin: 0; }

@media (max-width: 860px) {
  main { width: min(100%, calc(100% - 32px)); padding: 0; }
  .site-header, nav, footer, .match-meta, .scoreline {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-header { margin: 0 -16px; padding: 18px 16px; gap: 14px; }
  nav { gap: 12px; margin-left: 0; }
  .hero, .feature-grid, .insight-grid, .player-grid, .split-section, .stat-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; padding-top: 36px; gap: 28px; }
  .hero-panel { min-height: auto; padding: 24px; }
  .score { justify-content: flex-start; }
}
