﻿/* Progression Point production CSS bundle. Source files retained separately for development. */

/* assets/css/variables.css */
:root {
  --color-ink: #041f27;
  --color-deep: #062c36;
  --color-panel: #083945;
  --color-teal: #16b7a6;
  --color-mint: #bade7e;
  --color-cream: #fff7d5;
  --color-white: #ffffff;
  --color-soft: #a9c6ca;
  --color-muted: rgba(255, 255, 255, .72);
  --color-faint: rgba(255, 255, 255, .54);
  --color-whatsapp: #25d366;

  --bg-page: linear-gradient(135deg, #062c36 0%, #0b4854 46%, #041f27 100%);
  --bg-glass: linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .045));
  --bg-glass-strong: linear-gradient(145deg, rgba(255, 255, 255, .17), rgba(255, 255, 255, .055));
  --bg-cta: radial-gradient(circle at 20% 15%, rgba(186, 222, 126, .34), transparent 35%), linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05));
  --bg-button: linear-gradient(135deg, var(--color-cream), var(--color-mint));
  --bg-button-whatsapp: linear-gradient(135deg, var(--color-whatsapp), var(--color-mint));

  --text-main: var(--color-white);
  --text-muted: var(--color-muted);
  --text-soft: var(--color-soft);
  --text-dark: var(--color-ink);

  --border-soft: 1px solid rgba(255, 255, 255, .16);
  --border-bright: 1px solid rgba(186, 222, 126, .36);
  --border-hairline: rgba(255, 255, 255, .12);

  --shadow-soft: 0 18px 70px rgba(0, 0, 0, .24);
  --shadow-strong: 0 30px 90px rgba(0, 0, 0, .42);
  --shadow-glow: 0 0 42px rgba(186, 222, 126, .18);
  --shadow-button: 0 18px 42px rgba(0, 0, 0, .3);

  --space-1: 6px;
  --space-2: 10px;
  --space-3: 14px;
  --space-4: 18px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 44px;
  --space-8: 64px;
  --space-9: 92px;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-xxl: 42px;
  --radius-pill: 999px;

  --container: 1180px;
  --container-wide: 1380px;
  --header-height: 82px;

  --transition-fast: 180ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 700ms ease;

  --font-body: Manrope, system-ui, sans-serif;
  --font-display: "Space Grotesk", Manrope, system-ui, sans-serif;
}


/* assets/css/base.css */
* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--header-height) + 18px);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text-main);
  background: var(--color-ink);
  font-family: var(--font-body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -6;
  background: var(--bg-page);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -.055em;
}

h1 {
  margin: 22px 0;
  font-size: clamp(48px, 6.1vw, 92px);
  line-height: .94;
}

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

p {
  color: var(--text-muted);
  line-height: 1.68;
}

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

