
    /* ============================================================
       BRAND TOKENS
       ============================================================ */
    :root {
      /* Colors */
      --color-primary:      #A649B9; /* purple accent */
      --color-accent-alt:   #F0845D; /* coral accent */
      --color-bg-dark:      #252833; /* dark background */
      --color-bg-alt:       #394D6E; /* slate-blue background */
      --color-soft-1:       #9692B5; /* muted lavender */
      --color-soft-2:       #EFE7DD; /* warm cream */
      --color-white:        #FFFFFF;

      /* Derived / utility */
      --ink:                #252833; /* default dark text */
      --ink-soft:           #4b5066;
      --radius:             16px;
      --radius-sm:          10px;
      --maxw:               1140px;
      --shadow-sm:          0 4px 18px rgba(37, 40, 51, 0.08);
      --shadow-md:          0 18px 50px rgba(37, 40, 51, 0.16);
      --shadow-lg:          0 30px 80px rgba(37, 40, 51, 0.28);

      /* Fonts */
      --font-head:  'Lora', Georgia, 'Times New Roman', serif;
      --font-sub:   'Oswald', 'Arial Narrow', sans-serif;
      --font-body:  'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    /* Width/height attributes reserve space (no layout shift) while height:auto
       keeps every image at its true aspect ratio (no stretching). */
    img { height: auto; }

    /* ============================================================
       RESET / BASE  (mobile-first)
       ============================================================ */
    *, *::before, *::after { box-sizing: border-box; }
    html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font-body);
      font-weight: 400;
      color: var(--ink);
      background: var(--color-white);
      line-height: 1.7;
      font-size: 17px;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    h1, h2, h3, h4 {
      font-family: var(--font-head);
      font-weight: 600;
      line-height: 1.18;
      margin: 0 0 0.5em;
      letter-spacing: -0.01em;
    }
    p { margin: 0 0 1.15em; }
    p:last-child { margin-bottom: 0; }

    .wrap {
      width: 100%;
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 22px;
    }

    section { position: relative; }
    .section-pad { padding: 68px 0; }

    /* Eyebrow / kicker (Oswald) */
    .eyebrow {
      font-family: var(--font-sub);
      text-transform: uppercase;
      letter-spacing: 0.22em;
      font-weight: 600;
      font-size: 0.78rem;
      color: var(--color-primary);
      margin: 0 0 16px;
      display: inline-block;
    }

    /* ============================================================
       BUTTONS  (Oswald)
       ============================================================ */
    .btn {
      font-family: var(--font-sub);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 600;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 34px;
      border-radius: 50px;
      cursor: pointer;
      border: 2px solid transparent;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
      white-space: nowrap;
    }
    .btn svg { width: 16px; height: 16px; transition: transform .22s ease; }
    .btn:hover svg { transform: translateX(4px); }

    .btn-primary {
      background: var(--color-primary);
      color: var(--color-white);
      box-shadow: 0 10px 28px rgba(166, 73, 185, 0.38);
    }
    .btn-primary:hover {
      background: var(--color-accent-alt);
      box-shadow: 0 14px 34px rgba(240, 132, 93, 0.42);
      transform: translateY(-3px);
    }
    .btn-coral {
      background: var(--color-accent-alt);
      color: var(--color-white);
      box-shadow: 0 10px 28px rgba(240, 132, 93, 0.4);
    }
    .btn-coral:hover {
      background: var(--color-primary);
      box-shadow: 0 14px 34px rgba(166, 73, 185, 0.42);
      transform: translateY(-3px);
    }
    .btn-ghost {
      background: transparent;
      color: var(--color-white);
      border-color: rgba(255,255,255,0.5);
    }
    .btn-ghost:hover {
      background: var(--color-white);
      color: var(--ink);
      transform: translateY(-3px);
    }

    /* ============================================================
       HEADER / NAV
       ============================================================ */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(37, 40, 51, 0.85);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 16px 22px;
      max-width: var(--maxw);
      margin: 0 auto;
    }
    .brand {
      font-family: var(--font-head);
      font-weight: 600;
      font-size: 1.35rem;
      color: var(--color-white);
      letter-spacing: -0.01em;
      line-height: 1;
    }
    .brand span { color: var(--color-white); }

    .nav {
      display: none;
      align-items: center;
      gap: 30px;
    }
    .nav a {
      font-family: var(--font-sub);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.82rem;
      font-weight: 500;
      color: rgba(255,255,255,0.82);
      transition: color .2s ease;
    }
    .nav a:hover { color: var(--color-accent-alt); }

    .header-cta { display: none; }
    .header-cta .btn { padding: 11px 24px; font-size: 0.82rem; }

    @media (min-width: 900px) {
      .nav { display: flex; }
      .header-cta { display: block; }
    }

    /* ============================================================
       HERO
       ============================================================ */
    .hero {
      position: relative;
      background: var(--color-bg-dark);
      color: var(--color-white);
      overflow: hidden;
      padding: 84px 0 96px;
    }
    .hero::before {
      content: "";
      position: absolute;
      top: -22%; right: -12%;
      width: 60vw; height: 60vw;
      max-width: 760px; max-height: 760px;
      background: radial-gradient(circle at center, rgba(166,73,185,0.55), rgba(166,73,185,0) 62%);
      pointer-events: none;
    }
    .hero::after {
      content: "";
      position: absolute;
      bottom: -28%; left: -16%;
      width: 55vw; height: 55vw;
      max-width: 680px; max-height: 680px;
      background: radial-gradient(circle at center, rgba(240,132,93,0.4), rgba(240,132,93,0) 60%);
      pointer-events: none;
    }
    .hero .wrap { position: relative; z-index: 2; }
    .hero-inner { max-width: 820px; }
    .hero h1 {
      font-size: clamp(2.3rem, 6.4vw, 4.1rem);
      font-weight: 600;
      line-height: 1.08;
      margin-bottom: 0.5em;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--color-accent-alt);
    }
    .hero .sub {
      font-size: clamp(1.05rem, 2.4vw, 1.3rem);
      color: rgba(255,255,255,0.86);
      max-width: 640px;
      font-weight: 300;
      margin-bottom: 2em;
    }
    .hero .sub em {
      color: var(--color-soft-1);
      font-style: italic;
    }
    .hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
    .hero-note {
      font-family: var(--font-sub);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.72rem;
      color: rgba(255,255,255,0.55);
    }

    /* ============================================================
       PROBLEM  (cream)
       ============================================================ */
    .problem { background: var(--color-soft-2); }
    .problem-grid { display: grid; gap: 38px; align-items: center; }
    .problem-media img {
      width: 100%;
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      display: block;
    }
    @media (min-width: 900px) {
      .problem-grid { grid-template-columns: 1.25fr 0.95fr; gap: 46px; }
    }
    .problem h2 {
      font-size: clamp(1.7rem, 4vw, 2.6rem);
      max-width: 880px;
      margin-bottom: 0.7em;
    }
    .problem h2 em { color: var(--color-primary); font-style: italic; }
    .problem .body { max-width: 760px; color: var(--ink-soft); font-size: 1.08rem; }
    .problem .punch {
      font-family: var(--font-head);
      font-style: italic;
      font-size: 1.5rem;
      color: var(--color-accent-alt);
      margin-top: 0.6em;
    }

    /* ============================================================
       GUIDE  (slate blue)
       ============================================================ */
    .guide {
      background: var(--color-bg-alt);
      color: var(--color-white);
    }
    .guide-grid { display: grid; gap: 40px; }
    .guide h2 {
      font-size: clamp(1.7rem, 4vw, 2.6rem);
    }
    .guide h2 em { color: var(--color-accent-alt); font-style: italic; }
    .guide .body { color: rgba(255,255,255,0.85); font-weight: 300; font-size: 1.06rem; }
    .guide .body em { color: var(--color-soft-1); font-style: italic; }
    .guide .closer {
      font-family: var(--font-head);
      font-weight: 600;
      font-style: italic;
      font-size: 1.35rem;
      color: var(--color-white);
      margin-top: 0.4em;
    }
    .stat-card {
      background: linear-gradient(160deg, rgba(166,73,185,0.95), rgba(57,77,110,0.4));
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: var(--radius);
      padding: 34px 30px;
      box-shadow: var(--shadow-md);
    }
    .stat-card .num {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: clamp(2.6rem, 7vw, 3.6rem);
      line-height: 1;
      color: var(--color-white);
      margin-bottom: 12px;
    }
    .stat-card .label {
      font-family: var(--font-body);
      font-weight: 300;
      color: rgba(255,255,255,0.9);
      font-size: 1rem;
      margin: 0;
    }
    @media (min-width: 900px) {
      .guide-grid { grid-template-columns: 1.25fr 1fr; align-items: center; }
    }

    /* ============================================================
       PLAN  (white, 4 pillars)
       ============================================================ */
    .plan { background: var(--color-white); text-align: center; }
    .plan h2 { font-size: clamp(1.8rem, 4.4vw, 2.8rem); }
    .plan .intro {
      max-width: 720px;
      margin: 0 auto 50px;
      color: var(--ink-soft);
      font-size: 1.08rem;
    }
    .pillars {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      text-align: left;
    }
    .pillar {
      flex: 0 1 320px;
      background: #fff;
      border: 1px solid #ece8e1;
      border-radius: var(--radius);
      padding: 34px 30px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .pillar::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--color-primary), var(--color-accent-alt));
    }
    .pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
    .pillar .pnum {
      font-family: var(--font-sub);
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--color-accent-alt);
      display: block;
      margin-bottom: 6px;
    }
    .pillar h3 {
      font-family: var(--font-sub);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      font-size: 1.4rem;
      margin-bottom: 0.5em;
      color: var(--ink);
    }
    .pillar p { color: var(--ink-soft); font-size: 1rem; margin: 0; }
    .pillar-q {
      font-family: var(--font-body);
      font-style: italic;
      font-weight: 500;
      color: var(--color-accent-alt);
      font-size: 0.98rem;
      display: block;
      margin-bottom: 10px;
    }
    /* Centered foundation box above the area cards */
    .foundation-box {
      max-width: 600px;
      margin: 0 auto 30px;
      background: linear-gradient(160deg, var(--color-primary), #7d3a96);
      color: #fff;
      border-radius: var(--radius);
      padding: 30px 34px;
      box-shadow: var(--shadow-md);
      border: 1px solid rgba(255,255,255,0.16);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .foundation-box::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--color-accent-alt), var(--color-primary));
    }
    .foundation-kicker {
      font-family: var(--font-sub);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-weight: 600;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.9);
      display: block;
      margin-bottom: 10px;
    }
    .foundation-box p { font-size: 1.08rem; color: #fff; margin: 0; font-weight: 300; }

    /* Plan foundation + close copy */
    .plan-foundation { max-width: 780px; margin: 0 auto 46px; }
    .plan-foundation p { color: var(--ink-soft); font-size: 1.08rem; }
    .plan-foundation p:last-child { margin-bottom: 0; }
    .plan-close {
      max-width: 820px;
      margin: 52px auto 0;
      font-family: var(--font-head);
      font-style: italic;
      font-weight: 600;
      font-size: clamp(1.2rem, 3vw, 1.6rem);
      line-height: 1.4;
      color: var(--ink);
    }
    .plan-close strong { font-style: normal; color: var(--color-primary); font-weight: 700; }

    /* ============================================================
       MID CTA  (purple gradient band)
       ============================================================ */
    .cta-band {
      background: linear-gradient(125deg, var(--color-primary) 0%, #7d3a96 55%, var(--color-bg-alt) 130%);
      color: var(--color-white);
      text-align: center;
      overflow: hidden;
    }
    .cta-band::before {
      content: "";
      position: absolute;
      top: -40%; left: 50%;
      transform: translateX(-50%);
      width: 80vw; height: 80vw;
      max-width: 900px; max-height: 900px;
      background: radial-gradient(circle, rgba(240,132,93,0.32), rgba(240,132,93,0) 60%);
      pointer-events: none;
    }
    .cta-band .wrap { position: relative; z-index: 2; max-width: 1040px; }
    .cta-band h2 { font-size: clamp(1.8rem, 4.6vw, 2.8rem); margin-bottom: 0.55em; }
    .cta-band p {
      font-size: 1.15rem;
      color: rgba(255,255,255,0.9);
      font-weight: 300;
      max-width: 660px;
      margin: 0 auto 2em;
    }

    /* ============================================================
       STAKES  (success / failure split)
       ============================================================ */
    .stakes { background: var(--color-soft-2); text-align: center; }
    .stakes h2 { font-size: clamp(1.8rem, 4.4vw, 2.8rem); margin-bottom: 14px; }
    .stakes-grid {
      display: grid;
      gap: 24px;
      text-align: left;
      margin-top: 48px;
    }
    .stake {
      border-radius: var(--radius);
      padding: 38px 34px;
      box-shadow: var(--shadow-sm);
    }
    .stake-win {
      background: var(--color-white);
      border: 1px solid #e7e1d7;
    }
    .stake-lose {
      background: var(--color-bg-dark);
      color: rgba(255,255,255,0.86);
    }
    .stake .tag {
      font-family: var(--font-sub);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-weight: 600;
      font-size: 0.82rem;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 16px;
    }
    .stake-win .tag { color: var(--color-primary); }
    .stake-lose .tag { color: var(--color-accent-alt); }
    .stake .tag .dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
    .stake p { font-size: 1.05rem; margin: 0; }
    .stake-win p { color: var(--ink-soft); }
    .stakes .closing {
      font-family: var(--font-head);
      font-style: italic;
      font-weight: 600;
      font-size: clamp(1.3rem, 3.4vw, 1.9rem);
      color: var(--ink);
      max-width: 760px;
      margin: 52px auto 0;
    }
    @media (min-width: 860px) { .stakes-grid { grid-template-columns: 1fr 1fr; } }

    /* ============================================================
       FOOTER
       ============================================================ */
    .site-footer {
      background: var(--color-bg-dark);
      color: var(--color-white);
      text-align: center;
      padding: 72px 0 40px;
      overflow: hidden;
      position: relative;
    }
    .site-footer::before {
      content: "";
      position: absolute;
      bottom: -30%; right: -10%;
      width: 50vw; height: 50vw;
      max-width: 620px; max-height: 620px;
      background: radial-gradient(circle, rgba(166,73,185,0.34), rgba(166,73,185,0) 62%);
      pointer-events: none;
    }
    .site-footer .wrap { position: relative; z-index: 2; }
    .site-footer h2 { font-size: clamp(1.7rem, 4.2vw, 2.5rem); margin-bottom: 0.5em; }
    .site-footer .foot-body {
      color: rgba(255,255,255,0.82);
      font-weight: 300;
      font-size: 1.1rem;
      max-width: 560px;
      margin: 0 auto 2em;
    }
    .foot-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 26px;
      margin: 54px 0 28px;
      padding-top: 34px;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    .foot-nav a {
      font-family: var(--font-sub);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.78);
      transition: color .2s ease;
    }
    .foot-nav a:hover { color: var(--color-accent-alt); }
    .foot-brand {
      font-family: var(--font-head);
      font-weight: 600;
      font-size: 1.5rem;
      line-height: 1;
      color: var(--color-white);
      margin: 0 0 6px;
    }
    .tagline {
      font-family: var(--font-head);
      font-style: italic;
      color: var(--color-soft-1);
      font-size: 1.05rem;
      margin: 0;
    }

    /* ============================================================
       IMAGERY
       ============================================================ */
    /* Brand mark in header */
    .brand-lockup { display: flex; align-items: center; gap: 12px; }
    .brand-mark {
      width: 38px; height: 38px; border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 4px 14px rgba(0,0,0,0.35);
      border: 1px solid rgba(255,255,255,0.14);
    }

    /* Hero two-column with portrait */
    .hero-grid { display: grid; gap: 30px; align-items: center; }
    .hero-figure { position: relative; order: 0; }
    .hero-figure img {
      width: 100%;
      max-width: 380px;
      margin: 0 auto;
      display: block;
      filter: drop-shadow(0 28px 55px rgba(0,0,0,0.5));
    }
    @media (min-width: 920px) {
      .hero-grid { grid-template-columns: 1.12fr 0.88fr; gap: 36px; }
      .hero-figure { order: 0; }
      .hero-figure img { margin-right: 0; max-width: 440px; }
      .hero-inner { max-width: none; }
    }

    /* Guide portrait + floating stat badge */
    .guide-media { position: relative; }
    .guide-media img {
      width: 100%;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      display: block;
    }
    .stat-badge {
      position: absolute;
      left: -10px; bottom: -20px;
      background: linear-gradient(160deg, var(--color-primary), #7d3a96);
      color: #fff;
      border-radius: var(--radius-sm);
      padding: 18px 22px;
      max-width: 230px;
      box-shadow: var(--shadow-md);
      border: 1px solid rgba(255,255,255,0.18);
    }
    .stat-badge .num {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 2.4rem;
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-badge .label {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 0.8rem;
      line-height: 1.45;
      color: rgba(255,255,255,0.92);
      margin: 0;
    }
    .stat-badge .badge-quote {
      font-family: var(--font-head);
      font-style: italic;
      font-weight: 600;
      font-size: 1.18rem;
      line-height: 1.35;
      color: #fff;
      margin: 0;
    }

    /* Two-image stack: headshot's bottom corner just clips the lightbulb */
    .guide-media { display: flex; flex-direction: column; }
    .guide-portrait { position: relative; width: 90%; align-self: flex-start; z-index: 2; }
    .guide-portrait img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: block; }
    .guide-media .guide-lightbulb {
      width: 90%;
      align-self: flex-end;
      margin-top: -26px;
      margin-right: -8%;
      position: relative;
      z-index: 1;
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      display: block;
    }

    /* Graceful fallback if the headshot file isn't present yet */
    .guide-media.no-img .stat-badge { position: static; max-width: none; left: auto; bottom: auto; }

    /* Wide showcase image (Plan section) */
    .showcase { margin-top: 56px; }
    .showcase figure { margin: 0; position: relative; }
    .showcase img {
      width: 100%;
      max-height: 360px;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      display: block;
    }

    /* CTA band two-column with image */
    .cta-grid { display: grid; gap: 34px; align-items: center; text-align: left; }
    .cta-figure img {
      width: 100%;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      display: block;
    }
    @media (min-width: 920px) {
      .cta-grid { grid-template-columns: 1fr 0.82fr; gap: 44px; }
    }

    /* Free Live Training band */
    .webinar-band { background: var(--color-bg-alt); color: var(--color-white); }
    .webinar-grid { display: grid; gap: 34px; align-items: center; }
    .webinar-figure img {
      width: 100%;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      display: block;
    }
    .webinar-band h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 0.4em; }
    .webinar-band h2 em { color: var(--color-accent-alt); font-style: italic; }
    .webinar-band .lede { color: rgba(255,255,255,0.85); font-weight: 300; font-size: 1.08rem; max-width: 520px; }
    .webinar-date {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--font-sub); text-transform: uppercase;
      letter-spacing: 0.06em; font-weight: 600; font-size: 0.9rem;
      color: var(--color-white);
      background: rgba(166,73,185,0.22);
      border: 1px solid rgba(166,73,185,0.6);
      padding: 11px 20px; border-radius: 50px;
      margin: 4px 0 24px;
    }
    .webinar-date svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--color-soft-1); }
    .webinar-band .fine-print {
      color: rgba(255,255,255,0.5);
      font-size: 0.72rem;
      max-width: 480px;
      margin-top: 10px;
    }
    @media (min-width: 860px) {
      .webinar-grid { grid-template-columns: 0.95fr 1.05fr; gap: 54px; }
      .webinar-figure { order: -1; }
    }

    /* Reveal-on-scroll niceties (progressive enhancement) */
    @media (prefers-reduced-motion: no-preference) {
      .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
      .reveal.in { opacity: 1; transform: none; }
    }

    /* ============================================================
       MOBILE NAV (hamburger)
       ============================================================ */
    .nav-toggle {
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 46px;
      height: 42px;
      padding: 10px;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.28);
      border-radius: 10px;
      cursor: pointer;
    }
    .nav-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform .25s ease, opacity .2s ease;
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav {
      display: none;
      flex-direction: column;
      padding: 8px 22px 22px;
      background: rgba(37,40,51,0.97);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a:not(.btn) {
      font-family: var(--font-sub);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.9rem;
      font-weight: 500;
      color: rgba(255,255,255,0.9);
      padding: 14px 2px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-nav a:not(.btn):hover,
    .mobile-nav a.is-active { color: var(--color-accent-alt); }
    .mobile-nav .btn { margin-top: 16px; justify-content: center; color: #fff; }
    @media (min-width: 900px) {
      .nav-toggle { display: none; }
      .mobile-nav { display: none !important; }
    }

    /* ============================================================
       MOBILE IMAGE REORDER (Home)
       ============================================================ */
    .mobile-figure { display: none; }
    @media (max-width: 899px) {
      .hide-on-mobile { display: none !important; }
      .mobile-figure { display: block; margin: 26px auto; max-width: 440px; }
      /* Extra breathing room under the woman-problem image before "Lemme guess". */
      .problem .body .mobile-figure { margin-bottom: 50px; }
      .mobile-figure img {
        width: 100%;
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
        display: block;
      }
      .mobile-figure-portrait { text-align: center; }
      .mobile-figure-portrait .mobile-badge {
        display: inline-block;
        margin-top: 14px;
        font-family: var(--font-head);
        font-style: italic;
        font-weight: 600;
        font-size: 1.05rem;
        line-height: 1.35;
        color: #fff;
        background: linear-gradient(160deg, var(--color-primary), #7d3a96);
        border: 1px solid rgba(255,255,255,0.18);
        border-radius: var(--radius-sm);
        padding: 12px 18px;
        box-shadow: var(--shadow-md);
      }
    }
  