/* ============================================================
   OMNIFITT — STYLE.CSS
   ============================================================ */

/* ------------------------------------------------------------
   RESET & ROOT
   ------------------------------------------------------------ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/geist-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/geist-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --lime:    #ddf96a;
  --hunter:  #184D38;
  --pine:    #174d3b;
  --pine-deep: #082c22;
  --pine-night: #041c15;
  --mauve:   #d9a8f5;
  --tea:     #d7edbe;
  --lavender: #c9c4ff;
  --muted:   #6b7e75;
  --mist:    #EAF7E4;
  --dark:    #0D1F16;
  --white:   #FFFFFF;
  --off-white: #fafbf7;
  --line:    #174d3b2e;
  --font-geist: 'Geist', 'Inter', sans-serif;
  --font-kicker: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --kicker-size: 11px;
  --kicker-weight: 850;
  --kicker-tracking: 0.18em;

  --display: clamp(3rem, 7.5vw, 7rem);
  --h2:      clamp(2rem, 4.5vw, 3.8rem);
  --h3:      clamp(1.2rem, 1.8vw, 1.5rem);
  --body:    1rem;
  --caption: 0.875rem;

  /*
    Shared page column — every screen (nav, hero, sections, footer) aligns
    to the same centered max-width. --page-gutter locks the hero photo edge;
    --page-pad-x is the slight horizontal spacing for content containers.
  */
  --page-max: 1840px;
  --page-gutter: 1px;
  --page-pad-x: 32px;
}

@media (max-width: 1200px) {
  :root { --page-pad-x: 28px; }
}

@media (max-width: 1024px) {
  :root { --page-pad-x: 24px; }
}

@media (max-width: 768px) {
  :root { --page-pad-x: 20px; }
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: var(--body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--white);
  background: var(--dark);
  overflow-x: hidden;
}

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

button {
  font-family: 'Inter', sans-serif;
}

.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;
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--hunter); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(214, 240, 114, 0.35); }

/* ------------------------------------------------------------
   PRELOADER
   ------------------------------------------------------------ */

.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.preloader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.preloader-logo-img {
  width: 118px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(214, 240, 114, 0.18));
}

.preloader-wordmark {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  color: rgba(214, 240, 114, 0.45);
  text-transform: none;
}

/* ------------------------------------------------------------
   CUSTOM CURSOR
   ------------------------------------------------------------ */

.cursor {
  display: none;
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--lime);
  border-radius: 50%;
  border: 1.5px solid transparent;
  pointer-events: none;
  z-index: 9999;
  top: 0;
  left: 0;
  margin: -6px 0 0 -6px;
  opacity: 0;
  will-change: transform;
  transition:
    opacity 0.25s ease,
    width 0.2s ease,
    height 0.2s ease,
    margin 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.cursor--expanded {
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  background: rgba(214, 240, 114, 0.08);
  border-color: rgba(214, 240, 114, 0.5);
}

@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  body, a, button { cursor: none; }
}

/* ------------------------------------------------------------
   NAVIGATION
   ------------------------------------------------------------ */

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* Promote to its own compositor layer so the scrolled backdrop blur
     samples a cached texture instead of re-rasterising the hero each frame.
     Transition only cheap props (not backdrop-filter). */
  transform: translateZ(0);
  /* Soft hunter scrim — keeps links readable over bright hero sky/flare
     without a heavy solid bar at the top of the page. */
  background: linear-gradient(
    180deg,
    rgba(13, 31, 22, 0.78) 0%,
    rgba(13, 31, 22, 0.42) 58%,
    rgba(13, 31, 22, 0) 100%
  );
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#nav.nav--scrolled {
  /* Solid (no backdrop-filter): a translucent blurred bar forces the browser
     to re-sample + re-blur everything behind it on every scroll frame, which
     is the classic cause of fixed-nav scroll jank. A near-opaque solid bar
     reads just as premium and costs nothing per frame. */
  background: rgba(11, 26, 19, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 24px rgba(0, 0, 0, 0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad-x);
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 54px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.18));
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--hunter);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(214, 240, 114, 0.18);
  transition: border-color 0.2s ease;
}

.nav-logo:hover .nav-logo-icon {
  border-color: rgba(214, 240, 114, 0.4);
}

.nav-logo-text {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--white);
  font-feature-settings: "kern" 1, "liga" 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  padding: 8px 14px;
  border-radius: 8px;
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.18s ease, background 0.18s ease, text-shadow 0.18s ease;
  white-space: nowrap;
  letter-spacing: 0.005em;
  /* Soft depth so labels hold against bright sky / sun flare */
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.nav-link:hover {
  color: var(--lime);
  background: rgba(214, 240, 114, 0.1);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.nav-link--active {
  color: var(--lime);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

#nav.nav--scrolled .nav-link {
  text-shadow: none;
}

.dropdown-arrow {
  transition: transform 0.22s ease;
  flex-shrink: 0;
  opacity: 0.7;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.is-open .dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown {
  position: relative;
}

/* Invisible hover bridge — closes the dead gap between trigger and menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: max(100%, 280px);
  top: 100%;
  height: 20px;
  z-index: 60;
}

.nav-dropdown-toggle {
  -webkit-appearance: none;
  appearance: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 220px;
  background: rgba(11, 26, 18, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 70;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(214, 240, 114, 0.03);
}

/* Extra hit area on the menu itself (covers remaining gap) */
.nav-dropdown-menu::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 240, 114, 0.15), transparent);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: background 0.14s ease, color 0.14s ease;
  letter-spacing: 0.003em;
}

