/* ============ TOKENS v4 & BASE ============ */
.lwhp-root {
    /* canvas (warm-paper family) */
    --lwhp-paper:      #F7F4EE;
    --lwhp-cream:      #FBF7EF;
    --lwhp-white:      #FFFFFF;
    /* field colors (full-bleed sections) */
    --lwhp-field-sky:  #BFDCF2;
    --lwhp-field-ink:  #16334C;
    --lwhp-field-ink2: #0F2537;
    /* ink scale */
    --lwhp-ink:        #16334C;   /* 11.87:1 on paper */
    --lwhp-body:       #3D5468;   /* 7.17:1 on paper */
    --lwhp-muted:      #5C7183;   /* 5.07:1 on white */
    --lwhp-on-dark:       rgba(255,255,255,.95);
    --lwhp-on-dark-body:  rgba(255,255,255,.80);
    --lwhp-on-dark-muted: rgba(255,255,255,.62);
    /* action blue (AA verified) */
    --lwhp-action:        #2E5F8A;   /* white text = 6.73:1 */
    --lwhp-action-hover:  #274F75;   /* 8.53:1 */
    --lwhp-action-active: #16334C;   /* 13.03:1 */
    --lwhp-link:          #35638F;   /* 6.30:1 white / 5.74:1 paper */
    /* the one warm accent */
    --lwhp-gold:       #F2C864;   /* ink on gold = 8.20:1 */
    --lwhp-gold-deep:  #D9A441;   /* strokes/sparkles only, never a text surface */
    /* helpers */
    --lwhp-sky:        #8FC6EE;   /* 7.12:1 on ink field (illustration + big accents) */
    --lwhp-mist:       #EAF1F7;
    --lwhp-mist-deep:  #DCE8F2;
    /* lines */
    --lwhp-line:        rgba(22,51,76,.10);
    --lwhp-line-strong: rgba(22,51,76,.22);
    /* radii */
    --lwhp-r-chip:  12px;
    --lwhp-r-card:  20px;
    --lwhp-r-panel: 28px;
    --lwhp-r-pill:  999px;
    /* shadows (the only three) */
    --lwhp-sh-ambient: 0 12px 32px rgba(22,51,76,.10);
    --lwhp-sh-card:    0 2px 8px rgba(22,51,76,.05);
    --lwhp-sh-press:   0 2px 0 rgba(22,51,76,.25);
    /* fonts */
    --lwhp-font-display: 'Poppins', 'Quicksand', sans-serif;
    --lwhp-font-body: 'Manrope', 'Poppins', sans-serif;
    /* spacing system v4 — 8px grid (4 allowed only inside components) */
    --sp-1: 8px;   --sp-2: 16px;  --sp-3: 24px;  --sp-4: 32px;
    --sp-5: 40px;  --sp-6: 48px;  --sp-8: 64px;  --sp-10: 80px;
    --sp-12: 96px; --sp-14: 112px;
    --lwhp-sec-pad:    clamp(3.5rem, 2.5rem + 4vw, 6rem);   /* 56 -> 96px  standard section */
    --lwhp-sec-pad-lg: clamp(4rem, 2.75rem + 5vw, 7rem);    /* 64 -> 112px hero-weight moments */
    --lwhp-head-gap:   clamp(2.5rem, 2rem + 1.5vw, 3rem);   /* 40 -> 48px  sechead -> content */
    --lwhp-cap: 48px;  /* rounded overlap cap radius + pull-up distance */
    --lwhp-nav-h: 60px;

    font-family: var(--lwhp-font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--lwhp-body);
    background: var(--lwhp-paper);
    /* clip, not hidden: overflow-x:hidden computes overflow-y:auto, which makes
       .lwhp-root the sticky nav's scroll container and kills position:sticky.
       clip clips the decorative blobs without creating a scroll container.
       (hidden first = fallback for pre-2022 engines; nav degrades to static.) */
    overflow-x: hidden;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}
@media (min-width: 640px) { .lwhp-root { --lwhp-nav-h: 64px; } }
@media (min-width: 900px) { .lwhp-root { --lwhp-nav-h: 72px; } }

