  :root {
    --bg: #0A0B0F;
    --bg-elev: #101219;
    --card: #171922;
    --card-elev: #1F222E;
    --border: #2A2E3C;
    --border-soft: #20242F;
    --text: #F5F7FC;
    --dim: #A2A8BA;
    --faint: #666D80;
    --brand: #FF5722;
    --brand-dark: #C7441B;
    /* skill accents (from the app's catColor) — also used as persona identity colors */
    --handles: #FFC233;
    --shooting: #4D8DFF;
    --passing: #34D399;
    --finishing: #FB5B6B;
    --reads: #A855F7;
    --rope: #22C7E8;
    /* level ramp (from the design-system level colors) */
    --lv1: #35BB72;
    --lv2: #E0A92E;
    --lv3: #EF5468;
    --lv4: #FF5722;
    /* fonts — canonical GYMRAT design system: Saira Condensed (display) + Saira (body) */
    --f-display: 'Saira Condensed', 'Saira', system-ui, sans-serif;
    --f-body: 'Saira', system-ui, -apple-system, sans-serif;
    --maxw: 1120px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--f-body);
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }

  .display { font-family: var(--f-display); font-weight: 800; letter-spacing: 0.005em; text-transform: uppercase; }
  .wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .accent { color: var(--brand); }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--f-display); font-weight: 700; font-size: 16px;
    letter-spacing: 0.04em; text-transform: uppercase;
    padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
    cursor: pointer; transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
    white-space: nowrap;
  }
  .btn-primary { background: var(--brand); color: #1C0A03; box-shadow: 0 8px 30px rgba(255,87,34,.35); }
  .btn-primary:hover { background: #ff6a3d; transform: translateY(-2px); box-shadow: 0 12px 38px rgba(255,87,34,.45); }
  .btn-ghost { background: rgba(255,255,255,.04); color: var(--text); border-color: var(--border); }
  .btn-ghost:hover { background: rgba(255,255,255,.09); border-color: #3B4252; transform: translateY(-2px); }
  .btn-light { background: var(--text); color: #0A0B0F; }
  .btn-light:hover { background: #fff; transform: translateY(-2px); }
  .btn svg { width: 17px; height: 17px; }
  .btn-lg { padding: 18px 40px; font-size: 18px; }

  /* ---------- Header ---------- */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
    border-bottom: 1px solid transparent;
  }
  header.scrolled {
    background: rgba(10,11,15,.82);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--border-soft);
  }
  .nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
  .nav-logo { height: 26px; width: auto; }
  .nav-left { display: flex; align-items: center; gap: 30px; }
  .nav-links { display: flex; align-items: center; gap: 22px; }
  .nav-links a { font-family: var(--f-display); font-weight: 600; font-size: 17px; letter-spacing: .4px; text-transform: uppercase; color: var(--text); transition: color .15s; }
  .nav-links a:hover, .nav-links a.active { color: var(--brand); }
  .nav-right { display: flex; align-items: center; gap: 10px; }
  .nav-signin { font-weight: 600; font-size: 15px; color: var(--dim); padding: 8px 6px; transition: color .15s; }
  .nav-signin:hover { color: var(--text); }
  .nav .btn { padding: 11px 20px; font-size: 14px; }
  /* mobile menu toggle */
  .nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; padding: 8px; }
  .nav-toggle svg { width: 26px; height: 26px; }
  .nav-mobile { display: none; }

  /* ---------- Hero ---------- */
  .hero { position: relative; min-height: 100svh; display: flex; align-items: flex-start; overflow: hidden; background: var(--bg); }
  .hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0; filter: saturate(1.05) contrast(1.02);
  }
  .hero-scrim {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
      radial-gradient(120% 80% at 50% 0%, rgba(10,11,15,.15) 0%, rgba(10,11,15,.55) 60%, rgba(10,11,15,.85) 100%),
      linear-gradient(to bottom, rgba(10,11,15,.35) 0%, rgba(10,11,15,.30) 40%, rgba(10,11,15,.96) 100%);
  }
  .hero-inner { position: relative; z-index: 2; width: 100%; padding-top: 92px; padding-bottom: 56px; }
  .badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(10,11,15,.55); border: 1px solid var(--border);
    padding: 8px 15px; border-radius: 999px;
    font-size: 12px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  }
  .badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 12px var(--brand); }
  .hero h1 {
    margin-top: 22px;
    font-size: clamp(56px, 11vw, 134px); line-height: .9; letter-spacing: 0.005em;
    text-shadow: 0 4px 40px rgba(0,0,0,.5);
  }
  .hero h1 .accent { display: block; }
  .hero p.sub { margin-top: 22px; max-width: 600px; font-size: clamp(17px, 2.2vw, 21px); color: #D7DBE6; line-height: 1.5; }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; align-items: center; }
  .hero-note { margin-top: 16px; font-size: 14px; color: var(--faint); }
  .hero-note a { color: var(--dim); font-weight: 600; border-bottom: 1px solid rgba(162,168,186,.35); }
  .hero-note a:hover { color: var(--text); }

  /* persona router — quick self-select chips */
  .prouter { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
  .prouter-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint); margin-right: 2px; }
  .prouter a {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(10,11,15,.5); border: 1px solid var(--border); border-radius: 999px;
    padding: 9px 16px; font-family: var(--f-display); font-weight: 600; font-size: 15px; letter-spacing: .4px;
    text-transform: uppercase; color: var(--text);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    transition: border-color .15s, background .15s, transform .15s;
  }
  .prouter a:hover { border-color: var(--brand); background: rgba(255,87,34,.12); transform: translateY(-2px); }
  .prouter a .pd { width: 7px; height: 7px; border-radius: 50%; background: var(--c, var(--brand)); }

  /* scroll cue */
  .scroll-cue { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 3; color: var(--faint); display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; animation: bob 2.4s ease-in-out infinite; }
  @keyframes bob { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(7px); } }

  /* ---------- Sections ---------- */
  section { position: relative; }
  .section-pad { padding: clamp(68px, 10vw, 124px) 0; }
  .section-tight { padding: clamp(48px, 7vw, 80px) 0; }
  .eyebrow { font-weight: 700; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--brand); margin-bottom: 16px; }
  .section-title { font-size: clamp(36px, 6vw, 62px); line-height: 1.0; max-width: 16ch; }
  .section-lead { margin-top: 18px; max-width: 58ch; color: var(--dim); font-size: clamp(16px, 2vw, 19px); }
  .center { text-align: center; margin-left: auto; margin-right: auto; }
  .center .section-title, .center .section-lead { margin-left: auto; margin-right: auto; }

  /* reveal */
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }

  /* ---------- Proof bar (the positioning, made tangible) ---------- */
  .proofbar { background: var(--bg-elev); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
  .proofbar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: clamp(40px,6vw,64px) 24px; }
  .pb { display: flex; flex-direction: column; gap: 10px; }
  .pb .pb-ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,87,34,.12); border: 1px solid rgba(255,87,34,.3); }
  .pb .pb-ic svg { width: 22px; height: 22px; stroke: var(--brand); fill: none; }
  .pb h3 { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: 22px; letter-spacing: .02em; }
  .pb p { color: var(--dim); font-size: 15px; line-height: 1.5; max-width: 34ch; }

  /* ---------- Skills ---------- */
  .skills { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%); border-top: 1px solid var(--border-soft); }
  .skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
  .skill {
    position: relative; background: var(--card); border: 1px solid var(--border);
    border-radius: 18px; padding: 26px 24px; overflow: hidden;
    transition: transform .2s ease, border-color .2s ease;
  }
  .skill:hover { transform: translateY(-4px); border-color: var(--c); }
  .skill::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--c); }
  .skill::after { content: ""; position: absolute; right: -40px; top: -40px; width: 120px; height: 120px; border-radius: 50%; background: var(--c); opacity: .10; filter: blur(8px); }
  .skill .s-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--c); box-shadow: 0 0 16px var(--c); margin-bottom: 16px; }
  .skill h3 { font-size: 24px; letter-spacing: .02em; }
  .skill p { margin-top: 8px; color: var(--dim); font-size: 14.5px; line-height: 1.5; }

  /* ---------- Features ---------- */
  .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
  .feature { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 32px 28px; }
  .feature .ficon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,87,34,.12); border: 1px solid rgba(255,87,34,.3); margin-bottom: 22px; }
  .feature .ficon svg { width: 24px; height: 24px; stroke: var(--brand); }
  .feature h3 { font-size: 23px; letter-spacing: .02em; }
  .feature p { margin-top: 10px; color: var(--dim); font-size: 15px; }
  .feature .setup { margin-top: 6px; font-size: 13px; font-weight: 600; letter-spacing: .3px; color: var(--text); }
  .feature .best { margin-top: 16px; font-size: 12.5px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--brand); }
  .feature .flink { display: inline-block; margin-top: 18px; font-weight: 700; font-size: 15px; letter-spacing: .3px; color: var(--brand); }
  .feature .flink:hover { color: #ff6a3d; }

  /* ---------- Persona cards (the in-depth, per-audience sell) ---------- */
  .pgrid { display: grid; gap: 18px; margin-top: 52px; }
  .pgrid-2 { grid-template-columns: repeat(2, 1fr); }
  .pgrid-3 { grid-template-columns: repeat(3, 1fr); }
  .persona {
    position: relative; display: flex; flex-direction: column;
    background: var(--card); border: 1px solid var(--border); border-radius: 22px;
    padding: 32px 30px; overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  }
  .persona:hover { transform: translateY(-5px); border-color: var(--c); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
  .persona::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--c); }
  .persona .p-ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: color-mix(in srgb, var(--c) 14%, transparent); border: 1px solid color-mix(in srgb, var(--c) 38%, transparent); margin-bottom: 20px; }
  .persona .p-ic svg { width: 26px; height: 26px; stroke: var(--c); fill: none; }
  .persona .p-who { font-size: 12.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--c); margin-bottom: 8px; }
  .persona h3 { font-size: clamp(24px, 3vw, 30px); line-height: 1.04; letter-spacing: .01em; }
  .persona .p-desc { margin-top: 12px; color: var(--dim); font-size: 15.5px; line-height: 1.55; }
  .persona .p-list { margin-top: 18px; display: grid; gap: 11px; }
  .persona .p-list li { list-style: none; display: flex; gap: 11px; align-items: flex-start; color: var(--text); font-size: 15px; }
  .persona .p-list svg { width: 19px; height: 19px; stroke: var(--c); fill: none; flex: none; margin-top: 2px; }
  .persona .p-cta { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border-soft); font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 16px; color: var(--c); display: inline-flex; align-items: center; gap: 8px; }
  .persona .p-cta::after { content: "→"; transition: transform .15s; }
  .persona:hover .p-cta::after { transform: translateX(4px); }

  /* band label (segments the homepage into the two buyer motions) */
  .band-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

  /* ---------- The GymRat Difference (philosophy pillars) ---------- */
  .diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
  .diff { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 32px 28px; overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
  .diff:hover { transform: translateY(-4px); border-color: var(--c); }
  .diff::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--c); }
  .diff .dnum { font-family: var(--f-display); font-weight: 700; font-size: 14px; letter-spacing: 2px; color: var(--c); }
  .diff .dicon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.05); border: 1px solid var(--c); margin: 14px 0 22px; }
  .diff .dicon svg { width: 24px; height: 24px; stroke: var(--c); fill: none; }
  .diff h3 { font-size: 23px; letter-spacing: .02em; }
  .diff p { margin-top: 10px; color: var(--dim); font-size: 15px; }

  /* ---------- Levels ---------- */
  .levels { background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg) 100%); border-top: 1px solid var(--border-soft); }
  .levels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 52px; }
  .level { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 26px 22px; position: relative; overflow: hidden; }
  .level .lv-bar { position: absolute; left: 0; top: 0; right: 0; height: 4px; background: var(--c); }
  .level .lv-num { font-family: var(--f-display); font-weight: 700; font-size: 14px; letter-spacing: 2px; color: var(--c); }
  .level h3 { font-size: 28px; margin-top: 10px; letter-spacing: .02em; }
  .level p { margin-top: 8px; color: var(--dim); font-size: 14px; }

  /* ---------- Proof of progress (stats / brick wall) ---------- */
  .proof { background: var(--bg-elev); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
  .proof-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px,5vw,64px); align-items: center; }
  .stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
  .stat-tile { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 20px 18px; }
  .stat-tile .sv { font-family: var(--f-display); font-weight: 800; font-size: clamp(30px,5vw,46px); line-height: 1; color: var(--brand); }
  .stat-tile .sl { margin-top: 6px; font-size: 12.5px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--dim); }
  .wallcard { background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: 26px; }
  .wallcard .wc-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
  .wallcard .wc-h span { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 15px; color: var(--text); }
  .wallcard .wc-h em { font-style: normal; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--brand); }
  .wall { display: grid; grid-template-columns: repeat(12, 1fr); gap: 5px; }
  .wall i { aspect-ratio: 2 / 1; border-radius: 3px; background: rgba(255,255,255,.06); }
  .wall i.on { background: var(--brand); box-shadow: 0 0 8px rgba(255,87,34,.4); }
  .wall i.warm { background: rgba(255,87,34,.42); }

  /* ---------- Partner band ---------- */
  .partner { background: radial-gradient(80% 120% at 50% 0%, rgba(255,87,34,.10) 0%, rgba(10,11,15,0) 55%), var(--bg); border-top: 1px solid var(--border-soft); }
  .partner-perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 48px; }
  .perk { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 22px 20px; }
  .perk .pk-ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,87,34,.12); border: 1px solid rgba(255,87,34,.3); margin-bottom: 16px; }
  .perk .pk-ic svg { width: 21px; height: 21px; stroke: var(--brand); fill: none; }
  .perk h4 { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: 17px; letter-spacing: .03em; }
  .perk p { margin-top: 7px; color: var(--dim); font-size: 13.5px; line-height: 1.45; }

  /* ---------- CTA band ---------- */
  .cta-band { position: relative; overflow: hidden; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); background: radial-gradient(90% 140% at 50% 0%, rgba(255,87,34,.16) 0%, rgba(10,11,15,0) 60%), var(--bg); text-align: center; }
  .cta-band h2 { font-size: clamp(40px, 7vw, 86px); line-height: .96; }
  .cta-band p { margin: 18px auto 0; max-width: 50ch; color: var(--dim); font-size: clamp(16px, 2vw, 19px); }
  .cta-band .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
  .cta-band .note { margin-top: 18px; font-size: 13.5px; color: var(--faint); }

  /* ---------- Challenge band ---------- */
  .challenge { position: relative; overflow: hidden; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); background: radial-gradient(85% 130% at 50% 0%, rgba(255,87,34,.22) 0%, rgba(10,11,15,0) 62%), var(--bg-elev); text-align: center; }
  .challenge h2 { font-size: clamp(42px, 8.5vw, 100px); line-height: .94; }
  .challenge .lead { margin: 20px auto 0; max-width: 42ch; color: var(--dim); font-size: clamp(16px, 2.2vw, 20px); }
  .medals { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
  .medal { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 999px; padding: 11px 20px; }
  .medal .mdot { width: 13px; height: 13px; border-radius: 50%; box-shadow: 0 0 14px currentColor; }
  .medal .mname { font-family: var(--f-display); font-weight: 700; letter-spacing: 1px; font-size: 16px; text-transform: uppercase; color: var(--text); }
  .challenge .btn { margin-top: 40px; }

  /* ---------- FAQ (objection handling — parents/partners) ---------- */
  .faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
  .qa { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 26px 26px; }
  .qa h4 { font-size: 19px; letter-spacing: .01em; line-height: 1.25; }
  .qa p { margin-top: 10px; color: var(--dim); font-size: 15px; line-height: 1.55; }

  /* ---------- Footer ---------- */
  footer { padding: 60px 0 44px; border-top: 1px solid var(--border-soft); background: var(--bg); }
  .foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid var(--border-soft); }
  .foot-brand .foot-mark { height: 40px; width: auto; opacity: .92; margin-bottom: 16px; }
  .foot-brand p { color: var(--dim); font-size: 14.5px; max-width: 34ch; }
  .foot-brand .foot-tag { display: block; margin-top: 14px; font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--faint); font-size: 14px; }
  .foot-col h5 { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; font-size: 13px; color: var(--faint); margin-bottom: 14px; }
  .foot-col a { display: block; color: var(--dim); font-size: 15px; padding: 6px 0; }
  .foot-col a:hover { color: var(--text); }
  .foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 26px; }
  .foot-copy { color: #4a5060; font-size: 12.5px; }
  .foot-bottom .fb-links { display: flex; gap: 20px; }
  .foot-bottom .fb-links a { color: var(--faint); font-size: 12.5px; }
  .foot-bottom .fb-links a:hover { color: var(--dim); }

  /* ---------- Responsive ---------- */
  @media (max-width: 980px) {
    .partner-perks { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 860px) {
    .nav-links { display: none; }
    .nav-signin { display: none; }
    .nav-toggle { display: inline-flex; }
    header.nav-open { background: rgba(10,11,15,.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--border-soft); }
    header.nav-open .nav-mobile { display: block; }
    .nav-mobile { padding: 8px 24px 22px; border-top: 1px solid var(--border-soft); }
    .nav-mobile a.nm-link { display: block; font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; font-size: 20px; color: var(--text); padding: 13px 0; border-bottom: 1px solid var(--border-soft); }
    .nav-mobile .nm-cta { display: grid; gap: 10px; margin-top: 18px; }
    .nav-mobile .nm-cta .btn { width: 100%; }
    .skills-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr; }
    .levels-grid { grid-template-columns: repeat(2, 1fr); }
    .proofbar-grid { grid-template-columns: 1fr; gap: 28px; }
    .pgrid-2, .pgrid-3 { grid-template-columns: 1fr; }
    .proof-split { grid-template-columns: 1fr; }
    .stat-row { margin-top: 10px; }
    .faq-grid { grid-template-columns: 1fr; }
    .foot-top { grid-template-columns: 1fr; gap: 28px; }
  }
  @media (max-width: 540px) {
    body { font-size: 16px; }
    .skills-grid { grid-template-columns: 1fr; }
    .levels-grid { grid-template-columns: 1fr; }
    .partner-perks { grid-template-columns: 1fr; }
    .stat-row { grid-template-columns: 1fr 1fr; }
    .hero-cta { gap: 10px; }
    .hero-cta .btn { width: 100%; }
    .cta-band .cta-row .btn { width: 100%; }
  }
  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
  }

  /* ===================== Sub-pages (parents / coaches / trainers / programs) ===================== */
  .subhero { position: relative; overflow: hidden; padding: 150px 0 clamp(60px,9vw,108px); background: radial-gradient(100% 88% at 50% 0%, rgba(255,87,34,.17) 0%, rgba(10,11,15,0) 56%), var(--bg); border-bottom: 1px solid var(--border-soft); }
  .subhero.alt { background: radial-gradient(100% 88% at 50% 0%, color-mix(in srgb, var(--c, var(--brand)) 18%, transparent) 0%, rgba(10,11,15,0) 56%), var(--bg); }
  .subhero .badge { margin-bottom: 22px; }
  .subhero h1 { font-size: clamp(46px, 8.5vw, 100px); line-height: .94; max-width: 15ch; }
  .subhero p.sub { margin-top: 22px; max-width: 620px; font-size: clamp(16px,2.2vw,21px); color: var(--dim); line-height: 1.5; }
  .subhero .hero-cta { display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; align-items:center; }

  /* split: text + visual */
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items: center; }
  .split + .split { margin-top: clamp(56px,8vw,104px); }
  .split.flip .split-text { order: 2; }
  .split-text .eyebrow { margin-bottom: 14px; }
  .split-text h3 { font-size: clamp(26px,3.6vw,42px); line-height: 1.05; letter-spacing: .01em; }
  .split-text p { margin-top: 14px; color: var(--dim); font-size: clamp(15px,1.8vw,18px); }
  .shot { border-radius: 16px; border: 1px solid var(--border); overflow: hidden; background: var(--card); box-shadow: 0 24px 64px rgba(0,0,0,.5); }
  .shot img { width: 100%; display: block; }
  .shot .cap { padding: 11px 16px; font-size: 12.5px; color: var(--faint); border-top: 1px solid var(--border-soft); letter-spacing: .3px; }

  /* benefit checklist */
  .blist { margin-top: 22px; display: grid; gap: 13px; }
  .blist li { list-style: none; display: flex; gap: 12px; align-items: flex-start; color: var(--dim); font-size: 16px; }
  .blist svg { width: 21px; height: 21px; stroke: var(--brand); fill: none; flex: none; margin-top: 1px; }
  .blist strong { color: var(--text); font-weight: 600; }

  /* 2-col card grid */
  .grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 56px; }
  .grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 56px; }

  /* numbered "how partner works" steps */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; counter-reset: step; }
  .step { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 30px 26px; }
  .step .sn { font-family: var(--f-display); font-weight: 800; font-size: 16px; color: #1C0A03; background: var(--brand); width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 18px; }
  .step h4 { font-size: 21px; letter-spacing: .01em; }
  .step p { margin-top: 9px; color: var(--dim); font-size: 15px; }

  @media (max-width: 860px) {
    .split { grid-template-columns: 1fr; }
    .split.flip .split-text { order: 0; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
  }

  /* ===================== Phone mockup (show the app) ===================== */
  .device { width: 240px; max-width: 68vw; margin: 0 auto; aspect-ratio: 9 / 18.5; border-radius: 34px; border: 9px solid #15171f; background: #0A0B0F; box-shadow: 0 30px 80px rgba(0,0,0,.6); padding: 11px; }
  .device .scr { height: 100%; border-radius: 23px; background: linear-gradient(180deg, var(--bg-elev), var(--bg)); overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 18px; text-align: center; }
  .m-ey { font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--brand); display: inline-flex; align-items: center; gap: 6px; }
  .m-ey::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 8px var(--brand); }
  .m-ring { width: 132px; height: 132px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--brand) 72%, rgba(255,255,255,.08) 0); }
  .m-ring .inner { width: 110px; height: 110px; border-radius: 50%; background: var(--bg-elev); display: grid; place-items: center; }
  .m-time { font-family: var(--f-display); font-weight: 800; font-size: 38px; color: var(--text); line-height: 1; }
  .m-move { font-family: var(--f-display); font-weight: 700; font-size: 20px; text-transform: uppercase; color: var(--text); line-height: 1.04; }
  .m-next { font-size: 11px; color: var(--faint); text-transform: uppercase; letter-spacing: 1px; }
  /* brand strip at the top of the mock (used for the coach-branded screen) */
  .m-brand { display: flex; align-items: center; gap: 8px; font-family: var(--f-display); font-weight: 700; font-size: 14px; letter-spacing: .5px; color: var(--text); text-transform: uppercase; }
  .m-brand .dot { width: 18px; height: 18px; border-radius: 5px; background: var(--brand); display: grid; place-items: center; color: #0A0B0F; font-size: 11px; }
  /* mini brick wall (the signature stats visual) */
  .m-wall { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; max-width: 150px; }
  .m-wall i { width: 22px; height: 10px; border-radius: 2px; background: rgba(255,255,255,.07); }
  .m-wall i.on { background: var(--brand); box-shadow: 0 0 7px rgba(255,87,34,.45); }

  /* ===================== The GymRat Method (Tier → Stage → Series → Workout) ===================== */
  .method-flow { display: flex; align-items: stretch; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
  .mstep { flex: 1 1 160px; background: var(--card); border: 1px solid var(--border); border-top: 3px solid var(--brand); border-radius: 16px; padding: 20px 18px; }
  .mstep-k { display: block; font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brand); font-weight: 700; margin-bottom: 8px; }
  .mstep h3 { font-family: var(--f-display); font-weight: 700; font-size: 22px; margin: 0 0 4px; color: var(--text); text-transform: uppercase; line-height: 1.05; }
  .mstep p { color: var(--dim); font-size: 13.5px; line-height: 1.4; margin: 0; }
  .marrow { align-self: center; color: var(--faint); font-size: 26px; line-height: 1; flex: 0 0 auto; }
  .method-parent { margin-top: 20px; color: var(--dim); font-size: 15px; line-height: 1.6; max-width: 760px; }
  .method-parent strong { color: var(--text); }
  @media (max-width: 720px) { .marrow { display: none; } .mstep { flex-basis: 100%; } }
