:root {
  --navy: #071f45;
  --navy-deep: #041127;
  --blue: #0d4b8f;
  --green: #13935c;
  --green-deep: #083d2b;
  --gold: #f4c542;
  --paper: #f4f7f8;
  --white: #ffffff;
  --ink: #101828;
  --muted: #627084;
  --line: rgba(7, 31, 69, 0.14);
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 28px 90px rgba(4, 17, 39, 0.16);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(7, 31, 69, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 31, 69, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 54px 54px;
  font-family: "Inter", system-ui, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 14px max(24px, calc((100vw - 1320px) / 2));
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 55px rgba(4, 17, 39, 0.1);
  backdrop-filter: blur(22px);
  transform: none;
  transition: top 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  box-shadow: 0 0 22px rgba(244,197,66,0.45);
  transition: width 120ms linear;
}

.site-header.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 54px rgba(4, 17, 39, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(7, 31, 69, 0.18);
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
}

.brand:hover img {
  box-shadow: 0 14px 30px rgba(7, 31, 69, 0.26);
  transform: rotate(-4deg) scale(1.05);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 6px;
  border: 1px solid rgba(7, 31, 69, 0.08);
  border-radius: 12px;
  background: rgba(7, 31, 69, 0.045);
}

.nav a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 17px;
  border-radius: 9px;
  color: #31425c;
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.nav a:hover,
.nav a.active {
  color: var(--navy);
  background: rgba(7, 31, 69, 0.08);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  position: relative;
  overflow: hidden;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 0;
  border-radius: 9px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.header-cta::before,
.btn::before,
.footer-cta::before,
.contact-pills a::before {
  content: "";
  position: absolute;
  inset: -80% auto -80% -35%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
  transform: rotate(18deg) translateX(-140%);
  transition: transform 620ms var(--ease);
  pointer-events: none;
}

.header-cta,
.btn.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 42px rgba(19, 147, 92, 0.25);
}

.btn.secondary {
  color: var(--navy);
  background: rgba(7, 31, 69, 0.09);
}

.hero .btn.secondary,
.final-card .btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.13);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(4, 17, 39, 0.18);
}

.btn:hover::before,
.header-cta:hover::before,
.footer-cta:hover::before,
.contact-pills a:hover::before {
  transform: rotate(18deg) translateX(420%);
}

.header-cta,
.btn.primary,
.footer-cta {
  animation: ctaBreath 3.8s var(--ease) infinite;
}

.menu-toggle {
  display: none;
  place-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  background: var(--white);
  transition: transform 180ms var(--ease);
}

.menu-toggle:hover span:first-child {
  transform: translateY(-1px);
}

.menu-toggle:hover span:last-child {
  transform: translateY(1px);
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
  padding: 150px max(28px, calc((100vw - 1240px) / 2)) 84px;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(4, 17, 39, 0.96) 0%, rgba(7, 31, 69, 0.9) 45%, rgba(8, 61, 43, 0.9) 100%),
    var(--navy-deep);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background:
    linear-gradient(0deg, rgba(4, 17, 39, 0.78), transparent),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.1) 0 2px, transparent 2px 110px);
  opacity: 0.72;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.stadium-light {
  position: absolute;
  top: -120px;
  width: 34vw;
  height: 80vh;
  background: linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0));
  filter: blur(20px);
  opacity: 0.42;
  transform-origin: top center;
}

.light-a {
  left: 12vw;
  transform: rotate(18deg);
}

.light-b {
  right: 10vw;
  transform: rotate(-20deg);
}

.motion-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244,197,66,0.9), transparent);
  animation: motionSweep 5s linear infinite;
}

.line-a {
  top: 36%;
  left: -30%;
  width: 46%;
}

.line-b {
  top: 62%;
  left: -40%;
  width: 62%;
  animation-delay: 1.6s;
}

@keyframes motionSweep {
  to {
    transform: translateX(190vw);
  }
}

@keyframes ctaBreath {
  50% {
    box-shadow: 0 22px 56px rgba(19,147,92,0.34);
  }
}

.hero-copy,
.hero-stage,
.page-hero-copy,
.contact-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow", system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: 0.92;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.06;
}

.hero-text,
.page-hero p,
.section-copy p,
.contact-copy p,
.final-card p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 1.85;
}

.section-copy p,
.final-card p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stage {
  perspective: 900px;
}

.match-card {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.1), transparent 35%),
    linear-gradient(145deg, rgba(13,75,143,0.54), rgba(8,61,43,0.82)),
    var(--green-deep);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32);
  transform-style: preserve-3d;
  transition: transform 300ms var(--ease);
}

.match-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 2px, transparent 2px 86px),
    linear-gradient(180deg, transparent, rgba(0,0,0,0.22));
}

.score-ribbon {
  position: absolute;
  z-index: 2;
  top: 26px;
  left: 26px;
  right: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9px;
  color: var(--white);
  background: rgba(4,17,39,0.38);
  backdrop-filter: blur(14px);
}