/* ============ TIER 0 — GENERICS (the only element-level rules; all :where(), (0,1,0)) ============ */
.lwhp-root *, .lwhp-root *::before, .lwhp-root *::after { box-sizing: border-box; }
.lwhp-root :where(a) { color: var(--lwhp-link); text-decoration: none; transition: color .3s ease-out; }
.lwhp-root :where(h1,h2,h3) { font-family: var(--lwhp-font-display); font-weight: 600; color: var(--lwhp-ink); margin: 0; }
.lwhp-root :where(p) { margin: 0; }
.lwhp-root :where(img) { max-width: 100%; }
.lwhp-root :where(ul,ol) { margin: 0; padding: 0; list-style: none; }
.lwhp-root :where(button) { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
.lwhp-root :focus-visible {
    outline: 2px solid var(--lwhp-action);
    outline-offset: 3px;
    border-radius: inherit;
}
.lwhp-root .lwhp-dark :focus-visible { outline-color: var(--lwhp-field-sky); }

/* ============ TYPE SCALE ============ */
.lwhp-root .lwhp-h1 {
    font-size: clamp(38px, 4vw + 22px, 60px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}
.lwhp-root .lwhp-h2 {
    font-size: clamp(27px, 1.7vw + 21px, 38px);
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.lwhp-root .lwhp-h3 {
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.lwhp-root .lwhp-eyebrow {
    display: block;
    font-family: var(--lwhp-font-body);
    font-weight: 800;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase; /* eyebrows are the ONLY uppercase (chrome + phone micro-labels excepted) */
    color: var(--lwhp-link);
}
.lwhp-root .lwhp-body-lg { font-size: clamp(17px, .4vw + 15.5px, 19px); line-height: 1.6; color: var(--lwhp-body); }
.lwhp-root .lwhp-caption { font-weight: 500; font-size: 13px; line-height: 1.5; color: var(--lwhp-muted); }
@media (min-width: 900px) {
    .lwhp-root .lwhp-eyebrow { font-size: 13px; }
    .lwhp-root .lwhp-h3 { font-size: 22px; }
}

/* ============ LAYOUT PRIMITIVES ============ */
.lwhp-root .lwhp-wrap { max-width: 1120px; margin: 0 auto; padding-inline: 20px; position: relative; z-index: 1; }
.lwhp-root .lwhp-sechead { max-width: 640px; margin: 0 auto; text-align: center; }
.lwhp-root .lwhp-sechead .lwhp-eyebrow { margin-bottom: 12px; }
.lwhp-root .lwhp-sechead :where(p) { margin-top: 20px; }
@media (min-width: 640px) { .lwhp-root .lwhp-wrap { padding-inline: 32px; } }
@media (min-width: 900px) { .lwhp-root .lwhp-wrap { padding-inline: 48px; } }

/* ============ REVEAL SYSTEM ============ */
.lwhp-root [data-reveal]{opacity:0; transform:translateY(24px);
  transition:opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);}
.lwhp-root [data-reveal].lwhp-in{opacity:1; transform:none;}
.lwhp-root .lwhp-d1{transition-delay:.09s}.lwhp-root .lwhp-d2{transition-delay:.18s}.lwhp-root .lwhp-d3{transition-delay:.27s}
.lwhp-root .lwhp-d4{transition-delay:.36s}.lwhp-root .lwhp-d5{transition-delay:.45s}.lwhp-root .lwhp-d6{transition-delay:.54s}
.lwhp-root .lwhp-reveal-blur{filter:blur(8px);
  transition:opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1), filter .7s cubic-bezier(.22,.61,.36,1);}
.lwhp-root .lwhp-reveal-blur.lwhp-in{filter:blur(0);}

/* ============ BUTTONS (solid fills only — all pairs AA verified)
   Every anchor-wrapping component declares its own color incl. :visited ============ */
.lwhp-root .lwhp-btn, .lwhp-root .lwhp-btn:visited {
    background: var(--lwhp-action);           /* 6.73:1 */
    color: #fff;
    font-family: var(--lwhp-font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    border-radius: var(--lwhp-r-pill);
    height: 52px;
    padding: 0 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--lwhp-sh-press);
    transition: background .3s ease-out,
        transform .15s cubic-bezier(.32,.94,.6,1),
        box-shadow .15s cubic-bezier(.32,.94,.6,1);
}
.lwhp-root .lwhp-btn:hover { background: var(--lwhp-action-hover); color: #fff; }   /* 8.53:1 */
.lwhp-root .lwhp-btn:active { background: var(--lwhp-action-active); color: #fff; transform: translateY(2px); box-shadow: none; } /* 13.03:1 */
.lwhp-root .lwhp-btn--ink, .lwhp-root .lwhp-btn--ink:visited { background: var(--lwhp-field-ink); color: #fff; } /* 13.03:1 */
.lwhp-root .lwhp-btn--ink:hover, .lwhp-root .lwhp-btn--ink:active { background: var(--lwhp-field-ink2); color: #fff; } /* 15.67:1 */
.lwhp-root .lwhp-btn--light, .lwhp-root .lwhp-btn--light:visited { background: #fff; color: var(--lwhp-ink); } /* 13.03:1 */
.lwhp-root .lwhp-btn--light:hover { background: var(--lwhp-mist); color: var(--lwhp-ink); } /* 11.43:1 */
.lwhp-root .lwhp-btn--light:active { background: var(--lwhp-mist-deep); color: var(--lwhp-ink); }
.lwhp-root .lwhp-btn--gold, .lwhp-root .lwhp-btn--gold:visited { background: var(--lwhp-gold); color: var(--lwhp-ink); } /* 8.20:1 */
.lwhp-root .lwhp-btn--gold:hover { background: #EFB63F; color: var(--lwhp-ink); }    /* 7.09:1 */
.lwhp-root .lwhp-btn--gold:active { background: var(--lwhp-gold-deep); color: var(--lwhp-ink); } /* 5.79:1 */
.lwhp-root .lwhp-btn--sm { height: 40px; padding: 0 22px; font-size: 14px; }
.lwhp-root .lwhp-textlink, .lwhp-root .lwhp-textlink:visited {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-weight: 700;
    font-size: 16px;
    color: var(--lwhp-link);   /* 6.30:1 white / 5.74:1 paper */
}
.lwhp-root .lwhp-textlink:hover { color: var(--lwhp-link); text-decoration: underline; text-underline-offset: 3px; }
.lwhp-root .lwhp-ghostlink, .lwhp-root .lwhp-ghostlink:visited {
    color: var(--lwhp-on-dark);   /* 12.4:1 on ink */
    font-weight: 600;
    font-size: 15px;
}
.lwhp-root .lwhp-ghostlink:hover { color: var(--lwhp-on-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ============ ILLUSTRATION SYSTEM — shapes (kept + honed: max 2 sparks/section;
   every big blob overlaps a section boundary or card edge) ============ */
.lwhp-root .lwhp-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    animation: lwhp-float 9s ease-in-out infinite;
}
.lwhp-root .lwhp-f2 { animation-delay: -3s; }
.lwhp-root .lwhp-f3 { animation-delay: -6s; }
@keyframes lwhp-float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-14px) rotate(3deg); }
}
@keyframes lwhp-float-petal {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-14px) rotate(48deg); }
}
@keyframes lwhp-twinkle {
    from { opacity: .45; }
    to { opacity: 1; }
}
.lwhp-root .lwhp-blob { border-radius: 58% 42% 55% 45% / 52% 55% 45% 48%; }
.lwhp-root .lwhp-blob--b { border-radius: 45% 55% 48% 52% / 55% 44% 56% 45%; }
.lwhp-root .lwhp-blob--glow { background: radial-gradient(circle at 38% 32%, #8FC6EE 0%, #2E5F8A 100%); } /* sole gradient in illustration */
.lwhp-root .lwhp-petal {
    border-radius: 50% 50% 50% 0;
    transform: rotate(45deg);
    animation-name: lwhp-float-petal;
}
.lwhp-root .lwhp-archshape { border-radius: 999px 999px 0 0; aspect-ratio: 2 / 1; }
.lwhp-root .lwhp-spark {
    background: var(--lwhp-gold);
    clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
    animation: lwhp-float 9s ease-in-out infinite, lwhp-twinkle 4s ease-in-out infinite alternate;
}
/* the shorthand above resets .lwhp-f2/.lwhp-f3 delays — restore desync */
.lwhp-root .lwhp-spark.lwhp-f2 { animation-delay: -3s, -1s; }
.lwhp-root .lwhp-spark.lwhp-f3 { animation-delay: -6s, -2s; }
/* twinkle animates opacity and would override [data-reveal]{opacity:0} —
   hold all spark animation until the reveal fires */
.lwhp-root .lwhp-spark[data-reveal]:not(.lwhp-in) { animation: none; }
.lwhp-root .lwhp-ring {
    border-radius: 50%;
    border: 10px solid var(--lwhp-field-sky);
    background: transparent;
}
/* static spark glyph for chips/rows (no float/twinkle, no emoji) */
.lwhp-root .lwhp-sparkicon {
    display: inline-block;
    width: 20px; height: 20px;
    flex-shrink: 0;
    background: var(--lwhp-gold);
    clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}
@media (max-width: 639px) { .lwhp-root .lwhp-shape--lg { display: none; } } /* big blobs stay out of small screens' way */

/* ============ SECTION DIVIDERS ============ */
.lwhp-root .lwhp-archdiv {
    height: clamp(48px, 6.5vw, 80px); /* trimmed from 8vw/96px so every boundary meets the 240/160 budget */
    width: 112%;
    margin-inline: -6%;
    margin-bottom: -1px; /* seam guard (sanctioned negative) */
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.lwhp-root .lwhp-archdiv--sky { background: var(--lwhp-field-sky); }
.lwhp-root .lwhp-archdiv--ink { background: var(--lwhp-field-ink); }
.lwhp-root .lwhp-archdiv--cream { background: var(--lwhp-cream); }
.lwhp-root .lwhp-dotline {
    width: 120px;
    height: 5px;
    margin: 18px auto 0;
    background-image: radial-gradient(circle, var(--lwhp-gold-deep) 2.5px, transparent 3px);
    background-size: 20px 5px;
}
.lwhp-root .lwhp-dotline--left { margin-inline: 0; }

/* ============ EMBLEM ============ */
.lwhp-root .lwhp-emblem { display: block; flex-shrink: 0; }
.lwhp-root .lwhp-emblem-dot { animation: lwhp-twinkle 4s ease-in-out infinite alternate; transform-origin: center; }

/* ============ PHONE COMPONENT (CSS device recipe — crisp at any DPR) ============ */
.lwhp-root .lwhp-phone {
    position: relative;
    width: var(--pw, 264px);
    aspect-ratio: 1206 / 2622;                 /* height ~ width x 2.175 (reserves space, no CLS) */
    border-radius: calc(var(--pw, 264px) * .12);
    padding: 1px;                              /* chamfered bezel edge */
    background: linear-gradient(135deg, #555, #000);
    box-shadow:
        0 1px 2px rgba(0,0,0,.15),
        0 2px 4px rgba(0,0,0,.12),
        0 4px 8px rgba(0,0,0,.10),
        0 8px 16px rgba(0,0,0,.08),
        0 12px 24px 4px rgba(0,0,0,.06),
        0 16px 32px 8px rgba(0,0,0,.05),
        0 24px 48px 12px rgba(0,0,0,.04),
        0 28px 56px 18px rgba(0,0,0,.035),
        0 32px 64px 24px rgba(0,0,0,.03);
}
.lwhp-root .lwhp-phone-body {
    position: relative;
    height: 100%;
    border-radius: inherit;
    background: #181818;
    padding: 5px;
}
.lwhp-root .lwhp-phone-island {
    position: absolute;
    z-index: 3;
    top: calc(var(--pw, 264px) * .045);
    left: 50%;
    transform: translateX(-50%);
    width: 33%;
    height: calc(var(--pw, 264px) * .09);
    border-radius: 999px;
    background: radial-gradient(circle at 35% 35%, #1a1a1a, #050505); /* reads as lens, not flat */
}
.lwhp-root .lwhp-phone-screen {
    position: relative;
    height: 100%;
    border-radius: calc(var(--pw, 264px) * .12 - 5px);
    overflow: hidden;
    background: #fff;
}
.lwhp-root .lwhp-phone-glass {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 3px 1px rgba(0,0,0,.4);
    background: linear-gradient(155deg, rgba(255,255,255,.08) 0 35%, transparent 35%);
}
/* --- screen internals (all sizes scale off --pw so the mock stays crisp) --- */
.lwhp-root .lwhp-screen {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(var(--pw, 264px) * .04);
    padding: calc(var(--pw, 264px) * .17) calc(var(--pw, 264px) * .055) calc(var(--pw, 264px) * .06);
    text-align: left;
}
.lwhp-root .lwhp-scr-step {
    font-weight: 800;
    font-size: calc(var(--pw, 264px) * .042);
    line-height: 1.3;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--lwhp-muted);
}
.lwhp-root .lwhp-scr-art {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.lwhp-root .lwhp-scr-track {
    display: block;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(22,51,76,.12);
    overflow: hidden;
}
.lwhp-root .lwhp-scr-fill { display: block; width: 29%; height: 100%; border-radius: 999px; background: var(--lwhp-action); }
.lwhp-root .lwhp-scr-row {
    display: flex;
    align-items: center;
    gap: calc(var(--pw, 264px) * .035);
    font-weight: 600;
    font-size: calc(var(--pw, 264px) * .05);
    line-height: 1.35;
    color: var(--lwhp-ink);
}
.lwhp-root .lwhp-scr-check {
    position: relative;
    width: calc(var(--pw, 264px) * .085);
    height: calc(var(--pw, 264px) * .085);
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid var(--lwhp-line-strong);
    background: #fff;
}
.lwhp-root .lwhp-scr-check--done { background: var(--lwhp-gold); border-color: var(--lwhp-gold); }
.lwhp-root .lwhp-scr-check--done::after {
    content: "";
    position: absolute;
    left: 32%; top: 22%;
    width: 32%; height: 52%;
    border-right: 2.5px solid var(--lwhp-ink);
    border-bottom: 2.5px solid var(--lwhp-ink);
    transform: rotate(42deg);
}
.lwhp-root .lwhp-scr-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: calc(var(--pw, 264px) * .15);
    border-radius: var(--lwhp-r-pill);
    background: var(--lwhp-gold);
    color: var(--lwhp-ink);   /* 8.20:1 */
    font-weight: 700;
    font-size: calc(var(--pw, 264px) * .052);
    line-height: 1;
}
.lwhp-root .lwhp-scr-label {
    font-family: var(--lwhp-font-display);
    font-weight: 600;
    font-size: calc(var(--pw, 264px) * .075);
    line-height: 1.25;
    color: var(--lwhp-ink);
}
.lwhp-root .lwhp-scr-play {
    position: relative;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--lwhp-action);
    flex-shrink: 0;
}
.lwhp-root .lwhp-scr-play::after {
    content: "";
    position: absolute;
    left: 21px; top: 17px;
    border-left: 15px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}
.lwhp-root .lwhp-scr-meta {
    font-weight: 500;
    font-size: calc(var(--pw, 264px) * .048);
    line-height: 1.4;
    color: var(--lwhp-muted);
}
.lwhp-root .lwhp-scr-streakrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: calc(var(--pw, 264px) * .048);
    color: var(--lwhp-ink);
}
.lwhp-root .lwhp-scr-streakrow .lwhp-sparkicon { width: 14px; height: 14px; }

/* ============ S0. HEADER / NAV (theme static header section) ============ */
.lwhp-root .lwhp-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247,244,238,.92); /* fallback */
    background: color-mix(in srgb, var(--lwhp-paper) 92%, transparent);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}
.lwhp-root .lwhp-nav--scrolled { border-bottom: 1px solid var(--lwhp-line); box-shadow: var(--lwhp-sh-card); }
.lwhp-root .lwhp-nav-wrap {
    max-width: 1200px;
    margin: 0 auto;
    height: var(--lwhp-nav-h);
    padding-inline: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.lwhp-root .lwhp-nav-logo { display: inline-flex; align-items: center; min-height: 44px; }
.lwhp-root .lwhp-nav-logoimg {
    height: 30px;
    width: auto;
    display: block;
    mix-blend-mode: multiply; /* TODO: re-export transparent-bg wordmark from Kajabi; blend-mode is the interim fix for the baked white background */
}
.lwhp-root .lwhp-nav-links { display: none; }
.lwhp-root .lwhp-nav-link, .lwhp-root .lwhp-nav-link:visited {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 10px;
    font-weight: 600;
    font-size: 15px;
    color: var(--lwhp-ink);   /* 11.87:1 */
}
.lwhp-root .lwhp-nav-link:hover { color: var(--lwhp-ink); text-decoration: underline; text-underline-offset: 3px; }
.lwhp-root .lwhp-nav-right { display: flex; align-items: center; gap: 16px; }
.lwhp-root .lwhp-nav-login, .lwhp-root .lwhp-nav-login:visited {
    display: none;
    align-items: center;
    min-height: 44px;
    font-weight: 600;
    font-size: 15px;
    color: var(--lwhp-link);
}
.lwhp-root .lwhp-nav-login:hover { color: var(--lwhp-link); text-decoration: underline; text-underline-offset: 3px; }
.lwhp-root .lwhp-nav-right .lwhp-btn--sm { display: none; } /* "Start free" — the only filled element in the chrome */
.lwhp-root .lwhp-nav-burger {
    width: 44px; height: 44px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 8px;
}
.lwhp-root .lwhp-nav-burger :where(span) {
    display: block;
    width: 22px; height: 2px;
    border-radius: 2px;
    background: var(--lwhp-ink);
}
@media (min-width: 480px) {
    .lwhp-root .lwhp-nav-right .lwhp-btn--sm { display: inline-flex; }
}
@media (min-width: 640px) {
    .lwhp-root .lwhp-nav-wrap { padding-inline: 32px; }
    .lwhp-root .lwhp-nav-logoimg { height: 36px; }
}
@media (min-width: 900px) {
    .lwhp-root .lwhp-nav-wrap { padding-inline: 48px; }
    .lwhp-root .lwhp-nav-logoimg { height: 44px; }
    .lwhp-root .lwhp-nav-login { display: inline-flex; }
}
@media (min-width: 1140px) {
    .lwhp-root .lwhp-nav-links { display: flex; align-items: center; gap: 4px; }
    .lwhp-root .lwhp-nav-burger { display: none; }
}

/* --- mobile drawer (loader toggles .lwhp-open; focus trap + scroll-lock in home-takeover.js) --- */
.lwhp-root .lwhp-scrim {
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(15,37,55,.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
}
.lwhp-root .lwhp-scrim.lwhp-open { opacity: 1; visibility: visible; transition: opacity .3s ease-out; }
.lwhp-root .lwhp-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    z-index: 60;
    width: min(360px, 88vw);
    background: var(--lwhp-field-ink);
    padding: 72px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;   /* 16px vertical rhythm */
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .35s cubic-bezier(.22,.61,.36,1), visibility 0s linear .35s;
}
.lwhp-root .lwhp-drawer.lwhp-open { transform: none; visibility: visible; transition: transform .35s cubic-bezier(.22,.61,.36,1); }
.lwhp-root .lwhp-drawer-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--lwhp-on-dark);
}
.lwhp-root .lwhp-drawer-link, .lwhp-root .lwhp-drawer-link:visited {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-weight: 600;
    font-size: 18px;
    color: var(--lwhp-on-dark);
}
.lwhp-root .lwhp-drawer-link:hover { color: var(--lwhp-on-dark); text-decoration: underline; text-underline-offset: 3px; }
.lwhp-root .lwhp-drawer-div { height: 1px; background: rgba(255,255,255,.16); }
.lwhp-root .lwhp-drawer .lwhp-btn--gold { width: 100%; }
@media (min-width: 1140px) {
    .lwhp-root .lwhp-drawer, .lwhp-root .lwhp-scrim { display: none; }
}

/* ============ S1. HERO v4 (human-differentiator-led) ============ */
.lwhp-root .lwhp-hero {
    position: relative;
    background: var(--lwhp-paper);
    padding-block: 40px 48px;
    overflow: visible;
}
.lwhp-root .lwhp-hero-blob {
    top: -110px; right: -120px;
    width: 400px; height: 380px;
    background: var(--lwhp-field-sky);
}
.lwhp-root .lwhp-hero-petal {
    left: -44px; bottom: -8px;
    width: 110px; height: 110px;
    background: var(--lwhp-gold);
}
.lwhp-root .lwhp-hero-spark { top: -8px; left: 55%; width: 40px; height: 40px; } /* spark 1 of max 2 this section */
.lwhp-root .lwhp-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
.lwhp-root .lwhp-hero-copy { text-align: center; }
.lwhp-root .lwhp-hero-copy .lwhp-eyebrow { margin-bottom: 12px; }
.lwhp-root .lwhp-hero-copy .lwhp-h1 { margin-bottom: 20px; }
.lwhp-root .lwhp-hero-copy .lwhp-body-lg { max-width: 520px; margin-inline: auto; }
.lwhp-root .lwhp-hero-ctas {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.lwhp-root .lwhp-hero-ctas .lwhp-btn { width: 100%; }
.lwhp-root .lwhp-adv-entry {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: left;
}
.lwhp-root .lwhp-adv-q { font-weight: 500; font-size: 13px; line-height: 1.4; color: var(--lwhp-muted); }
.lwhp-root .lwhp-adv-link, .lwhp-root .lwhp-adv-link:visited { display: inline-block; font-weight: 700; font-size: 15px; line-height: 1.4; color: var(--lwhp-link); }
.lwhp-root .lwhp-adv-link:hover { color: var(--lwhp-link); text-decoration: underline; text-underline-offset: 3px; }
.lwhp-root .lwhp-hero-trust { margin-top: 24px; }
@media (min-width: 640px) {
    .lwhp-root .lwhp-hero { padding-block: 56px; }
    .lwhp-root .lwhp-hero-ctas .lwhp-btn { width: auto; }
}
@media (min-width: 900px) {
    .lwhp-root .lwhp-hero { padding-block: 64px; }
    .lwhp-root .lwhp-hero-grid {
        grid-template-columns: 1.05fr .95fr;
        gap: 64px;
        align-items: center;
        min-height: min(88svh, 820px); /* CTA above the fold, never absurd on tall screens */
    }
    .lwhp-root .lwhp-hero-copy { text-align: left; }
    .lwhp-root .lwhp-hero-copy .lwhp-body-lg { margin-inline: 0; }
    .lwhp-root .lwhp-hero-ctas { align-items: flex-start; }
    .lwhp-root .lwhp-adv-entry { justify-content: flex-start; }
}

/* --- hero phone composition: two-phone tilt stack + floating streak chip --- */
.lwhp-root .lwhp-phonestack {
    --pw: clamp(200px, 20vw, 264px);
    position: relative;
    width: calc(var(--pw) * 1.5);
    margin-inline: auto;
    padding-top: 16px;
}
.lwhp-root .lwhp-phone--back {
    position: absolute;
    top: calc(var(--pw) * .12);
    left: 0;
    transform: rotate(-6deg) translateX(-14%) scale(.92);
    opacity: .92;
}
.lwhp-root .lwhp-phone--front {
    position: relative;
    z-index: 2;
    margin-left: auto;
    transform: rotate(4deg);
}
.lwhp-root .lwhp-streakchip {
    position: absolute;
    z-index: 3;
    left: calc(var(--pw) * .30);
    bottom: calc(var(--pw) * .22);
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--lwhp-sh-ambient);
    padding: 12px 16px;
    font-weight: 700;
    font-size: 13px;
    color: var(--lwhp-ink);
    white-space: nowrap;
}
@media (max-width: 639px) {
    .lwhp-root .lwhp-phonestack { --pw: 200px; width: var(--pw); padding-top: 0; }
    .lwhp-root .lwhp-phone--back { display: none; }
    .lwhp-root .lwhp-phone--front { margin-inline: auto; transform: none; }
    .lwhp-root .lwhp-streakchip { left: -10px; bottom: 24px; }
}

/* ============ S2. PROOF BAR (hero child — no free-floating divs between sections) ============ */
.lwhp-root .lwhp-proof {
    max-width: 960px;
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(16px, 5vw, 64px);
}
.lwhp-root .lwhp-proof-item { text-align: center; }
.lwhp-root .lwhp-proof-num {
    position: relative;
    display: inline-block;
    font-family: var(--lwhp-font-display);
    font-weight: 600;
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--lwhp-ink);
}
.lwhp-root .lwhp-proof-num::before {
    content: "";
    position: absolute;
    top: -8px; left: -8px;
    width: 10px; height: 10px;
    background: var(--lwhp-gold);
    clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
    animation: lwhp-twinkle 4s ease-in-out infinite alternate;
}
.lwhp-root .lwhp-proof-label {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    color: var(--lwhp-muted);
}
.lwhp-root .lwhp-proof-div {
    width: 1px;
    height: 40px;
    background: var(--lwhp-line);
    flex-shrink: 0;
}
@media (min-width: 640px) {
    .lwhp-root .lwhp-proof { margin-top: 48px; }
    .lwhp-root .lwhp-proof-num { font-size: 32px; }
    .lwhp-root .lwhp-proof-label { font-size: 13px; }
}
@media (min-width: 900px) {
    .lwhp-root .lwhp-proof { margin-top: 56px; }
}

/* ============ S3. NEED-STATE CHIPS — SKY FIELD ============ */
.lwhp-root .lwhp-needs {
    position: relative;
    background: var(--lwhp-field-sky);
    padding-block: 64px 104px; /* extra bottom accommodates S4's overlap cap */
}
.lwhp-root .lwhp-needs .lwhp-eyebrow { color: var(--lwhp-ink); }            /* 9.14:1 on sky */
.lwhp-root .lwhp-needs .lwhp-sechead :where(p) { color: var(--lwhp-body); } /* 5.54:1 on sky */
.lwhp-root .lwhp-needs-blob {  /* overlap trick #1: cream blob over the field's top edge */
    top: -72px; left: 6%;
    width: 220px; height: 200px;
    background: var(--lwhp-cream);
}
.lwhp-root .lwhp-needs-ring { bottom: 32px; right: -54px; width: 150px; height: 150px; border-color: var(--lwhp-cream); }
.lwhp-root .lwhp-needs-petal { /* overlap trick #2: gold petal over the ring */
    bottom: 24px; right: 40px;
    width: 96px; height: 96px;
    background: var(--lwhp-gold);
}
.lwhp-root .lwhp-needs-grid {
    margin-top: var(--lwhp-head-gap);
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.lwhp-root .lwhp-chip, .lwhp-root .lwhp-chip:visited {
    background: var(--lwhp-white);
    border: 2px solid var(--lwhp-white);
    border-radius: var(--lwhp-r-chip);   /* deliberately squarer than pills */
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 72px;
    color: var(--lwhp-ink);
    transition: border-color .3s ease;
}
.lwhp-root .lwhp-chip:hover { border-color: var(--lwhp-action); color: var(--lwhp-ink); }
.lwhp-root .lwhp-chip-label {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: var(--lwhp-ink);
}
.lwhp-root .lwhp-chip-sub {
    display: block;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.5;
    color: var(--lwhp-muted);
    margin-top: 2px;
}
.lwhp-root .lwhp-chip-arrow {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--lwhp-mist);
    color: var(--lwhp-action);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}
.lwhp-root .lwhp-chip:hover .lwhp-chip-arrow {
    background: var(--lwhp-action);
    color: #fff;
    transform: translateX(3px);
}
.lwhp-root .lwhp-needs-cap { text-align: center; margin-top: 32px; color: var(--lwhp-body); } /* muted fails on sky — body passes */
@media (min-width: 640px) {
    .lwhp-root .lwhp-needs { padding-block: 80px 120px; }
    .lwhp-root .lwhp-needs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .lwhp-root .lwhp-needs { padding-block: 96px 144px; }
    .lwhp-root .lwhp-needs-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============ S4. HOW IT WORKS (paper, rounded overlap cap over the sky field) ============ */
.lwhp-root .lwhp-steps {
    position: relative;
    z-index: 1;
    margin-top: calc(-1 * var(--lwhp-cap)); /* sanctioned negative: rounded overlap cap */
    border-radius: var(--lwhp-cap) var(--lwhp-cap) 0 0;
    background: var(--lwhp-paper);
    padding-block: 56px 32px;
}
.lwhp-root .lwhp-steps-grid {
    position: relative;
    margin-top: var(--lwhp-head-gap);
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.lwhp-root .lwhp-steps-grid::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: var(--lwhp-mist-deep);
}
.lwhp-root .lwhp-step {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
}
.lwhp-root .lwhp-step-num {
    position: relative;
    z-index: 1;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--lwhp-gold);   /* ink numeral on gold = 8.20:1 */
    color: var(--lwhp-ink);
    font-family: var(--lwhp-font-display);
    font-weight: 600;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lwhp-root .lwhp-step .lwhp-h3 { margin-bottom: 8px; }
.lwhp-root .lwhp-step :where(p) { font-size: 16px; }
@media (min-width: 640px) {
    .lwhp-root .lwhp-steps { padding-block: 64px 40px; }
}
@media (min-width: 900px) {
    .lwhp-root .lwhp-steps { padding-block: 80px 48px; }
    .lwhp-root .lwhp-steps-grid { grid-template-columns: repeat(4, 1fr); }
    .lwhp-root .lwhp-steps-grid::before {
        left: 12%; right: 12%;
        top: 24px; bottom: auto;
        width: auto;
        height: 2px;
    }
    .lwhp-root .lwhp-step {
        display: block;
        text-align: center;
    }
    .lwhp-root .lwhp-step-num { margin: 0 auto 20px; }
}

/* ============ S5. ADVISOR JOURNEY — cream field (flush meet from paper) ============ */
.lwhp-root .lwhp-journeysec {
    position: relative;
    background: var(--lwhp-cream);
    padding-block: 56px 64px;
}
.lwhp-root .lwhp-journey {
    position: relative;
    max-width: 880px;
    margin: var(--lwhp-head-gap) auto 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.lwhp-root .lwhp-journey::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--lwhp-mist-deep);
}
.lwhp-root .lwhp-jnode {
    position: relative;
    padding-left: 64px;
}
.lwhp-root .lwhp-jnode::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 8px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--lwhp-gold);
    box-shadow: 0 0 0 2px var(--lwhp-gold-deep);
}
.lwhp-root .lwhp-jnode .lwhp-h3 { margin-bottom: 4px; }
.lwhp-root .lwhp-jnode-cap { font-weight: 500; font-size: 14px; line-height: 1.5; color: var(--lwhp-muted); }
.lwhp-root .lwhp-jchat {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    max-width: 360px;
}
.lwhp-root .lwhp-bub {
    font-weight: 500;
    font-size: 13.5px;
    line-height: 1.5;
    padding: 11px 14px;
    max-width: 90%;
}
.lwhp-root .lwhp-bub--advdark {
    background: rgba(255,255,255,.12);
    color: #fff;
    border-radius: 16px 16px 16px 4px;
}
.lwhp-root .lwhp-bub--advlight {
    background: #fff;
    color: var(--lwhp-ink);
    border-radius: 16px 16px 16px 4px;
    box-shadow: var(--lwhp-sh-card);
}
.lwhp-root .lwhp-bub--user {
    background: var(--lwhp-sky);
    color: var(--lwhp-ink);
    border-radius: 16px 16px 4px 16px;
    margin-left: auto;
}
.lwhp-root .lwhp-jstart {
    margin-top: 16px;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--lwhp-sh-card);
    padding: 14px 18px;
    max-width: 360px;
}
.lwhp-root .lwhp-jstart-cap {
    font-weight: 800;
    font-size: 10px;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--lwhp-muted);
}
.lwhp-root .lwhp-jstart-title {
    font-family: var(--lwhp-font-display);
    font-weight: 600;
    font-size: 17px;
    line-height: 1.3;
    color: var(--lwhp-ink);
}
.lwhp-root .lwhp-journey-close { text-align: center; margin-top: var(--lwhp-head-gap); color: var(--lwhp-body); }
@media (min-width: 640px) {
    .lwhp-root .lwhp-journeysec { padding-block: 64px 80px; }
}
@media (min-width: 900px) {
    .lwhp-root .lwhp-journeysec { padding-block: 80px 96px; }
    .lwhp-root .lwhp-journey::before { left: 50%; margin-left: -1px; }
    .lwhp-root .lwhp-jnode { width: calc(50% - 40px); padding-left: 0; }
    .lwhp-root .lwhp-jnode::before { left: auto; right: -46px; }
    .lwhp-root .lwhp-jnode--r { margin-left: auto; }
    .lwhp-root .lwhp-jnode--r::before { right: auto; left: -46px; }
}