::selection {
  color: var(--color-ink);
  background: var(--color-mint);
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.site-light {
  position: fixed;
  inset: -20%;
  z-index: -3;
  pointer-events: none;
  opacity: .72;
  background:
    radial-gradient(circle at calc(18% + var(--scroll-shift, 0px)) 10%, rgba(22, 183, 166, .42), transparent 28%),
    radial-gradient(circle at 82% 6%, rgba(186, 222, 126, .22), transparent 26%),
    linear-gradient(115deg, transparent 34%, rgba(255, 247, 213, .08), transparent 54%);
  filter: blur(2px);
}

.text-gradient {
  background: linear-gradient(135deg, #fff 10%, var(--color-cream) 45%, var(--color-mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* assets/css/layout.css */
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: var(--space-9) 0;
}

.section-tight {
  padding-top: 66px;
  padding-bottom: 82px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: var(--border-soft);
  background: rgba(4, 31, 39, .74);
  backdrop-filter: blur(22px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.mobile-menu,
.nav-toggle {
  display: none;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navlinks a {
  position: relative;
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--bg-button);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.navlinks a:hover,
.navlinks a:focus-visible {
  color: var(--color-cream);
}

.navlinks a:hover::after,
.navlinks a:focus-visible::after {
  transform: scaleX(1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand img {
  width: 66px;
  height: 66px;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.brand span {
  line-height: 1;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  position: relative;
  overflow: clip;
}

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

.hero::before {
  width: 760px;
  height: 760px;
  right: -260px;
  top: 40px;
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, transparent, rgba(186, 222, 126, .24), transparent 38%),
    radial-gradient(circle, rgba(22, 183, 166, .18), transparent 60%);
  filter: blur(4px);
  animation: heroGlow 14s ease-in-out infinite;
}

.hero::after {
  inset: 8% -8% auto auto;
  width: 54vw;
  height: 46vw;
  max-height: 620px;
  border: 1px solid rgba(186, 222, 126, .15);
  clip-path: polygon(0 18%, 74% 18%, 74% 0, 100% 50%, 74% 100%, 74% 82%, 0 82%);
  background: linear-gradient(90deg, rgba(186, 222, 126, .1), rgba(22, 183, 166, .03), transparent);
  transform: rotate(-7deg);
  opacity: .55;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, .95fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-height: 590px;
  perspective: 1100px;
}

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

.section-intro {
  max-width: 500px;
  margin-bottom: 0;
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.coach-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 24px;
  align-items: start;
}

.coach-aside {
  display: grid;
  gap: 14px;
}

.coach-copy {
  display: grid;
  gap: 14px;
}

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

.site-footer {
  padding: 44px 0;
  color: rgba(255, 255, 255, .62);
  border-top: var(--border-soft);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}


/* assets/css/components.css */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-pill);
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: var(--shadow-button);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .42), transparent 68%);
  transform: translateX(-120%);
  transition: transform 620ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .36), var(--shadow-glow);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(120%);
}

.btn-primary {
  background: var(--bg-button);
}

.btn-secondary {
  color: var(--color-white);
  background: rgba(255, 255, 255, .07);
  box-shadow: none;
}

.btn-whatsapp {
  color: var(--color-ink);
  background: var(--bg-button-whatsapp);
}

.btn-with-icon {
  gap: 9px;
}

.btn-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: currentColor;
}

.button-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button-row-center {
  justify-content: center;
}

.text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  color: var(--color-cream);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-teal), var(--color-mint));
  transform: scaleX(.55);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.arrow-link {
  align-items: center;
  gap: 7px;
  margin-top: 22px;
}

.arrow-link::before {
  content: "â†’";
  order: 2;
  transition: transform var(--transition-base);
}

.arrow-link:hover::before,
.arrow-link:focus-visible::before {
  transform: translateX(4px);
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--color-cream);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-label span {
  width: 44px;
  height: 2px;
  flex: 0 0 auto;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-teal), var(--color-mint));
  box-shadow: 0 0 22px rgba(186, 222, 126, .36);
}

.pin {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-mint);
  box-shadow: 0 0 16px rgba(186, 222, 126, .8);
}

.lead {
  max-width: 720px;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.64;
}

.location-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--color-cream);
  font-weight: 800;
  line-height: 1.5;
}

.location-line .pin {
  margin-top: .58em;
}

.section-kicker {
  color: var(--color-mint);
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: .14em;
  font-size: 12px;
}

.section-title {
  margin: 10px 0 0;
  font-size: clamp(36px, 4.7vw, 66px);
  line-height: .98;
}

.section-trust-line {
  max-width: 760px;
  margin: -12px 0 28px;
  color: var(--color-cream);
  font-weight: 850;
}

.card,
.card-glass,
.trust-item,
.faq details {
  position: relative;
  border: var(--border-soft);
  background: var(--bg-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.card {
  min-height: 100%;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.card::before,
.trust-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 247, 213, .3), transparent 34%, rgba(186, 222, 126, .35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  right: -32%;
  bottom: -56px;
  width: 220px;
  height: 150px;
  background:
    linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, .08) 41%, transparent 42%),
    radial-gradient(circle, rgba(186, 222, 126, .18), transparent 65%);
  transform: rotate(-18deg);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(186, 222, 126, .5);
  box-shadow: 0 24px 82px rgba(0, 0, 0, .3), var(--shadow-glow);
}

.card h3 {
  position: relative;
  z-index: 1;
  margin: 22px 0 12px;
  font-size: 25px;
}