.score-ribbon span {
  color: var(--gold);
  font-weight: 900;
}

.tactical-board {
  position: absolute;
  inset: 112px 54px 58px;
  border: 2px solid rgba(255,255,255,0.62);
  border-radius: 9px;
  transform: translateZ(35px);
}

.tactical-board::before,
.tactical-board::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  border: 2px solid rgba(255,255,255,0.48);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.tactical-board::after {
  width: 10px;
  height: 10px;
  background: var(--white);
}

.board-line.vertical {
  position: absolute;
  inset: 0 auto 0 50%;
  border-left: 2px solid rgba(255,255,255,0.52);
}

.zone {
  position: absolute;
  left: 30%;
  width: 40%;
  height: 74px;
  border: 2px solid rgba(255,255,255,0.5);
}

.zone-a {
  top: -2px;
  border-top: 0;
}

.zone-b {
  bottom: -2px;
  border-bottom: 0;
}

.marker,
.ball-core {
  position: absolute;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

.m1 { left: 17%; top: 26%; animation: floatPlayer 4s var(--ease) infinite; }
.m2 { right: 24%; top: 34%; animation: floatPlayer 4.4s var(--ease) infinite 0.4s; }
.m3 { left: 30%; bottom: 23%; animation: floatPlayer 4.2s var(--ease) infinite 0.8s; }
.m4 { right: 15%; bottom: 20%; animation: floatPlayer 4.6s var(--ease) infinite 0.2s; }

.ball-core {
  left: 54%;
  top: 47%;
  width: 31px;
  height: 31px;
  background:
    radial-gradient(circle at 50% 50%, var(--navy) 0 16%, transparent 17%),
    var(--white);
  animation: ballRun 4s var(--ease) infinite;
}

@keyframes floatPlayer {
  50% { transform: translateY(-12px); }
}

@keyframes ballRun {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(76px, -82px) rotate(220deg); }
}

.pass-path {
  position: absolute;
  z-index: 1;
  border: 3px dashed rgba(244,197,66,0.84);
  border-left: 0;
  border-bottom: 0;
  opacity: 0.85;
}

.path-one {
  left: 24%;
  top: 37%;
  width: 45%;
  height: 25%;
  border-radius: 0 80% 0 0;
  transform: rotate(-7deg);
}

.path-two {
  right: 17%;
  bottom: 26%;
  width: 36%;
  height: 24%;
  border-radius: 0 80% 0 0;
  transform: rotate(175deg);
}

.stage-logo {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 28px;
  width: 112px;
  height: 112px;
  padding: 9px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
  transform: translateZ(60px);
}

.stage-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  left: max(28px, calc((100vw - 1240px) / 2));
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.64);
  font-size: 13px;
  font-weight: 800;
}

.hero-scroll span {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 999px;
}

.hero-scroll span::after {
  content: "";
  display: block;
  width: 4px;
  height: 7px;
  margin: 7px auto;
  border-radius: 999px;
  background: var(--gold);
  animation: scrollDot 1.5s ease infinite;
}

@keyframes scrollDot {
  50% { transform: translateY(9px); opacity: 0.35; }
}

.stat-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  background: var(--navy-deep);
}

.marquee-track {
  width: max-content;
  display: flex;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 84px;
  padding: 0 42px;
  color: rgba(255,255,255,0.9);
  font-family: "Barlow", system-ui, sans-serif;
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 900;
  text-transform: uppercase;
}

.marquee-track span::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 42px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 124px) max(24px, calc((100vw - 1240px) / 2));
}

.section::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 74% 28%, transparent 0 52px, rgba(7,31,69,0.08) 53px 55px, transparent 56px),
    linear-gradient(120deg, transparent 0 48%, rgba(244,197,66,0.12) 49%, transparent 51%),
    linear-gradient(90deg, rgba(7,31,69,0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7,31,69,0.035) 1px, transparent 1px);
  background-size: auto, auto, 116px 116px, 116px 116px;
  opacity: 0.38;
  transform: translate3d(calc(var(--scroll-progress, 0) * -80px), calc(var(--scroll-progress, 0) * 44px), 0);
  transition: transform 140ms linear;
  pointer-events: none;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-grid,
.split-cta,
.contact-page,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.section-copy h2,
.section-head h2,
.final-card h2,
.timeline-section h2 {
  color: var(--navy-deep);
}

.section-copy .text-link {
  margin-top: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-weight: 900;
}

.text-link::after {
  content: "→";
  margin-left: 10px;
  transition: transform 180ms var(--ease);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.feature-stack {
  display: grid;
  gap: 14px;
}

.feature-stack article,
.values-grid article,
.detail-card,
.program-slide,
.timeline article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7,31,69,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 18px 48px rgba(4, 17, 39, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 460ms var(--ease), border-color 360ms var(--ease), box-shadow 460ms var(--ease);
}

.feature-stack article::after,
.values-grid article::after,
.detail-card::after,
.program-slide::after,
.timeline article::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(244,197,66,0.17), transparent 32%);
  transition: opacity 360ms var(--ease);
  pointer-events: none;
}