.nav-dropdown-item:hover {
  background: rgba(214, 240, 114, 0.08);
  color: var(--lime);
}

.nav-dropdown-menu--products {
  min-width: 252px;
}

.nav-dropdown-item--product {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 10px 12px;
}

.product-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.14s ease;
}

.product-desc {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.32);
}

.nav-dropdown-item--product:hover .product-name { color: var(--lime); }
.nav-dropdown-item--product:hover .product-desc { color: rgba(214, 240, 114, 0.5); }

.nav-dropdown-item--product + .nav-dropdown-item--product {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 1px;
  padding-top: 10px;
}

.nav-cta {
  background: var(--lime);
  color: var(--pine-night);
  font-weight: 850;
  font-size: 13px;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  flex-shrink: 0;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 10px 28px #ddf96a26;
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
}

.nav-cta:hover {
  background: #e7ff7a;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px #ddf96a40;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 6px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
  transition: transform 0.26s ease, opacity 0.2s ease;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Nav responsive */
@media (max-width: 768px) {
  .nav-inner { height: 64px; }

  .nav-hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(11, 26, 18, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 0 var(--page-pad-x);
    gap: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.38s;
  }

  .nav-links.is-open {
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    padding: 16px 20px 32px;
    visibility: visible;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0s;
  }

  .nav-link {
    padding: 12px 14px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
  }

  .nav-dropdown { width: 100%; }

  .nav-dropdown::after { display: none; }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    box-shadow: none;
    padding: 4px 4px 4px 10px;
    display: none;
    margin-top: 4px;
    min-width: unset;
    width: 100%;
  }

  .nav-dropdown-menu::before,
  .nav-dropdown-menu::after { display: none; }

  .nav-dropdown.is-open .nav-dropdown-menu { display: block; }

  .nav-cta {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
    padding: 14px 22px;
    width: 100%;
    border-radius: 12px;
  }
}

/* ------------------------------------------------------------
   HERO SECTION — matched to Homepage-ref (no dashboard card)
   ------------------------------------------------------------ */

@keyframes heroDrift {
  to { transform: translate(55px, -35px) scale(1.12); }
}