.card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .74);
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(186, 222, 126, .5);
  background:
    radial-gradient(circle at 70% 30%, rgba(186, 222, 126, .34), transparent 24%),
    linear-gradient(135deg, rgba(22, 183, 166, .28), rgba(186, 222, 126, .14));
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

.service-icon::before,
.service-icon::after,
.service-icon span {
  content: "";
  position: absolute;
  display: block;
}

.icon-target::before {
  inset: 13px;
  border: 2px solid var(--color-mint);
  border-radius: 50%;
}

.icon-target::after {
  inset: 23px;
  border-radius: 50%;
  background: var(--color-cream);
  box-shadow: 0 0 18px rgba(255, 247, 213, .55);
}

.icon-target span {
  left: 9px;
  right: 9px;
  top: 50%;
  height: 2px;
  background: rgba(255, 255, 255, .42);
}

.icon-group span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-mint);
  box-shadow: 0 0 14px rgba(186, 222, 126, .62);
}

.icon-group span:nth-child(1) { left: 13px; top: 14px; }
.icon-group span:nth-child(2) { right: 13px; top: 14px; }
.icon-group span:nth-child(3) { left: 20px; bottom: 13px; }
.icon-group span:nth-child(4) { right: 20px; bottom: 13px; }

.icon-technical::before {
  left: 11px;
  bottom: 12px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-cream);
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 46%, rgba(255, 247, 213, .78) 47% 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, rgba(255, 247, 213, .78) 47% 53%, transparent 54%);
}

.icon-technical::after {
  right: 13px;
  bottom: 12px;
  width: 17px;
  height: 31px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: var(--color-mint);
  box-shadow: 0 0 16px rgba(186, 222, 126, .35);
}

.icon-technical span {
  left: 14px;
  top: 17px;
  width: 30px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--color-teal);
  transform: rotate(-18deg);
}

.icon-tactics::before {
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 8px;
}

.icon-tactics::after {
  left: 18px;
  top: 27px;
  width: 24px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--color-mint);
  transform: rotate(-22deg);
}

.icon-tactics span {
  right: 14px;
  top: 17px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--color-mint);
  border-right: 2px solid var(--color-mint);
  transform: rotate(25deg);
}

.tag,
.review-note {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(186, 222, 126, .28);
  border-radius: var(--radius-pill);
  background: rgba(186, 222, 126, .13);
  color: var(--color-cream);
  font-size: 13px;
  font-weight: 900;
}

.session-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(460px, 100%);
  padding: 28px;
  border-radius: 34px;
  background: rgba(6, 44, 54, .78);
  transform: translate(-50%, -50%);
  animation: sessionCardFloat 5s ease-in-out infinite;
}

.session-card h2 {
  margin: 18px 0 22px;
  font-size: 29px;
  line-height: 1.08;
}

.mini-pitch {
  position: relative;
  height: 205px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 70% 45%, rgba(186, 222, 126, .16), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 50%, transparent 50%);
}

.mini-pitch::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
}

.mini-pitch::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  border-left: 1px dashed rgba(255, 255, 255, .16);
}

.player,
.defender,
.ball {
  position: absolute;
  border-radius: 50%;
}

.player {
  width: 14px;
  height: 14px;
  background: var(--color-mint);
  box-shadow: 0 0 18px var(--color-mint);
}

.defender {
  width: 13px;
  height: 13px;
  background: #ff6b62;
  box-shadow: 0 0 15px rgba(255, 107, 98, .58);
}

.p1 { left: 50%; top: 32px; transform: translateX(-50%); }
.p2 { left: 62px; top: 92px; }
.p3 { right: 62px; top: 92px; }
.p4 { left: 50%; bottom: 32px; transform: translateX(-50%); }
.d1 {
  left: 50%;
  top: 98px;
  transform: translate3d(-50%, -50%, 0);
  animation: defenderPress 3.4s ease-in-out infinite;
  will-change: transform;
}

