    @font-face {
      font-family: 'Venus Rising';
      src: url('/assets/fonts/VenusRising-Regular.otf') format('opentype');
      font-style: normal;
      font-weight: 400 900;
      font-display: swap;
    }
    @font-face {
      font-family: 'SF Pro';
      src: url('/assets/fonts/SF-Pro-Display-Heavy.otf') format('opentype');
      font-style: normal;
      font-weight: 900;
      font-display: swap;
    }
    @font-face {
      font-family: 'stratos';
      src: url('/assets/fonts/stratos-800.woff2') format('woff2');
      font-style: normal;
      font-weight: 700 800;
      font-display: optional;
    }
    @font-face {
      font-family: 'PP Supply Mono';
      src:
        url('/assets/fonts/PPSupplyMono-Regular.ttf') format('truetype'),
        local('PP Supply Mono'),
        local('PP Supply Mono Regular'),
        local('PPSupplyMono'),
        local('PPSupplyMono-Regular');
      font-style: normal;
      font-weight: 400;
      font-display: swap;
    }

    :root {
      --green-dark: #000000;
      --green: #03A63C;
      --green-light: #04D939;
      --green-lightest: #04D939;
      --red: #04D939;
      --white: #ffffff;
      --black: #000000;
      --white-10: rgba(255,255,255,0.1);
      --white-20: rgba(255,255,255,0.2);
      --white-40: rgba(255,255,255,0.4);
      --font-heading: 'SF Pro', sans-serif;
      --font-display: 'Venus Rising', sans-serif;
      --font-body: Ppneuemontreal, Arial, sans-serif;
      --font-mono: 'PP Supply Mono', monospace;
      --border-dashed: 1px dashed var(--white-20);
      --border-dashed-40: 1px dashed var(--white-40);
      --pad-global: clamp(20px, 3vw, 38px);
      --fx-pointer-x: 50%;
      --fx-pointer-y: 50%;
      --fx-drift-x: 0px;
      --fx-drift-y: 0px;
      --fx-scene-x: 0px;
      --fx-scene-y: 0px;
      --fx-scroll-shift: 0px;
      --fx-intensity: 0.24;
      --fx-noise-opacity: 0.1;
      --fx-scan-opacity: 0.0225;
      --fx-scanlines-opacity: 0.0175;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    ::selection { color: var(--green-dark); background: var(--green-lightest); }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; width: 100%; }
    body { font-family: var(--font-body); background: var(--green-dark); color: var(--white); overflow-x: hidden; position: relative; isolation: isolate; width: 100%; max-width: 100vw; }
    body.is-touch-device {
      --fx-intensity: 0.12;
      --fx-noise-opacity: 0.07;
      --fx-scan-opacity: 0.02;
    }
    body.is-reduced-motion {
      --fx-intensity: 0.1;
      --fx-noise-opacity: 0.06;
      --fx-scan-opacity: 0.015;
    }
    .site-fx {
      position: fixed;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }
    .nav,
    .mobile-menu-overlay,
    .hero-nav,
    .hero-content,
    .about-grid,
    .programs-title-section > *,
    .stack-card-grid,
    .usp-section-inner,
    .reviews .grid-2col,
    .location-content,
    .faq-grid,
    .cta-section > *,
    .footer-grid,
    .page-loader {
      position: relative;
      z-index: 2;
    }
    .site-fx__grain,
    .site-fx__scan,
    .site-fx__pointer {
      position: absolute;
      inset: -20%;
      pointer-events: none;
    }
    .site-fx__grain {
      opacity: var(--fx-noise-opacity);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 180px 180px;
      mix-blend-mode: soft-light;
      animation: grainShift 0.8s steps(6) infinite;
      will-change: transform;
    }
    .site-fx__scan {
      inset: 0;
      opacity: var(--fx-scan-opacity);
      background-image:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0) 18%),
        repeating-linear-gradient(180deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 4px);
      mix-blend-mode: screen;
      animation: fxScanShift 9s linear infinite;
      will-change: transform, opacity;
    }
    @keyframes scan-overlay {
      from { background-position: 0 0; }
      to { background-position: 0 -700px; }
    }
    .site-fx__scanlines {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 2;
      background: linear-gradient(#fbf6c0, #fbf6c0 3px, transparent 0, transparent 9px);
      background-size: 100% 7px;
      opacity: var(--fx-scanlines-opacity);
      animation: scan-overlay 16s linear infinite;
      mix-blend-mode: screen;
    }
    .site-fx__scan,
    .site-fx__scanlines {
      display: none;
    }
    .site-fx__scan::after {
      content: '';
      position: absolute;
      inset: -20% 0 auto;
      height: 18vh;
      background: linear-gradient(180deg, rgba(4,217,57,0), rgba(4,217,57,0.06), rgba(255,255,255,0));
      opacity: 0.38;
      animation: fxScanSweep 7s linear infinite;
    }
    .site-fx__pointer {
      inset: -10%;
      opacity: calc(var(--fx-intensity) * 0.5);
      background:
        radial-gradient(circle at var(--fx-pointer-x) var(--fx-pointer-y), rgba(4,217,57,0.1) 0, rgba(4,217,57,0.045) 9%, transparent 20%),
        radial-gradient(circle at calc(var(--fx-pointer-x) + var(--fx-drift-x)) calc(var(--fx-pointer-y) + var(--fx-drift-y)), rgba(255,255,255,0.045) 0, transparent 14%),
        radial-gradient(circle at calc(var(--fx-pointer-x) - var(--fx-drift-x)) calc(var(--fx-pointer-y) - var(--fx-drift-y)), rgba(4,217,57,0.03) 0, transparent 16%);
      mix-blend-mode: soft-light;
      transform: translate3d(calc(var(--fx-drift-x) * 0.3), calc(var(--fx-drift-y) * 0.3), 0);
      filter: blur(18px);
      will-change: transform, opacity;
    }
    body.is-touch-device .site-fx__pointer,
    body.is-reduced-motion .site-fx__pointer {
      opacity: 0;
    }
    body.is-reduced-motion .site-fx__grain,
    body.is-reduced-motion .site-fx__scan,
    body.is-reduced-motion .site-fx__scan::after {
      animation: none;
    }
    @keyframes grainShift {
      0% { transform: translate(0, 0); }
      20% { transform: translate(-1.5%, 1.2%); }
      40% { transform: translate(1.2%, -1%); }
      60% { transform: translate(-0.8%, -1.4%); }
      80% { transform: translate(1.5%, 0.8%); }
      100% { transform: translate(0.6%, -0.6%); }
    }
    @keyframes fxScanShift {
      0% { transform: translate3d(0, 0, 0); }
      50% { transform: translate3d(0, 8px, 0); }
      100% { transform: translate3d(0, 0, 0); }
    }
    @keyframes fxScanSweep {
      0% { transform: translateY(-18vh); opacity: 0; }
      10% { opacity: 0.24; }
      50% { opacity: 0.38; }
      90% { opacity: 0.12; }
      100% { transform: translateY(140vh); opacity: 0; }
    }
    @keyframes glitchTextJitter {
      0% { transform: translate3d(0,0,0); }
      20% { transform: translate3d(-1px, 0, 0); }
      40% { transform: translate3d(2px, -1px, 0); }
      60% { transform: translate3d(-2px, 1px, 0); }
      80% { transform: translate3d(1px, 0, 0); }
      100% { transform: translate3d(0,0,0); }
    }
    @keyframes glitchMediaJitter {
      0% { transform: translate3d(0,0,0) scale(1); }
      25% { transform: translate3d(-3px, 1px, 0) scale(1.012); }
      50% { transform: translate3d(3px, -1px, 0) scale(1.008); }
      75% { transform: translate3d(-2px, 0, 0) scale(1.01); }
      100% { transform: translate3d(0,0,0) scale(1); }
    }
    .fx-glitch-target {
      position: relative;
      isolation: isolate;
      transform: translate3d(0, 0, 0);
      backface-visibility: hidden;
    }
    .fx-glitch-target.is-glitching {
      text-shadow: -1px 0 rgba(4,217,57,0.4), 1px 0 rgba(255,255,255,0.18);
      filter: saturate(1.06) contrast(1.06);
    }
    .fx-glitch-target:not(.fx-glitch-target--media).is-glitching {
      animation: glitchTextJitter 0.18s steps(2, end) 2;
    }
    .fx-glitch-target--media {
      overflow: hidden;
      transform-origin: center;
    }
    .fx-glitch-target--media.is-glitching {
      animation: glitchMediaJitter 0.22s steps(2, end) 2;
      filter: saturate(1.04) contrast(1.06) brightness(1.01);
    }
    .fx-glitch-target--media::after {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      background:
        linear-gradient(90deg, rgba(4,217,57,0.04), transparent 30%, rgba(255,255,255,0.03) 65%, transparent),
        repeating-linear-gradient(180deg, rgba(255,255,255,0.0225) 0, rgba(255,255,255,0.0225) 2px, transparent 2px, transparent 8px);
      mix-blend-mode: screen;
      transition: opacity 0.15s ease;
      pointer-events: none;
    }
    .fx-glitch-target--media.is-glitching::after {
      opacity: 1;
    }
    .fx-parallax-target {
      --fx-parallax-depth: 0;
      --fx-parallax-scroll-depth: 0;
      translate:
        calc(var(--fx-scene-x) * var(--fx-parallax-depth))
        calc((var(--fx-scene-y) * var(--fx-parallax-depth)) + (var(--fx-scroll-shift) * var(--fx-parallax-scroll-depth)));
      will-change: translate;
    }
    .fx-parallax-inline {
      display: inline-block;
    }
    body.is-reduced-motion .fx-parallax-target {
      translate: 0 0;
    }

    /* === TYPOGRAPHY === */
    .h1 {
      font-family: var(--font-heading); font-weight: 900; line-height: 1.15;
      letter-spacing: -0.06em; text-transform: none; color: var(--white);
      font-size: 18rem;
      overflow: visible;
    }
    @media(max-width:1550px) { .h1 { font-size: 14rem; } }
    @media(max-width:1440px) { .h1 { font-size: 12rem; } }
    @media(max-width:1200px) { .h1 { font-size: 10rem; } }
    @media(max-width:991px) { .h1 { font-size: 9rem; } }
    @media(max-width:767px) { .h1 { letter-spacing: -0.06em; font-size: 6.5rem; } }
    @media(max-width:479px) { .h1 { letter-spacing: -0.05em; font-size: 4rem; } }
    .h2 { font-family: var(--font-heading); font-size: clamp(2rem,4vw,3.84rem); font-weight: 900; line-height: 1.2; letter-spacing: -0.05em; text-transform: uppercase; color: var(--white); text-wrap: balance; overflow: visible; }
    .h3 { font-family: var(--font-heading); font-size: clamp(1.1rem,1.8vw,1.45rem); font-weight: 900; line-height: 1.3; letter-spacing: -0.04em; color: var(--white); text-wrap: balance; }
    .body-text { font-family: 'PP Supply Mono', var(--font-mono); font-size: 1.2rem; font-weight: 500; line-height: 1.5; letter-spacing: -0.0125rem; color: var(--white); text-wrap: pretty; }
    .allcaps { font-family: 'PP Supply Mono', var(--font-mono); font-size: 0.96rem; font-weight: 400; line-height: 1.5; letter-spacing: -0.01rem; text-transform: uppercase; color: var(--green-light); }
    .allcaps.is-white { color: var(--white); }
    .allcaps.is-red { color: var(--red); }

    /* Shared glass blur for small box elements */
    .label-tag,
    .nav-contact-link,
    .nav-social-link,
    .btn-outline,
    .btn-solid,
    .btn-text,
    .mobile-menu-social-pill,
    .preload-skip,
    .countdown-badge,
    .form-input {
      -webkit-backdrop-filter: blur(5px);
      backdrop-filter: blur(5px);
    }

    /* Labels/badges */
    .label-tag {
      display: grid;
      grid-template-columns: 1rem minmax(0, 1fr);
      align-items: center;
      min-height: 40px;
      min-width: 0;
      gap: 0.7rem;
      width: 100%;
      padding: 0.72rem 1rem 0.68rem;
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
      font-family: 'PP Supply Mono', var(--font-mono);
      font-size: 0.72rem;
      font-weight: 400;
      line-height: 1;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      white-space: nowrap;
      color: var(--green-light);
    }
    .label-tag svg {
      width: 1rem;
      height: 1rem;
      flex: 0 0 auto;
      display: block;
      justify-self: center;
      fill: currentColor;
    }
    .label-tag .label-tag-text {
      display: block;
      min-width: 0;
    }

    /* === LOADER === */
    .page-loader {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background:
        radial-gradient(circle at 22% 18%, rgba(4,217,57,0.08), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
        var(--green-dark);
      display: flex;
      flex-direction: column;
      font-family: var(--font-mono);
      overflow: hidden;
      color: var(--green);
    }
    .page-loader::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.02), transparent 14%),
        radial-gradient(circle at center, transparent 42%, rgba(0,0,0,0.24) 100%);
      pointer-events: none;
      z-index: 0;
    }
    .page-loader.is-hidden { display: none; }
    .preload-grain {
      position: fixed;
      inset: 0%;
      z-index: 1;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 180px 180px;
      pointer-events: none;
      animation: grainShift 0.8s steps(6) infinite;
    }
    .preload-header,
    .preload-footer {
      position: relative;
      z-index: 2;
    }
    .preload-top-row,
    .preload-status-row,
    .preload-footer-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      padding: 10px clamp(16px, 2.4vw, 34px);
      font-size: clamp(0.5rem, 0.68vw, 0.66rem);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .preload-top-row {
      color: rgba(255,255,255,0.68);
      border-bottom: 1px solid rgba(4,217,57,0.14);
    }
    .preload-top-row span:first-child {
      color: rgba(255,255,255,0.92);
    }
    .preload-status-row {
      padding-top: 12px;
      color: var(--green-light);
    }
    .preload-footer-row {
      font-size: clamp(0.46rem, 0.58vw, 0.56rem);
      color: rgba(255,255,255,0.34);
      border-top: 1px solid rgba(4,217,57,0.12);
    }
    .preload-footer-text {
      max-width: 52%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      text-align: center;
    }
    .preload-divider {
      display: flex;
      align-items: center;
      height: 16px;
    }
    .preload-divider-line {
      flex: 1;
      height: 1px;
      background: rgba(4,217,57,0.22);
    }
    .preload-divider-notch {
      width: clamp(52px, 7vw, 96px);
      height: 8px;
      border-left: 1px solid rgba(4,217,57,0.22);
      border-right: 1px solid rgba(4,217,57,0.22);
      flex-shrink: 0;
    }
    .preload-body {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(24px, 5vw, 60px) clamp(18px, 3vw, 38px);
      position: relative;
      z-index: 2;
    }
    .preload-panel {
      width: 100%;
      max-width: 760px;
      padding: clamp(24px, 4vw, 42px) clamp(24px, 5vw, 56px);
      border: 1px solid rgba(4,217,57,0.24);
      background: rgba(0,0,0,0.26);
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.015),
        0 24px 54px rgba(0,0,0,0.2);
      text-align: center;
    }
    .preload-panel-title {
      margin: 0 0 clamp(18px, 2.8vw, 30px);
      font-size: clamp(0.56rem, 0.74vw, 0.72rem);
      letter-spacing: 0.18em;
      color: rgba(255,255,255,0.68);
      text-transform: uppercase;
    }
    .preload-progress-row {
      display: flex;
      align-items: center;
      gap: clamp(8px, 1.4vw, 14px);
    }
    .preload-progress-label {
      min-height: 28px;
      padding: 0.34rem 0.72rem 0.3rem;
      border: 1px solid rgba(4,217,57,0.2);
      background: rgba(4,217,57,0.04);
      font-size: clamp(0.5rem, 0.64vw, 0.6rem);
      letter-spacing: 0.12em;
      white-space: nowrap;
      color: rgba(255,255,255,0.62);
      flex-shrink: 0;
    }
    .preload-bar {
      position: relative;
      flex: 1;
      height: 16px;
      border: 1px solid rgba(4,217,57,0.2);
      background: rgba(255,255,255,0.02);
      overflow: hidden;
    }
    .preload-bar-fill {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 0%;
      background: linear-gradient(90deg, rgba(4,217,57,0.5), rgba(4,217,57,0.9));
      box-shadow: 0 0 18px rgba(4,217,57,0.12);
    }
    .preload-percent {
      min-width: 3.6ch;
      text-align: right;
      font-size: clamp(0.6rem, 0.78vw, 0.74rem);
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.86);
      flex-shrink: 0;
    }
    .preload-cancel {
      margin-top: clamp(12px, 1.8vw, 18px);
      font-size: clamp(0.48rem, 0.58vw, 0.56rem);
      letter-spacing: 0.14em;
      color: rgba(255,255,255,0.32);
      text-transform: uppercase;
    }
    .preload-skip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 30px;
      padding: 0.42rem 0.8rem 0.38rem;
      background: rgba(255,255,255,0.025);
      color: rgba(255,255,255,0.72);
      border: 1px solid rgba(255,255,255,0.08);
      font-family: var(--font-mono);
      font-size: clamp(0.5rem, 0.62vw, 0.58rem);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
    }
    .preload-skip:hover,
    .preload-skip:focus-visible {
      transform: translateY(-1px);
      color: var(--green-light);
      border-color: rgba(4,217,57,0.28);
      background: rgba(4,217,57,0.06);
    }
    @media (max-width: 767px) {
      .preload-top-row,
      .preload-status-row,
      .preload-footer-row,
      .preload-progress-row {
        flex-wrap: wrap;
      }
      .preload-top-row,
      .preload-status-row,
      .preload-footer-row {
        justify-content: flex-start;
      }
      .preload-top-row span:last-child,
      .preload-footer-text {
        display: none;
      }
      .preload-panel {
        padding: 22px 20px 24px;
      }
      .preload-progress-row {
        align-items: stretch;
      }
      .preload-percent {
        min-width: 0;
        text-align: left;
      }
    }

    /* === GRAIN OVERLAY === */
    .grain-overlay {
      z-index: 9999;
      opacity: 0.02;
      background-image: url('/assets/images/grain.gif');
      background-position: 0 0;
      background-size: auto;
      position: fixed;
      inset: 0%;
      pointer-events: none;
    }

    /* Hero load split animation */
    .hero-line-mask,
    .hero-char-mask {
      display: inline-flex;
      overflow: hidden;
      vertical-align: top;
      padding: 0.08em 0.04em;
      margin: -0.08em -0.04em;
    }
    .hero-line-mask {
      display: block;
      line-height: inherit;
    }
    .hero-line,
    .hero-char {
      display: block;
      will-change: transform;
    }
    .hero-heading .h1.is-split {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
    }
    .hero-char-mask.is-space { width: 0.28em; }

    /* === VISIBILITY CONTROL (hidden until GSAP animates) === */
    [data-scroll] { visibility: hidden !important; }
    [data-scramble]:not([data-scramble="load"]),
    .allcaps:not(.no-scramble):not(.hero *):not(.hero-nav *):not(#loader *),
    .label-tag:not(.no-scramble):not(.hero *):not(#loader *),
    .hero-intro .body-text,
    .hero .hero-person,
    .hero .countdown-row,
    .hero .hero-heading .h1,
    .hero-vertical-rail,
    .hero-nav .nav-links a,
    .hero-nav .nav-logo-text,
    .hero-nav .mobile-menu-btn { visibility: hidden; }

    /* === FOCUS/ACCESSIBILITY === */
    *[tabindex]:focus-visible, a:focus-visible, button:focus-visible {
      outline: 0.125rem solid var(--green-light);
      outline-offset: 0.125rem;
    }

    /* === TEXT CLAMP UTILITIES === */
    .text-style-3lines { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
    .text-style-2lines { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }

    /* === HIDE UTILITIES === */
    @media(max-width:991px) { .hide-tablet { display: none !important; } }
    @media(max-width:767px) { .hide-mobile-landscape { display: none !important; } }
    @media(max-width:479px) { .hide-mobile { display: none !important; } }

    /* === CONTAINER UTILITIES === */
    .container-large { margin-left: auto !important; margin-right: auto !important; max-width: 1382px; width: 100%; }
    .container-medium { margin-left: auto !important; margin-right: auto !important; max-width: 1080px; width: 100%; }
    .container-small { margin-left: auto !important; margin-right: auto !important; max-width: 780px; width: 100%; }

    /* === SPACING UTILITIES === */
    .margin-0 { margin: 0 !important; }
    .padding-0 { padding: 0 !important; }
    .spacing-clean { margin: 0 !important; padding: 0 !important; }
    .margin-vertical { margin-left: 0 !important; margin-right: 0 !important; }
    .padding-horizontal { padding-top: 0 !important; padding-bottom: 0 !important; }

    /* === RICH TEXT === */
    .w-richtext > :not(div):first-child { margin-top: 0 !important; }
    .w-richtext > :last-child { margin-bottom: 0 !important; }

    /* === NAV (fixed bar appears after scroll) === */
    .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 2000; pointer-events: none; }
    .nav-inner {
      display: flex; justify-content: space-between; align-items: center;
      gap: 1.2rem;
      width: 100%;
      min-height: 78px;
      padding: 0 var(--pad-global);
      max-width: 100%;
      opacity: 0;
      transform: translate3d(0, -18px, 0);
      filter: blur(10px);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)),
        rgba(0,0,0,0.82);
      border-bottom: 1px solid rgba(4,217,57,0.2);
      box-shadow:
        inset 0 -1px 0 rgba(255,255,255,0.04),
        0 14px 32px rgba(0,0,0,0.26);
      backdrop-filter: blur(14px);
      transition:
        opacity 0.28s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .nav-inner.visible {
      opacity: 1;
      transform: translate3d(0, 0, 0);
      filter: blur(0);
    }
    .nav-inner > * { pointer-events: auto; }

    /* Hero nav overlays the video until the fixed bar takes over */
    .hero-nav {
      position: absolute; top: 0; left: 0; right: 0; z-index: 10;
      display: flex; justify-content: space-between; align-items: center;
      padding: 24px var(--pad-global); pointer-events: none;
      transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .hero-nav > * { pointer-events: auto; }
    body.is-nav-fixed .hero-nav {
      opacity: 0;
      transform: translate3d(0, -14px, 0);
      pointer-events: none;
    }
    body.is-nav-fixed .hero-nav > * {
      pointer-events: none;
    }
    .nav-logo-text {
      display: inline-flex;
      align-items: center;
      min-height: auto;
      padding: 0;
      background: transparent;
      border: 0;
      box-shadow: none;
      backdrop-filter: none;
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.08em;
      white-space: nowrap;
      transition: opacity 0.22s ease, transform 0.22s ease;
    }
    .nav-inner .nav-logo-text {
      pointer-events: auto;
    }
    .nav-logo-text:hover,
    .nav-logo-text:focus-visible {
      transform: translateY(-1px);
      opacity: 0.92;
    }
    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .nav-cluster {
      display: inline-flex;
      align-items: center;
      flex-wrap: nowrap;
      justify-content: flex-end;
      flex: 1 1 auto;
      min-width: 0;
      gap: 0.88rem;
      padding: 0;
      pointer-events: auto;
    }
    .nav-inner .nav-cluster {
      padding: 0;
      background: transparent;
      border: 0;
      box-shadow: none;
      backdrop-filter: none;
    }
    .hero-nav .nav-cluster {
      gap: 1.44rem;
    }
    .nav-links {
      display: inline-flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: flex-end;
      gap: 0.18rem;
      padding: 0;
      background: transparent;
      border: none;
      box-shadow: none;
      backdrop-filter: none;
      clip-path: none;
    }
    .nav-links a {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0.72rem 1.02rem 0.66rem;
      font-family: 'PP Supply Mono', var(--font-mono); font-size: 0.74rem; font-weight: 400;
      text-transform: uppercase; color: rgba(255,255,255,0.82); text-decoration: none;
      letter-spacing: 0.12em;
      transition: color 0.22s ease, transform 0.22s ease;
      border: 1px solid transparent;
    }
    .nav-links a:hover {
      color: var(--green-light);
      background: transparent;
      border-color: transparent;
      transform: none;
    }
    .nav-links a.is-active {
      color: rgba(255,255,255,0.92);
      background: transparent;
      border-color: transparent;
      transform: none;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      left: 1rem;
      right: 1rem;
      bottom: 0.45rem;
      height: 1px;
      background: linear-gradient(90deg, rgba(4,217,57,0), rgba(4,217,57,0.95), rgba(4,217,57,0));
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.22s ease;
    }
    .nav-links a:hover::after,
    .nav-links a.is-active::after {
      transform: scaleX(1);
    }
    .nav-meta {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: nowrap;
      gap: 0.34rem;
      padding-left: 0;
      max-width: 100%;
      min-width: 0;
    }
    .nav-meta > * {
      flex: 0 0 auto;
    }
    .nav-contact-link {
      display: inline-flex;
      align-items: center;
      gap: 0.42rem;
      min-height: 30px;
      min-width: 0;
      padding: 0.42rem 0.68rem 0.38rem;
      font-family: 'PP Supply Mono', var(--font-mono);
      font-size: 0.58rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      line-height: 1;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.025);
      color: rgba(255,255,255,0.92);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
      transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
    }
    .nav-contact-link {
      text-decoration: none;
    }
    .nav-contact-link svg,
    .nav-social-link svg,
    .mobile-menu-contact a svg,
    .mobile-menu-social-pill svg {
      width: 14px;
      height: 14px;
      flex: 0 0 auto;
    }
    .nav-contact-text {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .nav-contact-link:hover,
    .nav-contact-link:focus-visible {
      color: var(--green-light);
      border-color: rgba(4,217,57,0.34);
      background: rgba(4,217,57,0.08);
      transform: translateY(-1px);
    }
    .nav-socials {
      display: inline-flex;
      align-items: center;
      gap: 0.36rem;
      margin-left: 0.02rem;
    }
    .nav-social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      text-decoration: none;
      color: rgba(255,255,255,0.92);
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.025);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
      cursor: pointer;
      transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
    }
    .nav-social-link:hover,
    .nav-social-link:focus-visible {
      color: var(--green-light);
      border-color: rgba(4,217,57,0.34);
      background: rgba(4,217,57,0.08);
      transform: translateY(-1px);
    }
    .nav-meta-divider {
      width: 1px;
      height: 22px;
      background: linear-gradient(180deg, rgba(4,217,57,0), rgba(4,217,57,0.35), rgba(4,217,57,0));
      margin: 0 0.12rem;
      flex: 0 0 auto;
    }

    /* === MOBILE MENU === */
    .mobile-menu-btn {
      display: none; background: rgba(0,0,0,0.54); border: 1px solid rgba(4,217,57,0.24); cursor: pointer;
      width: 3.3em; height: 3.3em; position: relative; z-index: 3001;
      justify-content: center; align-items: center; color: var(--green-light);
      padding: 0; flex: 0 0 auto;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
      backdrop-filter: blur(12px);
      transition: border-color 0.22s ease, transform 0.22s ease, background 0.22s ease;
    }
    .mobile-menu-btn span {
      display: block; width: 2em; height: 0.125em; background: currentColor;
      position: absolute; top: 50%; left: 50%; transform-origin: center;
      transition: transform 0.5s cubic-bezier(.7,0,.3,1), opacity 0.5s cubic-bezier(.7,0,.3,1);
    }
    .mobile-menu-btn:hover,
    .mobile-menu-btn:focus-visible {
      transform: translateY(-1px);
      border-color: rgba(4,217,57,0.5);
      background: rgba(0,0,0,0.72);
    }
    .mobile-menu-btn span:nth-child(1) { transform: translate(-50%, calc(-50% - 0.43em)) scaleX(0.5); }
    .mobile-menu-btn span:nth-child(2) { transform: translate(-50%, -50%); }
    .mobile-menu-btn span:nth-child(3) { transform: translate(-50%, calc(-50% + 0.43em)) scaleX(0.5); }
    .mobile-menu-btn.active span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg) scaleX(0.7); }
    .mobile-menu-btn.active span:nth-child(2) { transform: translate(calc(-50% - 3em), -50%); }
    .mobile-menu-btn.active span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg) scaleX(0.7); }

    .mobile-menu-close {
      position: absolute; top: 1.5rem; right: 2rem; z-index: 10;
      width: 2.4rem; height: 2.4rem;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
      color: rgba(255,255,255,0.7); cursor: pointer; padding: 0; flex: 0 0 auto;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }
    .mobile-menu-close:hover,
    .mobile-menu-close:focus-visible {
      background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.3);
    }

    .mobile-menu-overlay {
      position: fixed; inset: 0; z-index: 3000; display: flex;
      opacity: 0; visibility: hidden; pointer-events: none;
      background: rgba(0,0,0,1);
    }
    .mobile-menu-overlay.open { pointer-events: auto; }
    .mobile-menu-panel {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; justify-content: center; align-items: stretch;
      padding: 5rem 2rem 2.5rem;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      background: #000;
    }
    .mobile-menu-panel::before {
      content: '';
      position: absolute;
      inset: 12px;
      border: 1px solid rgba(4,217,57,0.14);
      background: rgba(6,6,6,0.5);
      backdrop-filter: blur(18px);
      border-radius: 2px;
      pointer-events: none;
    }
    .mobile-menu-logo {
      position: absolute;
      top: 1.5rem;
      left: 2rem;
      z-index: 10;
      font-family: var(--font-heading);
      font-size: 0.9rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
    }
    .mobile-menu-overlay .menu-label {
      position: relative;
      z-index: 1;
      align-self: flex-start;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 0.7rem;
      font-family: var(--font-mono); font-size: 0.65rem; color: var(--green-light);
      letter-spacing: 0.16em; margin-bottom: 1rem; text-align: left;
      border: 1px solid rgba(4,217,57,0.18);
      background: rgba(4,217,57,0.05);
    }
    .mobile-menu-overlay .menu-label::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--green-light);
      box-shadow: 0 0 10px rgba(4,217,57,0.75);
    }
    .mobile-menu-overlay .menu-links {
      counter-reset: menu;
      position: relative;
      z-index: 1;
      list-style: none; display: flex; flex-direction: column; align-items: stretch;
      width: 100%;
      margin: 0; padding: 0;
    }
    .mobile-menu-overlay .menu-links li {
      position: relative;
      overflow: hidden;
      padding: 0.08em 0;
      margin: -0.08em 0;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-menu-overlay .menu-links li:last-child {
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-menu-overlay .menu-links li::before {
      counter-increment: menu;
      content: '0' counter(menu);
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      color: rgba(4,217,57,0.5);
    }
    .mobile-menu-overlay .menu-links a {
      display: block; overflow: hidden; font-family: var(--font-heading);
      font-size: clamp(1.65rem, 6.5vw, 2.8rem); font-weight: 900; line-height: 1.15;
      letter-spacing: -0.03em; color: var(--white); text-decoration: none;
      padding: 0.75rem 0 0.75rem 2.25rem;
    }
    .mobile-menu-overlay .menu-link-text {
      display: inline-block;
      position: relative;
      transition: transform 0.45s cubic-bezier(.22,1,.36,1), color 0.3s ease;
    }
    .mobile-menu-overlay .menu-links a:hover .menu-link-text,
    .mobile-menu-overlay .menu-links a:focus-visible .menu-link-text {
      transform: translateX(8px);
    }
    .mobile-menu-overlay .menu-links a.is-active { color: var(--green-light); }
    .mobile-menu-meta {
      position: relative;
      z-index: 1;
      width: 100%;
      margin-top: auto;
      padding-top: 0.75rem;
      display: grid;
      gap: 0.75rem;
    }
    .mobile-menu-contact {
      display: grid;
      gap: 0;
      justify-items: start;
    }
    .mobile-menu-contact a {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      min-height: 36px;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      transition: color 0.22s ease;
    }
    .mobile-menu-contact a:hover,
    .mobile-menu-contact a:focus-visible {
      color: var(--green-light);
    }
    .mobile-menu-socials-block {
      display: grid;
      gap: 0.5rem;
      justify-items: start;
    }
    .mobile-menu-socials-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--green-light);
    }
    .mobile-menu-socials-label::before {
      display: none;
    }
    .mobile-menu-socials {
      display: flex;
      flex-wrap: nowrap;
      gap: 0.4rem;
      width: 100%;
    }
    .mobile-menu-social-pill {
      flex: 1 1 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      min-height: 40px;
      padding: 0.4rem 0.65rem;
      font-family: var(--font-mono);
      font-size: 0.55rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      border: 1px dashed rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.03);
    }

    .carousel-dots { display: none; }

    /* === LAYOUT === */
    .pad { padding-left: var(--pad-global); padding-right: var(--pad-global); }
    .grid-2col { display: grid; grid-template-columns: minmax(0, .5fr) minmax(0, 1fr); gap: clamp(30px, 7vw, 92px); max-width: 1382px; width: 100%; margin: 0 auto; }
    .about-grid,
    .programs-title-section > .h1,
    .stack-card-grid,
    .usp-section-inner,
    .reviews .grid-2col,
    .location-content,
    .faq-grid,
    .cta-grid {
      width: min(90%, 1382px);
      margin-left: auto;
      margin-right: auto;
    }
    .divider { height: 1px; border-bottom: var(--border-dashed); margin: 0; }

    /* === HERO === */
    .hero {
      --hero-frame-space: var(--pad-global);
      position: relative; min-height: 100svh; height: 100svh;
      display: flex; flex-direction: column; justify-content: flex-end;
      background: var(--green-dark); overflow: hidden;
      z-index: 0;
    }
    .hero-media {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: auto;
      overflow: hidden;
      background: var(--green-dark);
      will-change: opacity, transform;
    }
    .hero-scan-stage {
      position: absolute;
      inset: 0;
      background: var(--green-dark);
      transform: translateZ(0);
    }
    .hero-fallback-images {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }
    .hero-fallback-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      opacity: 0;
      filter: grayscale(100%);
      transform: none;
      transition: filter 0.9s ease,
                  opacity 0.6s ease;
    }
    .hero-fallback-image.is-active {
      opacity: 0.58;
    }
    .hero-scan-stage.is-webgpu-ready .hero-fallback-image.is-active {
      opacity: 0.12;
    }
    .hero-scan-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.45s ease;
    }
    .hero-scan-stage.is-webgpu-ready .hero-scan-canvas {
      opacity: 0.9999; /* <1 prevents Chrome hardware-overlay promotion, keeps CSS z-index respected */
    }
    .hero-media-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        radial-gradient(ellipse at center, transparent 30%, #000000 100%),
        linear-gradient(45deg, rgba(0,0,0,0.9), rgba(0,0,0,0.2) 45%, rgba(0,0,0,0.68));
    }
    .hero-media-overlay::before,
    .hero-media-overlay::after {
      content: none;
    }
    .hero-media:hover .hero-fallback-image.is-active {
      filter: grayscale(100%) brightness(1.15);
      opacity: 0.65;
    }
    .hero::after { content: none; }
    .hero-content {
      position: relative; z-index: 3; will-change: transform; display: flex; flex-direction: column;
      justify-content: flex-end; padding: 0 var(--pad-global) var(--hero-frame-space);
      gap: clamp(15px, 1.5vw, 23px);
    }
    .hero-intro { max-width: 58rem; display: flex; flex-direction: column; gap: 0.5rem; }
    .hero-kicker { margin-bottom: 0.35rem; }
    .hero-intro .body-text {
      font-family: var(--font-mono);
      font-size: 1.05rem;
      line-height: 1.6;
    }
    .hero-person { display: flex; align-items: center; gap: clamp(14px, 1.5vw, 23px); }
    .hero-person img { width: 46px; height: 46px; border-radius: 0; object-fit: cover; overflow: hidden; }

    /* Hero bottom element */
    .hero-bottom-row {
      display: flex; justify-content: space-between; align-items: flex-end;
      width: 100%;
    }
    .hero-heading {
      position: relative;
      z-index: 6;
      isolation: isolate;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      flex: 1;
      min-width: 0;
    }
    .hero-heading .h1 {
      position: relative;
      z-index: 7;
      white-space: nowrap;
      margin-left: -5px;
    }
    .countdown-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
    .countdown-badge {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      min-width: 0;
      padding: 0.62rem 0.92rem 0.58rem;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.025);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
      font-family: 'PP Supply Mono', var(--font-mono);
      font-size: 0.72rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      line-height: 1;
      color: var(--green-light);
      white-space: nowrap;
    }
    .countdown-badge.minutes { margin-left: 0; }
    .countdown-badge.seconds { color: var(--green-light); }

    .hero-vertical-rail {
      --hero-vertical-size: clamp(4rem, 10vw, 8rem);
      position: fixed;
      right: -10px;
      top: 0;
      bottom: 0;
      width: 0;
      display: block;
      overflow: visible;
      pointer-events: none;
      z-index: 1800;
    }
    .hero-vertical-text {
      position: absolute;
      top: 0;
      right: calc(10px + var(--hero-vertical-size) * 0.9 + var(--pad-global));
      font-family: var(--font-heading);
      font-size: var(--hero-vertical-size);
      font-weight: 900;
      color: var(--white);
      opacity: 0.15;
      text-transform: uppercase;
      white-space: nowrap;
      line-height: 1.15;
      letter-spacing: -0.06em;
      padding: 0.1em;
      transform: rotate(-90deg);
      transform-origin: top right;
      transition: opacity 0.25s ease;
    }
    .hero-vertical-status {
      position: absolute;
      top: 0;
      right: calc(10px + var(--pad-global) + var(--hero-vertical-size) * 0.45);
      transform: translateY(-100%);
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transition: opacity 0.25s ease;
    }
    .hero-vertical-status .allcaps {
      color: var(--green-light);
    }
    .hero-vertical-status .time-bulb {
      background: var(--green-light);
    }
    .time-bulb { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

    /* === ABOUT === */
    .about { background: var(--green-dark); padding: clamp(60px, 7vw, 92px) var(--pad-global); overflow: hidden; position: relative; z-index: 0; margin-top: -2px; }
    .hero-bottom-fade {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 40%;
      background: linear-gradient(to top, #000000 0%, #000000 15%, transparent 100%);
      pointer-events: none;
      z-index: 2;
    }
    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, clamp(22rem, 31vw, 29rem)) minmax(0, 1fr);
      gap: clamp(36px, 6vw, 92px);
      align-items: start;
      max-width: 1382px;
      width: 100%;
      margin: 0 auto;
    }
    .about-text {
      grid-column: 2; grid-row: 1; overflow: hidden;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: clamp(20px, 2.4vw, 30px);
      align-content: start;
      min-height: 100%;
    }
    .about-text .h2 { grid-column: 1; overflow-wrap: break-word; word-wrap: break-word; max-width: 15ch; }
    .about-label { grid-column: 1; align-self: start; max-width: 100%; }
    .about-body {
      grid-column: 1;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: clamp(18px, 2vw, 24px);
      align-items: start;
      padding-bottom: 0;
      max-width: min(100%, 56rem);
    }
    .about-copy-col {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: clamp(16px, 1.6vw, 22px);
      min-width: 0;
    }
    .about-body .body-text {
      max-width: 49ch;
      font-size: clamp(0.98rem, 1vw, 1.08rem);
      line-height: 1.72;
      letter-spacing: -0.01rem;
      text-wrap: balance;
    }
    .about-copy-break { display: inline; }
    .about-media { grid-column: 1; grid-row: 1; display: flex; gap: 27px; align-self: stretch; margin-top: 0; padding-top: clamp(8px, 1.2vw, 18px); }
    .about-img {
      width: min(100%, 28rem); height: clamp(27rem, 37vw, 33rem); flex-shrink: 0;
      padding: 8px; border: 1px dashed var(--white-20);
      border-radius: 0; overflow: hidden;
    }
    .about-img img { width: 100%; height: 100%; object-fit: cover; }
    .about-stats {
      display: flex;
      flex-wrap: nowrap;
      gap: 0.65rem;
      justify-content: flex-start;
      align-items: stretch;
      min-height: auto;
      padding-bottom: 0;
      width: fit-content;
      max-width: 100%;
    }
    .about-stats .label-tag {
      width: auto;
      flex: 0 0 auto;
      min-height: 44px;
      gap: 0.64rem;
      padding: 0.78rem 0.94rem 0.72rem;
      font-size: 0.6rem;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.76);
    }
    .about-stats .label-tag svg {
      width: 0.84rem;
      height: 0.84rem;
    }
    .about-stats .label-tag .label-tag-text {
      overflow: visible;
      text-overflow: clip;
      white-space: nowrap;
    }
    .about-body .btn-group {
      margin-top: 0.3rem;
    }
    .btn-text,
    .btn-outline,
    .btn-solid {
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0.42rem;
      min-height: 40px;
      min-width: 0;
      padding: 0.62rem 0.92rem 0.58rem;
      background: rgba(255,255,255,0.025);
      color: rgba(255,255,255,0.76);
      text-decoration: none;
      font-family: 'PP Supply Mono', var(--font-mono);
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      line-height: 1;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
      clip-path: none;
      border-radius: 0;
      transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        color 0.22s ease;
    }
    .btn-text,
    .btn-outline {
      color: var(--green-light);
    }
    .btn-text > span,
    .btn-text > svg,
    .btn-outline > span,
    .btn-outline > svg,
    .btn-solid > span,
    .btn-solid > svg {
      position: relative;
      z-index: 1;
    }
    .btn-text > svg,
    .btn-outline > svg,
    .btn-solid > svg {
      display: none;
    }
    .btn-text:hover,
    .btn-text:focus-visible,
    .btn-outline:hover,
    .btn-outline:focus-visible,
    .btn-solid:hover,
    .btn-solid:focus-visible {
      color: var(--green-light);
      transform: translateY(-1px);
      border-color: rgba(4,217,57,0.34);
      background: rgba(4,217,57,0.08);
    }
    .btn-text:active,
    .btn-outline:active,
    .btn-solid:active {
      transform: translateY(0);
    }
    .btn-text { width: fit-content; }
    .btn-group { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; }

    /* === PROGRAMS TITLE === */
    .programs-title-section { background: var(--green-dark); padding: 0 var(--pad-global) 40px; }
    .programs-title-section .h1 { color: var(--white); }

    /* === STACKING CARDS === */
    .stacking-cards { position: relative; z-index: 0; }
    .stacking-cards .stack-card + .stack-card { margin-top: -1em; }
    .stack-card {
      position: sticky; top: 82px; min-height: calc(100vh - 82px);
      padding: 118px var(--pad-global) 60px;
      box-shadow: 0 -10px 40px 15px rgba(0,0,0,0.2);
    }
    .stacking-cards .stack-card:nth-child(1) { z-index: 1; }
    .stacking-cards .stack-card:nth-child(2) { z-index: 2; }
    .stacking-cards .stack-card:nth-child(3) { z-index: 3; }
    .stack-card.bg-dark { background: var(--green-dark); }
    .stack-card.bg-olive { background: var(--green-dark); }
    .stack-card-grid { display: grid; grid-template-columns: minmax(0, .5fr) minmax(0, 1fr); gap: clamp(30px, 7vw, 92px); max-width: 1382px; width: 100%; margin: 0 auto; }
    .stack-card-visual { display: flex; flex-direction: column; gap: 27px; justify-content: flex-start; }
    .stack-card-visual-stats { display: flex; flex-direction: column; gap: 4px; }
    .stack-card-text {
      display: grid; grid-template-columns: minmax(0, .5fr) minmax(0, 1fr);
      gap: var(--pad-global) clamp(15px, 2vw, 31px);
    }
    .stack-card-text .h2 { grid-column: 1 / 3; }
    .stack-card-text .card-label { grid-column: 1; }
    .stack-card-text .card-body { grid-column: 2; }
    .stack-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
    .card-body .body-text {
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .usp-list { list-style: none; margin-top: 1rem; }
    .usp-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
    .usp-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; stroke: var(--green-light); }
    .usp-list li .body-text {
      font-size: 0.84rem;
      line-height: 1.5;
    }
    .includes-label {
      font-family: var(--font-heading);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.03em;
      line-height: 1;
      text-transform: uppercase;
      color: var(--white);
      margin-top: 1.5rem;
      margin-bottom: 0.65rem;
    }
    .stack-card-text .stack-card-visual-stats { grid-column: 1; }

    /* === USP === */
    .usp-section { background: var(--green-dark); padding: 100px var(--pad-global); position: relative; z-index: 0; }
    .usp-section-inner { max-width: 1382px; margin: 0 auto; }
    .usp-intro {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
      gap: clamp(24px, 4vw, 64px);
      align-items: end;
      max-width: 1382px;
      width: 100%;
      margin: 0 auto;
    }
    .usp-intro-copy { display: flex; flex-direction: column; gap: 18px; }
    .usp-intro-copy .h2 { max-width: 16ch; }
    .usp-summary { max-width: 30rem; font-size: 1.02rem; line-height: 1.55; color: rgba(255,255,255,0.7); }
    .usp-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 2.5rem; width: 100%; }
    .usp-block,
    .usp-cta {
      min-height: 238px;
      padding: 28px;
      border: 1px dashed var(--white-20);
      border-radius: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start;
      background: #000000;
    }
    .usp-card-top { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
    .usp-index {
      padding: 6px 10px;
      border-radius: 0;
      border: 1px solid rgba(4,217,57,0.32);
      line-height: 1;
    }
    .usp-title {
      font-family: var(--font-heading);
      font-size: clamp(1.2rem, 1.5vw, 1.65rem);
      font-weight: 900;
      line-height: 1.15;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      color: var(--white);
    }
    .usp-block .usp-title { white-space: nowrap; }
    .usp-block .body-text {
      max-width: 31ch;
      min-height: 6em;
      font-size: 0.94rem;
      line-height: 1.5;
      color: rgba(255,255,255,0.92);
    }
    .usp-line { display: block; }
    .usp-cta {
      border-color: rgba(4,217,57,0.38);
    }
    .usp-cta .usp-title {
      font-size: clamp(1.35rem, 1.8vw, 1.95rem);
    }
    .usp-cta .btn-text {
      margin-top: 1.75rem;
    }

    /* === REVIEWS === */
    .reviews { background: var(--green-dark); padding: 100px var(--pad-global); position: relative; z-index: 0; }
    .reviews .grid-2col { align-items: start; }
    .quote-slides { display: grid; }
    .quote-slide { grid-area: 1/1; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
    .quote-slide.active { opacity: 1; pointer-events: auto; }
    .quote-text { font-family: var(--font-heading); font-size: clamp(1.2rem,2.5vw,1.9rem); font-weight: 900; line-height: 1.2; color: var(--white); letter-spacing: -0.03em; }
    .quote-word {
      display: inline; opacity: 0; transform: translateY(20px) translateZ(0);
      transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: transform, opacity;
    }
    .quote-word.visible { opacity: 1; transform: translateY(0); }
    .quote-author { margin-top: 1.5rem; }
    .quote-progress { display: flex; gap: 0; margin-top: 3rem; }
    .quote-bar { flex: 1; height: 1px; background: var(--white-20); position: relative; cursor: pointer; }
    .quote-bar.active::after { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: var(--white); transform-origin: left center; animation: progFill 6s linear forwards; }
    @keyframes progFill { from{transform:scaleX(0)} to{transform:scaleX(1)} }

    /* === LOCATION === */
    .location {
      position: relative;
      width: 100%;
      min-height: calc(100vh + var(--location-scroll-range, 1900px));
      min-height: calc(100svh + var(--location-scroll-range, 1900px));
      min-height: calc(100dvh + var(--location-scroll-range, 1900px));
      background: var(--green-dark);
    }
    .location.is-pinned {
      cursor: ns-resize;
    }
    .location-stage {
      position: sticky;
      top: 0;
      display: flex;
      align-items: stretch;
      width: 100%;
      height: 100vh;
      height: 100svh;
      height: 100dvh;
      min-height: 100vh;
      min-height: 100svh;
      min-height: 100dvh;
      overflow: hidden;
    }
    .location-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex: 1 1 auto;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: min(90%, 1382px);
      max-width: 1382px;
      height: 100%;
      min-height: 100%;
      max-height: 100%;
      block-size: 100%;
      min-block-size: 100%;
      max-block-size: 100%;
      margin-left: auto;
      margin-right: auto;
      padding: 0;
      box-sizing: border-box;
    }
    .location-center {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: clamp(1.5rem, 3vw, 2.5rem);
      width: 100%;
      height: 100%;
      text-align: center;
    }
    .location-quote {
      width: min(76vw, 48ch);
      margin: 0;
      text-align: center;
      font-size: clamp(1.1rem, 2.2vw, 1.5rem);
      line-height: 1.6;
      text-wrap: balance;
      color: #fff;
    }
    .location-brand-text {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }
    .location-founder {
      font-family: 'PP Supply Mono', var(--font-mono);
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.04rem;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
    }
    .location-video-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      background: var(--green-dark);
    }
    .location-video-bg video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      opacity: 0.8;
      filter: grayscale(100%);
      will-change: transform;
    }
    .location-video-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(45deg, rgba(0,0,0,0.88), rgba(0,0,0,0.12) 45%, rgba(0,0,0,0.55));
    }
    .globe-container { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
    .globe { position: absolute; inset: 0; }
    .globe canvas {
      display: block;
      width: 100%;
      height: 100%;
      opacity: 0.95;
      filter: drop-shadow(0 0 26px rgba(4,217,57,0.18));
    }
    .location-vertical-text {
      position: absolute; right: var(--pad-global); top: 50%; transform: rotate(-90deg) translateX(50%);
      transform-origin: right center; font-family: var(--font-heading); font-size: clamp(4rem,10vw,8rem);
      font-weight: 900; color: var(--white); opacity: 0.15; text-transform: uppercase;
      white-space: nowrap; pointer-events: none; z-index: 1;
    }
    .location-brand {
      justify-content: center;
    }
    .location-brand {
      display: flex;
      align-items: center;
      gap: clamp(14px, 1.5vw, 23px);
    }
    .location-brand img {
      width: 46px;
      height: 46px;
      border-radius: 0;
      object-fit: cover;
      overflow: hidden;
      flex-shrink: 0;
    }

    /* === FAQ === */
    .faq-section { background: #000000 !important; padding: 100px var(--pad-global) 0; position: relative; z-index: 0; }
    .faq-grid { display: grid; grid-template-columns: minmax(0, .5fr) minmax(0, 1fr); gap: clamp(30px, 7vw, 92px); max-width: 1382px; width: 100%; margin: 0 auto; }
    .faq-main { grid-column: 2; }
    .faq-label-col { grid-column: 1; grid-row: 1; }
    .faq-item { border-bottom: 1px dashed var(--white-20); }
    .faq-item:first-child { border-top: 1px dashed var(--white-20); }
    .faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 1rem 1.5rem 0; cursor: pointer; background: none; border: none; width: 100%; text-align: left; font-family: var(--font-heading); font-size: 1.25rem; font-weight: 900; color: var(--white); line-height: 1.4; letter-spacing: -0.04em; }
    .faq-q svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--white); transition: transform 0.3s; margin-left: 1rem; transform: rotate(180deg); }
    .faq-item.open .faq-q svg { transform: rotate(0deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s; }
    .faq-a-inner { padding-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.7; color: var(--white); font-family: var(--font-body); font-weight: 500; }
    .faq-item.open .faq-a { max-height: 500px; }

    /* === CTA === */
    .cta-section {
      background: #000000 !important;
      padding: 100px var(--pad-global);
      position: relative;
      overflow: hidden;
      z-index: 0;
    }
    .cta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 7vw, 100px);
      align-items: start;
      width: 100%;
      max-width: 1382px;
      margin: 0 auto;
    }
    .cta-left {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      padding-bottom: 0;
    }
    .cta-left .cta-label {
      align-self: flex-start;
      margin: 0 0 0.75rem;
    }
    .cta-left .h3 { max-width: 28ch; }
    .cta-right { position: relative; z-index: 2; }
    .contact-thanks {
      position: absolute;
      inset: 0;
      z-index: 6;
      display: flex;
      align-items: flex-end;
      padding: clamp(24px, 4vw, 48px);
      background: linear-gradient(180deg, rgba(0,0,0,0.14), rgba(0,0,0,0.88) 24%, rgba(0,0,0,0.98));
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      will-change: transform, opacity;
    }
    .contact-thanks__inner {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
      width: min(100%, 34rem);
    }
    .contact-thanks-title {
      max-width: none;
      margin: 0;
      font-family: var(--font-body);
      font-size: clamp(1.1rem, 1.8vw, 1.45rem);
      font-weight: 500;
      line-height: 1.3;
      letter-spacing: -0.02rem;
      color: var(--white);
      text-wrap: balance;
    }
    .contact-thanks__inner .body-text { max-width: 38ch; font-size: 0.94rem; line-height: 1.65; }
    .cta-section.is-submitting .cta-grid,
    .cta-section.is-submitted .cta-grid {
      pointer-events: none;
      filter: blur(5px);
      opacity: 0.2;
      transition: filter 0.45s ease, opacity 0.45s ease;
    }
    .btn-solid {
      width: 100%;
      min-height: 46px;
      justify-content: flex-start;
      cursor: pointer;
      border-radius: 0;
    }
    .btn-solid > span {
      display: inline-flex;
      align-items: center;
      min-width: 0;
    }
    .contact-form { display: flex; flex-direction: column; gap: 1.15rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-field { display: flex; flex-direction: column; gap: 0.5rem; }
    .form-label {
      display: inline-flex;
      align-items: center;
      font-size: 0.72rem;
      color: var(--green-light);
      letter-spacing: 0.14em;
      line-height: 1;
    }
    .form-input {
      width: 100%;
      min-height: 48px;
      padding: 0.74rem 0.9rem 0.68rem;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.025);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
      color: rgba(255,255,255,0.76);
      font-family: var(--font-mono);
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      line-height: 1.3;
      text-transform: none;
      border-radius: 0;
      caret-color: var(--green-light);
      outline: none;
      appearance: none;
      -webkit-appearance: none;
      transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    }
    .form-input::placeholder {
      color: rgba(255,255,255,0.28);
      font-size: 0.72rem;
      text-transform: none;
    }
    .form-input:focus {
      border-color: rgba(4,217,57,0.34);
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.02),
        0 0 0 1px rgba(4,217,57,0.14);
      background: rgba(4,217,57,0.08);
    }
    .form-select {
      cursor: pointer;
      padding-right: 2.25rem;
      background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2304D939' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E\");
      background-repeat: no-repeat;
      background-position: right 0.95rem center;
    }
    .form-select:invalid { color: rgba(255,255,255,0.28); }
    .form-select option { background: #090909; color: rgba(255,255,255,0.92); }
    .form-textarea {
      resize: vertical;
      min-height: 160px;
      padding-top: 0.78rem;
      line-height: 1.6;
    }
    .form-submit { margin-top: 0.25rem; }
    .form-submit[disabled] { opacity: 0.55; cursor: default; }

    /* === FOOTER === */
    .footer { --footer-space: 60px; background: var(--green-dark); padding: 0 var(--pad-global) var(--footer-space); position: relative; }
    .footer .divider { margin-bottom: var(--footer-space); }
    .footer-grid { display: grid; grid-template-columns: .25fr .25fr .25fr 1fr; gap: 40px; width: 100%; max-width: 100%; margin: 0 auto; }
    .footer-title { margin-bottom: 1.2rem; }
    .footer-col a,.footer-col p {
      display: block;
      margin: 0;
      font-family: var(--font-mono);
      font-size: 0.9rem;
      color: var(--white);
      text-decoration: none;
      line-height: 1.8;
      transition: color 0.3s;
    }
    .footer-address p {
      white-space: nowrap;
      line-height: 1.55;
    }
    .footer-col a:hover { color: var(--green-light); }
    .footer-contact-link {
      display: inline-flex !important;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-contact-link svg {
      width: 14px;
      height: 14px;
      flex: 0 0 auto;
    }
    .footer-socials {
      display: flex;
      gap: 0.4rem;
      margin-top: 0.5rem;
    }
    .footer-social-pill {
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      padding: 0 !important;
      border: 1px dashed rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.03);
      color: rgba(255,255,255,0.5);
      transition: color 0.22s ease, border-color 0.22s ease;
    }
    .footer-social-pill:hover { color: var(--green-light); border-color: rgba(4,217,57,0.3); }
    .footer-social-pill svg { width: 14px; height: 14px; flex: 0 0 auto; display: block; }
    .footer-credit { display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-end; gap: 0.9rem; }
    .footer-credit-link {
      display: inline-block;
      margin-bottom: 0;
      text-decoration: none;
    }
    .footer-credit p {
      margin: 0;
      font-family: var(--font-mono);
      font-size: 0.8rem;
      color: var(--white);
      text-align: right;
    }

    /* texture — body holds it once; explicit surface sections keep their own fills */
    body > section:not(.faq-section):not(.cta-section):not(.usp-section):not(.reviews),
    body > header,
    body > footer { background: transparent !important; }

    /* === RESPONSIVE === */
    @media(max-width:1200px) {
      .stack-card-grid { grid-template-columns: 1fr 1fr; }
      .cta-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
    }
    @media(max-width:991px) {
      :root { --pad-global: 36px; }
      .hero { --hero-frame-space: 36px; }
      .nav-meta { display: none; }
      .nav-links,
      .hero-nav .nav-links,
      .hero-nav .nav-links { display: none; }
      .mobile-menu-btn,
      .hero-nav .mobile-menu-btn { display: flex; }
      .grid-2col, .about-grid, .faq-grid, .cta-grid { grid-template-columns: 1fr; }
      .about-text { grid-column: 1; grid-template-columns: 1fr; gap: 24px; }
      .about-text .h2,
      .about-label,
      .about-body { grid-column: 1; max-width: 100%; }
      .about-body {
        grid-template-columns: minmax(0, 1fr);
        padding-bottom: 0;
      }
      .about-media { grid-column: 1; grid-row: auto; flex-direction: column; margin-top: 32px; padding-top: 0; }
      .about-img { width: min(100%, 34rem); height: clamp(20rem, 50vw, 30rem); }
      .about-stats { min-height: auto; padding-bottom: 0; }
      .about,
      .faq-section { padding-top: 88px; padding-bottom: 0; }
      .cta-section,
      .usp-section,
      .reviews { padding-top: 88px; padding-bottom: 88px; }
      .faq-main { grid-column: 1; }
      .faq-label-col { grid-column: 1; grid-row: auto; }
      .hero-intro { max-width: 100%; }
      .hero-nav { padding: 36px var(--pad-global); }
      .nav-inner { min-height: 72px; padding: 0 var(--pad-global); }
      .hero-bottom-row { align-items: flex-end; min-width: auto; }
      .hero-heading .h1 { white-space: normal; }
      .stack-card {
        top: 72px;
        min-height: auto;
        padding: 92px var(--pad-global) 38px;
      }
      .stack-card-grid,
      .stack-card-text { grid-template-columns: 1fr; }
      .stack-card-text .h2,
      .stack-card-text .card-label,
      .stack-card-text .card-body { grid-column: 1; }
      .stack-card-grid { gap: 20px; }
      .stack-card-text { gap: 12px 12px; }
      .stack-card-text .h2 { font-size: clamp(1.3rem, 3.5vw, 1.6rem); }
      .stack-card-img { aspect-ratio: 16/10; }
      .card-body .body-text { font-size: 0.85rem; line-height: 1.55; }
      .card-body .usp-list li { margin-bottom: 8px; }
      .card-body .usp-list li .body-text { font-size: 0.82rem; }
      .includes-label { font-size: 0.72rem; margin-top: 1rem; }
      .label-tag { padding: 0.5rem 0.72rem; font-size: 0.62rem; }
      .carousel-dots {
        display: none;
      }
      .carousel-dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        border: 1px solid rgba(4,217,57,0.4);
        background: transparent;
        cursor: pointer;
        transition: background 0.3s ease, border-color 0.3s ease;
        padding: 0;
      }
      .carousel-dot.active {
        background: var(--green-light);
        border-color: var(--green-light);
      }
      .programs-title-section { padding-bottom: 88px; }
      .usp-intro { grid-template-columns: 1fr; gap: 18px; }
      .usp-intro-copy .h2,
      .usp-summary { max-width: none; }
      .usp-grid { grid-template-columns: 1fr 1fr; }
      .location-stage {
        height: 100vh;
        height: 100svh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100svh;
        min-height: 100dvh;
      }
      .globe-container { display: none; }
      .location-content {
        min-height: 100%;
        height: 100%;
        padding: 140px var(--pad-global) 80px;
        justify-content: flex-start;
        gap: 88px;
      }
      .location-quote {
        font-size: clamp(1rem, 2vw, 1.3rem);
      }
      .location-vertical-text { display: none; }
      .footer { --footer-space: 88px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 56px 40px; }
      .footer-grid .footer-col:nth-child(3) { grid-column: 1; }
      .footer-credit { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; margin-top: 8px; }
      .footer-credit p { text-align: right; font-size: 0.75rem; opacity: 0.5; }
    }
    @media(min-width:992px) {
      .mobile-menu-overlay {
        display: none !important;
      }
    }
    @media(max-width:767px) {
      :root { --pad-global: 20px; }

      /* --- CONTAINERS --- */
      .about-grid,
      .programs-title-section > .h1,
      .stack-card-grid,
      .usp-section-inner,
      .reviews .grid-2col,
      .location-content,
      .faq-grid,
      .cta-grid { width: 100%; }

      /* --- NAV --- */
      .hero { --hero-frame-space: 24px; }
      .hero-nav { padding: 16px var(--pad-global); }
      .nav-inner { min-height: 56px; padding: 0 var(--pad-global); }
      .nav-logo-text { font-size: 0.88rem; }

      /* --- HERO --- */
      .hero { min-height: 100svh; height: auto; }
      .hero-content { gap: 16px; padding-bottom: 24px; }
      .hero-intro { max-width: 100%; }
      .hero-kicker { margin-bottom: 0.2rem; }
      .hero-intro .body-text { font-size: 0.84rem; line-height: 1.55; }
      .hero-bottom-row { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
      .hero-vertical-rail {
        --hero-vertical-size: clamp(3rem, 24vw, 5.2rem);
        right: -10px;
      }
      .hero-vertical-text {
        font-size: var(--hero-vertical-size);
      }
      .hero-vertical-status .allcaps {
        font-size: 0.74rem;
      }
      .countdown-row { flex-wrap: wrap; gap: 6px; }
      .countdown-badge { min-height: 34px; padding: 0.48rem 0.72rem 0.44rem; font-size: 0.64rem; }

      /* --- BUTTONS --- */
      .btn-text,
      .btn-outline,
      .btn-solid {
        width: 100%;
        min-height: 48px;
      }

      /* --- ABOUT (reorder: heading → image → tags → copy) --- */
      .about-grid { display: flex; flex-direction: column; gap: 20px; }
      .about-text { display: contents; }
      .about-text .h2 { order: 1; }
      .about-media { order: 2; margin-top: 0; width: 100%; }
      .about-label { order: 3; width: 100%; }
      .about-body { order: 4; max-width: 100%; width: 100%; }
      .about-body {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .about-copy-col { width: 100%; max-width: 100%; gap: 14px; }
      .about-body .body-text { font-size: 14px; line-height: 1.65; }
      .about-copy-break { display: none; }
      .about-img { width: 100%; max-width: 100%; height: clamp(16rem, 55vw, 22rem); flex-shrink: 1; }
      .about-img img { object-position: top center; }
      .about-media { overflow: hidden; }
      .about-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.4rem;
        width: 100%;
      }
      .about-stats .label-tag:nth-child(3) { grid-column: 1 / -1; }
      .about-stats .label-tag {
        width: 100%;
        grid-template-columns: 0.8rem minmax(0, 1fr);
        gap: 0.46rem;
        min-height: 34px;
        padding: 0.44rem 0.56rem 0.4rem;
        font-size: 0.46rem;
        letter-spacing: 0.06em;
      }
      .about-stats .label-tag svg {
        width: 0.8rem;
        height: 0.8rem;
      }
      .about-stats .label-tag .label-tag-text {
        white-space: nowrap;
      }
      .label-tag { padding: 0.58rem 0.78rem 0.54rem; font-size: 0.65rem; min-height: 36px; }

      /* --- USP CAROUSEL --- */
      .usp-section { padding-left: 0; padding-right: 0; overflow: hidden; }
      .usp-intro { padding: 0 var(--pad-global); }
      .usp-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        scroll-behavior: smooth;
        margin-top: 1.5rem;
        padding: 0;
        scroll-padding-left: var(--pad-global);
        -ms-overflow-style: none;
        scrollbar-width: none;
      }
      .usp-line { display: inline; }
      .usp-grid::-webkit-scrollbar { display: none; }
      .usp-grid::before,
      .usp-grid::after {
        content: '';
        flex: 0 0 var(--pad-global);
      }
      .usp-block,
      .usp-cta {
        min-height: auto;
        padding: 24px 20px;
        flex: 0 0 82vw;
        max-width: 82vw;
        justify-content: flex-start;
        scroll-snap-align: start;
      }
      .usp-title,
      .usp-cta .usp-title { max-width: none; }
      .usp-block .body-text {
        margin-top: 1rem;
        font-size: 0.76rem;
        line-height: 1.5;
        min-height: 6em;
        max-width: none;
      }
      .usp-block .usp-title { white-space: normal; font-size: 1.1rem; text-wrap: balance; }
      .usp-cta .usp-title { font-size: 1.1rem; }
      .usp-index { font-size: 0.6rem; padding: 4px 8px; }
      .usp-cta .btn-text { font-size: 0.65rem; min-height: 44px; }
      .usp-intro-copy .h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
      .usp-summary { font-size: 0.9rem; }

      /* --- SERVICES CAROUSEL --- */
      .programs-title-section { padding-bottom: 38px; }
      .stack-card { top: 56px; padding: 72px var(--pad-global) 32px; }
      .stack-card-visual-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.4rem;
      }
      .stack-card-visual-stats .label-tag {
        width: 100%;
        grid-template-columns: 0.8rem minmax(0, 1fr);
        gap: 0.46rem;
        min-height: 34px;
        padding: 0.44rem 0.56rem 0.4rem;
        font-size: 0.46rem;
        letter-spacing: 0.06em;
      }
      .stack-card-visual-stats .label-tag svg {
        width: 0.8rem;
        height: 0.8rem;
      }
      .stack-card-visual-stats .label-tag .label-tag-text {
        white-space: nowrap;
      }
      .stack-card-text .h2 { font-size: clamp(1.2rem, 4.5vw, 1.5rem); }
      .card-body .body-text { font-size: 0.78rem; line-height: 1.5; }
      .card-body .usp-list li .body-text { font-size: 0.78rem; line-height: 1.5; }
      .includes-label { font-size: 0.68rem; margin-top: 1.1rem; }

      /* --- REVIEWS --- */
      .quote-text { font-size: clamp(1.05rem, 4.5vw, 1.4rem); }
      .quote-author { font-size: 0.78rem; margin-top: 1rem; }
      .quote-bar { height: 1px; padding: 22px 0; background-clip: content-box; box-sizing: content-box; }
      .quote-bar.active::after { height: 1px; top: 22px; }
      .quote-progress { gap: 0; margin-top: 2rem; }

      /* --- LOCATION --- */
      .location { min-height: calc(100dvh + 800px); }
      .location-stage { position: sticky; top: 0; height: 100dvh; min-height: 100dvh; }
      .location-content { padding: 80px var(--pad-global) 48px; gap: 32px; justify-content: center; }
      .location-video-bg video { object-position: 60% center; }
      .location-vertical-text { display: none !important; }
      .location-quote {
        font-size: clamp(0.95rem, 4vw, 1.15rem);
        line-height: 1.55;
      }
      .location-vertical-text { display: none; }

      /* --- FAQ --- */
      .faq-q { padding: 1.2rem 0; font-size: 0.95rem; }
      .faq-q svg { width: 18px; height: 18px; margin-left: 0.75rem; }
      .faq-a-inner { padding-bottom: 1.2rem; font-size: 0.9rem; }
      .faq-label-col .h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

      /* --- CTA / CONTACT --- */
      .cta-grid { gap: 20px; }
      .cta-left { display: flex; flex-direction: column; gap: 0; }
      .cta-left .cta-label { margin-bottom: 0.5rem !important; }
      .cta-left .h3 { font-size: 0.92rem; line-height: 1.45; margin-bottom: 0; }
      .cta-left .hero-person { display: none; }
      .contact-thanks { padding: 20px; }
      .contact-thanks__inner { width: 100%; }
      .contact-thanks-title { font-size: 1rem; line-height: 1.28; }
      .contact-thanks__inner .body-text { font-size: 0.82rem; }
      .contact-form { gap: 0.6rem; }
      .form-row { gap: 0.6rem; }
      .form-field { gap: 0.25rem; }
      .form-input {
        font-size: 16px;
        min-height: 42px;
        padding: 0 0.75rem;
        line-height: 40px;
      }
      .form-input::placeholder {
        font-size: 0.6rem;
        line-height: 40px;
      }
      .form-select {
        padding-right: 2.25rem;
        background-position: right 0.75rem center;
      }
      .form-select:invalid {
        color: rgba(255,255,255,0.28);
        font-size: 0.6rem;
        line-height: 40px;
        letter-spacing: 0.06em;
      }
      .form-textarea {
        min-height: 80px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        line-height: 1.4;
      }
      .form-textarea::placeholder {
        line-height: 1.4;
      }
      .form-label { font-size: 0.6rem; }
      .form-submit { margin-top: 0; }

      /* --- SECTION SPACING --- */
      .faq-section { padding-top: 56px; padding-bottom: 0; }
      .usp-section,
      .reviews { padding-top: 56px; padding-bottom: 56px; }
      .cta-section { padding-top: 48px; padding-bottom: 48px; }
      .cta-label { margin-bottom: 1rem !important; }
      .about { padding-top: 48px; padding-bottom: 48px; }

      /* --- FOOTER --- */
      .footer { --footer-space: 48px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
      .footer-col a, .footer-col p { font-size: 0.84rem; }
      .footer-title { margin-bottom: 0.8rem; }
      .footer-grid .footer-col:nth-child(3) { grid-column: 1; }
      .footer-credit { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; margin-top: 4px; }
      .footer-credit p { text-align: right; font-size: 0.75rem; opacity: 0.5; }

      /* --- TOUCH TARGETS --- */
      .mobile-menu-btn { width: 3.2em; height: 3.2em; }
      .faq-q { min-height: 48px; }
      .quote-bar { padding: 18px 0; }
      .quote-bar.active::after { top: 18px; }
      .carousel-dot { width: 10px; height: 10px; }
      .btn-group { margin-top: 1.5rem; }

      /* --- MISC --- */
      .divider { margin: 0; }
    }
    @media(max-width:479px) {
      /* --- MOBILE MENU --- */
      .mobile-menu-logo { left: 1.5rem; top: 1.5rem; }
      .mobile-menu-close { top: 1.5rem; right: 1.5rem; }
      .mobile-menu-panel { padding: 4.5rem 1.5rem 2rem; }
      .mobile-menu-overlay .menu-links a {
        font-size: 1.75rem;
        padding-left: 2rem;
      }
      .mobile-menu-overlay .menu-links li::before {
        font-size: 0.55rem;
        left: 0;
      }
      .mobile-menu-contact a { font-size: 0.6rem; }

      /* --- HERO --- */
      .hero-person { flex-wrap: wrap; }
      .countdown-row { flex-direction: column; align-items: flex-start; gap: 6px; }
      .countdown-badge.minutes { margin-left: 0; }
      .hero-intro .body-text { font-size: 0.82rem; }
      .h1 { margin-left: -2px !important; }

      /* --- ABOUT --- */
      .about-img { height: clamp(14rem, 52vw, 18rem); }
      .about-text .h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); max-width: none; }

      /* --- SERVICES --- */
      .stack-card { padding: 40px var(--pad-global) 28px; }
      .stack-card-img { aspect-ratio: 16/9; }

      /* --- FOOTER --- */
      .footer { --footer-space: 32px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
      .footer-grid .footer-col:nth-child(3) { grid-column: 1; }
      .footer-col a, .footer-col p { font-size: 0.76rem; line-height: 1.65; }
      .footer-title { margin-bottom: 0.4rem; font-size: 0.6rem; }
      .footer-credit { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; margin-top: 4px; gap: 0.5rem; }
      .footer-credit-link { font-size: 0.6rem; }
      .footer-credit p { text-align: right; font-size: 0.6rem; opacity: 0.5; }

      /* --- CTA --- */
      .cta-left .h3 { font-size: 1rem; }
      .hero-person img { width: 38px; height: 38px; }

      /* --- LOCATION --- */
      .location { min-height: calc(100dvh + 600px); }
      .location-quote { font-size: clamp(0.9rem, 3.5vw, 1.1rem); }
      .location-content { padding: 72px var(--pad-global) 32px; gap: 24px; }
    }