@keyframes athleteIn {
  0% { opacity: 0; transform: translate(45px, 30px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

@keyframes revealUp {
  0% { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes heroBlink {
  50% { opacity: 0; }
}

@keyframes heroProofPulse {
  50% { opacity: 0.5; }
}

.hero {
  position: relative;
  z-index: 5;
  isolation: isolate;
  display: grid;
  grid-template-columns: 55% 45%;
  height: 100svh;
  min-height: 850px;
  max-height: 1060px;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(
    circle at 25% 57%,
    #195843 0,
    var(--pine) 31%,
    var(--pine-deep) 70%,
    var(--pine-night) 100%
  );
}

.hero::before {
  content: "";
  position: absolute;
  top: 12%;
  left: -11vw;
  width: 54vw;
  height: 54vw;
  border: 1px solid rgba(221, 249, 106, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 85px rgba(221, 249, 106, 0.02),
    0 0 0 180px rgba(221, 249, 106, 0.012);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(221, 249, 106, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221, 249, 106, 0.13) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 68%);
  mask-image: linear-gradient(90deg, #000, transparent 68%);
  pointer-events: none;
}

.hero-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: 10s ease-in-out infinite alternate heroDrift;
}

.hero-aurora--lime {
  width: 350px;
  height: 350px;
  bottom: 4%;
  left: 28%;
  background: var(--lime);
  opacity: 0.12;
}

.hero-aurora--mauve {
  width: 290px;
  height: 290px;
  top: 4%;
  left: 47%;
  background: var(--mauve);
  opacity: 0.09;
  animation-delay: -3s;
}

.hero-copy {
  position: relative;
  z-index: 8;
  align-self: center;
  padding: 118px 3vw 64px 5vw;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.58);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: none;
}

.hero-eyebrow span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px var(--lime);
  animation: 2s infinite heroProofPulse;
  flex-shrink: 0;
}

.hero-title {
  position: relative;
  margin: 0;
  max-width: 900px;
  font-size: clamp(66px, 6.15vw, 112px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.068em;
  text-align: left;
}

.hero-title-measure {
  display: block;
  visibility: hidden;
  pointer-events: none;
}

.hero-title-measure em,
.hero-title-accent {
  color: var(--lime);
  font-style: normal;
}

.hero-title-break {
  display: none;
}

.hero-title-live.is-accent .hero-title-break {
  display: inline;
}

.hero-title-live {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: left;
}

.typing-cursor {
  display: inline-block;
  width: 0.055em;
  height: 0.78em;
  margin-left: 0.05em;
  vertical-align: -0.02em;
  background: var(--lime);
  animation: 0.85s ease-in-out infinite heroBlink;
  opacity: 1;
}

.typing-cursor--measure {
  visibility: hidden;
  animation: none;
}

.hero-lede {
  width: min(580px, 88%);
  margin: 36px 0 32px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 18px;
  line-height: 1.85;
}

.hero-lede strong {
  color: #fff;
  letter-spacing: 0.08em;
  font-size: 0.92em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 178px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, border-color 0.25s;
}

.hero-btn--lime {
  background: var(--lime);
  color: var(--pine-night);
  box-shadow: 0 15px 42px #ddf96a26;
}

.hero-btn--lime:hover {
  box-shadow: 0 20px 58px #ddf96a4d;
  transform: translateY(-3px);
}

.hero-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  min-width: 0;
}

.hero-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.hero-btn--ghost span {
  color: var(--lime);
}

.hero-actions .button.button--lime {
  /* Hero primary uses shared .button -- keep ghost sizing aligned */
  min-height: 54px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 36px;
}

.hero-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.8;
}

.hero-proof strong {
  color: #fff;
  letter-spacing: 0.025em;
  font-size: 13px;
}

.proof-pulse {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(221, 249, 106, 0.33);
  border-radius: 50%;
}

.proof-pulse::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px var(--lime);
}

.reveal-up {
  animation: 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both revealUp;
}

.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

.hero-visual {
  position: relative;
  z-index: 6;
  perspective: 1400px;
  overflow: hidden;
}

.hero-frame-lines {
  position: absolute;
  inset: 12% 5% 8% 6%;
  border: 1px solid rgba(221, 249, 106, 0.23);
  border-radius: 27px;
  transform: translate(-33px, 28px) rotate(-2deg);
  pointer-events: none;
}

.hero-frame-lines span {
  position: absolute;
  inset: -17px;
  border: 1px solid rgba(201, 196, 255, 0.15);
  border-radius: inherit;
}

.hero-frame-lines span:nth-child(2) {
  inset: -34px;
  opacity: 0.6;
}

.hero-frame-lines span:nth-child(3) {
  inset: -52px;
  opacity: 0.3;
}

.hero-portal {
  position: absolute;
  top: 5%;
  right: 6%;
  z-index: 7;
  width: 55%;
  height: 88%;
  border: 2px solid rgba(221, 249, 106, 0.72);
  border-radius: 28px;
  opacity: 0.72;
  transform: perspective(1000px) rotateY(-7deg) rotate(-1deg);
  box-shadow:
    0 0 22px rgba(221, 249, 106, 0.45),
    inset 0 0 35px rgba(221, 249, 106, 0.12);
  pointer-events: none;
}

.hero-athlete {
  position: absolute;
  right: -1.5%;
  bottom: 0;
  z-index: 10;
  width: auto;
  max-width: none;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  filter:
    drop-shadow(-16px 28px 28px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 12px rgba(221, 249, 106, 0.14));
  animation: 1.05s cubic-bezier(0.16, 0.78, 0.24, 1) both athleteIn;
}

.hero-athlete--video {
  object-fit: cover;
  object-position: center 54%;
  border-radius: 38px 0 0 32px;
  width: auto;
  max-width: none;
  filter:
    saturate(1.04) contrast(1.03)
    drop-shadow(-16px 28px 28px rgba(0, 0, 0, 0.3));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.78) 7%, #000 17% 96%, rgba(0, 0, 0, 0.84) 100%),
    linear-gradient(0deg, #000 0 84%, rgba(0, 0, 0, 0.68) 92%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.78) 7%, #000 17% 96%, rgba(0, 0, 0, 0.84) 100%),
    linear-gradient(0deg, #000 0 84%, rgba(0, 0, 0, 0.68) 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

/* Shared primary CTA (also used on products page) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--lime);
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 32px rgba(221, 249, 106, 0.18);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(221, 249, 106, 0.28);
}

.btn-primary:hover::before {
  transform: translateX(120%);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 57% 43%;
  }

  .hero-title {
    font-size: clamp(60px, 7vw, 88px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-portal {
    width: 62%;
    right: 2%;
  }

  .hero-athlete {
    height: 104%;
    bottom: -62px;
    right: -8%;
  }
}

@media (max-width: 760px) {
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: auto;
    min-height: 100svh;
    max-height: none;
    padding: 96px 0 40px;
    overflow: hidden;
  }

  /* Soft pine scrim so copy stays readable over the bg video */
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
      linear-gradient(
        180deg,
        rgba(4, 28, 21, 0.72) 0%,
        rgba(8, 44, 34, 0.55) 28%,
        rgba(8, 44, 34, 0.42) 52%,
        rgba(4, 28, 21, 0.78) 100%
      ),
      radial-gradient(ellipse 90% 70% at 50% 100%, rgba(25, 88, 67, 0.45), transparent 70%);
  }

  .hero-copy {
    position: relative;
    z-index: 8;
    padding: 24px 20px 0;
  }

  .hero-title {
    min-height: auto;
    font-size: 50px;
    line-height: 1.1;
  }

  .hero-lede {
    width: 100%;
    font-size: 16px;
    line-height: 1.85;
    margin: 32px 0 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero-btn,
  .hero-actions .button,
  .final-cta .button {
    min-width: 178px;
    min-height: 54px;
    padding: 0 24px;
    font-size: 13px;
  }

  .hero-proof p {
    font-size: 11px;
  }

  .hero-proof strong {
    font-size: 12px;
  }

  /* Full-bleed athlete video behind copy — mobile only */
  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    height: auto;
    perspective: none;
  }

  .hero-frame-lines,
  .hero-portal {
    display: none;
  }

  .hero-athlete,
  .hero-athlete--video {
    inset: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center 28%;
    border-radius: 0;
    filter: saturate(1.04) contrast(1.03);
    -webkit-mask-image: none;
    mask-image: none;
    animation: none;
  }
}

@media (max-width: 430px) {
  .hero-title {
    font-size: 45px;
  }

  .hero-athlete--video {
    object-position: center 24%;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title {
    min-height: auto;
  }

  .hero-athlete,
  .reveal-up,
  .hero-aurora,
  .typing-cursor {
    animation: none;
  }
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */

.marquee-strip {
  background: var(--lime);
  overflow: hidden;
  padding: 14px 0;
  width: 100%;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marqueeScroll 36s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-word {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: none;
  color: var(--dark);
  white-space: nowrap;
  padding: 0 20px;
}

.marquee-sep {
  font-size: 0.72rem;
  font-weight: 900;
  color: rgba(13, 31, 22, 0.38);
  flex-shrink: 0;
  padding: 0 4px;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-inner {
    animation: none;
  }
}

/* ============================================================
   SHARED SECTION UTILITIES
   ============================================================ */

.section-container {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad-x);
}

/* Shared section / footer eyebrow labels — one size sitewide */
.movement-kicker,
.platform-kicker,
.mission-kicker,
.final-kicker,
.footer-panel .footer-links span,
.footer-panel .footer-touch > span,
.footer-cta-row .footer-panel-copy > span {
  font-family: var(--font-kicker);
  font-size: var(--kicker-size);
  font-weight: var(--kicker-weight);
  letter-spacing: var(--kicker-tracking);
  text-transform: uppercase;
  line-height: 1.3;
}

.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: none;
  color: var(--hunter);
  margin-bottom: 14px;
}

.section-eyebrow--light {
  color: var(--tea);
}

.section-h2 {
  font-size: var(--h2);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 16px;
  font-feature-settings: "kern" 1, "liga" 1;
}

.section-h2--light {
  color: var(--white);
}

.section-sub {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.78;
  color: rgba(13, 31, 22, 0.56);
  max-width: 460px;
}

.section-sub--light {
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
}

/* ============================================================
   MEMBERS • REVENUE • INSIGHTS STRIP
   ============================================================ */

.signal-strip {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 46px 0;
}

.signal-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad-x);
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: stretch;
  column-gap: 36px;
}