/* ============ S6. GAMIFICATION — INK FIELD, straddling phone ============ */
.lwhp-root .lwhp-gami {
    position: relative;
    background: var(--lwhp-field-ink);
    padding-block: 64px 56px;
    overflow: visible; /* the phone straddles the cream/ink boundary */
}
.lwhp-root .lwhp-gami .lwhp-eyebrow { color: var(--lwhp-sky); }   /* 7.12:1 on ink */
.lwhp-root .lwhp-gami .lwhp-h2 { color: var(--lwhp-on-dark); margin-top: 12px; }
/* one sky blob + one gold spark only — the phone is the hero here */
.lwhp-root .lwhp-gami-blob {
    bottom: -90px; right: -110px;
    width: 300px; height: 280px;
    background: var(--lwhp-field-sky);
}
.lwhp-root .lwhp-gami-spark { top: 48px; right: 14%; width: 32px; height: 32px; }
.lwhp-root .lwhp-gami-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
.lwhp-root .lwhp-gami-phonecol {
    position: relative;
    z-index: 2;
    margin-top: -64px; /* sanctioned negative: straddling continuity element (== mobile padding-top, phone stays inside the ink field) */
    display: flex;
    justify-content: center;
}
.lwhp-root .lwhp-gami-phone { --pw: clamp(220px, 22vw, 280px); }
.lwhp-root .lwhp-screen--dark { background: var(--lwhp-field-ink2); } /* dark-mode screen glows on the ink field */
.lwhp-root .lwhp-gring {
    position: relative;
    width: 120px; height: 120px;
    margin-inline: auto;
    border-radius: 50%;
    background: conic-gradient(var(--lwhp-gold) 0 68%, rgba(255,255,255,.14) 68% 100%);
}
.lwhp-root .lwhp-gring-core {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: var(--lwhp-field-ink2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.lwhp-root .lwhp-gring-num {
    font-family: var(--lwhp-font-display);
    font-weight: 600;
    font-size: 40px;
    line-height: 1;
    color: var(--lwhp-gold);
}
.lwhp-root .lwhp-gring-cap { font-weight: 500; font-size: 11px; line-height: 1.3; color: var(--lwhp-on-dark-muted); }
.lwhp-root .lwhp-gscore {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.lwhp-root .lwhp-gscore-num {
    font-family: var(--lwhp-font-display);
    font-weight: 600;
    font-size: 56px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--lwhp-on-dark);
}
.lwhp-root .lwhp-gscore-side { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.lwhp-root .lwhp-gscore-cap { font-weight: 500; font-size: 12px; line-height: 1.2; color: var(--lwhp-on-dark-muted); }
.lwhp-root .lwhp-gdelta {
    display: inline-flex;
    align-items: center;
    background: var(--lwhp-gold);
    color: var(--lwhp-ink);   /* 8.20:1 */
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    border-radius: var(--lwhp-r-pill);
    padding: 5px 10px;
}
.lwhp-root .lwhp-gbars { display: flex; flex-direction: column; gap: calc(var(--pw, 280px) * .035); }
.lwhp-root .lwhp-gbar { display: flex; align-items: center; gap: 10px; }
.lwhp-root .lwhp-gbar-label {
    width: 38%;
    flex-shrink: 0;
    font-weight: 600;
    font-size: calc(var(--pw, 280px) * .042);
    line-height: 1.3;
    color: var(--lwhp-on-dark-body);
}
.lwhp-root .lwhp-gbar-track {
    display: block;
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    overflow: hidden;
}
.lwhp-root .lwhp-gbar-fill { display: block; height: 100%; border-radius: 999px; background: var(--lwhp-sky); }
.lwhp-root .lwhp-gbar-fill--90 { width: 90%; }
.lwhp-root .lwhp-gbar-fill--70 { width: 70%; }
.lwhp-root .lwhp-gbar-fill--55 { width: 55%; }
.lwhp-root .lwhp-gbar-fill--80 { width: 80%; }
.lwhp-root .lwhp-gbar-fill--40 { width: 40%; }
.lwhp-root .lwhp-gdays { display: flex; justify-content: center; gap: 10px; margin-top: auto; }
.lwhp-root .lwhp-gday {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.35);
}
.lwhp-root .lwhp-gday--on { background: var(--lwhp-gold); border-color: var(--lwhp-gold); }
.lwhp-root .lwhp-gami-copy .lwhp-body-lg { color: var(--lwhp-on-dark-body); margin-top: 20px; }
.lwhp-root .lwhp-gchips { margin-top: 32px; display: grid; grid-template-columns: 1fr; gap: 12px; }
.lwhp-root .lwhp-gchip {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--lwhp-r-card);
    padding: 20px 24px;
}
.lwhp-root .lwhp-gchip-title { font-weight: 700; font-size: 16px; line-height: 1.4; color: var(--lwhp-on-dark); }
.lwhp-root .lwhp-gchip-cap { display: block; font-weight: 500; font-size: 13px; line-height: 1.5; color: var(--lwhp-on-dark-muted); margin-top: 2px; }
.lwhp-root .lwhp-gclose {
    margin-top: 32px;
    font-family: var(--lwhp-font-display);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--lwhp-gold);   /* 8.20:1 on ink, large text */
}
@media (min-width: 640px) {
    .lwhp-root .lwhp-gami { padding-block: 80px; }
    .lwhp-root .lwhp-gami-phonecol { margin-top: -96px; }
}
@media (min-width: 900px) {
    .lwhp-root .lwhp-gami { padding-block: 96px 80px; }
    .lwhp-root .lwhp-gami-grid { grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
    .lwhp-root .lwhp-gami-phonecol { margin-top: -120px; } /* half in cream, half in ink */
}

/* ============ S7. WHAT'S INSIDE — BENTO + PROGRAM SHELF (cream band) ============ */
.lwhp-root .lwhp-inside {
    position: relative;
    background: var(--lwhp-cream);
    padding-block: 56px 64px;
}
.lwhp-root .lwhp-bento {
    margin-top: var(--lwhp-head-gap);
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.lwhp-root .lwhp-tile {
    background: var(--lwhp-white);
    border: 1px solid var(--lwhp-line);
    border-radius: var(--lwhp-r-card);
    padding: 28px;
    box-shadow: var(--lwhp-sh-card);
    transition: outline-color .15s ease-out;
    outline: 4px solid transparent;
    outline-offset: 0;
}
.lwhp-root .lwhp-tile:hover { outline-color: var(--lwhp-mist); }
.lwhp-root .lwhp-tile .lwhp-h3 { margin-bottom: 8px; }
.lwhp-root .lwhp-tile-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--lwhp-mist);
    color: var(--lwhp-action);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.lwhp-root .lwhp-tile-icon :where(svg) { width: 20px; height: 20px; }
.lwhp-root .lwhp-tile--feature {
    background: var(--lwhp-field-ink);
    border: none;
    padding: 32px;
}
.lwhp-root .lwhp-tile--feature:hover { outline-color: rgba(255,255,255,.1); }
.lwhp-root .lwhp-tile--feature .lwhp-h3 { color: var(--lwhp-on-dark); margin-bottom: 0; }
.lwhp-root .lwhp-tile--feature > :where(p) { color: var(--lwhp-on-dark-body); margin-top: 8px; }
.lwhp-root .lwhp-tile-titlerow { display: flex; align-items: center; gap: 14px; }
.lwhp-root .lwhp-mini {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    max-width: 340px;
}
.lwhp-root .lwhp-tile--stat {
    background: var(--lwhp-gold);   /* the gold stat tile */
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lwhp-root .lwhp-tile-num {
    font-family: var(--lwhp-font-display);
    font-weight: 600;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--lwhp-ink);
    margin-bottom: 8px;
}
.lwhp-root .lwhp-tile--stat .lwhp-caption { color: var(--lwhp-ink); }   /* 8.20:1 on gold */
/* --- the program shelf: real product artwork, scroll-snap row --- */
.lwhp-root .lwhp-shelf {
    margin-top: var(--lwhp-head-gap);
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(280px, 78vw);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}
.lwhp-root .lwhp-shelfcard, .lwhp-root .lwhp-shelfcard:visited {
    scroll-snap-align: start;
    display: block;
    background: var(--lwhp-white);
    border: 1px solid var(--lwhp-line);
    border-radius: 16px;
    box-shadow: var(--lwhp-sh-card);
    overflow: hidden;
    color: var(--lwhp-ink);
    transition: outline-color .15s ease-out;
    outline: 4px solid transparent;
    outline-offset: 0;
}
.lwhp-root .lwhp-shelfcard:hover { outline-color: var(--lwhp-mist-deep); color: var(--lwhp-ink); }
.lwhp-root .lwhp-shelf-art {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.lwhp-root .lwhp-shelf-body { display: block; padding: 16px 20px 18px; }
.lwhp-root .lwhp-shelf-title {
    font-family: var(--lwhp-font-display);
    font-weight: 600;
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--lwhp-ink);
}
.lwhp-root .lwhp-shelf-cap {
    display: block;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.5;
    color: var(--lwhp-muted);
    margin-top: 2px;
}
.lwhp-root .lwhp-shelf-note { text-align: center; margin-top: 24px; }
@media (min-width: 640px) {
    .lwhp-root .lwhp-inside { padding-block: 64px 80px; }
    .lwhp-root .lwhp-bento { grid-template-columns: repeat(2, 1fr); }
    .lwhp-root .lwhp-tile--feature { grid-column: 1 / -1; }
}
@media (min-width: 900px) {
    .lwhp-root .lwhp-inside { padding-block: 80px 96px; }
    .lwhp-root .lwhp-bento {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(180px, auto);
        gap: 20px;
    }
    .lwhp-root .lwhp-tile--feature { grid-column: 1 / 3; grid-row: 1 / 3; }
}

/* ============ S8. TEAM CREDIBILITY — INK FIELD ============ */
.lwhp-root .lwhp-team {
    position: relative;
    background: var(--lwhp-field-ink);
    padding-block: 72px;
    overflow: hidden;
}
.lwhp-root .lwhp-team .lwhp-eyebrow { color: var(--lwhp-sky); }             /* 7.12:1 on ink */
.lwhp-root .lwhp-team .lwhp-h2 { color: var(--lwhp-on-dark); }
.lwhp-root .lwhp-team .lwhp-sechead :where(p) { color: var(--lwhp-on-dark-body); }
.lwhp-root .lwhp-team-ring { top: 40px; left: -60px; width: 150px; height: 150px; }
.lwhp-root .lwhp-team-arch { bottom: 0; right: -60px; width: 320px; background: var(--lwhp-gold); animation: none; } /* rises from the bottom edge */
.lwhp-root .lwhp-team-grid {
    margin-top: var(--lwhp-head-gap);
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.lwhp-root .lwhp-team-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--lwhp-r-card);
    padding: 28px;
    transition: outline-color .15s ease-out;
    outline: 4px solid transparent;
    outline-offset: 0;
}
.lwhp-root .lwhp-team-card:hover { outline-color: rgba(255,255,255,.1); }
.lwhp-root .lwhp-team-key {
    font-family: var(--lwhp-font-display);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--lwhp-sky);
    margin-bottom: 12px;
}
.lwhp-root .lwhp-team-card .lwhp-h3 { color: var(--lwhp-on-dark); margin-bottom: 8px; }
.lwhp-root .lwhp-team-card :where(p) { color: var(--lwhp-on-dark-body); font-size: 16px; }
.lwhp-root .lwhp-team-stats {
    max-width: 880px;
    margin: 64px auto 0;
    display: flex;
    flex-wrap: wrap;   /* 360px: "Psy.D." at 40px + gaps exceeds the 320px content box */
    justify-content: center;
    align-items: center;
    gap: clamp(16px, 6vw, 72px);
}
.lwhp-root .lwhp-team-stat { text-align: center; }
.lwhp-root .lwhp-team-num {
    font-family: var(--lwhp-font-display);
    font-weight: 600;
    font-size: clamp(40px, 5vw, 56px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--lwhp-gold);   /* 8.20:1 on ink, large text */
}
.lwhp-root .lwhp-team-label {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.5;
    color: var(--lwhp-on-dark-muted);
    margin-top: 8px;
}
.lwhp-root .lwhp-team-div {
    width: 1px;
    height: 56px;
    background: rgba(255,255,255,.15);
    flex-shrink: 0;
}
@media (min-width: 640px) {
    .lwhp-root .lwhp-team { padding-block: 96px; }
}
@media (min-width: 900px) {
    .lwhp-root .lwhp-team { padding-block: 112px; }
    .lwhp-root .lwhp-team-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============ S9a. GOLD STRIPE + S9b. TESTIMONIALS ============ */
.lwhp-root .lwhp-goldstripe {
    background: var(--lwhp-gold);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    text-align: center;
}
.lwhp-root .lwhp-goldstripe .lwhp-h2 { color: var(--lwhp-ink); }   /* 8.20:1 on gold */
.lwhp-root .lwhp-stories {
    background: var(--lwhp-paper);
    padding-block: 48px 32px;
}
.lwhp-root .lwhp-stories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.lwhp-root .lwhp-story {
    background: var(--lwhp-cream);
    border-radius: var(--lwhp-r-card);
    box-shadow: var(--lwhp-sh-card);
    padding: 28px;
}
.lwhp-root .lwhp-story-mark {
    font-family: var(--lwhp-font-display);
    font-weight: 600;
    font-size: 64px;
    line-height: .8;
    color: var(--lwhp-field-sky);
    display: block;
    margin-bottom: 8px;
}
.lwhp-root .lwhp-story-body {
    font-style: italic;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    color: var(--lwhp-muted);   /* 4.74:1 on cream — labeled placeholder, AA pass */
}
.lwhp-root .lwhp-story-foot {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}
.lwhp-root .lwhp-story-ava {
    position: relative;
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--lwhp-field-sky);
}
.lwhp-root .lwhp-story-ava::after {
    content: "";
    position: absolute;
    top: 12px; left: 12px;
    width: 16px; height: 16px;
    background: var(--lwhp-cream);
    border-radius: 50% 50% 50% 0;
    transform: rotate(45deg);
}
.lwhp-root .lwhp-story-who {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.4;
    color: var(--lwhp-body);
    flex: 1;
    min-width: 140px;
}
.lwhp-root .lwhp-story-badge {
    display: inline-flex;
    align-items: center;
    background: var(--lwhp-gold);
    color: var(--lwhp-ink);   /* 8.20:1 */
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    letter-spacing: .02em;
    border-radius: var(--lwhp-r-pill);
    padding: 6px 12px;
}
@media (min-width: 640px) {
    .lwhp-root .lwhp-stories { padding-block: 56px 40px; }
}
@media (min-width: 900px) {
    .lwhp-root .lwhp-stories { padding-block: 64px 48px; }
    .lwhp-root .lwhp-stories-grid { grid-template-columns: repeat(3, 1fr); }
    .lwhp-root .lwhp-story--stagger { margin-top: 16px; }   /* card 2 desktop stagger */
}