.ball {
  left: 50%;
  top: 40px;
  width: 10px;
  height: 10px;
  background: var(--color-white);
  box-shadow: 0 0 16px rgba(255, 255, 255, .8);
  transform: translate3d(-50%, 0, 0);
  animation: ballMove 3.4s ease-in-out infinite;
  will-change: transform;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.metric {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
}

.metric b {
  display: block;
  color: var(--color-cream);
  font-size: 24px;
}

.metric span {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  border-block: var(--border-soft);
  background: linear-gradient(90deg, rgba(186, 222, 126, .08), rgba(255, 255, 255, .06), rgba(22, 183, 166, .08));
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  flex: 0 0 auto;
}

.marquee span {
  padding: 19px 30px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.marquee b {
  color: var(--color-mint);
}

.coverage-pitch {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: var(--border-soft);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 50%, rgba(186, 222, 126, .11), transparent 25%),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 50%, transparent 50%),
    var(--bg-glass);
  box-shadow: var(--shadow-strong);
}

.coverage-pitch::before,
.coverage-line,
.coverage-circle,
.coverage-box,
.coverage-six {
  content: "";
  position: absolute;
  pointer-events: none;
}

.coverage-pitch::before {
  inset: 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
}

.coverage-halfway {
  left: 30px;
  right: 30px;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, .14);
}

.coverage-circle {
  left: calc(50% - 76px);
  top: calc(50% - 76px);
  width: 152px;
  height: 152px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
}

.coverage-box {
  left: calc(50% - 150px);
  width: 300px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, .13);
}

.box-top {
  top: 30px;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.box-bottom {
  bottom: 30px;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.coverage-six {
  left: calc(50% - 76px);
  width: 152px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .12);
}

.six-top {
  top: 30px;
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.six-bottom {
  bottom: 30px;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.location-pill {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-pill);
  background: rgba(4, 31, 39, .62);
  color: rgba(255, 255, 255, .88);
  font-weight: 850;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .2);
  backdrop-filter: blur(16px);
  transform: translate(-50%, -50%);
  animation: riseFormation 5s ease-in-out infinite;
}

.role-gk { left: 50%; top: 88%; }
.role-lcb { left: 26%; top: 72%; }
.role-cb { left: 50%; top: 72%; }
.role-rcb { left: 74%; top: 72%; }
.role-lwb { left: 16%; top: 54%; }
.role-lcm { left: 38%; top: 55%; }
.role-cm { left: 50%; top: 48%; }
.role-rcm { left: 62%; top: 55%; }
.role-rwb { left: 84%; top: 54%; }
.role-lw { left: 22%; top: 33%; }
.role-am { left: 50%; top: 32%; }
.role-rw { left: 78%; top: 33%; }
.role-st { left: 50%; top: 16%; }
.role-ss-left { left: 36%; top: 22%; }
.role-ss-right { left: 64%; top: 22%; }

.location-pill:nth-child(2n) { animation-delay: .4s; }
.location-pill:nth-child(3n) { animation-delay: .8s; }

.coach-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(186, 222, 126, .2), rgba(22, 183, 166, .06));
  box-shadow: var(--shadow-strong);
}

.coach-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 32%, rgba(255, 255, 255, .08) 33%, transparent 34%),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(255, 255, 255, .04) 43px 44px);
}

.coach-photo span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 13px;
  border: var(--border-soft);
  border-radius: var(--radius-pill);
  background: rgba(6, 44, 54, .74);
  color: var(--color-cream);
  font-weight: 900;
}

.coach-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 18%;
}

.quick-facts {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 22px;
  background: var(--bg-glass);
  box-shadow: var(--shadow-soft);
}

.quick-facts h3 {
  margin: 0 0 14px;
  color: var(--color-cream);
  font-size: 22px;
}

.quick-facts ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-facts li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: baseline;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.fact-marker {
  position: relative;
  top: -1px;
  width: 9px;
  height: 9px;
  justify-self: center;
  border-radius: 50%;
  background: var(--color-mint);
  box-shadow: 0 0 14px rgba(186, 222, 126, .6);
}

.fact-marker::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(186, 222, 126, .22);
  border-radius: inherit;
}

.trust-item {
  overflow: hidden;
  padding: 18px;
  border-radius: 20px;
}

.trust-item h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.trust-subheading {
  padding-top: 16px;
}