.signal-item {
  max-width: 340px;
}

.signal-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--lime);
  margin-bottom: 10px;
}

.signal-copy {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.56);
}

.signal-divider {
  width: 1px;
  height: 100%;
  background: rgba(214, 240, 114, 0.14);
  justify-self: center;
}

/* ============================================================
   PRODUCT OVERVIEW / PLATFORM (matched to Homepage-ref)
   ============================================================ */

@keyframes homeDashboardDrift {
  50% {
    transform: perspective(1500px) rotateY(-5deg) rotateX(3deg) rotate(-3deg) scale(0.955) translateY(-10px);
  }
}

.platform {
  position: relative;
  display: grid;
  grid-template-columns: 39% 61%;
  align-items: center;
  min-height: 920px;
  overflow: hidden;
  color: var(--pine);
  background:
    linear-gradient(180deg, #d7edbe2e 0%, transparent 14%, transparent 82%, var(--off-white) 100%),
    linear-gradient(120deg, var(--tea) 0%, #edf5e6 38%, #e5e3ff 70%, var(--lavender) 100%);
  padding: 100px 5vw;
}

.platform::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(#174d3b1f 1px, transparent 1px),
    linear-gradient(90deg, #174d3b1f 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 80%);
  mask-image: linear-gradient(90deg, #000, transparent 80%);
  pointer-events: none;
}

.platform-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.42;
  pointer-events: none;
}

.platform-orb--one {
  width: 620px;
  height: 620px;
  top: -20%;
  right: -10%;
  background: var(--mauve);
  opacity: 0.6;
}

.platform-orb--two {
  width: 350px;
  height: 350px;
  bottom: -20%;
  left: 31%;
  background: var(--lime);
}

.platform-copy {
  position: relative;
  z-index: 4;
  padding-right: 3vw;
}

.platform-kicker {
  display: block;
  color: #6f9b00;
}

.platform-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px 0 26px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pine);
}

.platform-label i {
  font-style: normal;
  opacity: 0.55;
}

.platform-title {
  margin: 0;
  overflow: visible;
  font-family: var(--font-geist);
  font-size: clamp(55px, 5.4vw, 91px);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.064em;
  color: var(--pine);
}

.platform-title em {
  color: transparent;
  background: linear-gradient(90deg, var(--pine), #7670bc);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
  margin-left: -0.12em;
  padding: 0 0.05em 0.08em 0.12em;
  display: inline-block;
  overflow: visible;
}

.platform-lede {
  color: #516b60;
  max-width: 540px;
  margin: 28px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.platform-lede strong {
  color: var(--pine);
  font-weight: 700;
}

.feature-list {
  border-top: 1px solid var(--line);
}

.feature-list div {
  display: grid;
  grid-template-columns: 40px 1fr 25px;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--pine);
}

.feature-list span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 7px;
  opacity: 0.45;
  letter-spacing: 0.04em;
}

.feature-list strong {
  letter-spacing: -0.015em;
  font-size: 16px;
  font-weight: 800;
  color: var(--pine-night);
}

.feature-list i {
  color: #7559a3;
  font-style: normal;
  transition: transform 0.25s;
  justify-self: end;
}

.feature-list div:hover i {
  transform: translate(3px, -3px);
}

.dashboard-world {
  position: relative;
  z-index: 3;
  height: 720px;
  perspective: 1500px;
}

.dashboard-halo {
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle, var(--lime), #c9c4ffb8 45%, transparent 72%);
  filter: blur(75px);
  opacity: 0.72;
  pointer-events: none;
}

.dashboard-plinth {
  position: absolute;
  z-index: 1;
  inset: 25% 0 13% 4%;
  border-radius: 58px;
  background: linear-gradient(135deg, #b8b3ff 0%, var(--lavender) 48%, var(--mauve) 100%);
  transform: rotate(-1.5deg);
  box-shadow: 0 40px 95px #59438b3d, inset 0 1px #ffffffb8;
  pointer-events: none;
}

.dashboard-plinth::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 44px;
  background: radial-gradient(circle at 70% 30%, #ffffff47, transparent 52%);
}

.dashboard-stage {
  position: absolute;
  z-index: 3;
  top: 4%;
  left: -8%;
  right: -11%;
  overflow: visible;
  background: transparent;
  border-radius: 0;
  transform-origin: 50%;
  transform: perspective(1500px) rotateY(-7deg) rotateX(4deg) rotate(-4deg) scale(0.94);
  animation: 7s ease-in-out infinite homeDashboardDrift;
  box-shadow: none;
}

.dashboard-stage img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(-24px 42px 38px #174d3b4d)
    drop-shadow(18px 28px 25px #6c509b33);
}

.dashboard-gloss {
  display: none;
}

.dashboard-shadow {
  position: absolute;
  left: 15%;
  right: 7%;
  bottom: 7%;
  height: 44px;
  border-radius: 50%;
  background: #533e7552;
  filter: blur(32px);
  pointer-events: none;
}

@media (max-width: 1100px) {
  .platform {
    grid-template-columns: 44% 56%;
  }

  .dashboard-world {
    height: 650px;
  }

  .dashboard-stage {
    top: 6%;
    left: -7%;
    right: -10%;
    transform: perspective(1300px) rotateY(-6deg) rotateX(3deg) rotate(-3deg) scale(0.91);
  }
}

@media (max-width: 760px) {
  .platform {
    display: block;
    min-height: 0;
    padding: 82px 20px;
  }

  .platform-copy {
    padding-right: 0;
  }

  .platform-title {
    font-size: 53px;
  }

  .platform-lede {
    font-size: 16px;
  }

  .dashboard-world {
    height: 500px;
    margin-top: 50px;
  }

  .dashboard-stage {
    top: 9%;
    left: -8%;
    right: -9%;
    transform: perspective(1100px) rotateY(-4deg) rotateX(3deg) rotate(-3deg) scale(0.9);
  }

  .dashboard-plinth {
    border-radius: 38px;
    inset: 28% 1% 15%;
  }

  .platform-orb--one {
    width: 430px;
    height: 430px;
    top: -13%;
    right: -10%;
    opacity: 0.42;
  }
}

@media (max-width: 430px) {
  .platform {
    padding: 78px 20px;
  }

  .platform-title {
    font-size: 45px;
  }

  .dashboard-world {
    height: 430px;
  }

  .dashboard-stage {
    top: 10%;
    left: -9%;
    right: -10%;
    transform: perspective(900px) rotateY(-3deg) rotateX(2deg) rotate(-2deg) scale(0.88);
  }
}

/* ============================================================
   SIGNAL STRIP responsive
   ============================================================ */

@media (max-width: 768px) {
  .signal-strip { padding: 36px 0; }

  .signal-inner {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .signal-divider {
    width: 100%;
    height: 1px;
    background: rgba(214, 240, 114, 0.1);
    justify-self: stretch;
    margin: 18px 0 22px;
  }

  .signal-item { max-width: 100%; }
  .signal-title { margin-bottom: 6px; }
}

/* ============================================================
   WHO WE SERVE — EDITORIAL LAYOUT
   ============================================================ */

/* ============================================================
   ONE SYSTEM — MOVEMENT CAROUSEL (matched to Homepage-ref)
   ============================================================ */

.movement {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--off-white) 78%, #eaf4df 100%);
  padding: 100px 5vw;
  overflow: visible;
  color: var(--pine);
}

.movement-inner {
  max-width: var(--page-max);
  margin: 0 auto;
}

.movement-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 55px;
}

.movement-kicker {
  display: block;
  margin-bottom: 0;
  color: #174D3B;
}

.movement-title {
  margin: 15px 0 0;
  font-family: var(--font-geist);
  font-size: clamp(51px, 6vw, 96px);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.064em;
  color: var(--pine);
}

.movement-title em {
  color: #778d82;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.movement-intro {
  width: 430px;
  flex-shrink: 0;
}

.movement-intro p {
  margin: 0;
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.movement-intro a {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin-top: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 850;
  color: var(--pine);
  transition: gap 0.25s ease, opacity 0.25s ease;
}

.movement-intro a:hover {
  gap: 34px;
  opacity: 0.75;
}

.movement-carousel {
  position: relative;
  /* Room for hover lift so cards aren't clipped */
  padding-top: 14px;
  margin-top: -14px;
}

.movement-track-outer {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-top: 12px;
  padding-bottom: 28px;
  margin-bottom: -8px;
}

.movement-track-outer::-webkit-scrollbar {
  display: none;
}

.movement-track {
  display: flex;
  gap: 11px;
  width: max-content;
  padding-top: 4px;
}

.movement-card {
  /* ~6 cards across like the reference grid */
  --movement-card-w: calc((min(100vw, var(--page-max)) - 10vw - 55px) / 6);
  flex: 0 0 var(--movement-card-w);
  width: var(--movement-card-w);
  min-width: var(--movement-card-w);
  scroll-snap-align: start;
  border: 1px solid #174d3b24;
  background: #f0f5ea;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  transform: translateZ(0);
  will-change: transform;
  box-shadow: none;
  transition:
    transform 0.58s cubic-bezier(0.2, 0.75, 0.2, 1),
    box-shadow 0.58s cubic-bezier(0.2, 0.75, 0.2, 1),
    border-color 0.35s,
    background 0.35s;
}

.movement-card:nth-child(2n) {
  background: #f3f0fa;
}

.movement-card:hover {
  border-color: #7559a33d;
  transform: translateY(-7px) scale(1.012);
  box-shadow: 0 28px 62px #174d3b24, 0 10px 28px #7559a314;
}

.movement-image {
  aspect-ratio: 0.78;
  display: grid;
  place-items: center;
  padding: 7px;
  overflow: hidden;
}

.movement-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  display: block;
  transition: transform 0.82s cubic-bezier(0.2, 0.75, 0.2, 1), filter 0.55s;
}

.movement-card:hover .movement-image img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.movement-card-foot {
  display: grid;
  grid-template-columns: 26px 1fr 24px;
  align-items: center;
  min-height: 76px;
  padding: 0 14px;
  border-top: 1px solid var(--line);
  background: #fafbf7d1;
  transition: background 0.4s, border-color 0.4s;
}

.movement-card:hover .movement-card-foot {
  background: #fffffff0;
  border-color: #7559a32b;
}

.movement-card-foot span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 7px;
  font-weight: 700;
  opacity: 0.45;
  letter-spacing: 0.04em;
}

.movement-card-foot h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--pine-night);
}

