/* =====================================================================
   Break the Locks — Landing
   White/cream + brand violet, dark app-style nav, fullscreen story modal.
   ===================================================================== */
:root {
    --ink-900:   #0A0A0A;
    --ink-700:   #1A1A1A;
    --ink-500:   #4A4A4A;
    --ink-400:   #707070;
    --ink-300:   #A0A0A0;
    --ink-200:   #D4D4D4;
    --ink-100:   #EEEEEE;
    --ink-50:    #F8F8F8;
    --cream:     #FFFFFF;
    --paper:     #FFFFFF;

    --brand-900: #5C4520;   /* deep bronze */
    --brand-700: #8B6F2F;   /* dark gold */
    --brand-500: #C8A85A;   /* primary gold */
    --brand-400: #D8BE71;   /* light gold */
    --brand-100: #FAF1D6;   /* soft gold tint */

    --accent:    #0A0A0A;   /* black accent */

    --font-display: 'Newsreader', 'Iowan Old Style', Georgia, serif;
    --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-script:  'Dancing Script', cursive;

    --maxw:   1180px;
    --narrow: 720px;
    --tx:     cubic-bezier(.2,.7,.2,1);

    --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 36px rgba(0,0,0,0.10);
    --shadow-lg: 0 24px 64px rgba(0,0,0,0.18);
    --shadow-brand: 0 18px 44px rgba(200,168,90,0.42);

    --nav-h: 64px;
    --story-bar-h: 60px;
    --story-nav-h: 96px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    background: var(--cream);
    color: var(--ink-900);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: var(--nav-h);
}
body.story-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-500); text-decoration: none; transition: color .25s var(--tx); }
a:hover { color: var(--brand-700); }
button { font-family: inherit; }
::selection { background: var(--brand-100); color: var(--brand-900); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; }
.container.narrow { max-width: var(--narrow); }
.text-center { text-align: center; }

/* ---------- Typography ---------- */
.display, .display-final, .chapter-h, .section-h {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ink-900);
    line-height: 1.1;
}
.display       { font-size: clamp(2.5rem, 7.4vw, 5.4rem); margin-bottom: 26px; line-height: 1.05; }
.display em    { font-style: italic; color: var(--brand-500); }
.display-final { font-size: clamp(2rem, 5.6vw, 3.8rem); margin-bottom: 18px; }
.display-final em { color: var(--brand-500); font-style: italic; }
.chapter-h     { font-size: clamp(1.7rem, 4.2vw, 2.6rem); margin-bottom: 20px; }
.section-h     { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 26px; text-align: center; }
.section-mini-h {
    font-family: var(--font-display); font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    font-style: italic; color: var(--brand-700); margin: 28px 0 14px;
}
.eyebrow, .chapter-mark {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--brand-500);
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 14px;
    display: inline-block;
}
.eyebrow-dot { margin: 0 6px; color: var(--ink-300); }
.centered-eyebrow { display: block; text-align: center; margin-bottom: 14px; }
.eyebrow.on-final, .chapter-mark.on-final { color: var(--brand-700); }

.lede {
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    color: var(--ink-700);
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 400;
}
.lede.center { max-width: 560px; margin-left: auto; margin-right: auto; }
.centered { text-align: center; max-width: 640px; margin: 24px auto 0; }
p { color: var(--ink-500); margin-bottom: 16px; font-size: clamp(1rem, 1.8vw, 1.1rem); }
p strong { color: var(--ink-900); font-weight: 600; }
p em { color: var(--brand-500); font-style: italic; font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all .3s var(--tx);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-700) 100%);
    color: #fff;
    box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 56px rgba(200,168,90,0.42);
    color: #fff;
}
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; box-shadow: none; transform: none; }
.btn-ghost {
    background: var(--paper);
    color: var(--brand-700);
    border: 1.5px solid var(--ink-200);
}
.btn-ghost:hover { border-color: var(--brand-500); color: var(--brand-700); background: var(--brand-100); }
.btn-sm    { padding: 11px 22px; font-size: 0.82rem; }
.btn-large { padding: 18px 36px; font-size: 0.98rem; }
.btn-huge  { padding: 24px 46px; font-size: 1.08rem; }

