:root {
  --navy-950: #061224;
  --navy-900: #081a32;
  --navy-800: #0e2b4d;
  --navy-700: #16436f;
  --gold-500: #d9aa45;
  --gold-400: #f2c766;
  --gold-300: #ffe7a8;
  --paper: #fbfaf6;
  --mist: #edf3ef;
  --ink: #121826;
  --muted: #667085;
  --line-dark: rgba(18, 24, 38, 0.13);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(6, 18, 36, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--navy-950);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.section-dark {
  color: white;
  background: var(--navy-950);
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: linear-gradient(140deg, #061224, #0e2b4d 54%, #061224);
  transition: opacity 600ms ease, visibility 600ms ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__mark {
  position: relative;
  width: 132px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(244, 207, 116, 0.45);
  border-radius: 8px;
  box-shadow: 0 0 42px rgba(217, 170, 69, 0.32);
}

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

.loader__mark span {
  position: absolute;
  inset: -30%;
  background: linear-gradient(105deg, transparent 34%, rgba(255, 231, 168, 0.76) 48%, transparent 62%);
  animation: lightSweep 2.4s ease-in-out infinite;
}

.loader p {
  margin: 0;
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 78px;
  padding: 0 30px;
  color: white;
  background: linear-gradient(to bottom, rgba(6, 18, 36, 0.9), rgba(6, 18, 36, 0.12));
  transition: height 240ms ease, background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-bottom: 1px solid rgba(244, 207, 116, 0.16);
  background: rgba(6, 18, 36, 0.92);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img,
.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 7px;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-weight: 950;
  line-height: 1;
}

.brand small,
.footer-brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.language-switch {
  display: inline-flex;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(244, 207, 116, 0.34);
  border-radius: 999px;
  padding: 3px;
  background: rgba(6, 18, 36, 0.42);
  backdrop-filter: blur(14px);
}

.language-switch button {
  min-width: 38px;
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0;
  transition: background 200ms ease, color 200ms ease;
}

.language-switch button.is-active {
  color: #071426;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  font-size: 0.86rem;
  font-weight: 850;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.84);
  transition: color 220ms ease;
}

.site-nav a:hover {
  color: white;
}

.site-nav .nav-cta {
  border: 1px solid rgba(244, 207, 116, 0.46);
  border-radius: 8px;
  padding: 11px 15px;
  color: var(--gold-300);
  background: rgba(217, 170, 69, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: white;
  transition: transform 220ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 132px max(20px, calc((100vw - 1180px) / 2)) 88px;
}

.hero__reel {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--navy-950);
}

.hero__reel::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(6, 18, 36, 0.96), rgba(6, 18, 36, 0.78) 42%, rgba(6, 18, 36, 0.26) 78%, rgba(6, 18, 36, 0.6)),
    linear-gradient(180deg, rgba(6, 18, 36, 0.08), rgba(6, 18, 36, 0.88));
  content: "";
}

.reel-frame {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  animation: reelFade 36s ease-in-out infinite;
}

.reel-frame--one {
  background-image: url("./assets/real-equipo-panoramica-web.jpg");
}

.reel-frame--two {
  background-image: url("./assets/real-ninos-camisetas-web.jpg");
  animation-delay: 6s;
}

.reel-frame--three {
  background-image: url("./assets/real-familias-medellin.png");
  animation-delay: 12s;
}

.reel-frame--four {
  background-image: url("./assets/real-equipo-azul-web.jpg");
  animation-delay: 18s;
}

.reel-frame--five {
  background-image: url("./assets/real-familia-cancha.png");
  animation-delay: 24s;
}

.reel-frame--six {
  background-image: url("./assets/real-entrenador-ninos.png");
  animation-delay: 30s;
}

.hero__content {
  width: min(760px, 100%);
  color: white;
}