/* ============ S10. FOUNDER STORY (paper, same-bg halved from stories) ============ */
.lwhp-root .lwhp-founder {
    background: var(--lwhp-paper);
    padding-block: 32px;
    scroll-margin-top: calc(var(--lwhp-nav-h) + 16px);
}
.lwhp-root .lwhp-founder-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
.lwhp-root .lwhp-founder-photowrap { position: relative; max-width: 380px; margin-inline: auto; width: 100%; }
.lwhp-root .lwhp-founder-petal {
    top: -28px; left: -28px;
    width: 120px; height: 120px;
    background: var(--lwhp-field-sky);
}
.lwhp-root .lwhp-founder-photo {
    position: relative;
    z-index: 1;
    border-radius: var(--lwhp-r-panel);
    overflow: hidden;
    box-shadow: var(--lwhp-sh-ambient);
    aspect-ratio: 4 / 5;
    background: var(--lwhp-field-ink);
}
.lwhp-root .lwhp-founder-photo :where(img) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lwhp-root .lwhp-founder-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,37,55,0) 0%, rgba(15,37,55,.55) 62%, rgba(15,37,55,.92) 100%);
    pointer-events: none;
}
.lwhp-root .lwhp-founder-lockup {
    position: absolute;
    left: 24px;
    bottom: 22px;
    z-index: 1;
}
.lwhp-root .lwhp-founder-name {
    font-family: var(--lwhp-font-display);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
}
.lwhp-root .lwhp-founder-cred {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,.75);
}
.lwhp-root .lwhp-founder-verse { font-style: italic; margin-bottom: 16px; } /* the page's ONLY scripture */
.lwhp-root .lwhp-founder-copy .lwhp-eyebrow { margin-bottom: 12px; }
.lwhp-root .lwhp-founder-copy .lwhp-h2 { margin-bottom: 0; }
.lwhp-root .lwhp-founder-copy .lwhp-dotline { margin-bottom: 20px; }
.lwhp-root .lwhp-founder-copy :where(p) { margin-bottom: 14px; }
.lwhp-root .lwhp-founder-copy .lwhp-founder-verse { margin-bottom: 16px; }
.lwhp-root .lwhp-founder-sig {
    display: block;
    margin-top: 24px;
    font-family: var(--lwhp-font-display);
    font-weight: 600;
    font-style: italic;
    font-size: 18px;
    color: var(--lwhp-link);
}
@media (min-width: 640px) {
    .lwhp-root .lwhp-founder { padding-block: 40px 56px; }
}
@media (min-width: 900px) {
    .lwhp-root .lwhp-founder { padding-block: 48px 64px; } /* pb trimmed from 96 so founder->final boundary meets the 240px budget incl. arch */
    .lwhp-root .lwhp-founder-grid { grid-template-columns: 380px 1fr; gap: 64px; }
}

