:root {
  --bg: #071113;
  --bg-2: #0e1b1e;
  --ink: #f7fbfa;
  --muted: #b7c5c1;
  --body: #22302d;
  --line: rgba(255, 255, 255, 0.15);
  --line-dark: rgba(7, 17, 19, 0.12);
  --mint: #13d6b0;
  --gold: #f6c85f;
  --coral: #ef6f5e;
  --white: #ffffff;
  --panel: rgba(8, 22, 24, 0.82);
  --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, "Noto Sans SC", Arial, sans-serif;
  line-height: 1.55;
}

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(7, 17, 19, 0.58);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

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

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

.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: 800;
  text-transform: uppercase;
}

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

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

.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: 96svh;
  padding: 142px 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(7, 17, 19, 0.98) 0%, rgba(7, 17, 19, 0.84) 38%, rgba(7, 17, 19, 0.22) 68%, rgba(7, 17, 19, 0.68) 100%),
    linear-gradient(180deg, rgba(7, 17, 19, 0.2) 0%, rgba(7, 17, 19, 0.1) 54%, #071113 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 690px) minmax(250px, 330px);
  align-items: end;
  gap: 48px;
  min-height: calc(96svh - 220px);
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.7rem, 6.3vw, 6.2rem);
  line-height: 1;
  letter-spacing: 0;
}

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

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

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

.hero-subtitle span,
.hero-panel p span,
.section-heading p span,
.trust-grid p span,
.contact-copy p span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94em;
}

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

.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.95rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(135deg, var(--mint), var(--gold));
  color: #071113;
}

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

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

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

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

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

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

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

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

.section-dark {
  background:
    linear-gradient(135deg, rgba(19, 214, 176, 0.12), transparent 34%),
    #101a1d;
  color: var(--ink);
}

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

.pain-grid {
  display: grid;
  gap: 14px;
}

.pain-grid article,
.trust-list article {
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--white);
}

.pain-grid p,
.section-heading p,
.trust-grid p,
.english-grid p,
.contact-copy p {
  color: rgba(34, 48, 45, 0.74);
  font-size: 1.04rem;
}

.section-subtitle {
  max-width: 560px;
  margin: 0;
  color: rgba(34, 48, 45, 0.68);
  font-weight: 700;
}

.section-subtitle.dark {
  color: var(--muted);
}

.en-copy {
  margin-top: 10px;
  color: rgba(34, 48, 45, 0.58);
  font-size: 0.92rem;
  font-weight: 600;
}

.check-list {
  display: grid;
  gap: 14px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 0 16px 30px;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.check-list small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  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;
}

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

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

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

.flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 124px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
}

.flow-step small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

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

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

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

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

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

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

.accent-card .en-copy {
  color: rgba(183, 197, 193, 0.76);
}

.trust-section,
.english-section {
  background: #102124;
  color: var(--white);
}

.trust-grid p,
.english-grid p {
  color: var(--muted);
}

.trust-grid p span {
  color: rgba(183, 197, 193, 0.84);
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-list article {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.trust-list p {
  margin: 0;
}

.english-section {
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.english-path {
  display: inline-flex;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-weight: 900;
}

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

.offer-box {
  display: grid;
  gap: 7px;
  margin: 26px 0;
  padding: 18px;
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(7, 17, 19, 0.07);
}

.offer-box strong {
  color: #111716;
  font-size: 1.08rem;
}

.offer-box span,
.contact-copy address {
  color: rgba(34, 48, 45, 0.76);
}

.contact-copy address {
  margin: 28px 0;
  font-style: normal;
}

.contact-copy address a {
  color: #008b73;
  font-weight: 900;
}

.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(7, 17, 19, 0.08);
}

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

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

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(7, 17, 19, 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: #0fb996;
  outline: 3px solid rgba(19, 214, 176, 0.18);
}

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

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

.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,
  .solution-grid,
  .contact-grid,
  .trust-grid,
  .english-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

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

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

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

@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(7, 17, 19, 0.97);
    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: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 17, 19, 0.95), rgba(7, 17, 19, 0.6)),
      linear-gradient(180deg, rgba(7, 17, 19, 0.22), #071113 94%);
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.8rem);
  }

  .button {
    width: 100%;
  }

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

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

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