/* ---- Ghost Koenig editor card widths (required by Ghost; used in page/post content) ---- */
.kg-width-wide { width: 85vw; max-width: 1100px; margin-left: auto; margin-right: auto; }
.kg-width-full { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.kg-image { max-width: 100%; height: auto; }

/* ---- Legal pages (privacy / terms / cookies) — scoped under .legal-page ---- */
.legal-page { min-height: 100vh; display: flex; flex-direction: column; }
.legal-page .legal-header { padding: 32px clamp(20px,5vw,60px); border-bottom: 1px solid var(--white-20); }
.legal-page .legal-header a { font-family: var(--font-display); font-size: clamp(16px,2vw,22px); color: var(--green-light); text-decoration: none; letter-spacing: 2px; text-transform: uppercase; }
.legal-page .legal-header a:hover { color: var(--white); }
.legal-page .content { flex: 1; max-width: 800px; margin: 0 auto; padding: 60px clamp(20px,5vw,60px) 80px; width: 100%; }
.legal-page h1 { font-family: var(--font-heading); font-size: clamp(28px,4vw,42px); font-weight: 900; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.legal-page .last-updated { font-family: var(--font-mono); font-size: 13px; color: var(--green-light); margin-bottom: 48px; text-transform: uppercase; letter-spacing: 1px; }
.legal-page h2 { font-family: var(--font-heading); font-size: clamp(18px,2.5vw,24px); font-weight: 900; margin-top: 40px; margin-bottom: 16px; color: var(--green-light); text-transform: uppercase; letter-spacing: 0.5px; }
.legal-page p { margin-bottom: 16px; color: var(--white-60); font-size: 15px; font-family: 'PP Supply Mono', var(--font-mono); }
.legal-page ul { margin: 0 0 16px 24px; color: var(--white-60); font-size: 15px; font-family: 'PP Supply Mono', var(--font-mono); }
.legal-page li { margin-bottom: 6px; }
.legal-page .content a { color: var(--green-light); }
.legal-page .content a:hover { color: var(--white); }
.legal-page .legal-footer { padding: 32px clamp(20px,5vw,60px); border-top: 1px solid var(--white-20); text-align: center; font-size: 13px; color: var(--white-20); font-family: var(--font-mono); }
.legal-page .legal-footer a { color: var(--white-20); text-decoration: none; margin: 0 12px; }
.legal-page .legal-footer a:hover { color: var(--green-light); }

/* ---- Footer credit: stack vertically on phones (badges/credit/copyright were cramped in a row) ---- */
@media (max-width: 640px) {
  .footer-credit { flex-direction: column !important; align-items: flex-start !important; justify-content: flex-start !important; text-align: left !important; gap: 0.85rem; }
  .footer-trust-badges { justify-content: flex-start !important; margin-bottom: 0 !important; }
  .footer-credit-link { text-align: left !important; }
  .footer-credit p { text-align: left !important; }
}

/* ---- Mobile menu — aligned logo, fixed clean close, premium item styling ---- */
@media (max-width: 767px) {
  /* Logo: hold the in-hero nav logo's exact x/size, fade in (no jump) */
  .mobile-menu-overlay .mobile-menu-logo {
    left: var(--pad-global); top: 1.8rem;
    font-size: 0.88rem; letter-spacing: 0.08em;
    opacity: 0; transition: opacity 0.45s ease 0.12s;
  }
  .mobile-menu-overlay.open .mobile-menu-logo { opacity: 1; }

  /* Close: borderless X top-right (the nav hamburger is trapped behind the overlay's stacking
     context, so the panel's own button is the real close). Green + spins on press, fades in. */
  .mobile-menu-overlay .mobile-menu-close {
    display: flex !important;
    top: 1.15rem; right: calc(var(--pad-global) - 0.5rem);
    width: 2.75rem; height: 2.75rem;
    background: transparent !important; border: 0 !important;
    color: rgba(255,255,255,0.55);
    opacity: 0; transition: color 0.2s ease, transform 0.25s ease, opacity 0.4s ease 0.12s;
  }
  .mobile-menu-overlay.open .mobile-menu-close { opacity: 1; }
  .mobile-menu-overlay .mobile-menu-close:hover,
  .mobile-menu-overlay .mobile-menu-close:focus-visible { color: var(--green-light); transform: rotate(90deg); }
  .mobile-menu-overlay .mobile-menu-close svg { width: 22px; height: 22px; }

  /* Layout: header → links fill the height → contact/socials pinned to the bottom */
  .mobile-menu-panel { justify-content: flex-start; padding-top: 5.25rem; padding-bottom: 1.75rem; }
  .mobile-menu-overlay .menu-links { flex: 1 1 auto; justify-content: space-evenly; margin-top: 0.5rem; }
  .mobile-menu-meta { margin-top: 0; padding-top: 1.5rem; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.1); }

  /* Items: brighter green index, comfortable taps, a green arrow that slides in on the active/pressed item */
  .mobile-menu-overlay .menu-links li { border-top-color: rgba(255,255,255,0.1); }
  .mobile-menu-overlay .menu-links li:last-child { border-bottom-color: rgba(255,255,255,0.1); }
  .mobile-menu-overlay .menu-links li::before { font-size: 0.68rem; color: var(--green-light); opacity: 0.75; }
  .mobile-menu-overlay .menu-links a {
    position: relative; padding-top: 1.15rem; padding-bottom: 1.15rem; padding-right: 2.5rem;
    transition: color 0.25s ease;
  }
  .mobile-menu-overlay .menu-links a::after {
    content: '\2192'; position: absolute; right: 0.3rem; top: 50%;
    transform: translateY(-50%) translateX(-8px);
    color: var(--green-light); opacity: 0; font-weight: 400;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .mobile-menu-overlay .menu-links a:hover,
  .mobile-menu-overlay .menu-links a:active,
  .mobile-menu-overlay .menu-links a.is-active { color: var(--green-light); }
  .mobile-menu-overlay .menu-links a:hover::after,
  .mobile-menu-overlay .menu-links a:active::after,
  .mobile-menu-overlay .menu-links a.is-active::after { opacity: 1; transform: translateY(-50%) translateX(0); }

  /* Meta: tidy contact + solid (not dashed) social pills with green hover */
  .mobile-menu-contact a:hover { color: var(--green-light); }
  .mobile-menu-social-pill {
    border: 1px solid rgba(4,217,57,0.18); background: rgba(4,217,57,0.04);
    color: rgba(255,255,255,0.7);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  }
  .mobile-menu-social-pill:hover { border-color: rgba(4,217,57,0.55); color: var(--green-light); background: rgba(4,217,57,0.09); }
}