.movement-card-foot i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--pine-night);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  transition: transform 0.3s;
}

.movement-card:hover .movement-card-foot i {
  transform: rotate(8deg) scale(1.08);
}

.movement-nav {
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #fafbf7eb;
  color: var(--pine-night);
  box-shadow: 0 10px 28px #174d3b24;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.movement-nav.visible {
  opacity: 1;
  pointer-events: auto;
}

.movement-nav:hover {
  background: #fff;
  transform: scale(1.05);
}

.movement-nav--left {
  left: -6px;
}

.movement-nav--right {
  right: -6px;
}

@media (max-width: 1100px) {
  .movement {
    padding: 82px 20px;
  }

  .movement-head {
    display: block;
  }

  .movement-title {
    font-size: 52px;
  }

  .movement-intro {
    width: 100%;
    margin-top: 28px;
  }

  .movement-card {
    --movement-card-w: calc((100vw - 40px - 22px) / 3);
  }
}

@media (max-width: 760px) {
  .movement {
    padding: 78px 20px;
  }

  .movement-title {
    font-size: 52px;
  }

  .movement-intro {
    width: 100%;
    margin-top: 28px;
  }

  .movement-image {
    aspect-ratio: 0.8;
  }

  .movement-card {
    --movement-card-w: 72vw;
  }

  .movement-nav {
    display: none;
  }
}