.hero__logo {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border: 1px solid rgba(244, 207, 116, 0.36);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48), 0 0 62px rgba(217, 170, 69, 0.28);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: #94640c;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 850px;
  margin: 24px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.hero__subtitle {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero__statement {
  display: inline-flex;
  margin: 22px 0 0;
  border-left: 3px solid var(--gold-500);
  padding: 4px 0 4px 14px;
  color: var(--gold-300);
  font-weight: 900;
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  padding: 14px 20px;
  font-weight: 950;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.button::before {
  position: absolute;
  inset: -40%;
  background: linear-gradient(105deg, transparent 36%, rgba(255, 255, 255, 0.32) 50%, transparent 64%);
  content: "";
  transform: translateX(-92%) rotate(8deg);
  transition: transform 520ms ease;
}

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

.button:hover::before {
  transform: translateX(92%) rotate(8deg);
}

.button--gold {
  border: 1px solid rgba(255, 231, 168, 0.32);
  color: #071426;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 16px 36px rgba(217, 170, 69, 0.24);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero__ticker {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intro,
.differentiator,
.stage,
.families,
.process {
  padding: 108px 0;
}

.split-grid,
.stage-grid,
.level-grid,
.staff-grid,
.past-grid,
.families-grid,
.groups-grid,
.final-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.copy-block p,
.feature-band p,
.stage-copy p,
.level p,
.past-copy p,
.family-copy p,
.groups p,
.final-cta p {
  color: #344054;
  font-size: 1.05rem;
  line-height: 1.82;
}

.copy-block p:first-child,
.feature-band p:first-child {
  margin-top: 0;
}

.staff,
.pillars,
.level,
.past,
.groups,
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
}

.staff {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.staff-photo,
.stage-photo,
.level-photo {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.staff-photo img,
.stage-photo img,
.level-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.staff p,
.level p,
.past p,
.groups p,
.final-cta p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.8;
}

.staff-list,
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.staff-list article,
.service-grid article,
.pillar-card,
.testimonial,
.process-step {
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.staff-list article,
.service-grid article {
  padding: 22px;
}

.staff-list span,
.pillar-card span,
.process-step span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-300);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.staff-list p,
.service-grid p,
.pillar-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 42px;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.96), rgba(251, 250, 246, 0.9)),
    url("./assets/real-arquero-cancha.png") right center / auto 120% no-repeat;
  box-shadow: 0 18px 48px rgba(18, 24, 38, 0.1);
}

.pillars {
  background:
    linear-gradient(135deg, rgba(6, 18, 36, 0.98), rgba(12, 43, 77, 0.92)),
    url("./assets/real-equipo-panoramica-web.jpg") center / cover fixed;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading--dark h2 {
  color: var(--ink);
}

.pillar-grid,
.past-testimonials,
.process-grid {
  display: grid;
  gap: 16px;
}

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

.pillar-card {
  min-height: 280px;
  padding: 26px;
}

.pillar-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.stage {
  background: linear-gradient(180deg, var(--paper), var(--mist));
}

.stage-photo img {
  height: 520px;
}

.level {
  background: linear-gradient(135deg, #071426, #103b5d);
}

.level-photo img {
  height: 560px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
}

.experiences {
  padding: 112px 0;
  background: linear-gradient(180deg, var(--paper), #eef3f7);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.route-map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(18, 24, 38, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, #0e2b4d, #061224);
  box-shadow: var(--shadow);
}

.real-world-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.01);
}

.route-map::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 36% 55%, rgba(244, 207, 116, 0.16), transparent 18%),
    radial-gradient(circle at 52% 42%, rgba(255, 231, 168, 0.1), transparent 16%),
    linear-gradient(180deg, rgba(6, 18, 36, 0.06), rgba(6, 18, 36, 0.54));
  content: "";
  pointer-events: none;
}

.map-glow-path {
  position: absolute;
  inset: 18% 18% 20% 20%;
  z-index: 2;
  border: 1px solid rgba(255, 231, 168, 0.2);
  border-right-color: transparent;
  border-bottom-color: rgba(255, 231, 168, 0.08);
  border-radius: 50%;
  opacity: 0.7;
  transform: rotate(-10deg);
}

.map-glow-path::before,
.map-glow-path::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.map-glow-path::before {
  inset: 19% 12% 20% 9%;
  border-top: 1px solid rgba(255, 231, 168, 0.2);
  transform: rotate(12deg);
}

