:root {
  --navy: #07192d;
  --navy-2: #0b2542;
  --ink: #13233a;
  --muted: #5e6e82;
  --green: #2dcd80;
  --green-dark: #16a965;
  --cyan: #55d9e8;
  --cream: #f6f8f5;
  --white: #ffffff;
  --line: rgba(19, 35, 58, .12);
  --shadow: 0 24px 70px rgba(7, 25, 45, .14);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; left: 16px; top: -100px; padding: 12px 18px; color: var(--navy); background: #fff; border-radius: 10px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  color: #fff;
  background: rgba(7, 25, 45, .76);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; color: #fff; text-decoration: none; }
.brand strong { display: block; font-size: .93rem; letter-spacing: .035em; }
.brand small { display: block; margin-top: 1px; color: rgba(255,255,255,.68); font-size: .72rem; }
.brand-mark { position: relative; width: 38px; height: 38px; flex: 0 0 38px; }
.brand-mark i { position: absolute; left: 0; height: 4px; border-radius: 4px; background: var(--green); }
.brand-mark i:nth-child(1){ bottom: 4px; width: 18px; }
.brand-mark i:nth-child(2){ bottom: 12px; left: 6px; width: 21px; }
.brand-mark i:nth-child(3){ bottom: 20px; left: 12px; width: 23px; }
.brand-mark i:nth-child(4){ bottom: 28px; left: 18px; width: 18px; }
.brand-mark b { position: absolute; right: 0; top: 0; width: 14px; height: 14px; border-top: 5px solid var(--green); border-right: 5px solid var(--green); }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { position: relative; color: rgba(255,255,255,.8); text-decoration: none; font-size: .88rem; font-weight: 600; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--green); transition: right .25s ease; }
.site-nav a:hover { color: #fff; }
.site-nav a:hover::after { right: 0; }
.menu-toggle { display: none; width: 43px; height: 43px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; color: #fff; background: rgba(255,255,255,.06); }
.menu-toggle > span:not(.sr-only) { width: 20px; height: 2px; background: currentColor; border-radius: 2px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 790px;
  padding: 170px 0 125px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 45%, rgba(49, 207, 139, .17), transparent 25%),
    radial-gradient(circle at 15% 75%, rgba(85, 217, 232, .12), transparent 31%),
    linear-gradient(135deg, #07192d 0%, #0b2542 55%, #07192d 100%);
}
.hero-grid { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, #000, transparent 88%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .8; }
.hero-glow-one { width: 340px; height: 340px; right: -80px; top: 130px; background: rgba(45,205,128,.08); border: 1px solid rgba(45,205,128,.16); }
.hero-glow-two { width: 210px; height: 210px; left: -80px; bottom: 50px; background: rgba(85,217,232,.07); border: 1px solid rgba(85,217,232,.14); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 80px; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--green); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 2px; background: currentColor; }
.hero h1 { max-width: 720px; margin: 22px 0 24px; font-size: clamp(3.2rem, 6.6vw, 6.15rem); line-height: .98; letter-spacing: -.055em; }
.hero h1 em { color: var(--green); font-style: normal; }
.hero-copy > p { max-width: 650px; margin: 0; color: rgba(255,255,255,.76); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 23px; border-radius: 12px; text-decoration: none; font-size: .9rem; font-weight: 800; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #052219; background: var(--green); box-shadow: 0 12px 30px rgba(45,205,128,.22); }
.button-primary:hover { background: #49dd95; box-shadow: 0 16px 36px rgba(45,205,128,.3); }
.button-ghost { color: #fff; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); }
.button-ghost:hover { background: rgba(255,255,255,.11); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 44px; color: rgba(255,255,255,.54); font-size: .74rem; }
.hero-proof span { padding-right: 22px; border-right: 1px solid rgba(255,255,255,.12); }
.hero-proof span:last-child { border-right: 0; }
.hero-proof strong { display: block; margin-bottom: 1px; color: rgba(255,255,255,.88); font-size: .81rem; }
.hero-visual { position: relative; min-height: 465px; }
.orbit { position: absolute; border: 1px solid rgba(85,217,232,.21); border-radius: 50%; }
.orbit-one { width: 430px; height: 430px; right: 10px; top: 10px; }
.orbit-two { width: 305px; height: 305px; right: 72px; top: 73px; border-style: dashed; animation: spin 24s linear infinite; }
.athlete-shape { position: absolute; left: 120px; top: 55px; width: 230px; height: 340px; filter: drop-shadow(0 24px 25px rgba(0,0,0,.23)); transform: rotate(-7deg); }
.athlete-shape > * { position: absolute; background: linear-gradient(135deg, #eef8ff, #93b8ca); }
.athlete-shape .head { width: 52px; height: 58px; left: 98px; top: 4px; border-radius: 48% 48% 45% 45%; }
.athlete-shape .body { width: 80px; height: 150px; left: 83px; top: 54px; border-radius: 36px 42px 20px 20px; transform: skew(-8deg); background: linear-gradient(160deg, #1c6378, #0c3549); }
.athlete-shape .arm { width: 32px; height: 135px; border-radius: 18px; transform-origin: 50% 10%; background: linear-gradient(180deg, #1b6479, #9bc2d1); }
.athlete-shape .arm-one { left: 63px; top: 73px; transform: rotate(45deg); }
.athlete-shape .arm-two { left: 147px; top: 72px; transform: rotate(-54deg); }
.athlete-shape .leg { width: 40px; height: 160px; border-radius: 22px; transform-origin: 50% 10%; background: linear-gradient(180deg, #0e3f55, #b6ced8); }
.athlete-shape .leg-one { left: 87px; top: 182px; transform: rotate(35deg); }
.athlete-shape .leg-two { left: 130px; top: 181px; transform: rotate(-30deg); }
.metric-card { position: absolute; min-width: 150px; padding: 16px 18px; border: 1px solid rgba(133, 227, 235, .22); border-radius: 16px; color: #fff; background: rgba(7,25,45,.54); box-shadow: 0 18px 50px rgba(0,0,0,.2); backdrop-filter: blur(12px); }
.metric-card small { display: block; color: rgba(255,255,255,.58); font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; }
.metric-card strong { display: block; margin-top: 2px; font-size: 1.5rem; }
.metric-one { right: -4px; top: 55px; }
.metric-two { left: 2px; bottom: 24px; }
.metric-two svg { width: 120px; height: 34px; margin-top: 7px; fill: none; stroke: var(--cyan); stroke-width: 2; }
.metric-three { right: 20px; bottom: 52px; min-width: 116px; text-align: center; }
.metric-three .pulse-dot { display: inline-block; width: 8px; height: 8px; margin-right: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 7px rgba(45,205,128,.12); }
.metric-three small { display: inline; color: var(--green); }
.metric-three strong { font-size: 2rem; }
.metric-three em { color: rgba(255,255,255,.58); font-size: .65rem; font-style: normal; }
.mini-bars { display: flex; align-items: end; gap: 4px; height: 24px; margin-top: 8px; }
.mini-bars i { width: 8px; border-radius: 8px 8px 2px 2px; background: var(--green); }
.mini-bars i:nth-child(1){height: 8px}.mini-bars i:nth-child(2){height: 13px}.mini-bars i:nth-child(3){height: 19px}.mini-bars i:nth-child(4){height: 15px}.mini-bars i:nth-child(5){height: 23px}
.hero-wave { position: absolute; left: -2%; right: -2%; bottom: -85px; height: 170px; background: #fff; border-radius: 50% 50% 0 0 / 28% 28% 0 0; }

.section { padding: 110px 0; }
.section-heading { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-heading h2, .future h2, .resources h2, .sale-banner h2 { margin: 13px 0 16px; font-size: clamp(2.1rem, 4.2vw, 3.7rem); line-height: 1.12; letter-spacing: -.045em; }
.section-heading p { max-width: 680px; margin: auto; color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card { position: relative; overflow: hidden; min-height: 300px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 18px 50px rgba(7,25,45,.06); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.step-card:hover { transform: translateY(-8px); border-color: rgba(45,205,128,.38); box-shadow: var(--shadow); }
.step-number { position: absolute; right: 24px; top: 18px; color: rgba(19,35,58,.08); font-size: 3.1rem; font-weight: 800; }
.step-icon { display: grid; width: 56px; height: 56px; place-items: center; margin-bottom: 43px; color: var(--navy); border-radius: 16px; background: rgba(45,205,128,.18); font-size: 1.3rem; font-weight: 800; }
.step-card h3 { margin: 0 0 11px; font-size: 1.18rem; }
.step-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.section-dark { position: relative; overflow: hidden; color: #fff; background: var(--navy); }
.section-dark::before { content: ""; position: absolute; width: 460px; height: 460px; right: -120px; top: -180px; border: 1px solid rgba(45,205,128,.14); border-radius: 50%; box-shadow: 0 0 0 70px rgba(45,205,128,.035), 0 0 0 140px rgba(45,205,128,.02); }
.section-heading-light p { color: rgba(255,255,255,.62); }
.story-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.story-card { overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: rgba(255,255,255,.055); transition: transform .25s ease, border-color .25s ease; }
.story-card:hover { transform: translateY(-7px); border-color: rgba(45,205,128,.4); }
.story-image { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.story-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.story-card:hover .story-image img { transform: scale(1.045); }
.story-image::after { content: ""; position: absolute; inset: auto 0 0; height: 55%; background: linear-gradient(transparent, rgba(7,25,45,.72)); }
.story-tag { position: absolute; z-index: 2; left: 20px; bottom: 18px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #fff; background: rgba(7,25,45,.6); font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(8px); }
.story-copy { padding: 27px 26px 31px; }
.story-copy h3 { margin: 0 0 12px; font-size: 1.2rem; }
.story-copy p { margin: 0; color: rgba(255,255,255,.62); font-size: .88rem; }

.future { background: var(--cream); }
.future-layout { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 80px; }
.future-copy > p { color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; color: var(--green-dark); text-decoration: none; font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.future-panel { padding: 27px; color: #fff; border-radius: 30px; background: linear-gradient(145deg, #0c2948, #061728); box-shadow: var(--shadow); }
.future-panel-top { display: flex; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .8rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.status { color: rgba(255,255,255,.68); }
.status i { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 7px rgba(45,205,128,.12); }
.radar { position: relative; width: min(70%, 320px); aspect-ratio: 1; margin: 28px auto; border-radius: 50%; background: radial-gradient(circle, rgba(45,205,128,.12), transparent 62%); overflow: hidden; }
.radar-ring { position: absolute; inset: 12%; border: 1px solid rgba(85,217,232,.16); border-radius: 50%; }
.radar .ring-2 { inset: 29%; }
.radar .ring-3 { inset: 45%; }
.radar::before, .radar::after { content: ""; position: absolute; background: rgba(85,217,232,.13); }
.radar::before { left: 50%; top: 6%; bottom: 6%; width: 1px; }
.radar::after { top: 50%; left: 6%; right: 6%; height: 1px; }
.radar-line { position: absolute; left: 50%; bottom: 50%; width: 47%; height: 50%; transform-origin: left bottom; background: linear-gradient(95deg, rgba(45,205,128,.34), transparent 70%); clip-path: polygon(0 100%, 100% 0, 100% 100%); animation: radar 4s linear infinite; }
.radar i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(45,205,128,.14); }
.radar .p1{left:34%;top:25%}.radar .p2{right:22%;top:38%}.radar .p3{left:23%;bottom:25%}.radar .p4{right:36%;bottom:18%}
.radar-list { margin: 0; padding: 0; list-style: none; }
.radar-list li { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: .78rem; }
.radar-list span { color: rgba(255,255,255,.35); }
.radar-list b { font-weight: 600; }
.radar-list em { padding: 3px 8px; border-radius: 999px; color: var(--green); background: rgba(45,205,128,.1); font-size: .65rem; font-style: normal; }

.resources { padding-top: 100px; }
.resources-box { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; padding: 56px; border: 1px solid var(--line); border-radius: 32px; background: #fff; box-shadow: var(--shadow); }
.resources h2 { margin-bottom: 0; font-size: clamp(2rem, 3.6vw, 3.15rem); }
.resources-copy p { margin: 0 0 18px; color: var(--muted); }
.resources-copy p:last-child { margin-bottom: 0; }
.resources-copy a { color: var(--green-dark); text-decoration-color: rgba(22,169,101,.35); text-underline-offset: 3px; font-weight: 800; }
.resources-copy a:hover { text-decoration-color: var(--green-dark); }

.sale-banner { padding: 88px 0; color: #fff; background: linear-gradient(115deg, #0a2038, #123d4b 72%, #0a2038); }
.sale-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.sale-label { color: var(--green); font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.sale-banner h2 { max-width: 760px; margin-bottom: 12px; font-size: clamp(2rem, 3.7vw, 3.25rem); }
.sale-banner p { max-width: 710px; margin: 0; color: rgba(255,255,255,.64); }
.button-light { flex: 0 0 auto; color: var(--navy); background: #fff; box-shadow: 0 12px 35px rgba(0,0,0,.15); }
.button-light:hover { background: #eafff5; }
.site-footer { color: rgba(255,255,255,.58); background: #051321; }
.footer-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .78rem; }
.footer-inner a { color: rgba(255,255,255,.76); text-decoration: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 980px) {
  .site-nav { position: fixed; left: 20px; right: 20px; top: 87px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(7,25,45,.97); box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 10px; }
  .menu-toggle { display: flex; }
  .hero { min-height: auto; padding-top: 145px; }
  .hero-layout, .future-layout { grid-template-columns: 1fr; }
  .hero-visual { width: min(100%, 570px); margin-inline: auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
  .story-image { aspect-ratio: 16/8.5; }
  .resources-box { grid-template-columns: 1fr; gap: 30px; }
  .sale-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 68px; }
  .brand strong { font-size: .8rem; }
  .brand small { font-size: .62rem; }
  .brand-mark { width: 34px; height: 34px; flex-basis: 34px; }
  .hero { padding: 125px 0 95px; }
  .hero h1 { font-size: clamp(2.8rem, 15vw, 4.4rem); }
  .hero-copy > p { font-size: 1rem; }
  .hero-proof { gap: 14px; }
  .hero-proof span { width: 100%; padding: 0; border: 0; }
  .hero-visual { min-height: 360px; transform: scale(.88); transform-origin: center top; margin-bottom: -35px; }
  .athlete-shape { left: 75px; }
  .orbit-one { right: -40px; }
  .orbit-two { right: 18px; }
  .metric-one { right: -30px; }
  .metric-two { left: -25px; }
  .metric-three { right: -8px; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 40px; }
  .steps { grid-template-columns: 1fr; }
  .step-card { min-height: 0; }
  .story-image { aspect-ratio: 16/10; }
  .future-layout { gap: 42px; }
  .future-panel { padding: 20px; border-radius: 22px; }
  .resources { padding-top: 70px; }
  .resources-box { padding: 32px 24px; border-radius: 24px; }
  .sale-banner { padding: 70px 0; }
  .button-light { width: 100%; text-align: center; }
  .footer-inner { padding: 18px 0; align-items: flex-start; flex-direction: column; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
