:root {
  --bg: #050707;
  --bg-2: #0b1110;
  --ink: #f5f8f7;
  --muted: #aeb9b6;
  --body: #293230;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(5, 7, 7, 0.1);
  --teal: #00ded6;
  --green: #28e38b;
  --white: #ffffff;
  --panel: rgba(8, 15, 14, 0.78);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid transparent;
  background: rgba(5, 7, 7, 0.52);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(5, 7, 7, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--white);
}

.brand span {
  display: flex;
  flex-direction: column;
  gap: 1px;
  white-space: nowrap;
}

.brand strong {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 144px 0 78px;
  overflow: hidden;
  background: var(--bg);
}

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

.hero-media {
  background-image: url("assets/football-pathway-hero.png");
  background-position: center right;
  background-size: cover;
  opacity: 0.84;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 7, 0.96) 0%, rgba(5, 7, 7, 0.82) 36%, rgba(5, 7, 7, 0.28) 68%, rgba(5, 7, 7, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 7, 7, 0.42) 0%, rgba(5, 7, 7, 0.12) 55%, #050707 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(240px, 320px);
  align-items: end;
  gap: 48px;
  min-height: calc(100svh - 222px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  color: inherit;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: inherit;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.key-line {
  display: inline-flex;
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 4px solid var(--green);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: #02100e;
}

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

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.hero-panel {
  max-width: 320px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-panel span,
.card-number {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-light {
  background: #f5f8f7;
  color: var(--body);
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(0, 222, 214, 0.1), transparent 34%),
    #07100f;
  color: var(--ink);
}

.split,
.grid-2,
.contact-grid,
.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 76px);
}

.body-copy p,
.section-heading p,
.lead,
.grid-2 p,
.contact-copy p,
.audience-grid p,
.pathway-copy {
  color: currentColor;
  font-size: 1.04rem;
}

.body-copy p,
.grid-2 p,
.contact-copy p,
.audience-grid p {
  color: rgba(41, 50, 48, 0.78);
}

.section-dark .grid-2 p {
  color: var(--muted);
}

.lead {
  color: var(--white);
  font-size: 1.22rem;
  font-weight: 700;
}

.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 14px;
  align-content: center;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li {
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.check-list li::before,
.plain-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "+";
  font-size: 1.6rem;
  line-height: 1;
}

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

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  color: rgba(41, 50, 48, 0.72);
}

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

.info-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--white);
  color: var(--body);
}

.info-card p {
  margin: 0;
  color: rgba(41, 50, 48, 0.72);
}

.accent-card {
  border-color: transparent;
  background: #07100f;
  color: var(--white);
}

.accent-card p {
  color: var(--muted);
}

.pathway-section {
  background:
    linear-gradient(180deg, rgba(5, 7, 7, 0.84), rgba(5, 7, 7, 0.92)),
    url("assets/football-pathway-hero.png") center / cover;
  color: var(--white);
}

.pathway-section .section-heading p,
.pathway-copy {
  color: var(--muted);
}

.pathway-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 36px 0 28px;
}

.flow-step {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 110px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
}

.flow-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -11px;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.pathway-copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.partner-grid .info-card {
  min-height: 180px;
}

.audience-section {
  background: #101817;
  color: var(--white);
}

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

.audience-grid article {
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.audience-grid p {
  color: var(--muted);
}

.plain-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.84);
}

.contact-section {
  padding: clamp(76px, 9vw, 122px) 0;
  background: #f5f8f7;
  color: var(--body);
}

.contact-copy address {
  margin: 28px 0;
  color: rgba(41, 50, 48, 0.78);
  font-style: normal;
}

.contact-copy address a {
  color: #008f89;
  font-weight: 800;
}

.contact-section .button-secondary {
  border-color: rgba(5, 7, 7, 0.16);
  background: #101817;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(5, 7, 7, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #202927;
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(5, 7, 7, 0.16);
  border-radius: 6px;
  background: #fbfdfc;
  color: #111716;
  font: inherit;
  padding: 11px 12px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #00aaa4;
  outline: 3px solid rgba(0, 222, 214, 0.18);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(41, 50, 48, 0.62);
  font-size: 0.84rem;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #050707;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: right;
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: 650px;
    align-items: center;
  }

  .hero-panel {
    max-width: none;
  }

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

  .pathway-flow {
    grid-template-columns: 1fr;
  }

  .flow-step {
    min-height: 82px;
  }

  .flow-step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -13px;
    transform: translateX(50%) rotate(135deg);
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 12px 20px;
  }

  .brand span {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 7, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    padding-top: 116px;
  }

  .hero-grid {
    min-height: 690px;
    gap: 28px;
  }

  .hero-media {
    background-position: 65% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 7, 7, 0.94), rgba(5, 7, 7, 0.58)),
      linear-gradient(180deg, rgba(5, 7, 7, 0.24), #050707 94%);
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .button {
    width: 100%;
  }

  .card-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .footer-inner p {
    text-align: left;
  }
}