.map-glow-path::after {
  inset: 40% 22% 32% 16%;
  border-top: 1px solid rgba(255, 231, 168, 0.16);
  transform: rotate(-18deg);
}

.map-pin {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 231, 168, 0.52);
  border-radius: 999px;
  padding: 9px 12px;
  color: white;
  background: rgba(6, 18, 36, 0.78);
  box-shadow: 0 12px 28px rgba(6, 18, 36, 0.28), 0 0 22px rgba(217, 170, 69, 0.16);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.map-pin span {
  width: 10px;
  height: 10px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 6px rgba(217, 170, 69, 0.18), 0 0 22px rgba(244, 207, 116, 0.85);
}

.map-pin:hover,
.map-pin.is-active {
  color: #071426;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  transform: translate(-50%, -50%) scale(1.04);
}

.map-pin--usa {
  left: 22%;
  top: 46%;
}

.map-pin--england {
  left: 47%;
  top: 34%;
}

.map-pin--spain {
  left: 47%;
  top: 42%;
}

.map-pin--colombia {
  left: 27%;
  top: 58%;
}

.map-pin--brasil {
  left: 35%;
  top: 68%;
}

.map-pin--argentina {
  left: 32%;
  top: 80%;
}

.program-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  width: min(430px, calc(100% - 44px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 24px;
  color: white;
  background: rgba(6, 18, 36, 0.88);
  backdrop-filter: blur(18px);
}

.program-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.72;
}

.program-list {
  display: grid;
  gap: 12px;
}

