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

  :root {
    --black: #0d0d0d;
    --dark: #141414;
    --card: #1a1a1a;
    --border: #2a2a2a;
    --muted: #666;
    --light: #aaa;
    --white: #f2f0eb;
    --accent: #a8b4c0;
    --head: 'Barlow Condensed', sans-serif;
    --body: 'Barlow', sans-serif;
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
  }

  /* -- NOISE TEXTURE -- */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 50;
    opacity: 0.4;
  }

  /* -- NAV -- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 48px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }

  .nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  .nav-logo img {
    height: 28px;
    width: auto;
    display: block;
  }

  .nav-separator {
    width: 1px;
    height: 22px;
    background: var(--border);
    flex-shrink: 0;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-family: var(--body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }

  .nav-links a.nav-cta {
    background: var(--accent);
    color: #000000;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links a.nav-cta:hover { background: #ffffff; color: #000000; }

  nav.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  }

  /* -- HERO -- */
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 48px 80px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("images/hero-ollie.jpg");
    background-size: cover;
    background-position: center 70%;
    background-color: #0d0d0d;
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.58) 45%, rgba(0,0,0,0.71) 100%);
  }

  .hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
    justify-content: center;
  }
  .hero-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--accent);
  }

  h1 {
    font-family: var(--head);
    font-weight: 900;
    font-size: clamp(64px, 9vw, 112px);
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.35s forwards;
  }

  h1 .accent-word { color: var(--accent); }

  .hero-sub {
    font-size: 19px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--white);
    max-width: 560px;
    margin: 0 auto 48px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.5s forwards;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.65s forwards;
  }

  .btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #000000;
    font-family: var(--body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .btn-primary:hover::after { transform: translateX(0); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,255,255,0.2); background: #ffffff; color: #000000; }

  .hero-note {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.05em;
  }

  .hero-stat-strip {
    position: absolute;
    bottom: 48px;
    right: 48px;
    display: flex;
    gap: 48px;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.9s forwards;
  }

  .hero-stat {
    text-align: right;
  }
  .hero-stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
  }

  .hero-star-rating {
    color: #FBBC04;
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 1;
  }

  /* -- SECTION SHARED -- */
  section {
    padding: 96px 48px;
    position: relative;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
  }
  .section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent);
  }

  .section-heading {
    font-family: var(--head);
    font-weight: 800;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }

  .section-body {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--light);
    max-width: 640px;
  }

  /* -- WHY THIS WORKS -- */
  #why-works {
    background: #111111;
    border-top: 1px solid var(--border);
  }

  .why-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 64px;
  }

  .why-works-item {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 36px 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: border-color 0.2s;
  }
  .why-works-item:hover { border-color: var(--accent); }
  .why-works-item:hover .why-works-text {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255,255,255,0.25);
  }
  .why-works-text { transition: color 0.3s ease, text-shadow 0.3s ease; }

  .why-works-icon {
    flex-shrink: 0;
    margin-top: 2px;
  }

  .why-works-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--light);
  }

  /* -- PROBLEM SECTION -- */
  #problem {
    background: var(--dark);
    border-top: 1px solid var(--border);
  }

  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 64px;
  }

  .problem-copy p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--light);
    margin-bottom: 20px;
  }

  .problem-copy .pivot {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin-top: 32px;
  }

  .problem-tiles {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: -40px;
  }

  .problem-tile {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.2s ease;
  }
  .problem-tile:hover {
    background: rgba(255,255,255,0.04);
    box-shadow: 0 0 30px rgba(255,255,255,0.06);
  }
  .problem-tile:hover .problem-num,
  .problem-tile:hover strong,
  .problem-tile:hover span {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255,255,255,0.25);
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }
  .problem-num, .problem-tile strong, .problem-tile span {
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }
  .problem-tile:nth-child(1) {
    background: linear-gradient(135deg, #242424 0%, #1a1a1a 100%);
    border-left: 3px solid rgba(168,180,192,0.7);
  }
  .problem-tile:nth-child(2) {
    background: linear-gradient(135deg, #1e1e22 0%, #1a1a1f 100%);
    border-left: 3px solid rgba(168,180,192,0.4);
  }
  .problem-tile:nth-child(3) {
    background: linear-gradient(135deg, #191921 0%, #16161e 100%);
    border-left: 3px solid rgba(168,180,192,0.15);
  }

  .problem-num {
    font-family: var(--head);
    font-size: 42px;
    font-weight: 900;
    color: rgba(255,255,255,0.15);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
  }

  .problem-tile-text strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
  }
  .problem-tile-text span {
    font-size: 14px;
    color: var(--muted);
  }

  /* -- WHAT PEAKE IS -- */
  #solution {
    background: var(--black);
    position: relative;
  }
  #solution::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("images/image_02.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    opacity: 0.07;
    z-index: 0;
  }
  #solution .container {
    position: relative;
    z-index: 1;
  }

  .pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 64px;
  }

  .pillar {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
  }
  .pillar:hover { border-color: var(--accent); }
  .pillar:hover h3,
  .pillar:hover p {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255,255,255,0.25);
  }
  .pillar h3, .pillar p { transition: color 0.3s ease, text-shadow 0.3s ease; }
  .pillar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .pillar:hover::before { transform: scaleX(1); }

  .pillar-icon {
    font-size: 32px;
    margin-bottom: 24px;
    display: block;
  }

  @media (max-width: 900px) {
    .pillar {
      display: flex;
      flex-direction: column;
    }
    .pillar-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
    }
    .pillar-icon {
      margin-bottom: 0;
      flex-shrink: 0;
    }
    .pillar h3 {
      margin-bottom: 0;
    }
  }

  .pillar h3 {
    font-family: var(--head);
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
  }

  .pillar p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted);
  }

  /* -- WHO IT'S FOR -- */
  #who {
    background: var(--dark);
    border-top: 1px solid var(--border);
  }

  .who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .who-left .section-body { margin-bottom: 32px; }

  .checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .checklist li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    font-weight: 400;
    color: var(--light);
    line-height: 1.5;
    transition: color 0.2s, text-shadow 0.2s;
    cursor: default;
  }
  .checklist li:hover {
    color: var(--white);
    text-shadow: 0 0 12px rgba(34,197,94,0.25);
  }
  .checklist li:hover .check-icon {
    background: rgba(34,197,94,0.25);
    border-color: rgba(34,197,94,0.6);
    box-shadow: 0 0 10px rgba(34,197,94,0.3);
  }
  .checklist li:first-child { border-top: 1px solid var(--border); }

  .check-icon {
    width: 22px;
    height: 22px;
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  }
  .check-icon svg { width: 12px; height: 12px; stroke: #22c55e; }

  .who-closing {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    padding: 32px 36px;
    margin-top: 48px;
  }
  .who-closing p {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    font-style: italic;
  }

  .who-not-for {
    margin-top: 24px;
  }

  .who-not-for-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 16px;
  }

  .who-not-for .checklist li {
    color: var(--muted);
    cursor: default;
  }

  .who-not-for .checklist li:hover {
    color: var(--white);
    text-shadow: 0 0 12px rgba(239,68,68,0.25);
  }

  .who-not-for .checklist li:hover .cross-icon {
    background: rgba(239,68,68,0.25);
    border-color: rgba(239,68,68,0.6);
    box-shadow: 0 0 10px rgba(239,68,68,0.3);
  }

  .cross-icon {
    width: 22px;
    height: 22px;
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.3);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: background 0.2s, border-color 0.2s;
  }
  .cross-icon svg { width: 12px; height: 12px; stroke: #ef4444; }

  /* -- HOW IT WORKS -- */
  #process {
    background: var(--black);
    border-top: 1px solid var(--border);
    position: relative;
  }
  #process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("images/image_03.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    opacity: 0.15;
    z-index: 0;
  }
  #process > .container {
    position: relative;
    z-index: 1;
  }

  .process-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 72px;
  }

  .process-intro {
    font-size: 17px;
    font-weight: 300;
    color: var(--light);
    line-height: 1.75;
    margin-top: 16px;
    max-width: 540px;
  }

  .flow-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }

  .flow-steps::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 60px;
    bottom: 60px;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    pointer-events: none;
  }

  .flow-step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: all 0.2s ease;
    border-radius: 4px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .flow-step:hover {
    background: rgba(255,255,255,0.03);
    box-shadow: 0 0 30px rgba(255,255,255,0.05);
  }
  .flow-step:hover .flow-title,
  .flow-step:hover .flow-desc {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255,255,255,0.25);
  }
  .flow-title, .flow-desc { transition: color 0.3s ease, text-shadow 0.3s ease; }
  .flow-step:first-child { padding-top: 0; }
  .flow-step:last-child { border-bottom: none; }

  .flow-num {
    width: 56px;
    height: 56px;
    background: var(--card);
    border: 1px solid var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--head);
    font-size: 22px;
    font-weight: 900;
    color: var(--accent);
    transition: all 0.2s;
    position: relative;
    z-index: 1;
  }
  .flow-step:hover .flow-num {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
  }

  .flow-title {
    font-family: var(--head);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
  }
  .flow-desc {
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
  }

  .process-cta {
    margin-top: 60px;
  }

  .process-cta-line {
    display: block;
    width: 100%;
  }

  /* -- COACHES -- */
  #coaches {
    background: #161616;
    border-top: 1px solid var(--border);
  }

  .coaches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    margin-top: 64px;
  }

  .coach-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .coach-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.06), 0 0 80px rgba(255, 255, 255, 0.03);
  }

  .coach-card:hover .coach-bio p,
  .coach-card:hover .coach-name,
  .coach-card:hover .coach-role {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }

  .coach-bio p,
  .coach-name,
  .coach-role {
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }

  .coach-instagram {
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
    margin-left: 10px;
    vertical-align: middle;
  }

  .coach-instagram:hover { color: var(--accent); }

  .coach-instagram svg { width: 16px; height: 16px; flex-shrink: 0; }

  .coach-name-row {
    display: flex;
    align-items: center;
  }

  .coach-name {
    font-family: var(--head);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 4px;
  }

  .coach-role {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
  }

  .coach-bio {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
  }
  .coach-bio p { margin-bottom: 14px; }
  .coach-bio p:last-child { margin-bottom: 0; }

  .coach-img-wrap {
    width: calc(100% + 96px);
    margin: -48px -48px 28px -48px;
    height: 320px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .coach-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
  }

  .flow-content {
    flex: 1;
  }

  /* -- SOCIAL PROOF -- */
  #proof {
    background: var(--black);
    border-top: 1px solid var(--border);
  }

  .marquee-wrap {
    max-width: 1100px;
    margin: 64px auto 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  }

  .marquee-row {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
    animation: marquee-left 35s linear infinite;
  }

  .marquee-row.scroll-right {
    animation: marquee-right 28s linear infinite;
  }

  @media (hover: hover) {
    .marquee-row:hover {
      animation-play-state: paused;
    }
  }

  @keyframes marquee-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes marquee-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .testimonial {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 36px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    min-width: 360px;
    max-width: 360px;
    flex-shrink: 0;
  }
  .testimonial:hover {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.06), 0 0 80px rgba(255, 255, 255, 0.03);
    transform: scale(1.04);
    z-index: 2;
    position: relative;
  }
  .testimonial:hover .testimonial-name,
  .testimonial:hover .testimonial-detail,
  .testimonial:hover .stat-label,
  .testimonial:hover .stat-value,
  .testimonial:hover li {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255,255,255,0.25);
  }
  .testimonial-name, .testimonial-detail, .stat-label, .stat-value, .testimonial li {
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }
  .testimonial-img-wrap {
    width: calc(100% + 48px);
    margin: -24px -24px 12px -24px;
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .testimonial-img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
    display: block;
    margin: 0;
  }
  .testimonial-stats {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    margin-bottom: 16px;
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
    height: 56px;
  }
  .t-stat {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 12px;
    text-align: center;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .t-stat:last-child { border-right: none; }
  .t-stat-val {
    font-family: var(--head);
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.04em;
  }
  .t-stat-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1;
  }
  .t-points {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .t-points li {
    font-size: 14px;
    font-weight: 300;
    color: var(--light);
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
  }
  .t-points li::before {
    content: '->';
    color: #22c55e;
    flex-shrink: 0;
    font-weight: 600;
  }

  .testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: auto;
  }
  .testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
  }
  .testimonial-detail {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
  }

  /* -- COACHING OPTIONS -- */
  #coaching {
    background: #0a0a0a;
    border-top: 1px solid var(--border);
  }

  .options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 64px;
  }

  .option-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .option-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.06), 0 0 80px rgba(255, 255, 255, 0.03);
  }
  .option-card:hover h3,
  .option-card:hover p,
  .option-card:hover li {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255,255,255,0.25);
  }
  .option-card h3,
  .option-card p,
  .option-card li { transition: color 0.3s ease, text-shadow 0.3s ease; }

  .option-card.featured {
    border-color: var(--accent);
  }

  .option-badge {
    position: absolute;
    top: -1px; right: 28px;
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 14px;
  }

  .option-title {
    font-family: var(--head);
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.03em;
    margin-bottom: 6px;
  }

  .option-sub {
    font-size: 14px;
    font-weight: 400;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 32px;
  }

  .option-features {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 36px;
  }

  .option-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    font-weight: 300;
    color: var(--light);
    line-height: 1.4;
  }
  .option-check {
    width: 20px;
    height: 20px;
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
  }
  .option-check svg { width: 11px; height: 11px; stroke: #22c55e; }

  .option-cta {
    display: inline-block;
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #000000;
    font-family: var(--body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-align: center;
  }
  .option-cta:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15), 0 0 40px rgba(255, 255, 255, 0.06);
  }

  .pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--muted);
    margin-top: 32px;
    font-style: italic;
  }

  /* -- FAQ -- */
  #faq {
    background: var(--black);
    border-top: 1px solid var(--border);
    position: relative;
  }

  #faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("images/gym5.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    opacity: 0.08;
    z-index: 0;
  }

  #faq .container {
    position: relative;
    z-index: 1;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 64px;
  }

  .faq-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 36px 40px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.06), 0 0 80px rgba(255, 255, 255, 0.03);
  }
  .faq-item:hover .faq-q,
  .faq-item:hover .faq-a {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255,255,255,0.25);
  }
  .faq-q, .faq-a { transition: color 0.3s ease, text-shadow 0.3s ease; }

  .faq-q {
    font-family: var(--head);
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.03em;
    margin-bottom: 14px;
  }

  .faq-a {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted);
  }

  /* -- FINAL CTA -- */
  #enquire {
    background: var(--dark);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  #enquire::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(168,180,192,0.05) 0%, transparent 70%);
  }

  #enquire .container { position: relative; z-index: 1; text-align: left; }

  .form-wrapper {
    margin-top: 48px;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 8px;
  }

  .cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
  }
  .cta-eyebrow::before, .cta-eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
  }

  .cta-heading {
    font-family: var(--head);
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.92;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }

  .cta-body {
    font-size: 18px;
    font-weight: 300;
    color: var(--light);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 0 48px;
  }

  /* -- INSTAGRAM CTA -- */
  #instagram-cta {
    border-top: 1px solid var(--border);
    background: var(--dark);
  }

  .ig-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 80px;
  }

  .ig-cta-heading {
    font-family: var(--head);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    color: var(--white);
    margin-bottom: 16px;
  }

  .ig-cta-body {
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 32px;
  }

  .ig-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-size: 12px;
  }

  .ig-cta-handle {
    font-family: var(--head);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--border);
    letter-spacing: -0.02em;
    line-height: 1;
    user-select: none;
  }

  .ig-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    flex: 1;
  }

  .ig-post {
    aspect-ratio: 4/5;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .ig-post:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(168,180,192,0.15), 0 0 60px rgba(168,180,192,0.08);
  }

  .ig-post a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .ig-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.3s ease;
  }

  .ig-post:hover img {
    transform: scale(1.03);
  }

  /* -- FOOTER -- */
  footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }

  .footer-logo {
    display: block;
    text-decoration: none;
  }
  .footer-logo img {
    height: 22px;
    width: auto;
    display: block;
  }

  .footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }
  .footer-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--white); }

  .footer-copy {
    font-size: 12px;
    color: var(--muted);
  }

  /* -- ANIMATIONS -- */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
  }
  .nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    flex-direction: column;
    gap: 0;
    z-index: 99;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: var(--body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: var(--white); }
  .mobile-menu a.mobile-cta {
    margin-top: 16px;
    background: var(--accent);
    color: #000;
    text-align: center;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    border: none;
  }

  .pg-nav-link-desktop {
    display: flex;
    align-items: center;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f2a8b8;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .pg-nav-link-desktop:hover { color: #f7c5d0; }
  .pg-nav-link-mobile { display: none; }

  @media (max-width: 900px) {
    .nav-hamburger { display: flex; }
    nav { padding: 0 24px; display: flex; align-items: center; justify-content: space-between; position: relative; }
    .nav-logo { display: flex; align-items: center; height: 68px; }
    .nav-logo img { display: block; }
    .pg-nav-sep { display: none; }
    .pg-nav-link-desktop { display: none; }
    .pg-nav-link-mobile { display: flex; align-items: center; font-family: var(--body); font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: #f2a8b8; text-decoration: none; white-space: nowrap; }
    .pg-nav-icon-mobile { display: none; }
    .nav-links { display: none; }
    section { padding: 72px 24px; }
    #hero { padding: 20px 24px 48px !important; align-items: flex-start !important; min-height: auto !important; }
    .hero-bg { background-image: url("images/hero-mobile-v2.jpg"); background-position: center 38%; }
    .hero-content { position: relative; width: 100%; padding-top: 0; }
    .hero-eyebrow { position: static; justify-content: center; margin-bottom: 28px; margin-top: 0; font-size: 11px; letter-spacing: 0.1em; white-space: nowrap; }
    .hero-stat-strip { display: none; }
    .problem-grid, .who-grid, .process-header, .coaches-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
    .pillars, .options-grid { grid-template-columns: 1fr; }
    .why-works-grid { grid-template-columns: 1fr; }
    .ig-cta-inner { grid-template-columns: 1fr; gap: 40px; }
    .ig-cta-grid { grid-template-columns: repeat(3, 1fr); }
    .ig-post { aspect-ratio: 1/1; }
    .why-works-grid, .pillars, .options-grid, .faq-grid { gap: 12px; }
    .problem-tiles { gap: 12px; }
    footer { flex-direction: column; align-items: center; text-align: center; }
    .footer-links { justify-content: center; }

    /* Mobile marquee */
    .testimonial {
      min-width: 300px;
      max-width: 300px;
    }

  }

  /* Skip-to-content link */
  .skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 9999;
    padding: 8px 16px;
    background: var(--accent);
    color: var(--black);
    font-weight: 600;
  }
  .skip-link:focus {
    top: 0;
  }

  /* Accessibility: keyboard focus states */
  a:focus-visible, button:focus-visible, iframe:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
  }
.float-btn-wrap {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  .float-btn-wrap.visible {
    opacity: 1;
    visibility: visible;
  }
  .float-btn-wrap.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .float-btn {
    background: var(--accent);
    color: #000;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .float-btn:hover { transform: translateY(-2px); background: #ffffff; color: #000; }
  .float-btn-dismiss {
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--accent);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    flex-shrink: 0;
  }
  .float-btn-dismiss:hover { background: rgba(255,255,255,0.3); }
  @media (max-width: 768px) {
    .float-btn-wrap { bottom: 20px; right: 16px; }
    .float-btn { font-size: 12px; padding: 10px 16px; }
  }