@font-face {
  font-family: 'SFProCompressed';
  src: url('fonts/SF-Pro.ttf') format('truetype-variations'),
       url('fonts/SF-Pro.ttf') format('truetype');
  font-weight: 100 1000;
  font-stretch: 50% 200%;
  font-display: swap;
}
@font-face {
  font-family: 'Halfre';
  src: url('fonts/Halfre.otf') format('opentype');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --navy-green: #164349;
  --topaz: #38baad;
  --orange: #f15c3c;
  --purple: #211c58;
  --soft-topaz: #74cac0;
  --soft-orange: #f8ab62;
  --soft-purple: #49449c;
  --white: #ffffff;

  /* base width 1920 -> 1px = (100/1920)vw = 0.05208vw */
  --u: 0.05208vw;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; overflow-x: clip; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy-green);
  font-family: 'Halfre', system-ui, sans-serif;
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===================================================== */
/* PAGE-LOAD CURTAIN                                     */
/* ===================================================== */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--navy-green);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.curtain-logo {
  width: 120px;
  height: 120px;
  opacity: 0;
  transform: scale(0.85);
  animation: curtainLogoIn 700ms cubic-bezier(0.2, 0.7, 0.2, 1) 80ms forwards;
}
.curtain.is-leaving {
  animation: curtainLeave 900ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}
.curtain.is-leaving .curtain-logo {
  animation: curtainLogoOut 400ms cubic-bezier(0.6, 0, 0.4, 1) forwards;
}
@keyframes curtainLogoIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes curtainLogoOut {
  to { opacity: 0; transform: scale(1.15); filter: blur(8px); }
}
@keyframes curtainLeave {
  to { transform: translateY(-100%); }
}
body.is-loading { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .curtain { display: none; }
}

/* ===================================================== */
/* CUSTOM CURSOR (desktop only)                          */
/* ===================================================== */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 999px;
  mix-blend-mode: difference;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--white);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--white);
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
              height 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
              opacity 0.3s ease,
              border-color 0.3s ease,
              background-color 0.3s ease;
}
.cursor-on .cursor-dot,
.cursor-on .cursor-ring { opacity: 1; }
.cursor-ring.is-hover {
  width: 64px; height: 64px;
  border-color: var(--topaz);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none; }
}
body.cursor-on { cursor: none; }
body.cursor-on a, body.cursor-on button { cursor: none; }

/* ===================================================== */
/* NAVBAR — floating pill, centered, hidden over hero    */
/* ===================================================== */
.navbar {
  position: fixed;
  top: calc(20 * var(--u));
  left: 50%;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: calc(28 * var(--u));
  padding: calc(8 * var(--u)) calc(8 * var(--u)) calc(8 * var(--u)) calc(20 * var(--u));
  background: var(--navy-green);
  border-radius: calc(10 * var(--u));
  transform: translate(-50%, -140%);
  transition: transform 480ms cubic-bezier(0.2, 0.7, 0.2, 1),
              opacity 320ms ease;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  white-space: nowrap;
}
.navbar.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
  height: calc(52 * var(--u));
  flex: 0 0 auto;
}
.navbar-logo img {
  height: 100%;
  width: auto;
  display: block;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: calc(28 * var(--u));
  flex: 0 0 auto;
}
.navbar-nav a {
  font-family: 'Halfre', sans-serif;
  text-decoration: none;
  color: var(--soft-topaz);
  font-size: calc(16 * var(--u));
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: calc(6 * var(--u)) 0;
  transition: color 0.25s ease;
}
.navbar-nav a:hover,
.navbar-nav a.is-active { color: var(--white); }

.navbar .navbar-cta {
  height: calc(42 * var(--u));
  width: auto;
  padding: 0 calc(20 * var(--u));
  font-size: calc(13 * var(--u));
  letter-spacing: 0.06em;
  font-weight: 600;
  flex: 0 0 auto;
  gap: calc(8 * var(--u));
  border-radius: calc(10 * var(--u));
}
.navbar .navbar-cta .btn-icon {
  width: calc(12 * var(--u));
  height: calc(12 * var(--u));
}

@media (prefers-reduced-motion: reduce) {
  .navbar { transition: opacity 0.2s ease; transform: translate(-50%, 0); }
  .navbar:not(.is-visible) { opacity: 0; }
}

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