.program-button {
  display: grid;
  min-height: 96px;
  gap: 6px;
  align-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 18px;
  color: var(--ink);
  background: white;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 16px 38px rgba(18, 24, 38, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.program-button span {
  color: #94640c;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.program-button strong {
  font-size: 1.18rem;
}

.program-button:hover,
.program-button.is-active {
  border-color: rgba(217, 170, 69, 0.7);
  background: #fff7e4;
  transform: translateY(-2px);
}

.past {
  background:
    linear-gradient(90deg, rgba(6, 18, 36, 0.98), rgba(6, 18, 36, 0.68)),
    url("./assets/real-familias-medellin.png") center / cover;
}

.past blockquote {
  margin: 28px 0 0;
  border-left: 3px solid var(--gold-500);
  padding-left: 18px;
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.25;
}

.past-collage {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 14px;
  align-items: end;
}

.past-collage img,
.family-collage img {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.past-collage img:first-child {
  height: 460px;
}

.past-collage img:last-child {
  height: 360px;
}

.past-testimonials {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
}

.families {
  background: linear-gradient(180deg, var(--paper), var(--mist));
}

.family-collage {
  display: grid;
  grid-template-columns: 0.9fr 0.82fr 1.1fr;
  gap: 14px;
  align-items: end;
}

.family-collage img {
  height: 340px;
}

.family-collage img:nth-child(2) {
  height: 420px;
}

.groups {
  background:
    linear-gradient(90deg, rgba(6, 18, 36, 0.96), rgba(6, 18, 36, 0.68)),
    url("./assets/real-equipo-panoramica-web.jpg") center / cover;
}

.service-grid article {
  min-height: 160px;
}

.process {
  background: linear-gradient(180deg, var(--paper), #eef3f7);
}

.process-grid {
  grid-template-columns: repeat(6, 1fr);
}

.process-step {
  min-height: 178px;
  border-color: var(--line-dark);
  padding: 22px;
  color: var(--ink);
  background: white;
  box-shadow: 0 16px 38px rgba(18, 24, 38, 0.08);
}

.process-step h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.12;
}

.testimonial {
  margin: 0;
  border-color: rgba(255, 255, 255, 0.14);
  padding: 24px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.testimonial p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.72;
}

.testimonial cite {
  display: block;
  margin-top: 18px;
  color: var(--gold-300);
  font-style: normal;
  font-weight: 950;
}

.final-cta {
  background:
    linear-gradient(90deg, rgba(6, 18, 36, 0.98), rgba(6, 18, 36, 0.76), rgba(6, 18, 36, 0.52)),
    url("./assets/real-familia-cancha.png") center / cover;
}

.lead-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 14px 13px;
  color: white;
  background: rgba(6, 18, 36, 0.72);
  outline: none;
}

.lead-form select option {
  color: var(--ink);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #24d366;
  box-shadow: 0 18px 42px rgba(36, 211, 102, 0.34);
  transition: transform 220ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: white;
  background: #040c18;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 850;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 720ms ease, transform 720ms ease;
}

@keyframes reelFade {
  0%,
  100% {
    opacity: 0;
    transform: scale(1.06);
  }

  4%,
  15% {
    opacity: 1;
    transform: scale(1);
  }

  20% {
    opacity: 0;
    transform: scale(1.02);
  }
}

@keyframes lightSweep {
  0%,
  36% {
    transform: translateX(-90%) rotate(8deg);
  }

  62%,
  100% {
    transform: translateX(90%) rotate(8deg);
  }
}

@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: 1180px) {
  .site-nav {
    gap: 14px;
    font-size: 0.78rem;
  }

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

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

@media (max-width: 940px) {
  .site-header {
    padding: 0 20px;
  }

  .language-switch {
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-block;
  }

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

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

  .site-nav {
    position: fixed;
    top: 68px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(244, 207, 116, 0.18);
    border-radius: 8px;
    padding: 10px;
    background: rgba(6, 18, 36, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .hero {
    align-items: flex-end;
    padding-bottom: 96px;
  }

  .hero__reel::after {
    background:
      linear-gradient(180deg, rgba(6, 18, 36, 0.42), rgba(6, 18, 36, 0.94)),
      linear-gradient(90deg, rgba(6, 18, 36, 0.72), rgba(6, 18, 36, 0.34));
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  .split-grid,
  .stage-grid,
  .level-grid,
  .staff-grid,
  .past-grid,
  .families-grid,
  .groups-grid,
  .final-grid,
  .feature-band,
  .experience-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .staff-photo img,
  .stage-photo img,
  .level-photo img {
    height: 440px;
  }

  .route-map {
    min-height: auto;
    padding: 390px 16px 16px;
  }

  .real-world-map {
    inset: 0 0 auto;
    height: 390px;
  }

  .map-pin {
    font-size: 0.7rem;
    padding: 8px 10px;
  }

  .program-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .past-collage,
  .family-collage {
    grid-template-columns: 1fr;
  }

  .past-collage img:first-child,
  .past-collage img:last-child,
  .family-collage img,
  .family-collage img:nth-child(2) {
    height: 360px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

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

@media (max-width: 640px) {
  .brand small,
  .hero__ticker {
    display: none;
  }

  .language-switch button {
    min-width: 34px;
    padding: 7px 8px;
  }

  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    min-height: 900px;
  }

  .hero__logo {
    width: 104px;
    height: 104px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero__subtitle,
  .copy-block p,
  .feature-band p,
  .stage-copy p,
  .level p,
  .past-copy p,
  .family-copy p,
  .groups p,
  .final-cta p {
    font-size: 1rem;
  }

  .hero__actions,
  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .intro,
  .differentiator,
  .stage,
  .families,
  .process,
  .staff,
  .pillars,
  .level,
  .past,
  .groups,
  .final-cta,
  .experiences {
    padding: 78px 0;
  }

  .feature-band {
    padding: 24px;
    background: white;
  }

  .staff-list,
  .service-grid,
  .pillar-grid,
  .past-testimonials,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .staff-photo img,
  .stage-photo img,
  .level-photo img,
  .past-collage img:first-child,
  .past-collage img:last-child,
  .family-collage img,
  .family-collage img:nth-child(2) {
    height: 330px;
  }

  .route-map {
    padding: 330px 14px 14px;
  }

  .real-world-map {
    height: 330px;
  }

  .map-glow-path {
    display: none;
  }

  .map-pin {
    gap: 6px;
    padding: 7px 8px;
    font-size: 0.62rem;
  }

  .map-pin span {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 4px rgba(217, 170, 69, 0.18), 0 0 18px rgba(244, 207, 116, 0.78);
  }

  .program-button {
    min-height: 86px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}
