:root {
  --navy: #061b31;
  --navy-2: #0c2d4e;
  --orange: #c91f2f;
  --orange-2: #e23a45;
  --cream: #fff8ed;
  --sand: #f4e6d0;
  --white: #ffffff;
  --ink: #172233;
  --muted: #627086;
  --line: rgba(6, 27, 49, 0.16);
  --shadow: 0 24px 70px rgba(6, 27, 49, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 248, 237, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 122px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 72px) clamp(34px, 4vw, 46px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(6, 27, 49, 0.96), rgba(6, 27, 49, 0.82) 54%, rgba(217, 71, 31, 0.78)),
    radial-gradient(circle at 78% 24%, rgba(240, 106, 47, 0.46), transparent 30%),
    var(--navy);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -22vw;
  width: 48vw;
  min-width: 440px;
  aspect-ratio: 1;
  border: 34px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero-media {
  position: absolute;
  top: clamp(82px, 12vw, 126px);
  right: clamp(18px, 5vw, 78px);
  width: min(36vw, 430px);
  opacity: 0.18;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.hero-media img {
  width: 100%;
}

.hero-content,
.season-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1,
.section h2,
.rules-band h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(4.1rem, 10vw, 7.8rem);
}

.hero-copy {
  max-width: 700px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary,
.button.compact {
  color: var(--white);
  background: var(--orange);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
}

.button.compact {
  min-height: 42px;
  padding: 10px 16px;
}

.season-card {
  align-self: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.status-pill {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  color: var(--navy);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quick-grid div {
  min-height: 94px;
  padding: 14px;
  background: rgba(6, 27, 49, 0.56);
  border-radius: 8px;
}

.quick-grid strong {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 0.9;
}

.quick-grid .location-fact strong {
  font-size: clamp(1.7rem, 2.8vw, 2.1rem);
}

.quick-grid span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 700;
}

.section,
.rules-band {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

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

.section-subtitle {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  font-weight: 700;
}

.section h2,
.rules-band h2 {
  color: var(--navy);
  font-size: clamp(3rem, 7vw, 5.8rem);
}

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

.registration-card,
.choice-panel,
.map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(6, 27, 49, 0.09);
}

.registration-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
}

.registration-card.featured {
  color: var(--white);
  background: var(--navy);
}

.card-label {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.registration-card.featured .card-label {
  color: var(--orange-2);
}

.registration-card h3,
.choice-content h3,
.ref-panel h3 {
  margin: 16px 0 8px;
  color: inherit;
  font-size: 1.45rem;
}

.registration-card p,
.split-section p,
.location-section p,
.ref-panel p,
.choice-content p {
  color: var(--muted);
  margin: 0;
}

.registration-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.text-link {
  margin-top: auto;
  color: var(--orange);
  font-weight: 900;
  text-decoration: none;
}

.updates-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.9fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  background:
    linear-gradient(135deg, #ffffff 0%, #fff3e5 100%);
}

.standings-section {
  background:
    linear-gradient(135deg, #f7efe3 0%, #ffffff 100%);
}

.update-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 34px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 27, 49, 0.96), rgba(12, 45, 78, 0.86));
  border: 1px solid rgba(6, 27, 49, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(6, 27, 49, 0.14);
}

.update-card::before {
  content: "";
  position: absolute;
  top: -64px;
  right: -64px;
  width: 190px;
  aspect-ratio: 1;
  border: 24px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.update-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 54px);
  pointer-events: none;
}

.standings-card {
  background:
    linear-gradient(135deg, #9f1423, #e23a45);
}

.update-tag,
.update-card h3,
.update-card p {
  position: relative;
  z-index: 1;
}

.update-tag {
  width: fit-content;
  margin-bottom: auto;
  padding: 7px 11px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.update-card h3 {
  margin: 52px 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
}

.update-card p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.rulebook-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.9fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  background: var(--navy);
}

.rulebook-section h2 {
  color: var(--white);
}

.rulebook-section .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.rulebook-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 34px);
  color: var(--white);
  background:
    linear-gradient(135deg, #9f1423, #e23a45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.rulebook-card::before {
  content: "";
  position: absolute;
  top: -42px;
  right: -34px;
  width: 132px;
  height: 172px;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  transform: rotate(10deg);
}

.rulebook-card::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 25px;
  width: 68px;
  height: 7px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  box-shadow:
    0 18px 0 rgba(255, 255, 255, 0.2),
    0 36px 0 rgba(255, 255, 255, 0.18);
  transform: rotate(10deg);
}

