:root {
  color-scheme: dark;
  --bg: #050807;
  --bg-2: #08110e;
  --ink: #f8fbf6;
  --muted: #b9c4ba;
  --gold: #f4cf54;
  --green: #19c56c;
  --red: #ee4f54;
  --blue: #49a8ff;
  --line: rgba(255, 255, 255, .16);
  --panel: rgba(255, 255, 255, .075);
  --panel-2: rgba(255, 255, 255, .115);
  --shadow: 0 28px 90px rgba(0, 0, 0, .46);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 300px;
  background:
    radial-gradient(circle at 14% 0%, rgba(25, 197, 108, .18), transparent 30rem),
    radial-gradient(circle at 85% 12%, rgba(244, 207, 84, .14), transparent 30rem),
    linear-gradient(180deg, #07100c 0%, var(--bg) 36%, #060a0b 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  z-index: 50;
  left: 1rem;
  top: -4rem;
  padding: .75rem 1rem;
  background: var(--gold);
  color: #111;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
  padding: .75rem clamp(.8rem, 4vw, 2rem);
  background: linear-gradient(180deg, rgba(0, 0, 0, .72), transparent);
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 8, 7, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(244, 207, 84, .7);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 0 32px rgba(244, 207, 84, .18);
  overflow: hidden;
}

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

.nav {
  display: flex;
  gap: .15rem;
  padding: .25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
}

.nav a {
  padding: .58rem .78rem;
  border-radius: 999px;
  color: #f4faf5;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav a:hover {
  background: rgba(255, 255, 255, .1);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 7rem 1rem 1rem;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .22) 0%, rgba(0, 0, 0, .2) 42%, rgba(5, 8, 7, .92) 86%),
    linear-gradient(90deg, rgba(5, 8, 7, .86), rgba(5, 8, 7, .26) 68%, rgba(5, 8, 7, .68));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 850px);
  padding-bottom: 10rem;
}

.eyebrow {
  margin: 0 0 .85rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(4.4rem, 17vw, 12rem);
  line-height: .88;
  text-shadow: 0 16px 50px rgba(0, 0, 0, .65);
}

h2 {
  font-size: clamp(2.15rem, 8.4vw, 5.2rem);
  line-height: .98;
}

h3 {
  margin: 0;
  font-size: clamp(1.08rem, 3.8vw, 1.45rem);
  line-height: 1.1;
}

.lead {
  max-width: 43rem;
  margin: 1rem 0 0;
  color: #e4ece4;
  font-size: clamp(1.05rem, 3.6vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), #fff1a5);
  color: #0f1209;
  border-color: rgba(255, 255, 255, .22);
  box-shadow: 0 22px 60px rgba(244, 207, 84, .18);
}

.button.secondary {
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(12px);
}

.hero-strip {
  position: absolute;
  z-index: 3;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
}

.hero-strip div,
.proof-card,
.pillar,
.timeline-item,
.honour,
.recognition-card,
.management-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
}

.hero-strip div {
  padding: .8rem;
  backdrop-filter: blur(14px);
}

.hero-strip span,
.feature-card span,
.timeline-item span,
.honour span,
.recognition-card span,
.path-card span,
.road-card span,
.support-card span,
.represent-card span,
.practice-note span {
  display: block;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-strip strong {
  display: block;
  margin-top: .2rem;
  font-size: .86rem;
  line-height: 1.1;
}

.section {
  padding: clamp(4rem, 12vw, 7.5rem) 1rem;
  scroll-margin-top: 5rem;
}

.container {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.intro-grid {
  display: grid;
  gap: 1.4rem;
}

.intro-copy {
  color: var(--muted);
  font-size: 1rem;
}

.intro-copy p {
  margin: 0 0 1rem;
}

.proof {
  padding-top: 0;
}

.proof-grid,
.pillar-grid,
.management-grid,
.roadmap,
.support-grid,
.community-dev-grid {
  display: grid;
  gap: .85rem;
}

.proof-card {
  padding: 1rem;
}

.proof-card strong {
  display: block;
  color: var(--gold);
  font-family: Anton, Impact, sans-serif;
  font-size: 3rem;
  line-height: .95;
}

.proof-card span {
  display: block;
  color: #e8eee8;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 1.5rem;
}

.featured-grid {
  display: grid;
  gap: .95rem;
}

.feature-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  box-shadow: var(--shadow);
}

.feature-card a {
  display: grid;
  height: 100%;
}

.feature-card img,
.feature-card video {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #111;
}

.feature-card div {
  padding: 1rem;
}

.feature-card h3 {
  margin-top: .45rem;
  text-transform: uppercase;
}

.feature-card p,
.timeline-item p,
.pillar p,
.recognition-card p,
.path-card p,
.road-card p,
.support-card p,
.represent-card p,
.practice-note p,
.section-copy {
  margin: .55rem 0 0;
  color: var(--muted);
}

.development {
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(25, 197, 108, .05), rgba(255, 255, 255, .02));
}

