:root {
  --ink: #080a09;
  --ink-soft: #101410;
  --panel: #151a16;
  --panel-2: #1a201b;
  --line: rgba(255, 255, 255, 0.12);
  --white: #f7faf7;
  --muted: #abb5ac;
  --green: #93f205;
  --green-deep: #65aa00;
  --max: 1180px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 8%, rgba(147, 242, 5, 0.11), transparent 30rem),
    radial-gradient(circle at 8% 72%, rgba(147, 242, 5, 0.05), transparent 28rem),
    var(--ink);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--green);
  border-radius: 8px;
  font-weight: 800;
}

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

.shell {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 9, 0.86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--green);
  border-radius: 12px;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: -0.08em;
  transform: rotate(-3deg);
  box-shadow: 0 0 30px rgba(147, 242, 5, 0.15);
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-size: 1.03rem;
  line-height: 0.92;
}

.brand-name small {
  margin-top: 0.28rem;
  color: var(--green);
  font-size: 0.57rem;
  letter-spacing: 0.22em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: #c8d0c9;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:not(.button) {
  position: relative;
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.45rem;
  height: 2px;
  background: var(--green);
  transition: right 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  right: 0;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  color: var(--white);
  background: var(--panel);
  border-radius: 12px;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.15rem;
  color: var(--ink);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: #a8ff27;
  border-color: #a8ff27;
  transform: translateY(-2px);
}

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

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
}