.feature-stack article > *,
.values-grid article > *,
.detail-card > *,
.program-slide > *,
.timeline article > * {
  position: relative;
  z-index: 1;
}

.feature-stack article {
  padding: 26px;
}

.feature-stack article:hover,
.values-grid article:hover,
.program-slide:hover,
.detail-card:hover,
.timeline article:hover {
  border-color: rgba(19,147,92,0.4);
  box-shadow: 0 32px 86px rgba(4, 17, 39, 0.16);
  transform: translateY(-12px);
}

.feature-stack article:hover::after,
.values-grid article:hover::after,
.program-slide:hover::after,
.detail-card:hover::after,
.timeline article:hover::after {
  opacity: 1;
}

.feature-stack span,
.program-slide span,
.detail-card > span,
.timeline span,
.values-grid span {
  color: var(--green);
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.feature-stack h3,
.values-grid h3,
.detail-card h2,
.program-slide h3,
.timeline h3 {
  margin-top: 18px;
  color: var(--navy-deep);
}

.feature-stack p,
.values-grid p,
.detail-card p,
.detail-card li,
.program-slide p,
.timeline p {
  color: var(--muted);
  line-height: 1.7;
}

.program-preview {
  background: var(--white);
}

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

.program-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program-slide {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 30px;
  isolation: isolate;
  background: var(--navy);
  background-position: center;
  background-size: cover;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease);
}

.program-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4,17,39,0.06), rgba(4,17,39,0.84)),
    linear-gradient(135deg, rgba(7,31,69,0.45), rgba(19,147,92,0.24));
}

.program-slide:nth-child(1) {
  background-image: url("assets/program-technical.png");
}

.program-slide:nth-child(2) {
  background-image: url("assets/program-athletic.png");
}

.program-slide:nth-child(3) {
  background-image: url("assets/program-performance.png");
}

.program-slide h3,
.program-slide p {
  color: var(--white);
}

.program-slide span {
  color: var(--gold);
}

.program-motion {
  position: absolute;
  z-index: 1;
  inset: 22px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 360ms var(--ease), transform 360ms var(--ease);
  pointer-events: none;
}

.program-slide:hover .program-motion {
  opacity: 1;
  transform: translateY(0);
}

.technical-motion {
  inset: auto;
  border-top: 2px dashed rgba(244,197,66,0.72);
  border-right: 2px dashed rgba(244,197,66,0.58);
  border-radius: 0 80px 0 0;
  width: 46%;
  height: 34%;
  left: 32%;
  top: 26px;
  animation: routePulse 2.4s var(--ease) infinite;
}

.technical-motion i {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(244,197,66,0.14);
}

.technical-motion i:nth-child(1) { left: -7px; top: -7px; }
.technical-motion i:nth-child(2) { right: -7px; top: 38%; animation: dotPop 1.9s var(--ease) infinite 0.2s; }
.technical-motion i:nth-child(3) { right: -7px; bottom: -7px; animation: dotPop 1.9s var(--ease) infinite 0.45s; }

.athletic-motion {
  inset: auto;
  display: grid;
  gap: 12px;
  align-content: start;
  top: 34px;
  left: auto;
  right: 26px;
  width: 42%;
}

.athletic-motion i {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold));
  transform: translateX(-26px);
  animation: speedDash 1.2s linear infinite;
}

.athletic-motion i:nth-child(2) {
  width: 76%;
  animation-delay: 0.16s;
}

.athletic-motion i:nth-child(3) {
  width: 58%;
  animation-delay: 0.32s;
}

.performance-motion {
  inset: auto;
  top: 24px;
  right: 26px;
  left: auto;
  width: 116px;
  height: 116px;
  border: 2px solid rgba(255,255,255,0.28);
  border-radius: 50%;
}

.performance-motion::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px dashed rgba(244,197,66,0.7);
  border-radius: 50%;
  animation: rotatePlan 4.5s linear infinite;
}

.performance-motion i {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
}

.performance-motion i:nth-child(1) { left: 10px; top: 52px; }
.performance-motion i:nth-child(2) { right: 16px; top: 28px; }
.performance-motion i:nth-child(3) { right: 28px; bottom: 14px; }

@keyframes routePulse {
  50% {
    transform: translate(8px, 4px);
  }
}

@keyframes dotPop {
  50% {
    transform: scale(1.35);
  }
}

@keyframes speedDash {
  50% {
    opacity: 0.4;
    transform: translateX(20px);
  }
}

@keyframes rotatePlan {
  to {
    transform: rotate(360deg);
  }
}