.history {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .46)),
    radial-gradient(circle at 18% 12%, rgba(244, 207, 84, .14), transparent 28rem);
}

.development-stack {
  display: grid;
  gap: .95rem;
}

.path-card,
.road-card,
.support-card,
.represent-card,
.practice-showcase,
.mini-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
}

.path-card img,
.path-card video,
.road-card img,
.support-card img,
.represent-card img,
.practice-showcase video {
  width: 100%;
  aspect-ratio: 1.06;
  object-fit: cover;
  background: #111;
}

.path-card div,
.road-card div,
.support-card div,
.represent-card div,
.practice-note {
  padding: 1rem;
}

.path-card a,
.road-card a,
.support-card a,
.management-card a {
  display: grid;
  height: 100%;
}

.path-card h3,
.road-card h3,
.support-card h3,
.represent-card h3 {
  margin-top: .45rem;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  display: grid;
  gap: .9rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: .95rem;
  top: .5rem;
  bottom: .5rem;
  width: 2px;
  background: linear-gradient(var(--gold), var(--green), var(--blue));
}

.timeline-item {
  position: relative;
  padding: 1rem 1rem 1rem 2.8rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: .55rem;
  top: 1.2rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(244, 207, 84, .55);
}

.pillar {
  padding: 1rem;
}

.pillar h3 {
  color: #fff;
  text-transform: uppercase;
}

.honours-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.practice {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .44)),
    radial-gradient(circle at 10% 12%, rgba(238, 79, 84, .16), transparent 25rem),
    radial-gradient(circle at 92% 20%, rgba(25, 197, 108, .15), transparent 30rem);
}

.practice-grid {
  display: grid;
  gap: 1rem;
}

.section-copy {
  max-width: 48rem;
  font-weight: 750;
}

.practice-showcase {
  position: relative;
}

.practice-showcase video {
  aspect-ratio: 4 / 5;
  filter: saturate(1.08) contrast(1.04);
}

.practice-note {
  background:
    linear-gradient(180deg, rgba(5, 8, 7, .1), rgba(5, 8, 7, .92)),
    linear-gradient(90deg, rgba(244, 207, 84, .14), transparent);
}

.practice-note h3 {
  margin-top: .45rem;
  font-size: clamp(1.65rem, 7vw, 3rem);
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
}

.practice-cards,
.community-proof,
.reference-links {
  display: grid;
  gap: .85rem;
}

.reference-links {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reference-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .72rem .8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  color: #eef5ef;
  font-size: .68rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.mini-card {
  padding: 1rem;
}

.mini-card strong {
  display: block;
  color: var(--gold);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2rem, 9vw, 3.6rem);
  line-height: .95;
  text-transform: uppercase;
}

.mini-card span {
  display: block;
  margin-top: .45rem;
  color: #ecf3ed;
  font-weight: 900;
  text-transform: uppercase;
}

.represent-grid {
  display: grid;
  gap: .9rem;
  margin-bottom: clamp(3rem, 9vw, 5rem);
}

.represent-card.state {
  border-color: rgba(244, 207, 84, .42);
}

.represent-card a {
  display: grid;
  height: 100%;
}

.section-subhead {
  margin-bottom: 1.3rem;
}

.community {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(244, 207, 84, .06), rgba(255, 255, 255, .02));
}

.community-grid {
  display: grid;
  gap: 1rem;
}

.community-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
}

.support-grid {
  margin-top: 1rem;
}

.support-card img {
  aspect-ratio: 1;
}

.community-development {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(73, 168, 255, .055), rgba(255, 255, 255, .02));
}

.education {
  background:
    linear-gradient(180deg, rgba(5, 8, 7, .94), rgba(5, 13, 22, .88)),
    radial-gradient(circle at 14% 0%, rgba(73, 168, 255, .18), transparent 28rem),
    radial-gradient(circle at 90% 12%, rgba(244, 207, 84, .16), transparent 30rem);
}

.education-hero {
  display: grid;
  gap: 1rem;
}

.education-line {
  margin: 1rem 0 0;
  color: #fff4bd;
  font-size: clamp(1.1rem, 4vw, 1.55rem);
  font-weight: 900;
  text-transform: uppercase;
}

.education-poster {
  overflow: hidden;
  border: 1px solid rgba(244, 207, 84, .35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  box-shadow: var(--shadow);
}

.education-poster img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
}

.education-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 1rem;
}

.education-stat,
.student-card,
.education-quote {
  border: 1px solid rgba(244, 207, 84, .28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
}

.education-stat {
  padding: 1rem;
}

.education-stat strong {
  display: block;
  color: var(--gold);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.2rem, 9vw, 4rem);
  line-height: .9;
}