/* =====================================================================
   DARK APP-STYLE NAV
   ===================================================================== */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    height: var(--nav-h);
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #2A2A2A 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px;
    gap: 14px;
}
.brand {
    display: inline-flex; align-items: center;
    padding: 8px 6px;
    flex-shrink: 1;
    min-width: 0;
    text-decoration: none;
    color: #fff;
}
.brand-img {
    height: auto;
    width: 260px;
    max-width: 100%;
    display: block;
    object-fit: contain;
}
.brand.small .brand-img { width: 200px; }
.nav-actions {
    display: flex; align-items: center; gap: 16px;
    flex-shrink: 0;
}
.nav-login {
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem; font-weight: 500;
    text-decoration: none;
    padding: 8px 6px;
    transition: color .25s var(--tx);
    white-space: nowrap;
}
.nav-login:hover { color: #fff; }
.site-nav .btn-primary {
    box-shadow: 0 8px 22px rgba(0,0,0,0.28);
}
@media (max-width: 600px) {
    .site-nav { padding: 0 14px; gap: 10px; }
    .brand { padding: 6px 4px; }
    .brand-img { width: 50vw; max-width: 220px; }
    .nav-actions { gap: 10px; }
    .nav-login { font-size: 0.82rem; padding: 8px 4px; }
    .site-nav .btn { padding: 10px 14px; font-size: 0.72rem; }
}
@media (max-width: 380px) {
    .nav-cta-text { display: none; }
    .site-nav .btn { padding: 10px 12px; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 90px;
    background:
        radial-gradient(ellipse at 80% 10%, rgba(216,190,113,0.22) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 90%, rgba(200,168,90,0.10) 0%, transparent 55%),
        var(--cream);
}
.hero-shapes {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 0; overflow: hidden;
    /* Promote to its own layer so the blur is rasterized once and doesn't repaint */
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}
.hero-shapes .shape {
    position: absolute; border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    transform: translateZ(0);
}
.shape.s1 { width: 360px; height: 360px; background: rgba(200,168,90,0.32); top: -80px; right: -60px; }
.shape.s2 { width: 480px; height: 480px; background: rgba(216,190,113,0.22); bottom: -120px; left: -80px; }
.shape.s3 { width: 280px; height: 280px; background: rgba(200,168,90,0.16); top: 50%; left: 20%; }
/* On phones the blur layer can chew through battery and flicker — turn it off below. */
@media (max-width: 760px) {
    .hero-shapes { display: none; }
}
.hero-inner { position: relative; z-index: 2; }
.hero-lede {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
    color: var(--ink-700);
    max-width: 620px;
    margin: 0 auto 32px;
    line-height: 1.45;
}
.hero-lede em { color: var(--brand-500); font-style: italic; }
.hero-ctas {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; margin-bottom: 36px; flex-wrap: wrap;
}
.hero-trust {
    display: flex; align-items: center; justify-content: center;
    gap: 24px; flex-wrap: wrap;
    color: var(--ink-400); font-size: 0.86rem;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust i { color: var(--brand-500); }

/* =====================================================================
   TRUST BAND (under hero)
   ===================================================================== */
.trust-band {
    padding: clamp(70px, 10vh, 110px) 0;
    background: var(--paper);
    border-top: 1px solid var(--ink-100);
    border-bottom: 1px solid var(--ink-100);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto;
}
.trust-card {
    background: var(--cream);
    border: 1px solid var(--ink-100);
    border-radius: 18px;
    padding: 32px 26px;
    text-align: center;
    transition: all .3s var(--tx);
}
.trust-card:hover { transform: translateY(-3px); border-color: var(--brand-400); box-shadow: var(--shadow-md); }
.trust-card i {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px;
    background: var(--brand-100);
    color: var(--brand-500);
    border-radius: 14px;
    font-size: 1.3rem;
    margin-bottom: 18px;
}
.trust-card h4 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--ink-900);
    margin-bottom: 8px;
    line-height: 1.25;
}
.trust-card p { font-size: 0.96rem; color: var(--ink-500); margin: 0; line-height: 1.55; }
.trust-cta { text-align: center; margin-top: 56px; }
.trust-cta-sub { color: var(--ink-400); font-size: 0.86rem; margin: 14px 0 0; }
@media (max-width: 800px) { .trust-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-section { padding: clamp(80px, 12vh, 130px) 0; background: var(--cream); }
.faq { margin: 30px 0 0; }
.faq details {
    background: var(--paper);
    border: 1px solid var(--ink-100);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .25s var(--tx);
}
.faq details[open] {
    border-color: var(--brand-400);
    box-shadow: var(--shadow-sm);
}
.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 500;
    color: var(--ink-900);
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
    color: var(--brand-500);
    font-size: 0.85rem;
    transition: transform .3s var(--tx);
}
.faq details[open] summary i { transform: rotate(45deg); }
.faq details p {
    padding: 0 26px 24px;
    margin: 0; color: var(--ink-500);
    font-size: 0.98rem; line-height: 1.6;
}

/* =====================================================================
   FINAL CTA (page bottom)
   ===================================================================== */
.final-cta {
    padding: clamp(90px, 13vh, 150px) 0 clamp(100px, 14vh, 160px);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(200,168,90,0.28) 0%, transparent 60%),
        linear-gradient(180deg, var(--cream) 0%, var(--brand-100) 100%);
}
.final-cta .display-final em { color: var(--brand-500); font-style: italic; }
.price-box {
    display: inline-flex; flex-direction: column; align-items: center;
    gap: 4px; background: var(--paper);
    padding: 24px 52px; border-radius: 18px;
    margin: 28px 0 32px;
    border: 1px solid var(--ink-100);
    box-shadow: var(--shadow-md);
}
.price {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 4.6rem);
    font-weight: 500;
    color: var(--brand-700);
    line-height: 1;
}
.price-line {
    color: var(--ink-400);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.price-strike {
    color: var(--ink-400);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    margin-top: 4px;
    font-family: var(--font-sans);
}
.price-strike s { color: var(--ink-300); }

/* Urgency row on final story slide */
.urgency-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 28px auto 24px;
    max-width: 720px;
}
.urgency-cell {
    background: var(--paper);
    border: 1px solid var(--ink-100);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.urgency-cell i {
    color: var(--brand-500);
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.urgency-cell strong {
    font-family: var(--font-display);
    font-size: 1.08rem;
    color: var(--ink-900);
    font-weight: 500;
}
.urgency-cell span {
    font-size: 0.84rem;
    color: var(--ink-500);
    line-height: 1.4;
}
@media (max-width: 640px) {
    .urgency-row { grid-template-columns: 1fr; gap: 10px; }
}
.final-warning {
    margin-top: 28px;
    color: var(--ink-400);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
}
.final-warning em { color: var(--brand-700); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-foot {
    background: var(--ink-900);
    padding: 26px 0;
    color: rgba(255,255,255,0.55);
}
.foot-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; flex-wrap: wrap;
}
.foot-copy { font-size: 0.82rem; }
.site-foot .brand-img { filter: brightness(0) invert(1) opacity(0.85); }
.site-foot .brand-text { color: rgba(255,255,255,0.75); }

/* =====================================================================
   STORY MODAL — fullscreen, scroll-locked, panel-by-panel
   ===================================================================== */
.story {
    position: fixed; inset: 0;
    z-index: 100;
    background: var(--cream);
    display: flex; flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.98);
    transition: opacity .35s var(--tx), transform .35s var(--tx), visibility 0s linear .35s;
}
.story.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: opacity .35s var(--tx), transform .35s var(--tx), visibility 0s linear 0s;
}