@media (max-width: 430px) {
  .movement-title {
    font-size: 45px;
  }

  .movement-card {
    --movement-card-w: 82vw;
  }
}

/* ============================================================
   OUR MISSION (matched to Homepage-ref)
   ============================================================ */

.mission {
  position: relative;
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
  gap: 7%;
  min-height: 0;
  padding: 100px 5vw 125px;
  color: var(--pine);
  background:
    linear-gradient(
      180deg,
      var(--off-white) 0%,
      var(--off-white) 86%,
      var(--pine-night) 100%
    );
  overflow: hidden;
}

.mission-image-wrap {
  position: relative;
  height: 650px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 35px 85px #174d3b24;
}

.mission-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s;
}

.mission-image-wrap:hover img {
  transform: scale(1.025);
}

.mission-image-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 55%, #041c15ab),
    linear-gradient(90deg, #174d3b1f, transparent 45%);
  pointer-events: none;
}

.mission-image-note {
  position: absolute;
  bottom: 24px;
  left: 25px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.18em;
  color: #fff;
}

.mission-copy {
  position: relative;
}

.mission-kicker {
  display: block;
  color: var(--pine);
}

.mission-number {
  position: absolute;
  top: 0;
  right: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.14em;
  opacity: 0.4;
}

.mission-title {
  margin: 15px 0 0;
  font-family: var(--font-geist);
  font-size: clamp(52px, 5.2vw, 84px);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.064em;
  color: var(--pine);
}

.mission-title em {
  color: #8760a1;
  font-style: normal;
}

.mission-lede {
  max-width: 520px;
  margin: 29px 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--pine);
}

.mission-values {
  border-top: 1px solid var(--line);
}

.mission-values div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
}

.mission-values span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 7px;
  opacity: 0.43;
}

.mission-values strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--pine-night);
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-stage {
    animation: none !important;
  }

  .mission-image-wrap:hover img {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .mission {
    grid-template-columns: 52% 48%;
    gap: 5%;
  }

  .mission-image-wrap {
    height: 570px;
  }
}