.split-cta {
  background:
    linear-gradient(135deg, rgba(7,31,69,0.04), rgba(19,147,92,0.08)),
    var(--paper);
}

.visual-panel {
  min-height: 530px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy), var(--green-deep));
  box-shadow: var(--shadow);
  perspective: 900px;
}

.boot-scene {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 530px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.1) 0 2px, transparent 2px 80px),
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent);
}

.boot-shape {
  position: absolute;
  left: 18%;
  top: 38%;
  width: 54%;
  height: 22%;
  border-radius: 12px 80px 28px 12px;
  background: linear-gradient(135deg, var(--white), #ced7df);
  transform: rotate(-14deg);
  box-shadow: 0 26px 50px rgba(0,0,0,0.25);
  animation: kickPulse 3.6s var(--ease) infinite;
}

.boot-shape::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -16px;
  width: 44%;
  height: 16px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 84% 100%, 10% 100%);
}

.ball-shadow {
  position: absolute;
  right: 17%;
  bottom: 26%;
  width: 92px;
  height: 92px;
  border: 8px solid var(--navy);
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 46%, var(--navy) 0 14%, transparent 15%),
    var(--white);
  animation: ballBounce 3.6s var(--ease) infinite;
}

.speed {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.speed-one {
  left: 12%;
  top: 28%;
  width: 56%;
  animation: speedLine 1.8s linear infinite;
}

.speed-two {
  left: 20%;
  bottom: 28%;
  width: 44%;
  animation: speedLine 2.2s linear infinite 0.4s;
}

@keyframes kickPulse {
  50% { transform: translate(12px, -8px) rotate(-10deg); }
}

@keyframes ballBounce {
  50% { transform: translate(18px, -34px) rotate(160deg); }
}

@keyframes speedLine {
  50% { opacity: 0.25; transform: translateX(42px); }
}

.age-section {
  background: var(--white);
}

.age-head {
  opacity: 1;
  filter: none;
  transform: none;
  clip-path: none;
}

.age-orbit {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: stretch;
}

.age-chip {
  position: relative;
  overflow: hidden;
  grid-column: 1;
  min-height: 84px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 360ms var(--ease), background 360ms var(--ease), color 360ms var(--ease), box-shadow 360ms var(--ease);
}

.age-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(244,197,66,0.28), transparent);
  transform: translateX(-120%);
  transition: transform 620ms var(--ease);
}

.age-chip:hover {
  box-shadow: 0 18px 42px rgba(4,17,39,0.12);
  transform: translateX(10px) scale(1.02);
}

.age-chip:hover::after,
.age-chip.active::after {
  transform: translateX(120%);
}

.age-chip.active {
  color: var(--white);
  background: var(--navy);
}

.age-display {
  position: relative;
  overflow: hidden;
  grid-column: 2;
  grid-row: 1 / span 4;
  min-height: 360px;
  padding: clamp(30px, 5vw, 62px);
  border-radius: 12px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4,17,39,0.9), rgba(8,61,43,0.86)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.1) 0 2px, transparent 2px 92px);
  box-shadow: var(--shadow);
  transition: opacity 480ms var(--ease), transform 620ms var(--ease), filter 620ms var(--ease), box-shadow 620ms var(--ease);
}

.age-display::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(244,197,66,0.22), transparent) 0 22% / 70% 2px no-repeat,
    linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent) 0 72% / 55% 1px no-repeat;
  animation: ageLines 5.2s linear infinite;
  pointer-events: none;
}

.age-display.is-changing {
  opacity: 0.22;
  filter: blur(2px);
  transform: translateY(24px) scale(0.985);
}

.age-display > * {
  position: relative;
  z-index: 1;
  animation: ageContentIn 820ms var(--ease) both;
}

.age-display h3 {
  animation-delay: 100ms;
}

.age-display ul {
  animation-delay: 190ms;
}

.age-label {
  margin: 0 0 20px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.age-display h3 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 46px);
}

.age-display ul {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.age-display li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,0.82);
  font-weight: 700;
}

.age-display li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes ageContentIn {
  from {
    opacity: 0;
    filter: blur(2px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes ageLines {
  to {
    background-position: 160% 22%, 140% 72%;
  }
}

.faq-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(19,147,92,0.1), transparent 28%),
    var(--paper);
}

.faq-page-hero .page-hero-copy {
  max-width: 900px;
}

.faq-page-hero {
  grid-template-columns: 1fr;
  place-items: center;
  text-align: center;
}

.faq-page-hero .page-hero-copy p {
  margin-inline: auto;
}

.faq-hero-card {
  min-height: 360px;
  background:
    radial-gradient(circle at 50% 35%, rgba(244,197,66,0.2), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
}

.faq-hero-card strong {
  font-size: clamp(72px, 9vw, 128px);
  text-shadow: 0 20px 54px rgba(244,197,66,0.24);
}

.faq-page-section {
  padding-top: clamp(92px, 10vw, 140px);
}

.faq-head {
  margin-bottom: clamp(34px, 5vw, 62px);
  opacity: 1;
  filter: none;
  transform: none;
  clip-path: none;
}

.faq-head .section-kicker {
  color: var(--green);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: stretch;
}

.faq-title {
  position: relative;
  display: inline-block;
  color: var(--gold);
  font-size: clamp(42px, 5vw, 76px);
  text-shadow: 0 18px 46px rgba(244,197,66,0.22);
}

.faq-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: -24px;
  bottom: -10px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(19,147,92,0.64), transparent);
  box-shadow: 0 0 24px rgba(244,197,66,0.34);
}