/* ---------- Story top bar (DARK, like the app) ---------- */
.story-bar {
    flex: 0 0 var(--story-bar-h);
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #2A2A2A 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 24px;
}
.story-brand {
    display: inline-flex;
    align-items: center;
    padding: 8px 6px;
    text-decoration: none;
    color: #fff;
    min-width: 0;
    flex-shrink: 1;
}
.story-brand-img {
    height: auto;
    width: 220px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}
.story-close {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background .25s var(--tx);
}
.story-close:hover { background: rgba(255,255,255,0.22); }

/* ---------- Story stage / slides ---------- */
.story-stage {
    flex: 1 1 auto;
    position: relative;
    overflow: hidden;
}
.story-slide {
    position: absolute; inset: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
    transition: opacity .55s var(--tx), transform .55s var(--tx);
}
.story-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 2;
}
.story-slide.leaving-fwd  { opacity: 0; transform: translateY(-30px); }
.story-slide.leaving-back { opacity: 0; transform: translateY(30px); }

.slide-inner {
    position: absolute; inset: 0;
    overflow-y: auto;
    overscroll-behavior: contain;            /* keep scroll inside the modal */
    -webkit-overflow-scrolling: touch;
    padding: clamp(36px, 8vh, 80px) clamp(20px, 5vw, 56px) clamp(36px, 8vh, 80px);
}
.slide-inner > * {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
.story-slide.slide-spotlight {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(200,168,90,0.14) 0%, transparent 55%),
        linear-gradient(180deg, var(--brand-100) 0%, var(--cream) 100%);
}
.story-slide.slide-final {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(200,168,90,0.28) 0%, transparent 60%),
        linear-gradient(180deg, var(--cream) 0%, var(--brand-100) 100%);
}
.story-slide.slide-final .slide-inner { max-width: 720px; }