.education-stat span,
.student-card span {
  display: block;
  margin-top: .55rem;
  color: #edf5ef;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.student-pathways {
  margin-top: clamp(3rem, 9vw, 5rem);
}

.student-grid {
  display: grid;
  gap: .85rem;
}

.student-card {
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.student-card::before {
  content: "★";
  position: absolute;
  right: .9rem;
  top: .6rem;
  color: rgba(244, 207, 84, .42);
  font-size: 2rem;
}

.student-card h3 {
  margin-top: .35rem;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.8rem, 7vw, 3rem);
  text-transform: uppercase;
}

.student-card p {
  margin: .35rem 0 0;
  color: #dbe7df;
  font-weight: 900;
  text-transform: uppercase;
}

.education-quote {
  display: grid;
  gap: .9rem;
  align-items: center;
  justify-items: start;
  margin-top: 1rem;
  padding: 1rem;
}

.education-quote img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
}

.education-quote p {
  margin: 0;
  color: #f8fbf6;
  font-size: clamp(1.05rem, 3.7vw, 1.4rem);
  font-weight: 900;
  line-height: 1.25;
}

.honour {
  overflow: hidden;
}

.honour img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.honour span,
.honour h3 {
  margin-inline: .85rem;
}

.honour span {
  margin-top: .85rem;
}

.honour h3 {
  margin-top: .3rem;
  margin-bottom: .9rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.recognition {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .28)),
    radial-gradient(circle at 90% 0%, rgba(73, 168, 255, .14), transparent 34rem);
}

.recognition-grid {
  display: grid;
  gap: .9rem;
}

.recognition-card {
  overflow: hidden;
}

.recognition-card img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}

.recognition-card video {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  background: #111;
}

.recognition-card div {
  padding: 1rem;
}

.management-card {
  overflow: hidden;
}

.management-card img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
}

.management-card h3 {
  padding: 1rem;
  text-transform: uppercase;
}

.media-wall {
  columns: 1;
  column-gap: .9rem;
}

.media-wall img,
.media-wall video {
  width: 100%;
  margin: 0 0 .9rem;
  break-inside: avoid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow);
}

.closing {
  position: relative;
  padding: clamp(5rem, 14vw, 9rem) 1rem;
  background:
    linear-gradient(180deg, rgba(5, 8, 7, .25), rgba(5, 8, 7, .94)),
    url("../assets/images/2024-mens-first-title-players.jpg") center / cover;
}

.closing h2 {
  max-width: 980px;
  margin-bottom: 1.25rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1rem 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
}

.footer p {
  margin: .2rem 0 0;
}

.footer a {
  color: var(--ink);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 430px) {
  .site-header {
    padding-inline: .58rem;
  }

  .brand {
    width: 42px;
    height: 42px;
  }

  .brand img {
    width: 35px;
    height: 35px;
  }

  .nav a {
    padding: .48rem .34rem;
    font-size: .51rem;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }
}

@media (min-width: 560px) {
  .hero-strip,
  .proof-grid,
  .pillar-grid,
  .management-grid,
  .roadmap,
  .support-grid,
  .community-dev-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .development-stack,
  .represent-grid,
  .practice-cards,
  .community-proof,
  .student-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-wall {
    columns: 2;
  }
}

@media (min-width: 860px) {
  .hero {
    padding-inline: clamp(2rem, 5vw, 4rem);
  }

  .hero-inner {
    padding-bottom: 4.5rem;
  }

  .hero-strip {
    left: clamp(2rem, 5vw, 4rem);
    right: clamp(2rem, 5vw, 4rem);
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .intro-grid {
    grid-template-columns: .9fr 1.1fr;
    align-items: start;
  }

  .proof-grid,
  .pillar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .featured-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-card.large {
    grid-column: span 2;
  }

  .feature-card.first-title {
    grid-column: span 2;
    grid-row: span 2;
  }

  .feature-card.first-title img {
    aspect-ratio: 1.08;
  }

  .development-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .roadmap,
  .support-grid,
  .community-dev-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .path-card.wide {
    grid-column: span 2;
  }

  .path-card.wide a,
  .path-card.wide {
    min-height: 100%;
  }

  .practice-grid {
    grid-template-columns: .9fr 1.1fr;
    align-items: stretch;
  }

  .practice-grid .section-heading {
    margin-bottom: 0;
    align-self: center;
  }

  .practice-cards {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reference-links {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .honours-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .community-grid {
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
  }

  .education-hero {
    grid-template-columns: 1fr .78fr;
    align-items: center;
  }

  .education-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .student-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .education-quote {
    grid-template-columns: auto 1fr;
  }

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

  .recognition-grid .section-heading {
    grid-column: 1 / -1;
  }

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

  .media-wall {
    columns: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }

  .hero-media {
    display: none;
  }
}