.trust-item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.trust-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.45;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 18px;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-mint);
  box-shadow: 0 0 12px rgba(186, 222, 126, .55);
  transform: translateY(-50%);
}

.coach-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  border: var(--border-soft);
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.coach-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid rgba(186, 222, 126, .22);
  border-radius: var(--radius-pill);
  color: var(--color-cream);
  background: rgba(186, 222, 126, .09);
  font-size: 13px;
  font-weight: 900;
}

.journey-track {
  position: relative;
  display: flex;
  gap: 0;
  padding-top: 18px;
}

.journey-track::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 39px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-teal), var(--color-mint));
  opacity: .7;
}

.journey-track::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 37px;
  width: 72px;
  height: 6px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, transparent, rgba(255, 247, 213, .8), transparent);
  opacity: .58;
  animation: journeyGlide 7s ease-in-out infinite;
}

.journey-step {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
  padding: 0 18px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.journey-step:nth-child(even) {
  margin-top: 0;
}

.journey-step::after {
  display: none;
}

.journey-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-teal), var(--color-mint));
  color: var(--color-ink);
  font-weight: 1000;
  box-shadow: none;
}

.journey-step h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.journey-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.journey-step:first-child h3,
.journey-step:last-child h3 {
  color: var(--color-cream);
}

.testimonials-grid {
  align-items: stretch;
}

.testimonial {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.testimonial blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
}

.testimonial blockquote p {
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.72;
}

.testimonial blockquote p + p {
  margin-top: 18px;
}

.stars {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: var(--color-mint);
  font-weight: 1000;
  letter-spacing: .08em;
  opacity: .86;
}

.testimonial-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.testimonial-meta strong {
  color: var(--color-cream);
  font-size: 15px;
}

.testimonial-meta cite {
  display: grid;
  gap: 4px;
  font-style: normal;
}

.testimonial-link {
  margin-top: 22px;
}

.video-grid {
  align-items: stretch;
}

.video-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 9 / 16;
  margin: 18px 18px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 16%, rgba(186, 222, 126, .14), transparent 36%),
    rgba(1, 18, 20, .78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .3);
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: rgba(1, 18, 20, .92);
  object-fit: cover;
}

.video-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 24px 28px 30px;
}

.video-platform {
  align-self: flex-start;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-pill);
  color: var(--color-cream);
  background: rgba(255, 255, 255, .06);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.video-body h3 {
  margin: 0;
  color: var(--color-cream);
}

.video-body p {
  margin: 0;
  color: var(--color-muted);
}

.reviews-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.reviews-footnote {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--text-muted);
  text-align: center;
}

.page-hero {
  position: relative;
  overflow: clip;
  padding-top: 96px;
}

.page-hero .lead {
  margin-top: 22px;
}

.testimonial-full {
  padding: 32px;
}

.testimonial-full blockquote p {
  font-size: 18px;
}

.testimonial-full blockquote p + p {
  margin-top: 20px;
}

.review-note {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 0 20px;
  border-radius: 20px;
}

.faq summary {
  cursor: pointer;
  padding: 20px 0;
  list-style: none;
  font-weight: 900;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--color-mint);
  font-size: 24px;
  line-height: 18px;
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  margin: 0 0 20px;
}

.cta {
  padding: 72px 58px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 38px;
  background: var(--bg-cta);
  box-shadow: var(--shadow-strong);
  text-align: center;
}

.cta .section-title {
  max-width: 820px;
  margin-inline: auto;
}

.cta p {
  max-width: 760px;
  margin: 16px auto 0;
  font-size: 18px;
  line-height: 1.78;
}

.cta .button-row {
  margin-top: 38px;
  gap: 20px;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 16px;
  border: var(--border-soft);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .07);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 900;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(186, 222, 126, .42);
}

.contact-form {
  max-width: 920px;
  margin-inline: auto;
  padding: 34px;
}

.form-note {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: var(--text-muted);
  font-weight: 800;
}

.form-note span {
  color: var(--color-cream);
}

.form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .84);
  font-weight: 900;
}

.contact-form label > span {
  line-height: 1.35;
}