.rulebook-card .update-tag,
.rulebook-card h3,
.rulebook-card p,
.rulebook-card .button {
  position: relative;
  z-index: 1;
}

.rulebook-card h3 {
  margin: 52px 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1;
}

.rulebook-card p {
  max-width: 560px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.8);
}

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

.included-section {
  background:
    linear-gradient(180deg, var(--white), #fff4e5);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.included-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 27, 49, 0.96), rgba(12, 45, 78, 0.9));
  border: 1px solid rgba(6, 27, 49, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(6, 27, 49, 0.14);
}

.included-item::before {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 148px;
  aspect-ratio: 1;
  border: 20px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.included-item::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 72px;
  height: 6px;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  transform: rotate(-16deg);
}

.included-item:nth-child(2),
.included-item:nth-child(5) {
  background:
    linear-gradient(135deg, #b91527, #e23a45);
}

.included-item:nth-child(3),
.included-item:nth-child(6) {
  background:
    linear-gradient(135deg, #0c2d4e, #2f6f73);
}

.included-item span {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  padding: 7px 10px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.included-item strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 330px;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.12;
}

.rules-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  color: var(--white);
  background: var(--navy);
}

.rules-band h2 {
  color: var(--white);
}

.rules-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rules-list span {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.split-section,
.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.split-section p,
.location-section p {
  max-width: 660px;
  font-size: 1.05rem;
}

.choice-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  overflow: hidden;
  background: var(--white);
}

.choice-button {
  min-height: 58px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #f8f1e7;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.choice-button.active {
  color: var(--white);
  background: var(--orange);
}

.choice-content {
  display: none;
  grid-column: 1 / -1;
  padding: 26px;
}

.choice-content.active {
  display: block;
}

.choice-content .button {
  margin-top: 18px;
}

.location-section {
  background: var(--white);
}

.map-card {
  min-height: 330px;
  display: grid;
  place-content: center;
  padding: 28px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(6, 27, 49, 0.92), rgba(217, 71, 31, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 58px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.13) 0 2px, transparent 2px 58px);
}

.map-card span {
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-family: "Bebas Neue", Impact, sans-serif;
  line-height: 0.9;
}

.map-card strong {
  color: var(--sand);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.referee-section {
  background: #f7efe3;
}

.ref-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ref-tab {
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.ref-tab.active {
  color: var(--white);
  background: var(--navy);
}

.ref-panel {
  display: none;
  max-width: 860px;
  margin-top: 18px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ref-panel.active {
  display: block;
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #041426;
}

.site-footer img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
}

.site-footer div {
  display: grid;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
}

.site-footer a {
  margin-left: auto;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .registration-grid,
  .included-grid,
  .rules-band,
  .updates-section,
  .rulebook-section,
  .split-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .included-item {
    aspect-ratio: auto;
    min-height: 150px;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-media {
    top: 92px;
    right: -40px;
    width: 310px;
  }

  .season-card {
    align-self: stretch;
  }
}

@media (max-width: 560px) {
  .brand span {
    font-size: 0.94rem;
  }

  .site-nav {
    gap: 16px;
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 16vw, 4.2rem);
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .choice-panel {
    grid-template-columns: 1fr;
  }

  .season-card {
    padding: 14px;
  }

  .status-pill {
    margin-bottom: 12px;
  }

  .quick-grid div {
    min-height: 74px;
    padding: 12px;
  }

  .quick-grid strong {
    font-size: 2.1rem;
  }

  .quick-grid .location-fact strong {
    font-size: 1.35rem;
  }

  .choice-button {
    border-bottom: 1px solid var(--line);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer a {
    margin-left: 0;
  }
}