.faq-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(7,31,69,0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(7,31,69,0.92), rgba(8,61,43,0.86)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.1) 0 2px, transparent 2px 88px);
  box-shadow: var(--shadow);
}

.faq-visual::before {
  content: "";
  position: absolute;
  inset: 56px;
  border: 2px solid rgba(255,255,255,0.42);
  border-radius: 14px;
}

.faq-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 56px;
  bottom: 56px;
  width: 2px;
  background: rgba(255,255,255,0.28);
}

.faq-field-line {
  position: absolute;
  border-top: 3px dashed rgba(244,197,66,0.82);
  border-right: 3px dashed rgba(244,197,66,0.62);
  border-radius: 0 90% 0 0;
  transform-origin: left top;
}

.faq-field-line.line-one {
  left: 24%;
  top: 34%;
  width: 46%;
  height: 24%;
  animation: faqRoute 4s var(--ease) infinite;
}

.faq-field-line.line-two {
  left: 34%;
  bottom: 24%;
  width: 38%;
  height: 20%;
  transform: rotate(-14deg);
  animation: faqRoute 4.8s var(--ease) infinite 0.6s;
}

.faq-field-ball {
  position: absolute;
  left: 23%;
  top: 33%;
  width: 22px;
  height: 22px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 10px rgba(244,197,66,0.16);
  animation: faqBall 4s var(--ease) infinite;
}

.faq-field-dot {
  position: absolute;
  width: 42px;
  height: 42px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.92;
}

.faq-field-dot.dot-one { right: 22%; top: 28%; }
.faq-field-dot.dot-two { left: 24%; bottom: 26%; animation: dotPop 2.5s var(--ease) infinite; }
.faq-field-dot.dot-three { right: 28%; bottom: 30%; animation: dotPop 2.5s var(--ease) infinite 0.4s; }

.faq-list {
  display: grid;
  gap: 12px;
  align-content: center;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(7,31,69,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 18px 48px rgba(4,17,39,0.07);
  transition: transform 320ms var(--ease), border-color 320ms var(--ease), background 320ms var(--ease), box-shadow 320ms var(--ease);
}

.faq-item:hover,
.faq-item.active {
  border-color: rgba(19,147,92,0.34);
  background: var(--white);
  box-shadow: 0 26px 70px rgba(4,17,39,0.12);
  transform: translateY(-4px);
}

.faq-item button {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  border: 0;
  padding: 22px 24px;
  color: var(--navy);
  background: transparent;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  justify-self: end;
  color: var(--green);
  font-size: 26px;
  line-height: 1;
  transition: transform 260ms var(--ease), color 260ms var(--ease);
}

.faq-item.active button::after {
  color: var(--gold);
  transform: rotate(45deg);
}

.faq-item button span {
  color: var(--gold);
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 20px;
}

.faq-answer {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 420ms var(--ease), opacity 320ms var(--ease);
}

.faq-answer[hidden] {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px 24px 66px;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item.active .faq-answer p {
  animation: faqTextIn 520ms var(--ease) both;
}

@keyframes faqRoute {
  50% {
    transform: translate(12px, 8px);
  }
}

@keyframes faqBall {
  50% {
    transform: translate(154px, 78px);
  }
}

@keyframes faqTextIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.final-cta {
  padding: 0;
  min-height: 72svh;
  display: grid;
  align-items: stretch;
  background:
    radial-gradient(circle at 18% 20%, rgba(244,197,66,0.2), transparent 28%),
    radial-gradient(circle at 86% 26%, rgba(19,147,92,0.24), transparent 32%),
    linear-gradient(135deg, var(--navy-deep), var(--green-deep));
}

.final-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 72svh;
  padding: clamp(54px, 8vw, 112px) max(24px, calc((100vw - 1240px) / 2));
  border: 0;
  border-radius: 0;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(4,17,39,0.58), transparent 54%),
    linear-gradient(135deg, rgba(255,255,255,0.12), transparent 48%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.09) 0 2px, transparent 2px 92px),
    rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -1px 0 rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.final-card::before {
  content: "";
  position: absolute;
  inset: clamp(22px, 4vw, 48px) max(22px, calc((100vw - 1320px) / 2));
  border: 2px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  pointer-events: none;
}