.contact-form small {
  color: var(--text-muted);
  font: inherit;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(4, 31, 39, .58);
  color: var(--color-white);
  padding: 13px 14px;
  outline: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.contact-form textarea {
  resize: vertical;
  line-height: 1.6;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(186, 222, 126, .58);
  background: rgba(4, 31, 39, .76);
  box-shadow: 0 0 0 4px rgba(186, 222, 126, .12);
}

.contact-form > label,
.checkbox-field {
  margin-top: 18px;
}

.checkbox-field {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--text-muted);
  font-weight: 800;
}

.checkbox-field input {
  min-height: 0;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--color-mint);
}

.field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px;
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  box-shadow: var(--shadow-soft);
}

.form-message ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--text-muted);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: var(--color-ink);
  text-decoration: none;
  font-size: 24px;
  font-weight: 1000;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .42);
}


/* assets/css/animations.css */
.tactics-board {
  position: fixed;
  inset: -12% -8%;
  z-index: -2;
  pointer-events: none;
  opacity: .2;
  transform: translateY(calc(var(--scroll, 0) * -.16px)) rotate(calc(var(--scroll, 0) * .004deg));
  filter: drop-shadow(0 0 22px rgba(186, 222, 126, .18));
}

.tactics-board svg {
  width: 100%;
  height: 100%;
}

.route {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  opacity: .54;
}

.route-dashed {
  stroke: var(--color-cream);
  stroke-dasharray: 12 16;
  animation: dash 18s linear infinite;
}

.route-drawn {
  stroke: var(--color-mint);
  stroke-dasharray: 350;
  stroke-dashoffset: 350;
  animation: draw 4s ease-in-out infinite alternate;
}

.route-arrow {
  stroke: var(--color-teal);
  stroke-dasharray: 18 22;
  animation: dashReverse 16s linear infinite;
}

.pitch-lines {
  stroke: var(--color-white);
  stroke-width: 2;
  opacity: .24;
}

.pulse-dot {
  fill: none;
  stroke-width: 3;
  animation: pulse 2.8s ease-in-out infinite;
}

.pulse-one {
  stroke: var(--color-teal);
}

.pulse-two {
  stroke: var(--color-cream);
}

.moving-marker {
  fill: var(--color-mint);
  filter: drop-shadow(0 0 10px rgba(186, 222, 126, .8));
}

.marker-one {
  offset-path: path("M108 720 C320 548 464 520 640 350 S1040 150 1450 260");
  animation: markerTravel 10s linear infinite;
}

.marker-two {
  offset-path: path("M980 690 C1120 610 1240 480 1360 250");
  animation: markerTravel 8s linear infinite reverse;
}

.reveal {
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
}

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

.reveal[data-reveal-delay="1"] {
  transition-delay: 90ms;
}

.reveal[data-reveal-delay="2"] {
  transition-delay: 170ms;
}

@keyframes heroGlow {
  50% {
    transform: translate(-34px, 22px) scale(1.04);
    opacity: .72;
  }
}

@keyframes sheen {
  40%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes float {
  50% {
    transform: translateY(-16px);
  }
}

@keyframes sessionCardFloat {
  0%, 100% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translate(-50%, calc(-50% - 16px));
  }
}

@keyframes ballMove {
  0%, 100% { transform: translate3d(-50%, 0, 0); }
  25% { transform: translate3d(132px, 52px, 0); }
  50% { transform: translate3d(-50%, 132px, 0); }
  75% { transform: translate3d(-138px, 52px, 0); }
}

@keyframes defenderPress {
  0%, 100% { transform: translate3d(-50%, -50%, 0); }
  25% { transform: translate3d(28px, -20px, 0); }
  50% { transform: translate3d(-50%, 28px, 0); }
  75% { transform: translate3d(-52px, -20px, 0); }
}

@keyframes journeyGlide {
  0%, 12% {
    left: 20px;
  }
  88%, 100% {
    left: calc(100% - 92px);
  }
}

@keyframes journeyMobileGlide {
  0%, 12% {
    top: 24px;
    opacity: .2;
  }

  42%,
  72% {
    opacity: .68;
  }

  88%,
  100% {
    top: calc(100% - 72px);
    opacity: .2;
  }
}

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

