:root {
  color-scheme: dark;
  --ink: #f8f2e6;
  --muted: #aebbd0;
  --navy-950: #030914;
  --navy-900: #07162b;
  --navy-800: #0b2440;
  --blue: #4aa7d8;
  --red: #e14754;
  --cream: #f0dfbd;
  --line: rgba(208, 226, 245, 0.16);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--navy-950);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 75% 12%,
      rgba(45, 120, 167, 0.22),
      transparent 31rem
    ),
    linear-gradient(180deg, #07162b 0%, #06101f 52%, #030914 100%);
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.65rem 0.9rem;
  color: #07162b;
  background: #fff;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
footer {
  width: min(1240px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.brand-lockup {
  display: flex;
  align-items: center;
  padding: 0.42rem 0.65rem;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0.8rem;
  box-shadow: 0 0.7rem 2.2rem rgba(0, 0, 0, 0.24);
}
.brand-logo {
  display: block;
  width: clamp(10.5rem, 18vw, 13.5rem);
  height: auto;
}

.status-pill {
  margin: 0;
  padding: 0.55rem 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill span {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: #65ce8b;
  box-shadow: 0 0 0.8rem rgba(101, 206, 139, 0.85);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  width: min(1120px, 100%);
  min-height: 680px;
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 7vw, 6rem);
  z-index: -1;
  content: '';
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(
    ellipse at center,
    rgba(35, 105, 148, 0.18),
    transparent 68%
  );
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.6rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(4.2rem, 9vw, 7.8rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.065em;
}

h1 em {
  color: var(--cream);
  font-weight: 400;
}

.hero-intro {
  max-width: 43rem;
  margin: 0 auto 2.35rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.opening-day {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.opening-day strong,
.opening-day span {
  display: block;
}
.opening-day strong {
  font-size: 0.92rem;
}
.opening-day div > span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
}
.opening-mark {
  width: 0.6rem;
  height: 0.6rem;
  flex: 0 0 auto;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0.9rem rgba(225, 71, 84, 0.72);
}

.game-pillars {
  position: relative;
  padding: clamp(5rem, 9vw, 8.5rem) max(1.5rem, calc((100vw - 1160px) / 2));
  background: rgba(3, 9, 20, 0.68);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 3.2rem;
}
.section-heading h2,
.final-call h2 {
  margin-bottom: 1rem;
  font-family: Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.pillar {
  position: relative;
  min-height: 390px;
  padding: 2rem;
  background: rgba(9, 27, 48, 0.5);
  border-right: 1px solid var(--line);
}
.pillar:last-child {
  border-right: 0;
}
.feature-pillar {
  background: linear-gradient(
    155deg,
    rgba(24, 67, 96, 0.72),
    rgba(8, 22, 39, 0.62)
  );
}
.number {
  color: #60758b;
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
}
.pillar h3 {
  margin-bottom: 0.75rem;
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
}
.pillar p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pillar-icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 3.5rem 0 2rem;
  border: 1px solid rgba(148, 184, 210, 0.35);
  border-radius: 50%;
}
.player-icon::before {
  position: absolute;
  top: 19px;
  left: 35px;
  width: 28px;
  height: 28px;
  content: '';
  background: var(--cream);
  border-radius: 50%;
}
.player-icon i {
  position: absolute;
  left: 24px;
  bottom: 17px;
  width: 50px;
  height: 32px;
  background: var(--red);
  border-radius: 50% 50% 30% 30%;
}
.pitch-icon::before {
  position: absolute;
  inset: 23px;
  content: '';
  background: #f3ead8;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #cabfa9;
}
.pitch-icon i,
.pitch-icon b {
  position: absolute;
  top: 32px;
  width: 2px;
  height: 35px;
  content: '';
  border-left: 2px dashed var(--red);
  border-radius: 50%;
}
.pitch-icon i {
  left: 37px;
  transform: rotate(-22deg);
}
.pitch-icon b {
  right: 37px;
  transform: rotate(22deg);
}
.club-icon::before,
.club-icon::after,
.club-icon i {
  position: absolute;
  bottom: 23px;
  width: 14px;
  background: var(--blue);
  content: '';
}
.club-icon::before {
  left: 22px;
  height: 23px;
}
.club-icon i {
  left: 43px;
  height: 42px;
}
.club-icon::after {
  right: 22px;
  height: 31px;
  background: var(--red);
}

.final-call {
  width: min(920px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(6rem, 12vw, 11rem) 0;
  text-align: center;
}
.final-brand {
  width: min(22rem, 80vw);
  margin: 0 auto 2.4rem;
  padding: 0.8rem 1rem;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.3);
}
.final-brand img {
  display: block;
  width: 100%;
  height: auto;
}
.final-call h2 {
  margin-bottom: 0.6rem;
}
.final-call > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

footer {
  min-height: 100px;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #708298;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
footer span:first-child {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 5rem;
  }
  .hero-copy {
    max-width: 760px;
    min-width: 0;
  }
  .pillar-grid {
    grid-template-columns: 1fr;
  }
  .pillar {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .pillar:last-child {
    border-bottom: 0;
  }
  .pillar-icon {
    margin-top: 2.5rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: min(100% - 2rem, 1240px);
    min-height: 80px;
    gap: 0.5rem;
  }
  .status-pill {
    width: 7.75rem;
    flex: 0 0 7.75rem;
    padding: 0;
    border: 0;
    font-size: 0.58rem;
    white-space: normal;
    text-align: right;
    line-height: 1.35;
  }
  .brand-lockup {
    padding: 0.32rem 0.48rem;
    border-radius: 0.65rem;
  }
  .brand-logo {
    width: clamp(8rem, 38vw, 10.25rem);
  }
  .hero {
    min-height: auto;
    padding-inline: 1.25rem;
  }
  h1 {
    font-size: clamp(3.2rem, 14vw, 4.2rem);
  }
  h1 em {
    font-size: 0.9em;
  }
  .opening-day {
    padding-inline: 0.2rem;
  }
  .game-pillars {
    padding-inline: 1.25rem;
  }
  .pillar {
    padding: 1.5rem;
  }
  footer {
    width: calc(100% - 2.5rem);
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
}