/* ============ S11. FINAL CTA — INK FIELD ============ */
.lwhp-root .lwhp-final {
    position: relative;
    background: var(--lwhp-field-ink);
    padding-block: 64px 72px;
    text-align: center;
    overflow: hidden;
    scroll-margin-top: calc(var(--lwhp-nav-h) + 16px);
}
.lwhp-root .lwhp-final-blob {
    bottom: -130px; left: -140px;
    width: 380px; height: 360px;
    background: var(--lwhp-field-sky);
}
.lwhp-root .lwhp-final-spark1 { top: 56px; right: 12%; width: 36px; height: 36px; } /* sparks capped at 2 */
.lwhp-root .lwhp-final-spark2 { bottom: 90px; right: 30%; width: 24px; height: 24px; }
.lwhp-root .lwhp-final-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding-inline: 20px; }
.lwhp-root .lwhp-final-icon { display: block; margin: 0 auto 24px; height: 64px; width: auto; }
.lwhp-root .lwhp-final .lwhp-eyebrow { color: var(--lwhp-sky); margin-bottom: 16px; }   /* 7.12:1 on ink */
.lwhp-root .lwhp-final .lwhp-h2 {
    font-size: clamp(30px, 4vw, 44px);
    color: var(--lwhp-on-dark);
    margin-bottom: 20px;
}
.lwhp-root .lwhp-final-sub { color: var(--lwhp-on-dark-body); margin-bottom: 32px; }
.lwhp-root .lwhp-final .lwhp-btn { width: 100%; }
.lwhp-root .lwhp-final-note {
    margin-top: 20px;
    font-weight: 500;
    font-size: 13px;
    color: var(--lwhp-on-dark-muted);
}
@media (min-width: 640px) {
    .lwhp-root .lwhp-final { padding-block: 80px 96px; }
    .lwhp-root .lwhp-final .lwhp-btn { width: auto; }
}
@media (min-width: 900px) { .lwhp-root .lwhp-final { padding-block: 96px 112px; } }