.button .arrow {
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.button:hover .arrow {
  transform: translateX(3px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.2rem;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--green);
}

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

h1,
h2,
h3 {
  line-height: 1.03;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 850px;
  margin-bottom: 1.4rem;
  font-size: clamp(3.5rem, 8vw, 7.4rem);
  font-weight: 950;
}

h2 {
  max-width: 760px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  font-weight: 930;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
  font-weight: 900;
}

.highlight {
  color: var(--green);
}

.lead {
  max-width: 680px;
  margin-bottom: 2rem;
  color: #c0c9c1;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6.75rem) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.hero-copy {
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-community {
  position: relative;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 50% 25%, rgba(147, 242, 5, 0.18), transparent 48%),
    linear-gradient(145deg, #182019, #0d110e);
  border: 1px solid rgba(147, 242, 5, 0.3);
  border-radius: 30px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

.hero-community::before,
.hero-community::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-community::before {
  inset: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
}

.hero-community::after {
  width: 280px;
  height: 280px;
  right: -155px;
  top: -145px;
  border: 1px solid rgba(147, 242, 5, 0.26);
  border-radius: 50%;
}

.player-stage {
  position: relative;
  z-index: 2;
  min-height: 220px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
}

.footballer-icon {
  width: min(100%, 280px);
  overflow: visible;
  color: var(--green);
  animation: player-float 3.2s ease-in-out infinite;
  filter: drop-shadow(0 15px 28px rgba(147, 242, 5, 0.16));
}

.player-head {
  fill: currentColor;
}

.player-shape,
.football-ball circle,
.football-ball path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.player-shape {
  stroke-width: 9;
}

.football-ball {
  transform-box: fill-box;
  transform-origin: center;
  animation: ball-turn 4s linear infinite;
}

.football-ball circle {
  stroke-width: 4;
}

.football-ball path {
  stroke-width: 2;
}

.motion-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(147, 242, 5, 0.65));
  animation: motion-pulse 2.2s ease-in-out infinite;
}

.line-one {
  width: 92px;
  left: 3%;
  top: 43%;
}

.line-two {
  width: 62px;
  left: 13%;
  top: 57%;
  animation-delay: 0.35s;
}

.social-panel-copy {
  position: relative;
  z-index: 2;
  margin: 0 0 1.25rem 0.25rem;
}

.social-panel-copy span,
.social-panel-copy strong {
  display: block;
}

.social-panel-copy span {
  margin-bottom: 0.25rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-panel-copy strong {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-socials {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.social-button {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-button:hover,
.social-button:focus-visible {
  color: var(--green);
  background: rgba(147, 242, 5, 0.09);
  border-color: rgba(147, 242, 5, 0.48);
  transform: translateY(-3px);
}

.social-button svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-button .social-fill {
  fill: currentColor;
  stroke: none;
}

.social-button .play-mark {
  fill: var(--ink);
}

.social-button span {
  font-size: 0.72rem;
  font-weight: 850;
}

@keyframes player-float {
  0%, 100% { transform: translate3d(-3px, 2px, 0) rotate(-1deg); }
  50% { transform: translate3d(5px, -7px, 0) rotate(1deg); }
}

@keyframes ball-turn {
  to { transform: rotate(360deg); }
}

@keyframes motion-pulse {
  0%, 100% { opacity: 0.2; transform: translateX(-10px); }
  50% { opacity: 0.9; transform: translateX(10px); }
}

.pitch-visual {
  position: relative;
  aspect-ratio: 0.73;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(147, 242, 5, 0.11), transparent 45%),
    #111612;
  border: 1px solid rgba(147, 242, 5, 0.32);
  border-radius: 34px;
  transform: rotate(2.5deg);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
}

.pitch-visual::before {
  content: "";
  position: absolute;
  inset: 6%;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(to right, transparent calc(50% - 1px), rgba(255,255,255,.24) calc(50% - 1px), rgba(255,255,255,.24) calc(50% + 1px), transparent calc(50% + 1px)),
    radial-gradient(circle at center, transparent 0 12%, rgba(255,255,255,.25) 12.3% 12.8%, transparent 13%);
}

.pitch-visual::after {
  content: "B2B";
  position: absolute;
  right: -0.05em;
  bottom: -0.17em;
  color: rgba(147, 242, 5, 0.085);
  font-size: clamp(7rem, 18vw, 15rem);
  font-weight: 1000;
  letter-spacing: -0.13em;
  line-height: 1;
}

.pitch-line {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 44%;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.player-dot {
  position: absolute;
  z-index: 3;
  width: 18px;
  aspect-ratio: 1;
  border: 4px solid var(--ink);
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(147, 242, 5, 0.15), 0 0 25px rgba(147, 242, 5, 0.6);
}

.player-dot.one { left: 24%; top: 21%; }
.player-dot.two { right: 24%; top: 39%; }
.player-dot.three { left: 32%; bottom: 24%; }

.pitch-tag {
  position: absolute;
  z-index: 4;
  left: 9%;
  bottom: 8%;
  padding: 0.7rem 0.9rem;
  color: var(--ink);
  background: var(--green);
  border-radius: 9px;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}

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

.training-choice {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.8rem clamp(1rem, 3vw, 2.2rem);
  border-right: 1px solid var(--line);
}

.training-choice:last-child {
  border-right: 0;
}

.choice-number {
  margin-bottom: 1.5rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.training-choice h3 {
  margin-bottom: 0.55rem;
  font-size: 1.45rem;
}

.training-choice p {
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.more-link span {
  color: var(--green);
  transition: transform 180ms ease;
}

.more-link:hover span {
  transform: translateX(3px);
}

.stat {
  padding: 1.55rem clamp(1rem, 3vw, 2.2rem);
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--green);
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.stat span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.section {
  padding: clamp(3.5rem, 5vw, 4.75rem) 0;
}

.section + .section {
  padding-top: clamp(1.25rem, 2.5vw, 2.25rem);
}

.section-tight {
  padding: clamp(2.75rem, 4vw, 3.75rem) 0;
}

.section + .section-tight {
  padding-top: 1.25rem;
}

.section-tight + .section {
  padding-top: 2.25rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

.section-heading p {
  max-width: 430px;
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 2rem;
  background: linear-gradient(145deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 220ms ease, border-color 220ms ease;
}

.card:hover {
  border-color: rgba(147, 242, 5, 0.5);
  transform: translateY(-5px);
}

.card::after {
  content: attr(data-number);
  position: absolute;
  right: -0.02em;
  bottom: -0.2em;
  color: rgba(255,255,255,.035);
  font-size: 9rem;
  font-weight: 1000;
  line-height: 1;
}

.card-label {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card p {
  max-width: 32ch;
  margin-bottom: 0;
  color: var(--muted);
}

.card-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 850;
}

.card-link span {
  color: var(--green);
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: start;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.sticky-copy {
  position: sticky;
  top: 120px;
}

.step-list {
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 1.2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.step p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.location-band {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6.5rem);
  background: var(--green);
  border-radius: 32px;
}

.location-band::after {
  content: "B2B";
  position: absolute;
  right: -0.06em;
  bottom: -0.33em;
  color: rgba(8, 10, 9, 0.09);
  font-size: clamp(9rem, 24vw, 21rem);
  font-weight: 1000;
  letter-spacing: -0.14em;
  line-height: 1;
}

.location-band > * {
  position: relative;
  z-index: 2;
}

.location-band .eyebrow,
.location-band h2,
.location-band p {
  color: var(--ink);
}

.location-band .eyebrow::before {
  background: var(--ink);
}

.location-band p {
  max-width: 650px;
  font-size: 1.08rem;
}

.location-band .button {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0;
}

.location-tag {
  padding: 0.62rem 0.82rem;
  color: var(--ink);
  border: 1px solid rgba(8,10,9,.28);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 850;
}

.page-hero {
  padding: clamp(4.25rem, 8vw, 6.5rem) 0 clamp(3rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 1050px;
  font-size: clamp(3.25rem, 8vw, 6.8rem);
}

.page-hero .lead {
  max-width: 760px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.about-preview-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-preview-copy .button {
  margin-top: 0.8rem;
}

.coach-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.coach-mini {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.coach-mini:nth-child(2) {
  margin-top: 2rem;
}

.coach-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.coach-mini::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,10,9,.94), transparent 58%);
}

.coach-mini-copy {
  position: absolute;
  z-index: 2;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.15rem;
}

.coach-mini-copy strong,
.coach-mini-copy span {
  display: block;
}

.coach-mini-copy strong {
  font-size: 1.1rem;
}

.coach-mini-copy span {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feature {
  padding: 2rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.feature-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.2rem;
  color: var(--ink);
  background: var(--green);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 950;
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.session-item {
  padding: 2rem 1.5rem;
  background: var(--ink-soft);
}

.session-item strong {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--green);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.session-item h3 {
  font-size: 1.12rem;
}

.session-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.principle {
  padding: 2rem;
  border-top: 3px solid var(--green);
  background: var(--panel);
}

.principle p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.coach-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.coach-action {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.coach-action::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 10, 9, 0.82), transparent 55%);
}

.coach-action > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.coach-card:hover .coach-action > img {
  transform: scale(1.025);
}

.coach-role {
  position: absolute;
  z-index: 2;
  left: 1.4rem;
  bottom: 1.25rem;
  padding: 0.5rem 0.7rem;
  color: var(--ink);
  background: var(--green);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coach-body {
  position: relative;
  flex: 1;
  padding: 4.8rem 2rem 2rem;
}

.coach-portrait {
  position: absolute;
  left: 2rem;
  top: -3.55rem;
  width: 94px;
  height: 118px;
  object-fit: cover;
  object-position: center top;
  background: #202720;
  border: 5px solid var(--panel);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0,0,0,.32);
}

.coach-body h3 {
  margin-bottom: 0.35rem;
  font-size: 2rem;
}

.coach-meta {
  margin-bottom: 1.2rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coach-bio {
  margin-bottom: 0;
  color: var(--muted);
}

.coach-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.4rem;
}

.coach-highlights span {
  padding: 0.42rem 0.6rem;
  color: #cdd5ce;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
}

.coach-section-action {
  margin-top: 1.25rem;
  text-align: center;
}

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

.player-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(145deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.player-card:hover {
  border-color: rgba(147, 242, 5, 0.5);
  transform: translateY(-5px);
}

.player-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}

.player-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,10,9,.78), transparent 55%);
}

.player-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-card.kacper .player-image img {
  object-position: center 38%;
}

.player-card.ardit .player-image img {
  object-position: center 18%;
}

.player-card.amir .player-image img {
  object-position: center;
}

.player-level {
  position: absolute;
  z-index: 2;
  left: 1.25rem;
  bottom: 1.1rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.player-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.65rem;
}

.player-body h3 {
  margin-bottom: 0.7rem;
  font-size: 1.75rem;
}

.player-body p {
  margin-bottom: 1.15rem;
  color: var(--muted);
}

.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
}

.player-body .profile-link {
  margin-top: auto;
}

.profile-link span {
  color: var(--green);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.area {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 2rem;
  background:
    linear-gradient(to top, rgba(8,10,9,.94), rgba(8,10,9,.22)),
    repeating-linear-gradient(115deg, #192019 0, #192019 36px, #151b16 36px, #151b16 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.area span {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.area h3 {
  margin: 0.45rem 0 0;
  font-size: 2rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 30px;
}

.contact-copy,
.contact-checklist {
  padding: clamp(2rem, 6vw, 4rem);
}

.contact-checklist {
  background: var(--green);
  color: var(--ink);
}

.contact-checklist h3 {
  font-size: 1.7rem;
}

.check-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(8,10,9,.17);
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  font-weight: 1000;
}

.cta {
  text-align: center;
}

.cta h2 {
  margin-inline: auto;
}

.cta p {
  max-width: 620px;
  margin: 0 auto 2rem;
  color: var(--muted);
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}

.footer-copy {
  max-width: 430px;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--green);
}

.copyright {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  color: #747d75;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .footballer-icon,
  .football-ball,
  .motion-line { animation: none; }
}

@media (max-width: 900px) {
  .menu-button { display: block; }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.7rem);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.65rem;
    background: #101410;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0,0,0,.45);
  }

  .nav-links.open { display: flex; }

  .nav-links a:not(.button) {
    padding: 0.85rem 0.8rem;
  }

  .nav-links a:not(.button)::after { display: none; }

  .nav-links .button { margin-top: 0.4rem; }

  .hero { min-height: auto; }

  .hero-grid,
  .split,
  .contact-panel,
  .about-preview {
    grid-template-columns: 1fr;
  }

  .hero-community {
    width: min(100%, 590px);
    min-height: 420px;
  }

  .pitch-visual {
    width: min(82vw, 430px);
    margin: 1rem auto 0;
    aspect-ratio: 0.9;
  }

  .coach-mini-grid {
    width: min(100%, 560px);
  }

  .sticky-copy { position: static; }

  .card-grid,
  .principles,
  .coach-grid,
  .player-grid {
    grid-template-columns: 1fr;
  }

  .card { min-height: 280px; }

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

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 1.25rem), var(--max)); }

  .nav-wrap { min-height: 70px; }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  h1 { font-size: clamp(3.05rem, 15.5vw, 4.8rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.5rem); }

  .hero { padding-top: 4.2rem; }

  .section {
    padding: 3.5rem 0;
  }

  .section + .section {
    padding-top: 1rem;
  }

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

  .stat,
  .training-choice {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child,
  .training-choice:last-child { border-bottom: 0; }

  .section-heading {
    display: block;
  }

  .hero-community {
    min-height: 390px;
    padding: 1rem;
    border-radius: 22px;
  }

  .player-stage {
    min-height: 200px;
  }

  .social-button {
    min-height: 78px;
  }

  .feature-grid,
  .area-list,
  .session-grid {
    grid-template-columns: 1fr;
  }

  .location-band {
    padding: 2.2rem 1.35rem 2.5rem;
    border-radius: 22px;
  }

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

  .footer-links { justify-content: flex-start; }
}