@media (max-width: 760px) {
  .mission {
    display: flex;
    flex-direction: column;
    gap: 55px;
    min-height: 0;
    padding: 82px 20px 100px;
  }

  .mission-image-wrap {
    width: 100%;
    height: 480px;
  }

  .mission-title {
    font-size: 52px;
  }

  .mission-lede {
    font-size: 17px;
  }
}

@media (max-width: 430px) {
  .mission-title {
    font-size: 45px;
  }

  .mission-image-wrap {
    height: 410px;
  }
}

/* ============================================================
   WHY OMNIFITT
   ============================================================ */

.why-omnifitt {
  background: var(--mist);
  padding: 108px 0;
}

.why-os-text {
  margin-bottom: 56px;
  max-width: 680px;
}

.why-os-text .section-h2 {
  margin-bottom: 0;
}

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

.why-card {
  position: relative;
  background: var(--white);
  border-left: 3px solid var(--lime);
  border-radius: 14px;
  padding: 40px 36px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(13, 31, 22, 0.1);
}

.why-card-num {
  position: absolute;
  top: -8px;
  right: 24px;
  font-size: clamp(4.5rem, 7vw, 7rem);
  font-weight: 900;
  color: var(--lime);
  opacity: 0.13;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  font-feature-settings: "tnum" 1;
}

.why-card-title {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  position: relative;
}

.why-card-body {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(13, 31, 22, 0.6);
  line-height: 1.78;
  position: relative;
}

@media (max-width: 1024px) {
  .why-omnifitt { padding: 80px 0; }
}

@media (max-width: 768px) {
  .why-omnifitt { padding: 72px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-os-text { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .why-card { padding: 32px 28px; }
}

/* ============================================================
   MEMBER APP SECTION
   ============================================================ */

.app-section {
  background: var(--dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle background texture */
.app-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(214, 240, 114, 0.025) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
}

.app-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.app-text {
  max-width: 520px;
}

.app-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0 44px;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.app-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

/* App mockup */
.app-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-mockup-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(24, 77, 56, 0.6) 0%, transparent 70%);
  pointer-events: none;
}

.app-mockup-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 40px 80px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
  .app-section { padding: 96px 0; }
  .app-layout { gap: 60px; }
}

@media (max-width: 768px) {
  .app-section { padding: 80px 0; }
  .app-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .app-text { max-width: 100%; }
}

/* ============================================================
   FINAL CTA (matched to Homepage-ref)
   ============================================================ */

@keyframes breathe {
  50% {
    opacity: 0.7;
    transform: scale(1.08);
  }
}