/* ---------- Story bottom nav ---------- */
.story-nav {
    flex: 0 0 var(--story-nav-h);
    background: var(--paper);
    border-top: 1px solid var(--ink-100);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 18px 32px;
    gap: 18px;
}
.story-back, .story-next {
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 24px;
    border-radius: 999px;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all .25s var(--tx);
    justify-self: start;
}
.story-back {
    background: var(--ink-50);
    color: var(--ink-700);
}
.story-back:hover:not(:disabled) { background: var(--ink-100); color: var(--ink-900); }
.story-back:disabled { opacity: 0.35; cursor: not-allowed; }
.story-next {
    background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-700) 100%);
    color: #fff;
    box-shadow: var(--shadow-brand);
    justify-self: end;
}
.story-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(200,168,90,0.42);
}
.story-next.is-end {
    background: linear-gradient(135deg, var(--accent) 0%, #C6633E 100%);
    box-shadow: 0 18px 44px rgba(200,168,90,0.32);
}
.story-step {
    font-family: var(--font-sans);
    color: var(--ink-400);
    font-size: 0.84rem;
    letter-spacing: 0.16em;
    font-weight: 600;
    text-align: center;
}

/* =====================================================================
   SLIDE CONTENT MODULES — used inside .slide-inner AND on the static page
   ===================================================================== */
.pull-quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    font-style: italic;
    color: var(--brand-700);
    line-height: 1.3;
    padding: 18px 0 18px 24px;
    border-left: 3px solid var(--brand-500);
    margin: 28px 0 0;
}
.pull-quote.large {
    font-size: clamp(1.7rem, 3.8vw, 2.5rem);
    line-height: 1.2;
}
.pull-quote.massive {
    font-size: clamp(2rem, 5.2vw, 3.6rem);
    line-height: 1.1;
    color: var(--ink-900);
    text-align: center;
    border: none;
    padding: 28px 0;
    font-style: normal;
    margin: 30px 0 0;
}
.pull-quote.massive::before,
.pull-quote.massive::after {
    content: ''; display: block; width: 50px; height: 1px;
    background: var(--brand-500); margin: 20px auto;
}
.pull-quote .pq-end {
    color: var(--brand-500); font-style: italic;
    display: inline-block; margin-top: 8px;
}

/* split-card */
.split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin: 28px 0;
}
.split-card {
    background: var(--paper);
    border: 1px solid var(--ink-100);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    transition: all .35s var(--tx);
}
.split-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand-500);
    box-shadow: var(--shadow-md);
}
.split-card i {
    color: var(--brand-500);
    font-size: 1.5rem; margin-bottom: 12px; display: inline-block;
}
.split-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 500;
    color: var(--ink-900); margin-bottom: 6px;
}
.split-card p { font-size: 0.95rem; color: var(--ink-500); margin: 0; }
@media (max-width: 600px) { .split { grid-template-columns: 1fr; } }

/* miracles */
.miracles {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 10px; margin: 28px 0;
}
.miracle {
    background: var(--paper);
    border: 1px solid var(--ink-100);
    border-radius: 14px;
    padding: 18px 12px;
    text-align: center;
    transition: border-color .25s, box-shadow .25s;
}
.miracle:hover { border-color: var(--brand-500); box-shadow: var(--shadow-sm); }
.miracle i { color: var(--brand-500); font-size: 1.2rem; display: block; margin-bottom: 8px; }
.miracle span {
    font-family: var(--font-display);
    font-style: italic; font-size: 1.02rem;
    color: var(--ink-900);
}
@media (max-width: 640px) { .miracles { grid-template-columns: repeat(2, 1fr); } }