@keyframes rise {
  50% {
    transform: translateY(-5px);
  }
}

@keyframes riseFormation {
  50% {
    transform: translate(-50%, calc(-50% - 5px));
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: -280;
  }
}

@keyframes dashReverse {
  to {
    stroke-dashoffset: 280;
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pulse {
  50% {
    opacity: .28;
    transform: scale(1.16);
  }
}

@keyframes markerTravel {
  to {
    offset-distance: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal,
  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}


/* assets/css/responsive.css */
@media (max-width: 1100px) {
  .grid-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
    padding-top: 0;
  }

  .journey-track::before {
    display: none;
  }

  .journey-track::after {
    display: none;
  }

  .journey-step:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .nav {
    position: relative;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 10px 0;
  }

  .navlinks {
    order: 3;
    width: 100%;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .js-ready .navlinks {
    display: none;
  }

  .navlinks::-webkit-scrollbar {
    display: none;
  }

  .navlinks a {
    flex: 0 0 auto;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, .055);
  }

  .navlinks a::after {
    display: none;
  }

  .js-ready .nav-toggle {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: rgba(255, 255, 255, .07);
    color: var(--color-white);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: var(--radius-pill);
    background: currentColor;
    transition: transform var(--transition-base), opacity var(--transition-base);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-height);
    z-index: 80;
    width: auto;
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
    padding: 28px 24px;
    border: var(--border-soft);
    border-inline: 0;
    border-bottom: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 20% 8%, rgba(186, 222, 126, .16), transparent 32%),
      rgba(4, 31, 39, .96);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .38), var(--shadow-glow);
    backdrop-filter: blur(20px);
    align-content: start;
  }

  @supports not (height: 100dvh) {
    .mobile-menu {
      height: calc(100vh - var(--header-height));
    }
  }

  body.menu-open {
    overflow: hidden;
  }

  .mobile-menu:not([hidden]) {
    display: grid;
  }

  .mobile-menu a {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 16px 8px;
    border-top: 1px solid rgba(255, 255, 255, .11);
    border-radius: 0;
    color: rgba(255, 255, 255, .84);
    text-decoration: none;
    font-weight: 900;
    font-size: 19px;
  }

  .mobile-menu a:first-child {
    border-top: 0;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    color: var(--color-cream);
    background: transparent;
  }

  .hero-grid,
  .coach-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 520px;
  }

  .grid-two,
  .grid-three {
    grid-template-columns: 1fr;
  }

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

  .section-head {
    display: block;
  }

  .section-intro {
    margin-top: 18px;
  }

  .section {
    padding: 72px 0;
  }

  .page-hero {
    padding-top: 72px;
  }

  .section-tight {
    padding-top: 40px;
  }

  .hero.section-tight {
    padding-top: 54px;
    padding-bottom: 88px;
  }

  .cta {
    padding: 52px 28px;
  }

  h1 {
    font-size: 54px;
  }

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

  .coverage-pitch {
    min-height: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 28px;
  }

  .location-pill {
    position: relative;
    inset: auto;
    transform: none;
    animation: rise 5s ease-in-out infinite;
  }

  .coverage-line,
  .coverage-circle,
  .coverage-box,
  .coverage-six,
  .coverage-pitch::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav {
    min-height: var(--header-height);
  }

  .brand span {
    font-size: 15px;
  }

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

  .nav-cta {
    display: none;
  }

  .hero-stage {
    min-height: 500px;
  }

  .hero-label {
    align-items: center;
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-label span {
    width: 32px;
  }

  .session-card {
    width: 100%;
  }

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

  .metric {
    padding: 10px;
  }

  .metric b {
    font-size: 18px;
  }

  h1 {
    font-size: 44px;
    line-height: .98;
  }

  .lead {
    font-size: 18px;
    line-height: 1.62;
  }

  .location-line {
    align-items: center;
    font-size: 15.5px;
    line-height: 1.55;
  }

  .location-line .pin {
    margin-top: 0;
  }

  .btn {
    width: 100%;
    min-height: 56px;
  }

  .button-row {
    gap: 16px;
    margin-top: 28px;
  }

  .grid-four,
  .journey-track,
  .video-grid.grid-three {
    grid-template-columns: 1fr;
  }

  .section-intro,
  .card p,
  .trust-item p,
  .faq p,
  .journey-step p,
  .cta p {
    font-size: 16px;
    line-height: 1.65;
  }

  .section-intro {
    font-size: 17px;
  }

  .section-kicker,
  .review-note {
    font-size: 13px;
  }

  .card h3 {
    font-size: 24px;
  }

  .journey-track {
    position: relative;
    display: grid;
    gap: 28px;
    padding: 8px 0 0;
  }

  .journey-track::before {
    display: block;
    left: 50%;
    right: auto;
    top: 26px;
    bottom: 28px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--color-teal), var(--color-mint));
    transform: translateX(-50%);
    opacity: .35;
  }

  .journey-track::after {
    display: block;
    left: calc(50% - 3px);
    top: 24px;
    width: 6px;
    height: 48px;
    border-radius: var(--radius-pill);
    background: linear-gradient(180deg, transparent, rgba(255, 247, 213, .85), transparent);
    animation: journeyMobileGlide 6.5s ease-in-out infinite;
  }

  .journey-step {
    display: grid;
    justify-items: center;
    padding: 0 20px;
    text-align: center;
  }

  .journey-num {
    margin: 0 auto 14px;
  }

  .journey-step h3 {
    font-size: 24px;
  }

  .faq summary {
    font-size: 16px;
    line-height: 1.35;
  }

  .testimonial blockquote p {
    font-size: 17px;
    line-height: 1.72;
  }

  .video-body {
    padding: 22px 24px 26px;
  }

  .testimonial-full {
    padding: 26px;
  }

  .testimonial-meta {
    font-size: 14.5px;
  }

  .trust-list {
    font-size: 14.5px;
  }

  .quick-facts li {
    font-size: 15px;
  }

  .coach-trust-strip {
    gap: 8px;
  }

  .coach-trust-strip span {
    font-size: 13.5px;
  }

  .card,
  .coverage-pitch {
    padding: 22px;
  }

  .location-pill {
    font-size: 15px;
  }

  .coach-photo {
    min-height: 0;
  }

  .coach-photo img {
    min-height: 0;
  }

  .marquee span {
    padding: 17px 26px;
    font-size: 14px;
    letter-spacing: .12em;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }

  .footer-row {
    display: block;
  }

  .footer-row span {
    display: block;
  }

  .footer-row span + span {
    margin-top: 10px;
  }

  .socials {
    justify-content: center;
    margin-top: 34px;
    padding-top: 24px;
  }

  .cta .button-row {
    gap: 16px;
    margin-top: 34px;
  }

  .contact-form {
    padding: 26px;
  }

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