.final-cta {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 690px;
  margin-top: -1px;
  padding: 100px 5vw;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 18% 95%, #d9a8f538, transparent 36%),
    radial-gradient(circle at 82% 12%, #c9c4ff2e, transparent 34%),
    var(--pine-night);
  overflow: hidden;
}

.cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(#ddf96a40 1px, transparent 1px),
    linear-gradient(90deg, #ddf96a40 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(circle, #000, transparent 68%);
  mask-image: radial-gradient(circle, #000, transparent 68%);
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  border: 1px solid #ddf96a1a;
  background: radial-gradient(circle, #ddf96a26, #c9c4ff0f 38%, transparent 70%);
  animation: 6s ease-in-out infinite breathe;
  pointer-events: none;
}

.final-cta > :not(.cta-grid, .cta-orb) {
  position: relative;
  z-index: 2;
}

.final-kicker {
  display: block;
  color: #6f9b00;
}

.final-title {
  max-width: 1100px;
  margin: 15px 0 0;
  font-family: var(--font-geist);
  font-size: clamp(55px, 6.7vw, 105px);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.064em;
  color: #fff;
}

.final-title em {
  color: var(--lime);
  font-style: normal;
}

/* Even spacing: title → CTA → pills (lede removed) */
.final-cta > .button {
  margin-top: 32px;
}

.button {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  min-width: 178px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.button span:last-child {
  font-size: 18px;
  transition: transform 0.25s;
}

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

.button:hover span:last-child {
  transform: translate(3px, -3px);
}

.button--lime {
  background: var(--lime);
  color: var(--pine-night);
  box-shadow: 0 15px 42px #ddf96a26;
}

.button--lime:hover {
  box-shadow: 0 20px 58px #ddf96a4d;
}

.button--large {
  /* Keep primary CTAs on one size — large = standard demo button */
  min-height: 54px;
  padding: 0 24px;
}

.cta-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-pills i {
  width: 5px;
  height: 5px;
  background: var(--mauve);
  transform: rotate(45deg);
}

.cta-pills span {
  padding: 11px 15px;
  border-radius: 999px;
  border: 1px solid #c9c4ff59;
  background: #c9c4ff17;
}

@media (max-width: 760px) {
  .final-cta {
    min-height: 650px;
    padding: 82px 20px;
  }

  .final-title {
    font-size: 54px;
  }

  .cta-pills {
    font-size: 8px;
  }

  .cta-pills span {
    padding: 9px 11px;
  }
}

@media (max-width: 430px) {
  .final-title {
    font-size: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-orb {
    animation: none !important;
  }
}

/* ============================================================
   FOOTER (matched to Homepage-ref)
   ============================================================ */

.footer {
  position: relative;
  padding: 58px 5vw 20px;
  color: #fff;
  background: linear-gradient(145deg, #03150f 0%, #082c22 62%, #241b35 100%);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  bottom: -260px;
  right: -170px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, #d9a8f52e, transparent 67%);
  pointer-events: none;
}

.footer-ridge {
  position: absolute;
  top: -54px;
  left: 0;
  right: 0;
  height: 72px;
  pointer-events: none;
}

.footer-ridge i {
  position: absolute;
  bottom: 0;
  height: 72px;
  border-radius: 0 0 28px 28px;
  background: #03150f;
}

.footer-ridge i:first-child {
  width: 31%;
  left: -2%;
  transform: skew(14deg);
}

.footer-ridge i:nth-child(2) {
  width: 37%;
  height: 50px;
  left: 27%;
  transform: skew(-18deg);
}

.footer-ridge i:nth-child(3) {
  width: 41%;
  height: 68px;
  right: -3%;
  transform: skew(16deg);
}

.footer-panel {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 0;
  padding: 32px 38px 25px;
  color: var(--pine);
  background: linear-gradient(135deg, #f8faf4 0%, #f1f4e9 68%, #eee9fa 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 34px 90px #00000047;
}

.footer-panel::after {
  content: "";
  position: absolute;
  top: -130px;
  right: 12%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #c9c4ff61;
  filter: blur(15px);
  pointer-events: none;
}

.footer-panel .footer-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 1fr 1fr;
  gap: 4vw;
  align-items: start;
  padding-bottom: 25px;
  border-bottom: 1px solid #174d3b24;
  color: var(--pine);
}

.footer-panel .footer-brand .logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--pine);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-decoration: none;
}

.footer-panel .footer-brand .logo img {
  width: 43px;
  height: 32px;
  object-fit: contain;
}

.footer-panel .footer-brand p {
  margin: 0;
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
}

.footer-panel .footer-socials {
  display: flex;
  gap: 11px;
  margin-top: 17px;
}

.footer-panel .footer-socials a {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  border: 1px solid #174d3b33;
  background: #174d3b0b;
  color: var(--pine);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.25s, border-color 0.25s, background 0.25s, color 0.25s;
}

.footer-panel .footer-socials a svg {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-panel .footer-socials a[aria-label*="LinkedIn"] svg {
  width: 18px;
  height: 18px;
}

.footer-panel .footer-socials a:hover {
  background: #d9a8f538;
  border-color: #a16bc2;
  color: var(--pine-night);
  transform: translateY(-3px);
}

.footer-panel .footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-panel .footer-links span,
.footer-panel .footer-touch > span {
  margin-bottom: 4px;
  color: #765a9f;
}

.footer-panel .footer-links a {
  color: #536c61;
  font-size: 11px;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.footer-panel .footer-links a:hover {
  color: var(--pine);
  transform: translateX(3px);
}

.footer-panel .footer-touch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-panel .footer-touch > a {
  color: #536c61;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.footer-panel .footer-touch > a:first-of-type {
  color: var(--pine);
}

.footer-panel .footer-touch p {
  margin: 5px 0 0;
  color: #6b7e75;
  font-size: 10px;
  line-height: 1.5;
}

.footer-stamp-image {
  width: 82px;
  height: 82px;
  margin-top: 1px;
  border-radius: 50%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: saturate(1.12) contrast(1.04);
  box-shadow: 0 10px 24px #8060a821;
}

.footer-cta-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding-top: 22px;
}

.footer-cta-row .footer-panel-copy {
  position: relative;
  z-index: 2;
  flex: 1;
}

.footer-cta-row .footer-panel-copy > span {
  color: #765a9f;
}

.footer-cta-row .footer-panel-copy h3 {
  max-width: 980px;
  margin: 8px 0 0;
  font-family: var(--font-geist);
  font-size: clamp(32px, 3.2vw, 50px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--pine);
}

.footer-cta-row .footer-panel-copy h3 em {
  color: #8060a8;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.footer-demo {
  position: relative;
  z-index: 3;
  flex: none;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 178px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: #8060a8;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 17px 36px #8060a84d;
  transition: transform 0.25s, background 0.25s;
}

.footer-demo span:last-child {
  font-size: 18px;
  transition: transform 0.25s;
}

.footer-demo:hover {
  background: #6f4e99;
  transform: translateY(-3px);
}

.footer-demo:hover span:last-child {
  transform: translate(3px, -3px);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  color: #ffffff61;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.12em;
}

@media (max-width: 1000px) {
  .footer-panel .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 7vw;
  }
}

@media (max-width: 760px) {
  .footer {
    padding: 54px 20px 18px;
  }

  .footer-panel {
    padding: 28px 24px 22px;
  }

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

  .footer-panel .footer-brand,
  .footer-panel .footer-touch {
    grid-column: 1 / -1;
  }

  .footer-stamp-image {
    width: 78px;
    height: 78px;
  }

  .footer-cta-row {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 21px;
  }

  .footer-cta-row .footer-panel-copy h3 {
    font-size: 39px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 15px;
  }
}

@media (max-width: 430px) {
  .footer-panel .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-panel .footer-brand,
  .footer-panel .footer-touch {
    grid-column: 1;
  }

  .footer-links--fitness {
    margin-top: 2px;
  }

  .footer-cta-row .footer-panel-copy h3 {
    font-size: 35px;
  }
}