/* flow */
.flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 6px;
    margin: 28px 0 0;
    align-items: stretch;
}
.flow-step {
    background: var(--paper);
    border: 1px solid var(--ink-100);
    border-radius: 14px;
    padding: 18px 16px;
}
.flow-step.accent {
    background: linear-gradient(160deg, var(--brand-100) 0%, var(--paper) 100%);
    border-color: var(--brand-400);
}
.flow-num {
    color: var(--brand-500);
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.2em; display: block; margin-bottom: 8px;
}
.flow-step h4 {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 500;
    color: var(--ink-900); margin-bottom: 4px; line-height: 1.25;
}
.flow-step p { font-size: 0.84rem; color: var(--ink-500); margin: 0; line-height: 1.45; }
.flow-arrow { color: var(--brand-500); opacity: 0.55; align-self: center; font-size: 1rem; }
@media (max-width: 920px) {
    .flow { grid-template-columns: 1fr 1fr; gap: 10px; }
    .flow-arrow { display: none; }
}
@media (max-width: 520px) { .flow { grid-template-columns: 1fr; } }

/* 12 locks tease */
.locks-tease {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 32px 0 0;
}
.lock-card {
    aspect-ratio: 1 / 1;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(200,168,90,0.16) 0%, transparent 70%),
        linear-gradient(160deg, var(--brand-900) 0%, #2A1B5C 100%);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    position: relative;
    overflow: hidden;
    cursor: not-allowed;
}
.lock-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.lock-card i {
    font-size: 1.4rem;
    color: var(--brand-400);
    filter: drop-shadow(0 0 12px rgba(216,190,113,0.55));
}
.lock-num {
    font-family: var(--font-sans);
    font-size: 0.66rem; font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
}
.lock-status {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
}
@media (max-width: 760px) { .locks-tease { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px) { .locks-tease { grid-template-columns: repeat(2, 1fr); } }

/* cascade */
.cascade { margin: 26px 0 0; }
.cascade-row {
    display: grid;
    grid-template-columns: 40px 1fr 1.4fr;
    align-items: baseline;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--ink-100);
}
.cr-num {
    color: var(--brand-500);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}
.cascade-row strong {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.4vw, 1.45rem);
    color: var(--ink-900);
    font-weight: 500;
}
.cascade-row span {
    font-family: var(--font-display);
    font-size: clamp(0.98rem, 1.8vw, 1.12rem);
    color: var(--ink-500);
    font-style: italic;
}
@media (max-width: 600px) {
    .cascade-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
}

/* inside cards */
.inside-head { max-width: 700px; margin: 0 auto 28px; }
.inside-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.inside-card {
    background: var(--paper);
    border: 1px solid var(--ink-100);
    border-radius: 16px;
    padding: 22px 20px;
    transition: all .3s var(--tx);
}
.inside-card:hover {
    transform: translateY(-2px);
    border-color: var(--brand-400);
    box-shadow: var(--shadow-sm);
}
.inside-card i {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    background: var(--brand-100);
    color: var(--brand-500);
    border-radius: 12px;
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.inside-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ink-900);
    margin-bottom: 6px;
    line-height: 1.25;
}
.inside-card p { font-size: 0.9rem; color: var(--ink-500); margin: 0; line-height: 1.5; }
@media (max-width: 900px) { .inside-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .inside-grid { grid-template-columns: 1fr; } }

/* founder */
.founder-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: center;
}
.founder-photo { position: relative; }
.founder-photo img {
    width: 100%;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
}
.founder-tag {
    position: absolute;
    bottom: 14px; left: 14px;
    background: var(--paper);
    color: var(--brand-700);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}
.signature {
    font-family: var(--font-script);
    font-size: 1.7rem;
    color: var(--brand-500);
    margin-top: 14px;
    font-weight: 700;
}
@media (max-width: 820px) {
    .founder-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .founder-photo img { max-width: 260px; margin: 0 auto; display: block; }
}

/* =====================================================================
   MOBILE TUNING (story modal + page)
   ===================================================================== */