.final-card::after {
  content: "";
  position: absolute;
  left: -34%;
  top: 44%;
  width: 52%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: finalSweep 4.8s linear infinite;
  pointer-events: none;
}

.final-copy,
.cta-panel {
  position: relative;
  z-index: 1;
}

.final-copy h2 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 82px);
}

.final-card h2,
.final-card p {
  color: var(--white);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.cta-panel {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.2);
}

.cta-panel span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-panel ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cta-panel li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  transition: transform 280ms var(--ease), background 280ms var(--ease), border-color 280ms var(--ease);
}

.cta-panel li:hover {
  border-color: rgba(244,197,66,0.36);
  background: rgba(255,255,255,0.13);
  transform: translateX(6px);
}

.cta-panel strong {
  color: var(--gold);
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.cta-panel p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.55;
}

@keyframes finalSweep {
  to {
    transform: translateX(260vw);
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 64svh;
  padding: 170px max(24px, calc((100vw - 1240px) / 2)) 76px;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(4,17,39,0.96), rgba(7,31,69,0.88), rgba(8,61,43,0.86)),
    var(--navy);
}

.page-hero::before,
.contact-page::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -18% -8% 0;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(255,255,255,0.28), transparent 34%),
    radial-gradient(ellipse at 86% 12%, rgba(244,197,66,0.18), transparent 30%),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.075) 1px, transparent 1px),
    linear-gradient(112deg, rgba(4,17,39,0.2), rgba(19,147,92,0.16));
  background-size: auto, auto, 112px 112px, 112px 112px, auto;
  opacity: 0.86;
  transform: rotate(-1deg) translate3d(0, 0, 0);
  animation: fieldDrift 20s linear infinite;
  pointer-events: none;
}

.page-hero::after,
.contact-page::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: -78%;
  width: 86%;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(244,197,66,0.95) 42%, transparent 78%) 0 38% / 100% 3px no-repeat,
    linear-gradient(90deg, transparent 0 12%, rgba(255,255,255,0.62) 48%, transparent 74%) 0 52% / 78% 2px no-repeat,
    linear-gradient(90deg, transparent 0 18%, rgba(244,197,66,0.72) 58%, transparent 82%) 0 66% / 62% 2px no-repeat,
    linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  opacity: 0.78;
  mix-blend-mode: screen;
  animation: heroLineSweep 5.8s linear infinite;
  pointer-events: none;
}

.page-hero > *,
.contact-page > * {
  position: relative;
  z-index: 2;
}

.gallery-hero::before {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.22), transparent 34%),
    radial-gradient(circle at 50% 48%, rgba(244,197,66,0.2), transparent 22%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.11) 0 2px, transparent 2px 98px),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 82px);
  background-size: auto, auto, auto, auto;
  animation-duration: 18s;
}

.gallery-hero::after {
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(244,197,66,0.96) 42%, transparent 78%) 0 43% / 100% 3px no-repeat,
    linear-gradient(90deg, transparent 0 12%, rgba(255,255,255,0.62) 48%, transparent 74%) 0 56% / 78% 2px no-repeat,
    linear-gradient(90deg, transparent 0 18%, rgba(244,197,66,0.72) 58%, transparent 82%) 0 69% / 62% 2px no-repeat,
    radial-gradient(ellipse at center, transparent 0 34%, rgba(255,255,255,0.18) 35%, transparent 36%);
  animation-duration: 5.2s;
}

@keyframes fieldDrift {
  to {
    background-position: 112px 80px, -112px 112px, 0 0, 0 0;
  }
}

@keyframes lineGlide {
  from {
    transform: translateX(-36px) skewX(-3deg);
  }
  to {
    transform: translateX(42px) skewX(3deg);
  }
}

@keyframes heroLineSweep {
  0% {
    transform: translateX(0) skewX(-12deg);
  }
  100% {
    transform: translateX(215vw) skewX(-12deg);
  }
}

.gallery-hero {
  min-height: 52svh;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  text-align: center;
}

.gallery-hero .page-hero-copy {
  max-width: 820px;
}

.gallery-hero .page-hero-copy p {
  margin-inline: auto;
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 70px);
}

.page-hero-card,
.mini-board {
  min-height: 430px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14), transparent),
    rgba(255,255,255,0.09);
  box-shadow: 0 34px 100px rgba(0,0,0,0.22);
  backdrop-filter: blur(14px);
}

.page-hero-card {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px;
}

.page-hero-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(0,0,0,0.24);
}

.page-hero-card strong {
  color: var(--gold);
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 62px;
  font-weight: 900;
}

.page-hero-card span {
  color: rgba(255,255,255,0.76);
  font-weight: 800;
}

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

.values-grid article {
  padding: 26px;
}

.timeline-section {
  background: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.timeline article {
  min-height: 210px;
  padding: 28px;
  border-left: 4px solid var(--green);
}

.mini-board {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13,75,143,0.32), rgba(8,61,43,0.8)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 2px, transparent 2px 78px);
}

