:root {
  color-scheme: light;
  --purple-950: #24104f;
  --purple-900: #321168;
  --purple-700: #6f3ce8;
  --purple-600: #8148f2;
  --cyan: #42d6e9;
  --cyan-dark: #1c94bf;
  --ink: #16161d;
  --muted: #5d5d69;
  --surface: #ffffff;
  --line: rgba(22, 22, 29, 0.12);
  --shadow: 0 18px 55px rgba(15, 12, 35, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Arial, "Helvetica Neue", ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 6vw, 88px);
  background: var(--purple-950);
}

.brand img {
  width: clamp(152px, 15vw, 204px);
}

.header-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--purple-700);
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 720px);
  display: grid;
  place-items: center;
  overflow: clip;
  padding: 118px 20px 64px;
  background: #141018;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(9, 5, 20, 0.1), rgba(9, 5, 20, 0.58)),
    linear-gradient(90deg, rgba(36, 16, 79, 0.85), rgba(36, 16, 79, 0.2) 52%, rgba(0, 0, 0, 0.36));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  text-align: center;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

h1 {
  max-width: 900px;
  margin: 0 auto;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  color: var(--cyan);
}

.hero-copy {
  max-width: 640px;
  margin: 20px auto 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 700;
  line-height: 1.45;
}

.club-picker {
  width: min(610px, 100%);
  margin: 32px auto 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.club-picker label {
  display: block;
  margin-bottom: 12px;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.select-row {
  display: block;
}

select,
button,
.club-actions a {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
}

select {
  width: 100%;
  padding: 0 54px 0 24px;
  color: #102432;
  background: #fff;
  text-transform: uppercase;
}

button,
.club-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #072330;
  background: var(--cyan);
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

button:hover,
.club-actions a:hover {
  transform: translateY(-1px);
  background: #72d7f5;
}

.helper-text {
  min-height: 20px;
  margin: 10px 0 0;
  color: #f9e9ff;
  font-size: 0.9rem;
  font-weight: 700;
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 92px) 0;
}

.benefits-section {
  background: #fff;
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
}

h2 {
  margin: 0;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(2.45rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.benefits-list {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits-list li {
  position: relative;
  padding-left: 44px;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.35;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -4px;
  color: var(--purple-700);
  font-size: 1.85rem;
  font-weight: 900;
}

.clubs-section {
  background: #f6f4fb;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.section-heading h2 {
  max-width: 680px;
}

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

.club-card {
  display: grid;
  gap: 13px;
  align-content: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.club-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.club-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.club-card-header span {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--purple-900);
  background: rgba(80, 199, 238, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.club-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.club-suburb {
  margin-top: 2px;
}

.club-details {
  display: grid;
  gap: 8px;
  margin: 0;
}

.club-details div {
  display: grid;
  gap: 3px;
}

.club-details dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.club-details dd {
  margin: 0;
  color: #2d2d38;
  line-height: 1.42;
}

.club-details a {
  color: var(--purple-700);
  font-weight: 850;
  text-decoration: none;
}

.club-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: end;
}

.club-actions a {
  min-height: 42px;
  padding-inline: 17px;
  color: #fff;
  background: var(--purple-700);
}

.club-actions a:hover {
  background: var(--purple-900);
}

.club-actions .secondary-action {
  color: var(--purple-900);
  background: rgba(91, 36, 181, 0.1);
  box-shadow: inset 0 0 0 1px rgba(91, 36, 181, 0.22);
}

.club-actions .secondary-action:hover {
  color: #fff;
  background: var(--purple-900);
}

.site-footer {
  display: grid;
  place-items: center;
  padding: 36px 20px;
  background: var(--purple-950);
}

.site-footer img {
  width: 136px;
}

@media (max-width: 860px) {
  .site-header {
    padding: 15px 20px;
  }

  .header-link {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 720px;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 8, 14, 0.14), rgba(10, 8, 14, 0.72)),
      linear-gradient(90deg, rgba(60, 0, 123, 0.72), rgba(0, 0, 0, 0.14));
  }

  .benefits-layout,
  .clubs-grid {
    grid-template-columns: 1fr;
  }

  .club-actions a {
    flex: 1 1 160px;
  }

  .section-heading {
    display: block;
  }
}

@media (max-width: 520px) {
  .site-header {
    position: absolute;
  }

  .brand img {
    width: 156px;
  }

  .header-link {
    display: none;
  }

  .hero {
    min-height: 650px;
    padding: 108px 16px 42px;
  }

  h1 {
    font-size: clamp(4.2rem, 19vw, 5.8rem);
  }

  .club-picker {
    border: 0;
  }

  .section-inner {
    width: min(100% - 32px, 1160px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media {
    display: none;
  }

  button,
  .club-card a {
    transition: none;
  }
}