@media (max-width: 700px) {
    :root { --story-bar-h: 56px; --story-nav-h: 70px; }
    .story-bar { padding: 0 14px; gap: 10px; }
    .story-brand { padding: 6px 4px; }
    .story-brand-img { width: 50vw; max-width: 200px; }
    .story-close { width: 36px; height: 36px; }
    .story-dots { gap: 6px; }
    .story-dot { width: 6px; height: 6px; }
    .story-nav {
        padding: 14px 16px;
        grid-template-columns: auto 1fr auto;
        gap: 10px;
    }
    .story-back, .story-next { padding: 12px 18px; font-size: 0.86rem; }
    .story-step { font-size: 0.78rem; }
    .slide-inner { padding: 28px 22px 28px; }
}

@media (max-width: 560px) {
    .container { padding: 0 18px; }
    .hero { padding: 60px 0 70px; }
    .hero-ctas { flex-direction: column; gap: 12px; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .hero-trust { gap: 14px; font-size: 0.78rem; }
    .foot-row { justify-content: center; text-align: center; }
}

/* =====================================================================
   INTRO VIDEO SECTION (optional)
   ===================================================================== */
.intro-vid-section {
    padding: clamp(70px, 11vh, 120px) 0;
    background: var(--paper);
    border-top: 1px solid var(--ink-100);
    border-bottom: 1px solid var(--ink-100);
}
.intro-vid-card {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 36px;
    border: none;
    background: var(--ink-900);
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: transform .35s var(--tx), box-shadow .35s var(--tx);
    aspect-ratio: 16 / 9;
}
.intro-vid-card:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(0,0,0,0.28); }
.intro-vid-card .iv-cover {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--tx);
}
.intro-vid-card:hover .iv-cover { transform: scale(1.04); }
.iv-shade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.45) 100%);
    pointer-events: none;
}
.iv-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 84px; height: 84px;
    border-radius: 50%;
    background: rgba(255,255,255,0.96);
    color: var(--brand-700);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 18px 44px rgba(0,0,0,0.45);
    transition: transform .35s var(--tx), background .25s var(--tx);
}
.iv-play::after {
    content: '';
    position: absolute; inset: -12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.35);
    animation: ivPulse 2.4s ease-out infinite;
}
@keyframes ivPulse {
    0%   { transform: scale(0.8); opacity: 0.9; }
    100% { transform: scale(1.45); opacity: 0; }
}
.intro-vid-card:hover .iv-play { background: var(--brand-500); color: #fff; transform: translate(-50%, -50%) scale(1.06); }
@media (max-width: 560px) {
    .iv-play { width: 64px; height: 64px; font-size: 1.2rem; }
}

/* Intro video modal */
.iv-modal {
    position: fixed; inset: 0;
    z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; visibility: hidden;
    transition: opacity .25s var(--tx), visibility 0s linear .25s;
}
.iv-modal.open { opacity: 1; visibility: visible; transition-delay: 0s; }
.iv-backdrop {
    position: absolute; inset: 0;
    background: rgba(10,8,24,0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.iv-frame {
    position: relative; z-index: 2;
    width: 100%; max-width: 980px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0,0,0,0.55);
    transform: scale(0.96);
    transition: transform .3s var(--tx);
}
.iv-modal.open .iv-frame { transform: scale(1); }
.iv-close {
    position: absolute; top: 14px; right: 14px;
    z-index: 3;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    color: #fff; border: none; cursor: pointer;
    font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px);
    transition: background .25s var(--tx);
}
.iv-close:hover { background: rgba(0,0,0,0.85); }
.iv-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}
.iv-stage iframe,
.iv-stage video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0; display: block;
}
.iv-fallback {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: #fff; gap: 10px; font-weight: 600;
}
@media (max-width: 600px) {
    .iv-modal { padding: 12px; }
    .iv-frame { border-radius: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* =====================================================================
   THREE PILLARS — overview row right after hero
   ===================================================================== */
.three-pillars {
    padding: clamp(70px, 11vh, 120px) 0;
    background: var(--paper);
    border-top: 1px solid var(--ink-100);
}
.tp-head { text-align: center; max-width: 660px; margin: 0 auto clamp(36px, 5vh, 60px); padding: 0 24px; }
.tp-head h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 500; color: var(--ink-900); margin-bottom: 12px; }
.tp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}
.tp-card {
    position: relative;
    background: var(--cream);
    border: 1px solid var(--ink-100);
    border-radius: 22px;
    padding: 32px 28px;
    text-decoration: none;
    color: inherit;
    transition: all .35s var(--tx);
    display: flex; flex-direction: column;
    overflow: hidden;
}
.tp-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand-400);
    box-shadow: var(--shadow-lg);
    color: inherit;
}
.tp-card.highlight {
    background: linear-gradient(160deg, #FAF1D6 0%, #FFFFFF 100%);
    border-color: var(--brand-400);
}
.tp-badge {
    position: absolute; top: 16px; right: 16px;
    background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
    color: #fff;
    font: 700 0.66rem var(--font-sans);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
}
.tp-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: var(--brand-100);
    color: var(--brand-700);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}