/* ---------------------------------------------------- */
/* SECTION SHELL — every section is a 1920x1080 stage   */
/* (counter is 1920x300) — positions are absolute in    */
/* percentages of the stage so it scales perfectly.     */
/* ---------------------------------------------------- */
.stage {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.stage--hero,
.stage--s02 { aspect-ratio: 1920 / 1080; }
.stage--counter { aspect-ratio: 1920 / 300; background: var(--white); }

/* helper: position from figma px to % of 1920/1080 stage */

/* ===================================================== */
/* HERO                                                  */
/* ===================================================== */
.hero { background: var(--navy-green); }

.hero .deco {
  position: absolute;
  /* Camada_1 decorative curves at (-133, -88), 1402x2140 (clipped by overflow) */
  left: calc(-133 / 1920 * 100%);
  top: calc(-88 / 1080 * 100%);
  width: calc(1402 / 1920 * 100%);
  height: calc(2140 / 1080 * 100%);
  pointer-events: none;
  opacity: 0.95;
}
.hero .deco img { width: 100%; height: 100%; object-fit: contain; object-position: top left; }

.hero .ball {
  position: absolute;
  left: calc(650 / 1920 * 100%);
  top: calc(247 / 1080 * 100%);
  width: calc(619 / 1920 * 100%);
  height: calc(627 / 1080 * 100%);
  z-index: 3;
  perspective: calc(1400 * var(--u));
  perspective-origin: 50% 40%;
  pointer-events: none;
}
.hero .ball-3d {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform, filter;
  transform: translate3d(0,0,0) rotateX(0deg) rotateZ(0deg);
}
.hero .ball-3d img {
  width: 100%;
  height: 100%;
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .hero .ball-3d { transform: none !important; filter: none !important; }
}

.hero .logo-mark {
  position: absolute;
  left: calc(1625 / 1920 * 100%);
  top: calc(412 / 1080 * 100%);
  width: calc(184 / 1920 * 100%);
  height: calc(221 / 1080 * 100%);
  z-index: 4;
}
.hero .logo-mark img { width: 100%; height: 100%; object-fit: contain; }

.headline {
  font-family: 'SFProCompressed', 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-stretch: 50%;
  font-variation-settings: 'wght' 900, 'wdth' 50;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.01em;
  position: absolute;
  white-space: nowrap;
  z-index: 5;
  /* mask container: clips the rising word inside it */
  overflow: hidden;
  padding: 0 calc(20 * var(--u));
  margin-left: calc(-20 * var(--u));
}

.headline .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  filter: blur(10px);
  will-change: transform, opacity, filter;
}
body:not(.is-loading) .headline .word {
  animation: heroWordReveal 1100ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes heroWordReveal {
  0%   { opacity: 0; transform: translateY(110%); filter: blur(10px); }
  55%  { opacity: 1; filter: blur(2px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* stagger sequence: WHERE → POTENCIAL → IS → TESTED */
.hero .h-where     { left: calc(64  / 1920 * 100%); top: calc(69  / 1080 * 100%); font-size: calc(220 * var(--u)); }
.hero .h-potencial { left: calc(930 / 1920 * 100%); top: calc(69  / 1080 * 100%); font-size: calc(220 * var(--u)); }
.hero .h-is        { left: calc(960 / 1920 * 100%); top: calc(767 / 1080 * 100%); font-size: calc(220 * var(--u)); }
.hero .h-tested    { left: calc(1202/ 1920 * 100%); top: calc(764 / 1080 * 100%); font-size: calc(220 * var(--u)); }

.hero .h-where     .word { animation-delay: 100ms; }
.hero .h-potencial .word { animation-delay: 240ms; }
.hero .h-is        .word { animation-delay: 420ms; }
.hero .h-tested    .word { animation-delay: 560ms; }

/* ball + ctas fade in after the headlines */
.hero .ball,
.hero .logo-mark,
.hero .ctas {
  opacity: 0;
  will-change: transform, opacity;
}
body:not(.is-loading) .hero .ball,
body:not(.is-loading) .hero .logo-mark,
body:not(.is-loading) .hero .ctas {
  animation: heroFadeIn 700ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero .ball      { animation-delay: 350ms; }
.hero .logo-mark { animation-delay: 600ms; }
.hero .ctas      { animation-delay: 750ms; }

@keyframes heroFadeIn {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .headline,
  .headline .word,
  .hero .ball,
  .hero .logo-mark,
  .hero .ctas {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.hero .ctas {
  position: absolute;
  left: calc(87 / 1920 * 100%);
  top: calc(891 / 1080 * 100%);
  display: flex;
  gap: calc(36 * var(--u));
  z-index: 6;
}

.btn {
  font-family: 'Halfre', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  border-radius: calc(14 * var(--u));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(14 * var(--u));
  height: calc(64 * var(--u));
  padding: 0 calc(28 * var(--u));
  font-size: calc(18 * var(--u));
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  position: relative;
}
.btn .btn-icon {
  width: calc(18 * var(--u));
  height: calc(18 * var(--u));
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.btn .btn-icon svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn:hover .btn-icon {
  transform: translate(calc(4 * var(--u)), calc(-4 * var(--u)));
}

.btn--ghost {
  background: var(--white);
  color: var(--navy-green);
}
.btn--ghost:hover {
  background: var(--navy-green);
  color: var(--white);
}
.btn--primary {
  background: var(--topaz);
  color: var(--purple);
}
.btn--primary:hover {
  background: var(--white);
  color: var(--purple);
}

/* ===================================================== */
/* MARQUEE — infinite horizontal scroller                */
/* ===================================================== */
.marquee {
  background: var(--topaz);
  color: var(--navy-green);
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: calc(22 * var(--u)) 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeSlide 38s linear infinite;
  will-change: transform;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: calc(48 * var(--u));
  padding-right: calc(48 * var(--u));
  flex-shrink: 0;
}
.marquee-group span {
  font-family: 'SFProCompressed', 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-stretch: 60%;
  font-variation-settings: 'wght' 900, 'wdth' 60;
  font-size: calc(56 * var(--u));
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}
.marquee-group .dot {
  width: calc(14 * var(--u));
  height: calc(14 * var(--u));
  border-radius: 999px;
  background: var(--navy-green);
  flex-shrink: 0;
}
@keyframes marqueeSlide {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ===================================================== */
/* COUNTER                                               */
/* ===================================================== */
.counter { background: var(--white); }

.counter .col {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.counter .num {
  font-family: 'SFProCompressed', 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-stretch: 60%;
  font-variation-settings: 'wght' 900, 'wdth' 60;
  color: var(--orange);
  font-size: calc(140 * var(--u));
  line-height: 0.85;
  letter-spacing: -0.01em;
}
.counter .lbl {
  font-family: 'Halfre', sans-serif;
  font-weight: 700;
  color: var(--navy-green);
  font-size: calc(20 * var(--u));
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: calc(18 * var(--u));
  line-height: 1.2;
}

.counter .c1 { left: calc(158  / 1920 * 100%); top: calc(51 / 300 * 100%); width: calc(203 / 1920 * 100%); }
.counter .c2 { left: calc(541  / 1920 * 100%); top: calc(51 / 300 * 100%); width: calc(287 / 1920 * 100%); }
.counter .c3 { left: calc(1008 / 1920 * 100%); top: calc(51 / 300 * 100%); width: calc(287 / 1920 * 100%); }
.counter .c4 { left: calc(1475 / 1920 * 100%); top: calc(51 / 300 * 100%); width: calc(287 / 1920 * 100%); }

/* ===================================================== */
/* SECTION 02 — THE TALENT IS THERE                      */
/* ===================================================== */
.s02 { background: var(--purple); }

.s02 .talent {
  position: absolute;
  left: calc(71 / 1920 * 100%);
  top: calc(72 / 1080 * 100%);
  width: calc(1004 / 1920 * 100%);
  max-width: calc(1004 / 1920 * 100%);
  font-size: calc(200 * var(--u));
  font-family: 'SFProCompressed', 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-stretch: 50%;
  font-variation-settings: 'wght' 900, 'wdth' 50;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  z-index: 3;
  overflow: hidden;
  padding: 0 calc(16 * var(--u));
  margin-left: calc(-16 * var(--u));
}

.s02 .copy {
  position: absolute;
  left: calc(1116 / 1920 * 100%);
  top: calc(224 / 1080 * 100%);
  width: calc(666 / 1920 * 100%);
  color: var(--topaz);
  font-family: 'Halfre', sans-serif;
  font-weight: 400;
  font-size: calc(28 * var(--u));
  line-height: 1.45;
  z-index: 3;
}

.s02 .system {
  position: absolute;
  left: calc(871 / 1920 * 100%);
  top: calc(500 / 1080 * 100%);
  width: calc(1004 / 1920 * 100%);
  font-family: 'SFProCompressed', 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-stretch: 50%;
  font-variation-settings: 'wght' 900, 'wdth' 50;
  color: var(--white);
  font-size: calc(200 * var(--u));
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: right;
  z-index: 3;
  overflow: hidden;
  padding: 0 calc(16 * var(--u));
  margin-right: calc(-16 * var(--u));
}

/* Reveal-on-scroll mask animation (s02 titles + s02 copy) */
.reveal-mask {
  overflow: hidden;
}
.reveal-mask > .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  filter: blur(10px);
  will-change: transform, opacity, filter;
}
.reveal-mask.is-revealed > .word {
  animation: heroWordReveal 1100ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.s02 .copy {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: 350ms;
}
.s02 .copy.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-mask > .word { opacity: 1; transform: none; filter: none; animation: none; }
  .s02 .copy { opacity: 1; transform: none; transition: none; }
}

/* radial bolts pattern on the left */
.s02 .radial {
  position: absolute;
  left: calc(-139 / 1920 * 100%);
  top: calc(183 / 1080 * 100%);
  width: calc(1030 / 1920 * 100%);
  aspect-ratio: 1 / 1;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.s02 .radial img {
  width: 100%; height: 100%; display: block;
  animation: radialDrift 26s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes radialDrift {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .s02 .radial img { animation: none; }
}

/* ===================================================== */
/* SECTION 03 — STICKY STACK CARDS                       */
/* Each card pins to the top of the viewport while       */
/* scrolling, the next card slides over to replace it.   */
/* ===================================================== */
.s03 {
  background: var(--purple);
  position: relative;
}

.sticky-card {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 6fr);
  align-items: center;
  background: var(--soft-purple);
  padding: 0 calc(96 * var(--u));
  gap: calc(60 * var(--u));
  overflow: hidden;
}

.sticky-card--accent { background: var(--topaz); }
.sticky-card--accent .sticky-card__num { color: var(--white); }
.sticky-card--accent .sticky-card__title { color: var(--navy-green); }
.sticky-card--accent .sticky-card__body { color: var(--navy-green); }
.sticky-card--accent .btn--primary,
.sticky-card--accent .btn--primary:hover { color: var(--navy-green); }

.sticky-card__num {
  font-family: 'SFProCompressed', 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-stretch: 50%;
  font-variation-settings: 'wght' 900, 'wdth' 50;
  font-size: calc(560 * var(--u));
  line-height: 0.78;
  color: var(--purple);
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
  align-self: center;
}

.sticky-card__content {
  display: flex;
  flex-direction: column;
  gap: calc(28 * var(--u));
  max-width: calc(720 * var(--u));
}

.sticky-card__eyebrow {
  font-family: 'Halfre', sans-serif;
  font-weight: 600;
  font-size: calc(16 * var(--u));
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--topaz);
  display: flex;
  align-items: center;
  gap: calc(14 * var(--u));
}
.sticky-card__eyebrow::before {
  content: '';
  width: calc(40 * var(--u));
  height: 1px;
  background: currentColor;
}

.sticky-card__title {
  font-family: 'SFProCompressed', 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-stretch: 50%;
  font-variation-settings: 'wght' 900, 'wdth' 50;
  font-size: calc(140 * var(--u));
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--white);
  text-transform: uppercase;
}

.sticky-card__body {
  font-family: 'Halfre', sans-serif;
  font-weight: 400;
  color: var(--white);
  font-size: calc(24 * var(--u));
  line-height: 1.5;
  max-width: calc(640 * var(--u));
}

.sticky-card__cta {
  margin-top: calc(20 * var(--u));
  display: inline-flex;
}

/* The accent (final) card centers content with no number */
.sticky-card--center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  padding: 0 calc(120 * var(--u));
}
.sticky-card--center .sticky-card__content {
  max-width: calc(900 * var(--u));
  align-items: center;
  text-align: center;
}
.sticky-card--center .sticky-card__title {
  font-size: calc(180 * var(--u));
}
.sticky-card--center .sticky-card__body {
  font-size: calc(28 * var(--u));
  max-width: calc(820 * var(--u));
}

/* curves decoration only on the first card row */
.s03 .curves-top, .s03 .curves-bottom { display: none; }

/* Sticky-card inner reveal animation when active */
.sticky-card__content > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.sticky-card.is-active .sticky-card__content > * {
  opacity: 1;
  transform: translateY(0);
}
.sticky-card.is-active .sticky-card__content > *:nth-child(1) { transition-delay: 80ms; }
.sticky-card.is-active .sticky-card__content > *:nth-child(2) { transition-delay: 200ms; }
.sticky-card.is-active .sticky-card__content > *:nth-child(3) { transition-delay: 320ms; }
.sticky-card.is-active .sticky-card__content > *:nth-child(4) { transition-delay: 440ms; }

.sticky-card__num {
  opacity: 0;
  transform: translateX(-40px) scale(0.92);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.sticky-card.is-active .sticky-card__num {
  opacity: 1;
  transform: translateX(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .sticky-card__content > *,
  .sticky-card__num {
    opacity: 1; transform: none; transition: none;
  }
}

/* ===================================================== */
/* PATHWAY — horizontal 5-step timeline                  */
/* ===================================================== */
.pathway {
  background: var(--navy-green);
  color: var(--white);
  padding: calc(160 * var(--u)) calc(80 * var(--u)) calc(180 * var(--u));
  position: relative;
  overflow: hidden;
}
.pathway-inner {
  max-width: calc(1700 * var(--u));
  margin: 0 auto;
}

.pathway-eyebrow {
  font-family: 'Halfre', sans-serif;
  font-weight: 600;
  font-size: calc(14 * var(--u));
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--topaz);
  display: flex;
  align-items: center;
  gap: calc(16 * var(--u));
  justify-content: center;
  margin-bottom: calc(40 * var(--u));
}
.pathway-eyebrow::before {
  content: '';
  width: calc(48 * var(--u));
  height: 1px;
  background: currentColor;
}

.pathway-title {
  font-family: 'SFProCompressed', 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-stretch: 50%;
  font-variation-settings: 'wght' 900, 'wdth' 50;
  font-size: calc(150 * var(--u));
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin: 0 auto calc(40 * var(--u));
  max-width: calc(1300 * var(--u));
}
.pathway-title__accent { color: var(--topaz); }

.pathway-lead {
  font-family: 'Halfre', sans-serif;
  font-size: calc(20 * var(--u));
  line-height: 1.55;
  color: var(--white);
  text-align: center;
  max-width: calc(720 * var(--u));
  margin: 0 auto calc(120 * var(--u));
}

/* chapters — alternating-side editorial layout */
.pathway-chapters {
  margin-top: calc(40 * var(--u));
  border-top: 1px solid var(--white);
}

.pathway-chapter {
  display: flex;
  align-items: center;
  gap: calc(80 * var(--u));
  padding: calc(64 * var(--u)) 0;
  border-bottom: 1px solid var(--white);
  position: relative;
}
.pathway-chapter--reverse { flex-direction: row-reverse; }

.pathway-chapter__num {
  flex: 0 0 auto;
  width: 42%;
  font-family: 'SFProCompressed', 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-stretch: 50%;
  font-variation-settings: 'wght' 900, 'wdth' 50;
  font-size: calc(260 * var(--u));
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  text-stroke: 2px var(--white);
  user-select: none;
  transition: color 0.45s ease,
              -webkit-text-stroke-color 0.45s ease,
              transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pathway-chapter--reverse .pathway-chapter__num { text-align: right; }

.pathway-chapter:hover .pathway-chapter__num {
  color: var(--topaz);
  -webkit-text-stroke-color: var(--topaz);
  transform: scale(1.02);
}

.pathway-chapter__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: calc(20 * var(--u));
}
.pathway-chapter--reverse .pathway-chapter__content {
  text-align: right;
  align-items: flex-end;
}

.pathway-chapter__tag {
  font-family: 'Halfre', sans-serif;
  font-weight: 700;
  font-size: calc(13 * var(--u));
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--topaz);
}

.pathway-chapter__name {
  font-family: 'SFProCompressed', 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-stretch: 50%;
  font-variation-settings: 'wght' 900, 'wdth' 50;
  font-size: calc(96 * var(--u));
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
  transition: letter-spacing 0.45s ease;
}
.pathway-chapter:hover .pathway-chapter__name { letter-spacing: -0.025em; }

.pathway-chapter__body {
  font-family: 'Halfre', sans-serif;
  font-size: calc(20 * var(--u));
  line-height: 1.55;
  color: var(--white);
  max-width: calc(520 * var(--u));
  margin: 0;
}

/* entry — title mask + lead fade + chapters slide in alternating */
.pathway-title .reveal-mask {
  display: block;
  padding: 0 calc(20 * var(--u));
}
.pathway-title .reveal-mask:nth-of-type(1) > .word { animation-delay: 80ms; }
.pathway-title .reveal-mask:nth-of-type(2) > .word { animation-delay: 220ms; }

.pathway-eyebrow,
.pathway-lead {
  opacity: 0;
  transform: translateY(calc(20 * var(--u)));
  transition: opacity 700ms ease,
              transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pathway.is-revealed .pathway-eyebrow { opacity: 1; transform: translateY(0); transition-delay: 60ms; }
.pathway.is-revealed .pathway-lead    { opacity: 1; transform: translateY(0); transition-delay: 320ms; }

.pathway-chapter {
  opacity: 0;
  transform: translateX(calc(40 * var(--u)));
}
.pathway-chapter--reverse { transform: translateX(calc(-40 * var(--u))); }

.pathway.is-revealed .pathway-chapter {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 700ms ease,
              transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
              color 0.45s ease,
              -webkit-text-stroke-color 0.45s ease;
}
.pathway.is-revealed .pathway-chapter:nth-of-type(1) { transition-delay: 600ms; }
.pathway.is-revealed .pathway-chapter:nth-of-type(2) { transition-delay: 760ms; }
.pathway.is-revealed .pathway-chapter:nth-of-type(3) { transition-delay: 920ms; }
.pathway.is-revealed .pathway-chapter:nth-of-type(4) { transition-delay: 1080ms; }
.pathway.is-revealed .pathway-chapter:nth-of-type(5) { transition-delay: 1240ms; }

@media (prefers-reduced-motion: reduce) {
  .pathway-title .reveal-mask > .word,
  .pathway-eyebrow,
  .pathway-lead,
  .pathway-chapter {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: color 0.45s ease,
                -webkit-text-stroke-color 0.45s ease !important;
  }
}

/* ===================================================== */
/* COACHES — Arrivals Board                              */
/* Vertical roster, big condensed names, departure-board */
/* feel. Highlight row inverts colors.                   */
/* ===================================================== */
.coaches {
  background: var(--orange);
  color: var(--white);
  padding: calc(160 * var(--u)) calc(80 * var(--u));
  position: relative;
  overflow: hidden;
}
.coaches-inner {
  max-width: calc(1700 * var(--u));
  margin: 0 auto;
}

.coaches-title {
  font-family: 'SFProCompressed', 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-stretch: 50%;
  font-variation-settings: 'wght' 900, 'wdth' 50;
  font-size: calc(150 * var(--u));
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin: 0 auto calc(48 * var(--u));
  max-width: calc(1300 * var(--u));
}
.coaches-title__here {
  display: inline-block;
  background: var(--white);
  color: var(--orange);
  padding: 0 calc(28 * var(--u));
  margin: 0 calc(4 * var(--u));
  line-height: 0.92;
  vertical-align: baseline;
}

.coaches-lead {
  font-family: 'Halfre', sans-serif;
  font-size: calc(22 * var(--u));
  line-height: 1.55;
  color: var(--white);
  text-align: center;
  max-width: calc(720 * var(--u));
  margin: 0 auto calc(120 * var(--u));
}

/* roster — list of arrival rows */
.coaches-roster {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--white);
}

.coach-row {
  display: grid;
  grid-template-columns:
    calc(110 * var(--u))
    calc(220 * var(--u))
    minmax(0, 1fr)
    auto
    calc(48 * var(--u));
  align-items: center;
  gap: calc(40 * var(--u));
  padding: calc(34 * var(--u)) calc(28 * var(--u));
  border-bottom: 1px solid var(--white);
  position: relative;
  transition: background 0.35s ease, color 0.35s ease;
  cursor: pointer;
}
.coach-row:hover { background: var(--soft-orange); }

.coach-row__num {
  font-family: 'SFProCompressed', 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-stretch: 50%;
  font-variation-settings: 'wght' 900, 'wdth' 50;
  font-size: calc(48 * var(--u));
  line-height: 1;
  color: var(--soft-orange);
  letter-spacing: -0.02em;
  transition: color 0.35s ease;
}
.coach-row:hover .coach-row__num { color: var(--white); }

.coach-row__div {
  font-family: 'Halfre', sans-serif;
  font-weight: 700;
  font-size: calc(13 * var(--u));
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: calc(12 * var(--u));
}
.coach-row__div::before {
  content: '';
  width: calc(28 * var(--u));
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.coach-row__name {
  font-family: 'SFProCompressed', 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-stretch: 50%;
  font-variation-settings: 'wght' 900, 'wdth' 50;
  font-size: calc(72 * var(--u));
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  transition: letter-spacing 0.35s ease;
}
.coach-row:hover .coach-row__name { letter-spacing: -0.025em; }

.coach-row__loc {
  font-family: 'Halfre', sans-serif;
  font-size: calc(15 * var(--u));
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: right;
  white-space: nowrap;
}

.coach-row__arrow {
  width: calc(28 * var(--u));
  height: calc(28 * var(--u));
  color: var(--soft-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), color 0.35s ease;
}
.coach-row__arrow svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.coach-row:hover .coach-row__arrow {
  transform: translate(calc(8 * var(--u)), calc(-8 * var(--u)));
  color: var(--white);
}

/* highlight row — inverted (white block) */
.coach-row--highlight {
  background: var(--white);
  border-top: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  margin: -1px 0; /* swallow adjacent borders */
  z-index: 2;
}
.coach-row--highlight .coach-row__num,
.coach-row--highlight .coach-row__div,
.coach-row--highlight .coach-row__name,
.coach-row--highlight .coach-row__loc,
.coach-row--highlight .coach-row__arrow { color: var(--orange); }
.coach-row--highlight:hover { background: var(--soft-orange); }
.coach-row--highlight:hover .coach-row__num,
.coach-row--highlight:hover .coach-row__div,
.coach-row--highlight:hover .coach-row__name,
.coach-row--highlight:hover .coach-row__loc,
.coach-row--highlight:hover .coach-row__arrow { color: var(--white); }

/* title — mask reveal per line (matches hero / section 02 treatment) */
.coaches-title .reveal-mask {
  display: block;
  padding: 0 calc(20 * var(--u));
}
.coaches-title .reveal-mask:nth-of-type(1) > .word { animation-delay: 80ms; }
.coaches-title .reveal-mask:nth-of-type(2) > .word { animation-delay: 220ms; }
.coaches-title .reveal-mask:nth-of-type(3) > .word { animation-delay: 360ms; }

/* lead and rows — cascade fade-up driven by .coaches.is-revealed */
.coaches-lead {
  opacity: 0;
  transform: translateY(calc(24 * var(--u)));
  transition: opacity 700ms ease,
              transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.coaches.is-revealed .coaches-lead { opacity: 1; transform: translateY(0); transition-delay: 220ms; }

.coach-row {
  opacity: 0;
  transform: translateY(calc(20 * var(--u)));
}
.coaches.is-revealed .coach-row {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease,
              transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1),
              background 0.35s ease,
              color 0.35s ease;
}
.coaches.is-revealed .coach-row:nth-child(1) { transition-delay: 340ms; }
.coaches.is-revealed .coach-row:nth-child(2) { transition-delay: 410ms; }
.coaches.is-revealed .coach-row:nth-child(3) { transition-delay: 480ms; }
.coaches.is-revealed .coach-row:nth-child(4) { transition-delay: 550ms; }
.coaches.is-revealed .coach-row:nth-child(5) { transition-delay: 620ms; }
.coaches.is-revealed .coach-row:nth-child(6) { transition-delay: 690ms; }

@media (prefers-reduced-motion: reduce) {
  .coaches-title .reveal-mask > .word,
  .coaches-lead,
  .coach-row {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: background 0.35s ease, color 0.35s ease !important;
  }
}

/* ===================================================== */
/* HORIZONTAL SCROLL — pinned voices section             */
/* ===================================================== */
.hscroll {
  position: relative;
  height: 380vh;
  background: var(--navy-green);
}
.hscroll-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hscroll-track {
  display: flex;
  gap: calc(48 * var(--u));
  padding: 0 calc(80 * var(--u));
  will-change: transform;
}
.hscroll-eyebrow {
  position: absolute;
  top: calc(48 * var(--u));
  left: calc(80 * var(--u));
  font-family: 'Halfre', sans-serif;
  font-weight: 600;
  font-size: calc(16 * var(--u));
  color: var(--topaz);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: calc(14 * var(--u));
  z-index: 4;
}
.hscroll-eyebrow .bar {
  display: inline-block;
  width: calc(48 * var(--u));
  height: 1px;
  background: var(--topaz);
}
.hscroll-counter {
  position: absolute;
  bottom: calc(48 * var(--u));
  right: calc(80 * var(--u));
  font-family: 'SFProCompressed', 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-stretch: 60%;
  font-variation-settings: 'wght' 900, 'wdth' 60;
  font-size: calc(80 * var(--u));
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  z-index: 4;
}
.hscroll-counter .total {
  color: var(--soft-topaz);
  font-size: calc(36 * var(--u));
  margin-left: calc(8 * var(--u));
}
.voice-card {
  flex: 0 0 auto;
  width: calc(560 * var(--u));
  height: calc(440 * var(--u));
  background: var(--soft-topaz);
  border-radius: calc(24 * var(--u));
  padding: calc(48 * var(--u)) calc(52 * var(--u));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.voice-card .quote {
  font-family: 'Halfre', sans-serif;
  color: var(--navy-green);
  font-size: calc(28 * var(--u));
  line-height: 1.35;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.voice-card .attr {
  font-family: 'Halfre', sans-serif;
  font-size: calc(14 * var(--u));
  color: var(--navy-green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.voice-card .attr .name {
  color: var(--navy-green);
  display: block;
  font-size: calc(18 * var(--u));
  margin-bottom: calc(4 * var(--u));
  letter-spacing: 0.06em;
}

@media (prefers-reduced-motion: reduce) {
  .hscroll { height: auto; }
  .hscroll-pin { position: relative; height: auto; padding: calc(80 * var(--u)) 0; }
  .hscroll-track { flex-wrap: wrap; }
}

/* ===================================================== */
/* INVESTMENT — final CTA / closer section               */
/* ===================================================== */
.investment {
  background: var(--purple);
  color: var(--white);
  padding: calc(180 * var(--u)) calc(80 * var(--u)) calc(200 * var(--u));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.investment-inner {
  max-width: calc(1400 * var(--u));
  margin: 0 auto;
}

.investment-eyebrow {
  font-family: 'Halfre', sans-serif;
  font-weight: 600;
  font-size: calc(14 * var(--u));
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--topaz);
  display: inline-flex;
  align-items: center;
  gap: calc(16 * var(--u));
  margin-bottom: calc(48 * var(--u));
}
.investment-eyebrow::before {
  content: '';
  width: calc(48 * var(--u));
  height: 1px;
  background: currentColor;
}

.investment-title {
  font-family: 'SFProCompressed', 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-stretch: 50%;
  font-variation-settings: 'wght' 900, 'wdth' 50;
  font-size: calc(150 * var(--u));
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin: 0 auto calc(56 * var(--u));
  max-width: calc(1200 * var(--u));
}
.investment-title__accent { color: var(--topaz); }

.investment-lead {
  font-family: 'Halfre', sans-serif;
  font-style: italic;
  font-size: calc(24 * var(--u));
  line-height: 1.5;
  color: var(--white);
  text-align: center;
  max-width: calc(900 * var(--u));
  margin: 0 auto calc(96 * var(--u));
}

.investment-price {
  font-family: 'SFProCompressed', 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-stretch: 50%;
  font-variation-settings: 'wght' 900, 'wdth' 50;
  font-size: calc(280 * var(--u));
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--topaz);
  display: inline-flex;
  align-items: baseline;
  gap: calc(8 * var(--u));
  margin: 0 0 calc(56 * var(--u));
}
.investment-price__num { font-variant-numeric: tabular-nums; }

/* topaz line under price */
.investment-divider {
  width: calc(120 * var(--u));
  height: 2px;
  background: var(--topaz);
  margin: 0 auto calc(48 * var(--u));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: 1400ms;
}
.investment.is-revealed .investment-divider { transform: scaleX(1); }

.investment-meta {
  list-style: none;
  margin: 0 auto calc(96 * var(--u));
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: calc(22 * var(--u));
  font-family: 'Halfre', sans-serif;
  font-weight: 600;
  font-size: calc(14 * var(--u));
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}
.investment-meta__sep {
  width: calc(5 * var(--u));
  height: calc(5 * var(--u));
  border-radius: 50%;
  background: var(--topaz);
  flex-shrink: 0;
}

.investment-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(16 * var(--u));
  padding: calc(26 * var(--u)) calc(56 * var(--u));
  background: var(--topaz);
  color: var(--navy-green);
  font-family: 'Halfre', sans-serif;
  font-weight: 700;
  font-size: calc(17 * var(--u));
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  border: none;
  border-radius: calc(14 * var(--u));
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.investment-cta:hover {
  background: var(--white);
  color: var(--purple);
}
.investment-cta__icon {
  width: calc(18 * var(--u));
  height: calc(18 * var(--u));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.investment-cta__icon svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.investment-cta:hover .investment-cta__icon {
  transform: translate(calc(4 * var(--u)), calc(-4 * var(--u)));
}

/* entry — title mask, price/lead/cta cascade */
.investment-title .reveal-mask {
  display: block;
  padding: 0 calc(20 * var(--u));
}
.investment-title .reveal-mask:nth-of-type(1) > .word { animation-delay: 80ms; }
.investment-title .reveal-mask:nth-of-type(2) > .word { animation-delay: 220ms; }

.investment-eyebrow,
.investment-lead,
.investment-price,
.investment-meta,
.investment-cta {
  opacity: 0;
  transform: translateY(calc(20 * var(--u)));
  transition: opacity 700ms ease,
              transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.investment.is-revealed .investment-eyebrow { opacity: 1; transform: translateY(0); transition-delay: 60ms; }
.investment.is-revealed .investment-lead    { opacity: 1; transform: translateY(0); transition-delay: 350ms; }
.investment.is-revealed .investment-price   { opacity: 1; transform: translateY(0); transition-delay: 700ms; }
.investment.is-revealed .investment-meta    { opacity: 1; transform: translateY(0); transition-delay: 1700ms; }
.investment.is-revealed .investment-cta {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease,
              transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
              background 0.3s ease,
              color 0.3s ease;
  transition-delay: 1900ms, 1900ms, 0s, 0s;
}

@media (prefers-reduced-motion: reduce) {
  .investment-title .reveal-mask > .word,
  .investment-eyebrow,
  .investment-lead,
  .investment-price,
  .investment-meta,
  .investment-cta,
  .investment-divider {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: background 0.3s ease, color 0.3s ease !important;
  }
}

/* ===================================================== */
/* FOOTER                                                */
/* ===================================================== */
.footer {
  background: var(--navy-green);
  color: var(--white);
  padding: calc(120 * var(--u)) calc(80 * var(--u)) calc(48 * var(--u));
  position: relative;
  overflow: hidden;
}
.footer-inner {
  max-width: calc(1700 * var(--u));
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: calc(80 * var(--u));
  align-items: center;
  padding-bottom: calc(80 * var(--u));
  border-bottom: 1px solid var(--white);
  margin-bottom: calc(72 * var(--u));
}
.footer-logo {
  display: inline-block;
  width: calc(140 * var(--u));
  flex-shrink: 0;
}
.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.footer-tagline {
  font-family: 'SFProCompressed', 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-stretch: 50%;
  font-variation-settings: 'wght' 900, 'wdth' 50;
  font-size: calc(72 * var(--u));
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  text-align: right;
  margin: 0;
}
.footer-tagline__accent { color: var(--topaz); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: calc(80 * var(--u));
  margin-bottom: calc(96 * var(--u));
}

.footer-col__title {
  display: block;
  font-family: 'Halfre', sans-serif;
  font-weight: 700;
  font-size: calc(13 * var(--u));
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--topaz);
  margin-bottom: calc(32 * var(--u));
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: calc(14 * var(--u));
}
.footer-list a {
  font-family: 'Halfre', sans-serif;
  font-size: calc(18 * var(--u));
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: calc(14 * var(--u));
  transition: color 0.25s ease;
}
.footer-list a:hover { color: var(--topaz); }

.footer-icon {
  width: calc(20 * var(--u));
  height: calc(20 * var(--u));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--topaz);
  transition: color 0.25s ease;
}
.footer-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-list a:hover .footer-icon { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: calc(40 * var(--u));
  border-top: 1px solid var(--white);
  font-family: 'Halfre', sans-serif;
  font-size: calc(13 * var(--u));
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--white);
}
.footer-bottom span { display: inline-block; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-tagline { text-align: left; font-size: calc(120 * var(--u)); }
  .footer-grid { grid-template-columns: 1fr; gap: calc(48 * var(--u)); }
  .footer-bottom { flex-direction: column; gap: calc(12 * var(--u)); align-items: flex-start; }
}

/* ===================================================== */
/* RESPONSIVE — tablet & mobile                          */
/* ===================================================== */

/* tablet — slight tightening */
@media (max-width: 1024px) {
  .pathway,
  .coaches,
  .investment {
    padding-left: calc(40 * var(--u));
    padding-right: calc(40 * var(--u));
  }
}

/* mobile — recalibrate base unit so layouts are readable */
@media (max-width: 768px) {
  :root {
    /* 1u ≈ 1px at 375px viewport (was 0.195px → too small to use) */
    --u: 0.266vw;
  }

  /* ------------ NAVBAR ------------ */
  .navbar {
    top: 12px;
    padding: 6px 6px 6px 14px;
    gap: 14px;
    border-radius: 10px;
  }
  .navbar-logo { height: 32px; }
  .navbar-nav { display: none; }
  .navbar .navbar-cta {
    height: 32px;
    font-size: 10px;
    padding: 0 12px;
  }

  /* ------------ HERO ------------ */
  .stage--hero { aspect-ratio: auto; min-height: 100svh; }
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 88px 22px 36px;
    overflow: visible;
    gap: 8px;
  }

  .hero .deco {
    left: -25%;
    top: 0;
    width: 170%;
    height: 100%;
    opacity: 0.7;
    pointer-events: none;
  }
  .hero .deco img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
  }

  /* headlines reflow into the document */
  .hero .h-where,
  .hero .h-potencial,
  .hero .h-is,
  .hero .h-tested {
    position: static;
    font-size: 64px;
    line-height: 0.88;
    width: auto;
    padding: 0;
    margin: 0;
  }

  /* group "WHERE POTENCIAL" at top, ball middle, "IS TESTED" bottom */
  .hero .h-where { order: 1; }
  .hero .h-potencial { order: 2; }
  .hero .ball { order: 3; }
  .hero .h-is { order: 4; }
  .hero .h-tested { order: 5; }
  .hero .logo-mark { order: 6; }
  .hero .ctas { order: 7; }

  .hero .ball {
    position: relative;
    left: 0; top: 0;
    width: 70vw;
    height: 70vw;
    align-self: center;
    margin: 18px 0;
  }

  .hero .logo-mark {
    position: relative;
    left: 0; top: 0;
    width: 64px;
    height: 64px;
    align-self: flex-start;
    margin-top: 20px;
  }

  .hero .ctas {
    position: relative;
    left: 0; top: 0;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 18px;
  }
  .ctas .btn {
    width: 100%;
    height: 52px;
    font-size: 14px;
    padding: 0 18px;
    border-radius: 12px;
    gap: 10px;
  }
  .btn .btn-icon { width: 14px; height: 14px; }

  /* ------------ MARQUEE ------------ */
  .marquee { padding: 14px 0; }
  .marquee-group { gap: 28px; padding-right: 28px; }
  .marquee-group span { font-size: 36px; }
  .marquee-group .dot { width: 8px; height: 8px; }

  /* ------------ COUNTER (4 stats) ------------ */
  .stage--counter { aspect-ratio: auto; padding: 56px 24px; }
  .counter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .counter .col {
    position: static;
    width: auto;
    left: auto !important;
    top: auto !important;
  }
  .counter .num { font-size: 64px; }
  .counter .lbl { font-size: 11px; margin-top: 10px; }

  /* ------------ SECTION 02 ------------ */
  .stage--s02 { aspect-ratio: auto; padding: 80px 22px; }
  .s02 .talent {
    position: relative;
    left: 0;
    top: 0;
    right: auto;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    font-size: 64px;
    line-height: 0.95;
    margin: 0 0 24px;
    padding: 0;
    text-align: left;
  }
  .s02 .system {
    position: relative;
    left: 0;
    top: 0;
    right: auto;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    font-size: 64px;
    line-height: 0.95;
    margin: 0;
    padding: 0;
    text-align: right;
  }
  .s02 .copy {
    position: relative;
    left: 0;
    top: 0;
    right: auto;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    margin-bottom: 32px;
  }
  .s02 .radial {
    position: absolute;
    left: -20%;
    top: 50%;
    width: 90vw;
    aspect-ratio: 1;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
  }

  /* ------------ SECTION 03 STICKY CARDS ------------ */
  .sticky-card {
    grid-template-columns: 1fr;
    padding: 0 28px;
    gap: 0;
    align-items: center;
    text-align: center;
  }
  .sticky-card__num {
    font-size: 200px;
    line-height: 0.85;
    align-self: center;
    margin-bottom: -32px;
  }
  .sticky-card__content {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
  .sticky-card__title { font-size: 56px; line-height: 0.95; }
  .sticky-card__body { font-size: 15px; max-width: 100%; }
  .sticky-card--center { padding: 0 24px; }
  .sticky-card--center .sticky-card__title { font-size: 64px; }
  .sticky-card--center .sticky-card__body { font-size: 16px; }

  /* ------------ PATHWAY ------------ */
  .pathway { padding: 88px 22px 100px; }
  .pathway-title { font-size: 56px; line-height: 0.95; max-width: 100%; }
  .pathway-lead { font-size: 16px; margin-bottom: 56px; }

  .pathway-chapter,
  .pathway-chapter--reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 40px 0;
  }
  .pathway-chapter__num {
    width: 100%;
    font-size: 140px;
    text-align: center !important;
    -webkit-text-stroke-width: 1.5px;
  }
  .pathway-chapter__content,
  .pathway-chapter--reverse .pathway-chapter__content {
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .pathway-chapter__name { font-size: 44px; line-height: 0.95; }
  .pathway-chapter__body { font-size: 15px; max-width: 100%; }

  /* ------------ COACHES ARRIVALS BOARD ------------ */
  .coaches { padding: 88px 22px 100px; }
  .coaches-title { font-size: 40px; line-height: 0.95; max-width: 100%; }
  .coaches-title .reveal-mask { white-space: nowrap; padding: 0 4px; }
  .coaches-title__here { padding: 0 8px; }
  .coaches-lead { font-size: 16px; margin-bottom: 48px; }

  .coach-row,
  .coach-row--highlight {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 12px;
    text-align: left;
  }
  .coach-row__num { font-size: 36px; }
  .coach-row__div { font-size: 11px; }
  .coach-row__name { font-size: 38px; line-height: 0.95; }
  .coach-row__loc { font-size: 11px; text-align: left; white-space: normal; }
  .coach-row__arrow { width: 22px; height: 22px; align-self: flex-start; }
  .coach-row:hover .coach-row__name { letter-spacing: -0.01em; }

  /* ------------ VOICES horizontal ------------ */
  .hscroll { height: 320vh; }
  .voice-card {
    width: 80vw;
    height: 56vh;
    border-radius: 18px;
    padding: 28px 30px;
  }
  .voice-card .quote { font-size: 18px; line-height: 1.4; }
  .voice-card .attr { font-size: 11px; }
  .voice-card .attr .name { font-size: 14px; }
  .hscroll-track { gap: 24px; padding: 0 18px; }
  .hscroll-eyebrow {
    top: 24px; left: 24px;
    font-size: 11px; gap: 8px;
  }
  .hscroll-eyebrow .bar { width: 24px; }
  .hscroll-counter {
    bottom: 24px; right: 24px;
    font-size: 48px;
  }
  .hscroll-counter .total { font-size: 18px; }

  /* ------------ INVESTMENT ------------ */
  .investment { padding: 96px 22px 110px; }
  .investment-title { font-size: 60px; line-height: 0.95; }
  .investment-lead { font-size: 16px; margin-bottom: 48px; }
  .investment-price { font-size: 140px; gap: 4px; margin-bottom: 32px; }
  .investment-divider { width: 80px; margin-bottom: 32px; }
  .investment-meta {
    flex-direction: column;
    gap: 10px;
    font-size: 11px;
    margin-bottom: 56px;
  }
  .investment-meta__sep { display: none; }
  .investment-cta {
    width: 100%;
    padding: 18px 22px;
    font-size: 13px;
    border-radius: 12px;
    gap: 10px;
  }
  .investment-cta__icon { width: 14px; height: 14px; }

  /* ------------ FOOTER ------------ */
  .footer { padding: 80px 22px 28px; }
  .footer-top { padding-bottom: 40px; margin-bottom: 40px; }
  .footer-tagline { font-size: 36px; line-height: 0.95; }
  .footer-logo { width: 80px; }
  .footer-grid { gap: 36px; margin-bottom: 56px; }
  .footer-list a { font-size: 16px; }
  .footer-bottom { font-size: 11px; gap: 10px; }

  /* hide custom cursor on mobile (already gated) and disable some heavy effects */
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* small mobile — tighten further */
@media (max-width: 420px) {
  .hero .h-where,
  .hero .h-potencial,
  .hero .h-is,
  .hero .h-tested { font-size: 56px; }
  .counter .num { font-size: 56px; }
  .s02 .talent,
  .s02 .system { font-size: 56px; }
  .pathway-title,
  .investment-title { font-size: 48px; }
  .coaches-title { font-size: 32px; }
  .pathway-chapter__name,
  .coach-row__name { font-size: 32px; }
  .investment-price { font-size: 110px; }
  .footer-tagline { font-size: 30px; }
}