.mini-board::before {
  content: "";
  position: absolute;
  inset: 54px;
  border: 2px solid rgba(255,255,255,0.52);
  border-radius: 10px;
}

.mini-dot {
  position: absolute;
  width: 52px;
  height: 52px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
  animation: floatPlayer 4s var(--ease) infinite;
}

.mini-dot:nth-child(1) { left: 24%; top: 30%; }
.mini-dot:nth-child(2) { right: 28%; top: 44%; animation-delay: 0.4s; }
.mini-dot:nth-child(3) { left: 42%; bottom: 25%; animation-delay: 0.8s; }

.mini-route {
  position: absolute;
  left: 23%;
  top: 39%;
  width: 50%;
  height: 32%;
  border-top: 4px dashed var(--gold);
  border-right: 4px dashed var(--gold);
  border-radius: 0 90% 0 0;
  transform: rotate(-8deg);
}

.program-page-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.detail-card {
  grid-column: span 3;
  min-height: 360px;
  padding: 34px;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease);
}

.detail-card:nth-child(3) {
  grid-column: span 2;
}

.detail-card:nth-child(4),
.detail-card:nth-child(5) {
  grid-column: span 2;
}

.detail-card h2 {
  margin-top: 44px;
  font-size: clamp(28px, 3vw, 40px);
}

.detail-card ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding-left: 20px;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.gallery-filter button {
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  font-weight: 900;
  cursor: pointer;
}

.gallery-filter button.active,
.gallery-filter button:hover {
  color: var(--navy);
  background: var(--gold);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 210px;
  gap: 20px;
  background:
    radial-gradient(circle at 20% 10%, rgba(19,147,92,0.12), transparent 28%),
    var(--white);
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  color: var(--white);
  background: var(--navy-deep);
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 24px 70px rgba(4,17,39,0.16);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), opacity 180ms var(--ease);
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 8;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 32%, rgba(4,17,39,0.84)),
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(244,197,66,0.22), transparent 24%);
  opacity: 0.82;
  transition: opacity 260ms var(--ease);
}

.gallery-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 600ms var(--ease), filter 320ms var(--ease);
}

.gallery-card:hover {
  z-index: 4;
  box-shadow: 0 34px 90px rgba(4,17,39,0.28);
  transform: translateY(-10px) scale(1.025);
}

.gallery-card:hover img {
  filter: saturate(1.12) contrast(1.06);
  transform: scale(1.13);
}

.gallery-card:hover::before {
  opacity: 0.98;
}

.gallery-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.gallery-card.is-hidden {
  display: none;
}

.gallery-card span {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 3;
  max-width: calc(100% - 48px);
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

.gallery-card:hover span {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background: rgba(4, 17, 39, 0.84);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(1040px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.44);
}

.lightbox figcaption {
  margin: 0;
  padding-top: 18px;
  color: rgba(255,255,255,0.82);
  font-weight: 800;
  text-align: center;
}

.lightbox button {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  font-size: 34px;
  cursor: pointer;
}

.contact-page {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100svh;
  padding: 154px max(24px, calc((100vw - 1240px) / 2)) 90px;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(4,17,39,0.97), rgba(7,31,69,0.9), rgba(8,61,43,0.88)),
    var(--navy);
}

.contact-page h1 {
  font-size: clamp(38px, 5vw, 70px);
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-pills a {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  font-weight: 900;
  transition: transform 240ms var(--ease), background 240ms var(--ease), border-color 240ms var(--ease);
}

.contact-pills a:hover {
  border-color: rgba(244,197,66,0.56);
  background: rgba(255,255,255,0.16);
  transform: translateY(-3px);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 30px 90px rgba(0,0,0,0.22);
  backdrop-filter: blur(16px);
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-info-grid article {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  background: rgba(255,255,255,0.09);
  transition: transform 320ms var(--ease), border-color 320ms var(--ease), background 320ms var(--ease);
}

.contact-info-grid article:hover {
  border-color: rgba(244,197,66,0.38);
  background: rgba(255,255,255,0.13);
  transform: translateY(-6px);
}

.contact-info-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-info-grid strong {
  display: block;
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 22px;
}

.contact-info-grid a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 900;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.86);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--ink);
  background: rgba(255,255,255,0.94);
  outline: none;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(244,197,66,0.18);
  transform: translateY(-2px);
}

.form-note {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 30px;
  padding: 58px max(24px, calc((100vw - 1240px) / 2)) 26px;
  color: rgba(255,255,255,0.72);
  background:
    radial-gradient(circle at 16% 8%, rgba(244,197,66,0.16), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(19,147,92,0.2), transparent 30%),
    linear-gradient(135deg, var(--navy-deep), #062141 58%, #052819);
}

.site-footer::before {
  content: "ANIL OZGUN FOOTBALL";
  position: absolute;
  left: max(24px, calc((100vw - 1240px) / 2));
  bottom: -20px;
  color: rgba(255,255,255,0.035);
  font-family: "Barlow", system-ui, sans-serif;
  font-size: clamp(58px, 10vw, 150px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
}

.site-footer img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0,0,0,0.26);
}