.tp-card h3 {
    font-family: var(--font-display);
    font-size: 1.45rem; font-weight: 500;
    color: var(--ink-900);
    margin-bottom: 8px;
    line-height: 1.2;
}
.tp-card p { color: var(--ink-500); font-size: 0.95rem; line-height: 1.5; margin: 0 0 18px; flex: 1; }
.tp-card p em { color: var(--brand-700); font-style: italic; font-weight: 500; }
.tp-arrow {
    color: var(--brand-700);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}
@media (max-width: 900px) { .tp-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   THE BOOK section
   ===================================================================== */
.book-section {
    padding: clamp(80px, 12vh, 130px) 0;
    background: var(--cream);
    border-top: 1px solid var(--ink-100);
}
.bs-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(36px, 6vw, 80px);
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}
.bs-cover-wrap { position: relative; display: flex; justify-content: center; }
.bs-cover-glow {
    position: absolute; inset: -10% -20%;
    background: radial-gradient(ellipse at center, rgba(200,168,90,0.32) 0%, transparent 60%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}
.bs-cover {
    position: relative; z-index: 1;
    max-width: 360px;
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.30), 0 60px 120px rgba(0,0,0,0.18);
    transform: rotate(-2deg);
    transition: transform .5s var(--tx);
}
.bs-cover:hover { transform: rotate(0) translateY(-4px); }
.bs-text h2 { color: var(--ink-900); margin-bottom: 18px; }
.bs-perks { list-style: none; padding: 0; margin: 26px 0 30px; display: flex; flex-direction: column; gap: 10px; }
.bs-perks li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-700); font-size: 0.98rem; }
.bs-perks li i { color: var(--brand-500); margin-top: 4px; font-size: 0.85rem; }
.bs-perks strong { color: var(--ink-900); }
.bs-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 760px) {
    .bs-grid { grid-template-columns: 1fr; text-align: center; }
    .bs-text h2 { text-align: center !important; }
    .bs-text .lede { margin-left: auto !important; margin-right: auto; }
    .bs-perks li { text-align: left; }
    .bs-cover { max-width: 260px; }
    .bs-ctas { justify-content: center; }
}

/* =====================================================================
   COACHING section — dark luxe card on cream
   ===================================================================== */