/* ============ S12. FOOTER (theme static footer section) ============ */
.lwhp-root .lwhp-foot {
    background: var(--lwhp-field-ink2);
    border-top: 1px solid rgba(255,255,255,.12);
    padding-block: 56px 32px;
}
.lwhp-root .lwhp-foot-wrap { max-width: 1200px; margin: 0 auto; padding-inline: 20px; }
.lwhp-root .lwhp-foot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.lwhp-root .lwhp-foot-head {
    font-weight: 800;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--lwhp-on-dark-muted);
    margin-bottom: 16px;
}
.lwhp-root .lwhp-foot-list { display: flex; flex-direction: column; gap: 12px; } /* 12px row rhythm */
.lwhp-root .lwhp-foot-link, .lwhp-root .lwhp-foot-link:visited {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    font-weight: 500;
    font-size: 15px;
    color: var(--lwhp-on-dark-body);
}
.lwhp-root .lwhp-foot-link:hover { color: var(--lwhp-on-dark); text-decoration: underline; text-underline-offset: 3px; }
.lwhp-root .lwhp-foot-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.lwhp-root .lwhp-foot-icon { display: block; height: 40px; width: auto; }
.lwhp-root .lwhp-foot-brand .lwhp-btn--sm { margin-top: 4px; }
.lwhp-root .lwhp-foot-social { display: flex; gap: 16px; margin-top: 8px; }
.lwhp-root .lwhp-foot-soc, .lwhp-root .lwhp-foot-soc:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 8px;
    color: var(--lwhp-on-dark-muted);
}
.lwhp-root .lwhp-foot-soc:hover { color: var(--lwhp-on-dark); }
.lwhp-root .lwhp-foot-soc :where(svg) { width: 24px; height: 24px; }
.lwhp-root .lwhp-foot-disclaimer {
    margin-top: 48px;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.5;
    color: var(--lwhp-on-dark-muted);
    max-width: 880px;
}
.lwhp-root .lwhp-foot-legal {
    margin-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-block: 24px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 24px;
    font-weight: 500;
    font-size: 13px;
    color: var(--lwhp-on-dark-muted);
}
.lwhp-root .lwhp-foot-legal .lwhp-foot-link { font-size: 13px; }
@media (min-width: 640px) {
    .lwhp-root .lwhp-foot { padding-block: 64px 32px; }
    .lwhp-root .lwhp-foot-wrap { padding-inline: 32px; }
    .lwhp-root .lwhp-foot-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .lwhp-root .lwhp-foot { padding-block: 80px 40px; }
    .lwhp-root .lwhp-foot-wrap { padding-inline: 48px; }
    .lwhp-root .lwhp-foot-grid { grid-template-columns: repeat(4, 1fr); gap: 48px; }
}

/* ============ REDUCED MOTION (last in file; quadrupled root = (0,4,0),
   beats every component animation/transition without importance flags) ============ */
@media (prefers-reduced-motion: reduce) {
    .lwhp-root [data-reveal] { opacity: 1; transform: none; transition: none; filter: none; }
    .lwhp-root.lwhp-root.lwhp-root.lwhp-root *,
    .lwhp-root.lwhp-root.lwhp-root.lwhp-root *::before,
    .lwhp-root.lwhp-root.lwhp-root.lwhp-root *::after { animation: none; transition: none; }
    .lwhp-root.lwhp-root.lwhp-root.lwhp-root .lwhp-drawer { transform: none; visibility: visible; display: none; }
    .lwhp-root.lwhp-root.lwhp-root.lwhp-root .lwhp-drawer.lwhp-open { display: flex; }
}