@media (max-width: 420px) {
  :root {
    --header-height: 74px;
  }

  h1 {
    font-size: 40px;
  }

  .section-title {
    font-size: 32px;
    line-height: 1.03;
  }

  .hero.section-tight {
    padding-top: 48px;
    padding-bottom: 80px;
  }

  .metric span {
    font-size: 12px;
  }

  .hero-stage {
    min-height: 520px;
  }

  .session-card {
    padding: 18px;
  }

  .lead {
    font-size: 17px;
  }

  .section-intro,
  .card p,
  .trust-item p,
  .faq p,
  .journey-step p,
  .cta p {
    font-size: 15.5px;
  }

  .section-intro {
    font-size: 16.5px;
  }

  .marquee span {
    padding-inline: 22px;
    font-size: 13.5px;
  }

  .cta {
    padding: 42px 20px;
    border-radius: 28px;
  }

  .testimonial-full {
    padding: 22px;
  }

  .video-platform {
    font-size: 11px;
  }

  .video-body {
    padding: 20px;
  }

  .socials {
    gap: 12px;
  }

  .socials a {
    width: 100%;
  }

  .contact-form {
    padding: 22px;
  }

  .floating-whatsapp {
    bottom: 12px;
    transform: scale(.9);
    transform-origin: right bottom;
  }

  .floating-whatsapp:hover,
  .floating-whatsapp:focus-visible {
    transform: scale(.9) translateY(-3px);
  }
}