.coaching-section {
    padding: clamp(80px, 12vh, 130px) 0;
    background: var(--cream);
}
.cs-card {
    background: linear-gradient(160deg, #0A0A0A 0%, #1A1A1A 60%, #2A2A2A 100%);
    border-radius: 24px;
    padding: clamp(40px, 7vw, 72px);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.28);
}
.cs-card::before {
    content: '';
    position: absolute;
    right: -120px; top: -120px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(200,168,90,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.cs-card .eyebrow { color: var(--brand-500); }
.cs-card .section-h { color: #fff !important; }
.cs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 720px;
    margin: clamp(28px, 4vw, 40px) auto;
    text-align: left;
}
.cs-perk {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.cs-perk i {
    color: var(--brand-500);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.cs-perk strong {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 500;
    color: #fff;
    display: block;
}
.cs-perk span { color: rgba(255,255,255,0.62); font-size: 0.88rem; }
.cs-cta-row { margin-top: 14px; position: relative; }
.cs-card .btn-primary {
    background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-700) 100%);
    color: #0A0A0A;
}
.cs-card .btn-primary:hover { color: #0A0A0A; }
.cs-sub {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    margin-top: 16px;
}
@media (max-width: 640px) { .cs-grid { grid-template-columns: 1fr; } }

/* ---------- Coaching: two-path layout (Get coached + Become a coach) ---------- */
.cs-head { max-width: 640px; margin: 0 auto clamp(28px, 4vh, 44px); text-align: center; position: relative; z-index: 1; }
.cs-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 880px;
    margin: 0 auto;
    position: relative; z-index: 1;
}
.cs-path {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 30px 28px;
    color: #fff;
    text-decoration: none;
    transition: all .35s var(--tx);
    display: flex; flex-direction: column;
}
.cs-path:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(200,168,90,0.45);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    color: #fff;
}
.cs-path.gold {
    background: linear-gradient(160deg, rgba(200,168,90,0.18) 0%, rgba(200,168,90,0.04) 100%);
    border-color: rgba(200,168,90,0.32);
}
.cs-path.gold:hover {
    background: linear-gradient(160deg, rgba(200,168,90,0.28) 0%, rgba(200,168,90,0.08) 100%);
}
.cs-path-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
    color: #0A0A0A;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 18px;
}
.cs-path h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}
.cs-path > p {
    color: rgba(255,255,255,0.72);
    font-size: 0.96rem;
    line-height: 1.55;
    margin-bottom: 18px;
}
.cs-mini-perks { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cs-mini-perks li {
    display: flex; align-items: flex-start; gap: 10px;
    color: rgba(255,255,255,0.82);
    font-size: 0.9rem; line-height: 1.4;
}
.cs-mini-perks li i {
    color: var(--brand-500);
    font-size: 0.74rem;
    margin-top: 6px;
    flex-shrink: 0;
}
.cs-path-cta {
    color: var(--brand-500);
    font-weight: 700;
    font-size: 0.92rem;
    margin-top: auto;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: inline-flex; align-items: center; gap: 6px;
}
.cs-path:hover .cs-path-cta { color: var(--brand-400); }
.cs-sub-foot {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    text-align: center;
    margin-top: clamp(28px, 4vh, 40px);
    position: relative; z-index: 1;
}
@media (max-width: 760px) { .cs-paths { grid-template-columns: 1fr; } }

/* =====================================================================
   UNLOCKED show section — landing
   ===================================================================== */
.unlocked-section {
    padding: clamp(80px, 12vh, 130px) 0;
    background:
        radial-gradient(ellipse at 80% 10%, rgba(216,190,113,0.10) 0%, transparent 55%),
        var(--cream);
    border-top: 1px solid var(--ink-100);
}
.us-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(36px, 6vw, 80px);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.us-cover-wrap { position: relative; display: flex; justify-content: center; }
.us-cover-glow {
    position: absolute; inset: -10%;
    background: radial-gradient(ellipse at center, rgba(200,168,90,0.32) 0%, transparent 60%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}
.us-cover {
    position: relative; z-index: 1;
    width: 100%;
    max-width: 540px;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.30), 0 60px 120px rgba(0,0,0,0.18);
    transition: transform .35s var(--tx);
}
.us-cover-wrap:hover .us-cover { transform: translateY(-3px); }
.us-play {
    position: absolute; z-index: 2;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 84px; height: 84px;
    border-radius: 50%;
    background: rgba(255,255,255,0.94);
    color: var(--brand-700);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 18px 44px rgba(0,0,0,0.45);
    pointer-events: none;
}
.us-play::after {
    content: '';
    position: absolute; inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    animation: ivPulse 2.4s ease-out infinite;
}
.us-text h2 { margin-bottom: 18px; color: var(--ink-900); }
.us-perks { list-style: none; padding: 0; margin: 22px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.us-perks li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-700); font-size: 0.98rem; }
.us-perks li i { color: var(--brand-500); margin-top: 4px; font-size: 0.85rem; }
.us-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 820px) {
    .us-grid { grid-template-columns: 1fr; text-align: center; }
    .us-text h2 { text-align: center !important; }
    .us-text .lede { margin-left: auto !important; margin-right: auto; }
    .us-perks li { text-align: left; }
    .us-ctas { justify-content: center; }
    .us-play { width: 64px; height: 64px; font-size: 1.2rem; }
}