.footer-top,
.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.footer-brand span {
  display: block;
  margin-top: 6px;
  line-height: 1.7;
}

.footer-cta {
  position: relative;
  overflow: hidden;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 10px;
  color: var(--navy) !important;
  background: var(--gold) !important;
  box-shadow: 0 18px 46px rgba(244,197,66,0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr 0.9fr;
  gap: 28px;
  padding-bottom: 26px;
}

.footer-column h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 18px;
}

.footer-column p {
  max-width: 380px;
  margin: 0;
  line-height: 1.7;
}

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

.footer-column a,
.footer-column span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,0.78);
  font-weight: 800;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.footer-column a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  filter: blur(0);
  transform: translateY(42px) scale(0.992);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease), clip-path 900ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.slide-left {
  transform: translateX(-46px);
}

.reveal.slide-right {
  transform: translateX(46px);
}

.reveal.zoom-in {
  transform: scale(0.94);
}

.reveal.clip-up {
  filter: blur(0);
  clip-path: inset(0 0 100% 0);
  transform: translateY(18px);
}

.reveal.soft-rise {
  filter: blur(0);
  transform: translateY(30px);
}

.reveal.in-view,
.reveal.in-view.slide-left,
.reveal.in-view.slide-right,
.reveal.in-view.zoom-in,
.reveal.in-view.clip-up,
.reveal.in-view.soft-rise {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0) scale(1);
  clip-path: inset(0 0 0 0);
}

.delay-1 { --reveal-delay: 180ms; }
.delay-2 { --reveal-delay: 360ms; }
.delay-3 { --reveal-delay: 540ms; }

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

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 22px;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .nav.open {
    position: fixed;
    inset: 96px 20px auto;
    display: grid;
    justify-content: stretch;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 12px;
    background: rgba(255,255,255,0.96);
    box-shadow: var(--shadow);
  }

  .nav.open a {
    min-height: 54px;
    justify-content: center;
  }

  .hero,
  .section-grid,
  .split-cta,
  .contact-page,
  .page-hero,
  .final-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    order: -1;
  }

  .match-card {
    min-height: 520px;
  }

  .program-showcase,
  .timeline,
  .values-grid,
  .faq-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-visual {
    min-height: 420px;
  }

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

  .gallery-card,
  .gallery-card.wide {
    grid-column: auto;
  }

  .gallery-card.tall {
    grid-row: span 1;
  }

  .detail-card,
  .detail-card:nth-child(3),
  .detail-card:nth-child(4),
  .detail-card:nth-child(5) {
    grid-column: span 1;
  }

  .age-orbit {
    grid-template-columns: repeat(4, 1fr);
  }

  .age-chip {
    grid-column: auto;
  }

  .age-display {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 680px) {
  .site-header {
    top: 0;
    left: 0;
    width: 100%;
    min-height: 72px;
    padding: 10px 18px;
  }

  .brand {
    font-size: 13px;
  }

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

  .hero {
    min-height: auto;
    padding: 112px 18px 74px;
  }

  .hero-stage {
    order: 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-actions {
    display: grid;
  }

  .match-card {
    min-height: 360px;
  }

  .score-ribbon {
    top: 16px;
    left: 16px;
    right: 16px;
  }

  .tactical-board {
    inset: 94px 24px 44px;
  }

  .stage-logo {
    width: 92px;
    height: 92px;
    right: 16px;
    bottom: 16px;
  }

  .hero-scroll {
    display: none;
  }

  .marquee-track span {
    min-height: 76px;
    padding: 0 28px;
  }

  .section,
  .page-hero,
  .contact-page {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-hero,
  .contact-page {
    padding-top: 118px;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .program-showcase,
  .timeline,
  .values-grid,
  .faq-layout,
  .program-page-grid,
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .faq-visual {
    min-height: 320px;
  }

  .faq-item button {
    padding: 18px;
  }

  .faq-answer p {
    padding: 0 18px 20px 18px;
  }

  .program-slide,
  .detail-card {
    min-height: 300px;
  }

  .visual-panel,
  .boot-scene {
    min-height: 380px;
  }

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

  .age-chip {
    min-height: 66px;
    font-size: 24px;
  }

  .age-display {
    min-height: 320px;
    padding: 28px;
  }

  .age-display h3 {
    font-size: 30px;
  }

  .gallery-card,
  .gallery-card.tall,
  .gallery-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }

  .site-footer {
    padding: 42px 18px 24px;
    text-align: left;
  }

  .footer-brand {
    align-items: flex-start;
  }

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

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