﻿:root {
    --bg: #07080c;
    --bg2: #0c0e14;
    --bg3: #10121a;
    --surface: #14161f;
    --surface2: #1a1d28;
    --bd: rgba(255,255,255,.07);
    --bd2: rgba(255,255,255,.12);
    --blue: #4f8ef7;
    --blue2: #2563eb;
    --blue-glow: rgba(79,142,247,.22);
    --blue-tint: rgba(79,142,247,.09);
    --teal: #2dd4bf;
    --teal-tint: rgba(45,212,191,.1);
    --teal-glow: rgba(45,212,191,.18);
    --amber: #fbbf24;
    --amber-tint: rgba(251,191,36,.09);
    --green: #22c55e;
    --green-tint: rgba(34,197,94,.1);
    --red: #f87171;
    --purple: #a78bfa;
    --purple-tint: rgba(167,139,250,.1);
    --purple-glow: rgba(167,139,250,.2);
    --r: 10px;
    --rl: 16px;
    --sh: 0 8px 40px rgba(0,0,0,.5);
    --font-display: 'Syne',sans-serif;
    --font-serif: 'Instrument Serif',serif;
    --font-body: 'DM Sans',sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%
}

body {
    background: var(--bg);
    color: #f0f1f5;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    opacity: .4;
    width: 100vw;
    height: 100vh;
}

h1, h2, h3 {
    font-family: var(--font-display);
    letter-spacing: -.02em;
    line-height: 1.06
}

.serif {
    font-family: var(--font-serif)
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 300;
    height: 58px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(7,8,12,.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bd);
    overflow: hidden;
}

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: #f0f1f5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center
}

    .nav-links a {
        color: #4a5068;
        font-size: .79rem;
        font-weight: 500;
        text-decoration: none;
        padding: 6px 13px;
        border-radius: 7px;
        transition: all .15s;
        white-space: nowrap;
    }

        .nav-links a:hover {
            color: #f0f1f5;
            background: rgba(255,255,255,.04)
        }

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.nav-price {
    font-size: .76rem;
    color: #4a5068
}

    .nav-price strong {
        color: #9da3b4
    }

.nav-cta {
    background: var(--teal);
    color: #07080c;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: .81rem;
    font-weight: 800;
    font-family: var(--font-display);
    text-decoration: none;
    white-space: nowrap;
    transition: all .15s;
    border: none;
    cursor: pointer;
    letter-spacing: -.01em;
}

    .nav-cta:hover {
        filter: brightness(1.1);
        transform: translateY(-1px)
    }

.ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid var(--bd2);
    border-radius: 7px;
    padding: 9px;
    cursor: pointer;
    width: 38px;
    height: 38px;
    justify-content: center;
    align-items: center;
}

    .ham span {
        display: block;
        width: 16px;
        height: 1.5px;
        background: #9da3b4;
        border-radius: 2px;
        transition: all .3s
    }

    .ham.open span:nth-child(1) {
        transform: translateY(5px) rotate(45deg)
    }

    .ham.open span:nth-child(2) {
        opacity: 0
    }

    .ham.open span:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg)
    }

.mob-menu {
    display: none;
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    background: rgba(7,8,12,.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bd);
    padding: 12px 5% 20px;
    max-height: calc(100vh - 58px);
    overflow-y: auto;
    flex-direction: column;
    gap: 2px;
    z-index: 299;
}

    .mob-menu.open {
        display: flex
    }

    .mob-menu a {
        color: #9da3b4;
        text-decoration: none;
        font-size: .88rem;
        padding: 10px 12px;
        border-radius: 8px;
        display: block;
        transition: all .15s;
    }

        .mob-menu a:hover {
            background: rgba(255,255,255,.04);
            color: #f0f1f5
        }

    .mob-menu .mob-buy {
        background: var(--teal);
        color: #07080c;
        text-align: center;
        border-radius: 9px;
        font-weight: 800;
        font-family: var(--font-display);
        margin-top: 8px;
        padding: 12px;
    }

/* BREADCRUMB */
.bc {
    padding: 7px 5%;
    background: var(--bg2);
    border-bottom: 1px solid var(--bd);
    font-size: .71rem;
    color: #4a5068;
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

    .bc a {
        color: #4a5068;
        text-decoration: none
    }

        .bc a:hover {
            color: #9da3b4
        }

.bc-sep {
    opacity: .3
}

/* HERO */
#hero {
    position: relative;
    padding: 72px clamp(20px, 5%, 60px) 64px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: start;
    z-index: 1;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -120px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: min(900px,100vw);
    height: 600px;
    background: radial-gradient(ellipse at 50% 30%,rgba(45,212,191,.07) 0%,rgba(79,142,247,.04) 40%,transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-left {
    position: relative;
    z-index: 1
}

.h-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-tint);
    border: 1px solid rgba(45,212,191,.22);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 24px;
    letter-spacing: .03em;
    font-family: var(--font-display);
}

.kicker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    animation: kblink 2.4s infinite;
}

@@keyframes kblink {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .25;
        transform: scale(.5)
    }
}

h1 {
    font-size: clamp(2.4rem,5vw,4rem);
    font-weight: 800;
    color: #f0f1f5;
    margin-bottom: 22px;
}

    h1 em {
        font-family: var(--font-serif);
        font-style: italic;
        color: var(--teal);
        font-weight: 400
    }

    h1 .dim {
        color: #4a5068
    }

.h-sub {
    font-size: 1.05rem;
    color: #9da3b4;
    line-height: 1.78;
    max-width: 520px;
    margin-bottom: 32px;
}

    .h-sub strong {
        color: #f0f1f5
    }

.system-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.chip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--surface);
    border: 1px solid var(--bd2);
    border-radius: 100px;
    padding: 5px 12px 5px 8px;
    font-size: .75rem;
    color: #9da3b4;
    transition: border-color .2s,color .2s;
}

    .chip:hover {
        border-color: var(--teal);
        color: #f0f1f5
    }

.chip-num {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--teal-tint);
    border: 1px solid rgba(45,212,191,.22);
    color: var(--teal);
    font-size: .58rem;
    font-weight: 800;
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 380px;
    margin-bottom: 24px
}

.btn-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--teal);
    color: #07080c;
    padding: 16px 28px;
    border-radius: 11px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .15s;
    letter-spacing: -.01em;
}

    .btn-hero:hover {
        filter: brightness(1.08);
        transform: translateY(-2px);
        box-shadow: 0 10px 32px var(--teal-glow)
    }

    .btn-hero.purple-cta {
        background: linear-gradient(135deg,#5b34c8,#7c3aed);
        box-shadow: 0 4px 18px rgba(167,139,250,.25);
        color: white;
    }

        .btn-hero.purple-cta:hover {
            filter: brightness(1.1);
            box-shadow: 0 10px 32px var(--purple-glow)
        }

.no-card {
    font-size: .72rem;
    color: #2e3348;
    text-align: center;
    line-height: 1.5
}

.compare-strip {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--bd2);
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 28px;
    background: var(--surface);
}

.cmp {
    flex: 1;
    padding: 14px 18px
}

    .cmp + .cmp {
        border-left: 1px solid var(--bd)
    }

.cmp-n {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
}

.cmp-l {
    font-size: .71rem;
    color: #9da3b4;
    margin-top: 4px;
    line-height: 1.35
}

.cmp.ours .cmp-n {
    color: var(--teal)
}

.cmp.glob .cmp-n {
    color: #4a5068
}

.cmp-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    font-size: .67rem;
    color: #2e3348;
    border-left: 1px solid var(--bd);
    border-right: 1px solid var(--bd);
    background: var(--bg2);
}

.trust-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.t-avs {
    display: flex
}

.t-av {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--surface2);
    border: 2px solid var(--bg);
    font-size: .58rem;
    font-weight: 800;
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
}

    .t-av:first-child {
        margin-left: 0
    }

.trust-label {
    font-size: .77rem;
    color: #4a5068
}

    .trust-label strong {
        color: #9da3b4
    }

/* BUY CARD */
.buy-card {
    background: var(--surface);
    border: 1.5px solid rgba(45,212,191,.4);
    border-radius: var(--rl);
    box-shadow: 0 0 0 1px rgba(45,212,191,.1),var(--sh);
    overflow: hidden;
    position: sticky;
    top: 74px;
    z-index: 1;
}

    .buy-card.pass-card {
        border-color: rgba(167,139,250,.45);
        box-shadow: 0 0 0 1px rgba(167,139,250,.12),var(--sh);
    }

.bc-head {
    background: linear-gradient(135deg,#0f4a44 0%,#0c3a52 100%);
    padding: 18px 22px;
    border-bottom: 1px solid rgba(45,212,191,.15);
}

    .bc-head.pass-head {
        background: linear-gradient(135deg,#1e1040 0%,#2d1a6e 100%);
        border-bottom-color: rgba(167,139,250,.15);
    }

.bc-head-badge {
    display: inline-block;
    background: rgba(45,212,191,.18);
    border: 1px solid rgba(45,212,191,.3);
    border-radius: 100px;
    font-size: .61rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 3px 10px;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

    .bc-head-badge.pass-badge {
        background: rgba(167,139,250,.18);
        border-color: rgba(167,139,250,.3);
        color: var(--purple);
    }

.bc-head-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: #f0f1f5
}

.bc-head-sub {
    font-size: .72rem;
    color: #9da3b4;
    margin-top: 3px
}

.bc-body {
    padding: 20px 22px 22px
}

.bc-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 3px
}

.bc-price {
    font-family: var(--font-display);
    font-size: 2.9rem;
    font-weight: 800;
    color: #f0f1f5;
    line-height: 1;
}

    .bc-price sup {
        font-size: 1.1rem;
        vertical-align: super
    }

.bc-save {
    background: rgba(34,197,94,.12);
    color: var(--green);
    padding: 2px 9px;
    border-radius: 100px;
    font-size: .67rem;
    font-weight: 700;
    border: 1px solid rgba(34,197,94,.22);
}

    .bc-save.purple-save {
        background: rgba(167,139,250,.12);
        color: var(--purple);
        border-color: rgba(167,139,250,.22);
    }

.bc-period {
    font-size: .74rem;
    color: #4a5068;
    margin-bottom: 16px
}

.bc-feats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--bd)
}

.bcf {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .81rem;
    color: #9da3b4
}

.bcf-ok {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background: var(--teal-tint);
    border: 1px solid rgba(45,212,191,.25);
    color: var(--teal);
    font-size: .52rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .bcf-ok.purple-ok {
        background: var(--purple-tint);
        border-color: rgba(167,139,250,.25);
        color: var(--purple);
    }

.btn-buy {
    display: block;
    width: 100%;
    background: var(--teal);
    color: #07080c;
    padding: 14px 18px;
    border-radius: 9px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .9rem;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all .15s;
    letter-spacing: -.01em;
}

    .btn-buy:hover {
        filter: brightness(1.1);
        transform: translateY(-1px);
        box-shadow: 0 6px 22px var(--teal-glow)
    }

    .btn-buy.purple-btn {
        background: linear-gradient(135deg,#5b34c8,#7c3aed);
        color: #fff;
        box-shadow: 0 4px 18px rgba(167,139,250,.2);
    }

        .btn-buy.purple-btn:hover {
            filter: brightness(1.1);
            box-shadow: 0 8px 28px var(--purple-glow)
        }

.bc-upsell {
    background: rgba(79,142,247,.07);
    border: 1px solid rgba(79,142,247,.15);
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 9px;
    font-size: .74rem;
    color: var(--blue);
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

    .bc-upsell strong {
        color: #f0f1f5
    }

.bc-downsell {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--bd);
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: 8px;
    font-size: .71rem;
    color: #4a5068;
    text-align: center;
    line-height: 1.5;
}

    .bc-downsell a {
        color: #9da3b4;
        text-decoration: underline
    }

.bc-guar {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: var(--green-tint);
    border: 1px solid rgba(34,197,94,.18);
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 9px;
    font-size: .74rem;
    color: var(--green);
    line-height: 1.55;
}

.bc-free {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: .72rem;
    color: #2e3348;
    text-decoration: none;
    transition: color .15s;
}

    .bc-free:hover {
        color: var(--teal)
    }

.bc-social {
    border-top: 1px solid var(--bd);
    padding: 12px 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg2);
}

.bc-stars {
    color: var(--amber);
    font-size: .82rem;
    letter-spacing: .5px
}

.bc-star-text {
    font-size: .72rem;
    color: #4a5068
}

    .bc-star-text strong {
        color: #9da3b4
    }

/* PROOF BAR */
#proof-bar {
    background: var(--surface);
    border-top: 1px solid var(--bd);
    border-bottom: 1px solid var(--bd);
    padding: 14px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.pb {
    padding: 6px 28px;
    border-right: 1px solid var(--bd);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 80px;
    flex-shrink: 0;
}

    .pb:last-child {
        border-right: none
    }

.pb-n {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: #f0f1f5
}

.pb-l {
    font-size: .69rem;
    color: #4a5068;
    line-height: 1.3
}

/* SECTIONS */
.sec {
    padding: 88px 5%;
    position: relative;
    z-index: 1
}

.sec-inner {
    max-width: 1100px;
    margin: 0 auto
}

.eyebrow {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 12px;
    font-family: var(--font-display);
}

.sec-title {
    font-size: clamp(1.9rem,3.6vw,2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: #f0f1f5;
}

.sec-sub {
    font-size: .95rem;
    color: #9da3b4;
    line-height: 1.78;
    margin-bottom: 40px;
    max-width: 600px
}

.sec-title.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto
}

.sec-sub.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto
}

/* VIDEO */
#video {
    background: var(--bg2);
    border-top: 1px solid var(--bd);
    border-bottom: 1px solid var(--bd);
}

.video-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center
}

.video-title {
    font-size: clamp(1.6rem,3vw,2.2rem);
    font-weight: 800;
    color: #f0f1f5;
    margin-bottom: 12px;
}

.video-sub {
    font-size: .93rem;
    color: #9da3b4;
    margin-bottom: 32px;
    line-height: 1.7
}

.yt-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--rl);
    overflow: hidden;
    border: 1px solid var(--bd2);
    box-shadow: 0 0 0 1px rgba(45,212,191,.1),0 24px 80px rgba(0,0,0,.6);
    background: var(--surface);
}

    .yt-wrap iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

/* 5-STEP SYSTEM */
#system {
    background: var(--bg)
}

.journey {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px
}

.step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0;
    position: relative;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

    .step:not(:last-child) .step-spine::after {
        content: '';
        position: absolute;
        top: 64px;
        left: 31px;
        width: 2px;
        height: calc(100% - 16px);
        background: linear-gradient(to bottom,var(--teal),transparent);
        opacity: .25;
    }

.step-spine {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    flex-shrink: 0;
    background: var(--surface);
    border: 1px solid var(--bd2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 800;
    color: var(--teal);
    position: relative;
    z-index: 1;
    transition: all .25s;
}

.step:hover .step-num {
    background: var(--teal-tint);
    border-color: rgba(45,212,191,.35);
    box-shadow: 0 0 20px var(--teal-glow);
}

.step-body {
    padding: 0 0 48px 28px;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.step-label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    color: var(--teal);
    font-family: var(--font-display);
    margin-bottom: 6px;
    opacity: .7;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 800;
    color: #f0f1f5;
    margin-bottom: 8px;
}

.step-desc {
    font-size: .88rem;
    color: #9da3b4;
    line-height: 1.75;
    margin-bottom: 16px;
    max-width: 560px
}

.step-mock {
    background: var(--surface);
    border: 1px solid var(--bd2);
    border-radius: var(--rl);
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    box-shadow: var(--sh);
}

.mock-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    background: var(--surface2);
    border-bottom: 1px solid var(--bd);
}

.m-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%
}

.mock-title {
    font-size: .73rem;
    font-weight: 600;
    color: #9da3b4;
    margin: 0 auto;
    font-family: var(--font-display)
}

.mock-body {
    padding: 16px
}

.readiness-items {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ri {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg2);
    border: 1px solid var(--bd);
    border-radius: 8px;
    padding: 9px 12px;
}

.ri-bar-wrap {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,.05);
    border-radius: 100px;
    overflow: hidden
}

.ri-bar {
    height: 100%;
    border-radius: 100px
}

.ri-name {
    font-size: .75rem;
    color: #9da3b4;
    width: 110px;
    flex-shrink: 0
}

.ri-pct {
    font-family: var(--font-display);
    font-size: .73rem;
    font-weight: 700;
    width: 30px;
    text-align: right
}

.roadmap-weeks {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.rw {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg2);
    border: 1px solid var(--bd);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: .76rem;
}

.rw-week {
    color: var(--teal);
    font-family: var(--font-display);
    font-weight: 700;
    width: 50px;
    flex-shrink: 0
}

.rw-topic {
    color: #f0f1f5;
    flex: 1
}

.rw-status {
    font-size: .62rem;
    font-weight: 700;
    font-family: var(--font-display);
    padding: 2px 8px;
    border-radius: 100px;
}

    .rw-status.done {
        background: var(--green-tint);
        color: var(--green);
        border: 1px solid rgba(34,197,94,.2)
    }

    .rw-status.active {
        background: var(--teal-tint);
        color: var(--teal);
        border: 1px solid rgba(45,212,191,.2)
    }

    .rw-status.upcoming {
        background: rgba(255,255,255,.04);
        color: #4a5068;
        border: 1px solid var(--bd)
    }

.mindmap-wrap {
    position: relative;
    padding: 12px 0
}

.mm-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.mm-node-main {
    background: linear-gradient(135deg,var(--teal-tint),rgba(79,142,247,.1));
    border: 1.5px solid rgba(45,212,191,.35);
    border-radius: 12px;
    padding: 10px 20px;
    font-family: var(--font-display);
    font-size: .85rem;
    font-weight: 800;
    color: var(--teal);
    text-align: center;
}

.mm-branches {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 6px
}

.mm-node {
    background: var(--bg2);
    border: 1px solid var(--bd2);
    border-radius: 9px;
    padding: 8px 10px;
    font-size: .73rem;
    color: #9da3b4;
    text-align: center;
    transition: border-color .2s;
    cursor: default;
}

    .mm-node:hover {
        border-color: var(--teal);
        color: #f0f1f5
    }

    .mm-node.lit {
        border-color: rgba(45,212,191,.3);
        color: var(--teal);
        background: var(--teal-tint)
    }

.mm-mastery {
    margin-top: 10px;
    background: rgba(34,197,94,.07);
    border: 1px solid rgba(34,197,94,.15);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mm-m-label {
    font-size: .72rem;
    color: var(--green);
    font-family: var(--font-display);
    font-weight: 700
}

.mm-m-bar-wrap {
    flex: 1;
    height: 5px;
    background: rgba(255,255,255,.05);
    border-radius: 100px;
    overflow: hidden
}

.mm-m-bar {
    width: 72%;
    height: 100%;
    background: var(--green);
    border-radius: 100px
}

.mm-m-pct {
    font-family: var(--font-display);
    font-size: .73rem;
    font-weight: 800;
    color: var(--green)
}

.practice-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.pq-side {
    background: var(--bg2);
    border: 1px solid var(--bd);
    border-radius: 8px;
    padding: 10px
}

.pq-tag {
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--blue);
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 5px
}

.pq-text {
    font-size: .74rem;
    color: #f0f1f5;
    line-height: 1.5;
    margin-bottom: 7px
}

.pq-opts {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.pq-opt {
    padding: 5px 8px;
    border: 1px solid var(--bd);
    border-radius: 5px;
    font-size: .7rem;
    color: #9da3b4;
}

    .pq-opt.correct {
        background: rgba(34,197,94,.1);
        border-color: rgba(34,197,94,.25);
        color: var(--green)
    }

.ai-side {
    background: var(--bg2);
    border: 1px solid var(--bd);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px
}

.ai-side-title {
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--teal);
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 2px
}

.ai-bubble {
    background: var(--teal-tint);
    border: 1px solid rgba(45,212,191,.15);
    border-radius: 3px 7px 7px 7px;
    padding: 7px 9px;
    font-size: .7rem;
    color: #f0f1f5;
    line-height: 1.5
}

.ai-q-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--bd2);
    border-radius: 100px;
    padding: 3px 9px;
    font-size: .67rem;
    color: #9da3b4;
    cursor: pointer;
}

    .ai-q-chip:hover {
        border-color: var(--teal);
        color: var(--teal)
    }

.ai-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px
}

.gate-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.gate-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg2);
    border: 1px solid var(--bd);
    border-radius: 8px;
    padding: 9px 12px;
}

.gate-icon {
    font-size: 1rem;
    flex-shrink: 0
}

.gate-text {
    font-size: .76rem;
    color: #9da3b4;
    flex: 1;
    line-height: 1.4
}

    .gate-text strong {
        color: #f0f1f5
    }

.gate-badge {
    font-size: .62rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    flex-shrink: 0;
    font-family: var(--font-display);
}

    .gate-badge.ok {
        background: var(--green-tint);
        color: var(--green);
        border: 1px solid rgba(34,197,94,.2)
    }

    .gate-badge.warn {
        background: var(--amber-tint);
        color: var(--amber);
        border: 1px solid rgba(251,191,36,.2)
    }

.gate-alert {
    background: rgba(248,113,113,.07);
    border: 1px solid rgba(248,113,113,.18);
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 4px;
    font-size: .76rem;
    color: var(--red);
    display: flex;
    gap: 7px;
    align-items: flex-start;
}

/* SOCIAL PROOF */
#social {
    background: var(--bg2);
    border-top: 1px solid var(--bd);
    border-bottom: 1px solid var(--bd)
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 40px
}

.tc {
    background: var(--surface);
    border: 1px solid var(--bd);
    border-radius: var(--r);
    padding: 22px;
}

.tc-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px
}

.tc-pass {
    background: var(--green-tint);
    border: 1px solid rgba(34,197,94,.22);
    border-radius: 7px;
    padding: 3px 9px;
    font-family: var(--font-display);
    font-size: .76rem;
    font-weight: 800;
    color: var(--green);
}

.tc-stars {
    color: var(--amber);
    font-size: .78rem;
    margin-left: auto
}

.tc-q {
    font-size: .83rem;
    color: #9da3b4;
    line-height: 1.68;
    margin-bottom: 14px;
    font-style: italic
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-top: 12px;
    border-top: 1px solid var(--bd)
}

.tc-av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--surface2);
    color: var(--teal);
    font-size: .62rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tc-name {
    font-size: .82rem;
    font-weight: 500;
    color: #f0f1f5
}

.tc-role {
    font-size: .69rem;
    color: #4a5068
}

/* PRICING */
#pricing {
    background: var(--bg);
    border-top: 1px solid var(--bd);
    padding: 88px 5%
}

.pricing-hd {
    text-align: center;
    margin-bottom: 48px
}

    .pricing-hd h2 {
        font-size: clamp(1.9rem,3.5vw,2.7rem);
        font-weight: 800;
        color: #f0f1f5;
        max-width: 560px;
        margin: 0 auto 10px;
    }

    .pricing-hd p {
        font-size: .9rem;
        color: #4a5068;
        max-width: 480px;
        margin: 0 auto
    }

.pricing-anchor {
    text-align: center;
    margin-bottom: 14px;
    font-size: .72rem;
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

    .pricing-anchor::before, .pricing-anchor::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--bd2);
        max-width: 120px
    }

#pricingPlans {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px;
    max-width: 960px;
    margin: 0 auto;
    align-items: start;
    padding: 0 clamp(20px, 5%, 48px);
}

/* COMPARE TABLE */
#compare {
    background: var(--bg2);
    border-top: 1px solid var(--bd)
}

.cmp-tbl-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    margin-top: 36px
}

table.cmp-tbl {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    min-width: 520px;
}

.cmp-tbl th:first-child, .cmp-tbl td:first-child {
    width: 42%
}

.cmp-tbl th:not(:first-child), .cmp-tbl td:not(:first-child) {
    width: 19%
}

.cmp-tbl th {
    padding: 10px 14px;
    text-align: left;
    font-size: .69rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #4a5068;
    font-weight: 700;
    border-bottom: 1px solid var(--bd2);
    font-family: var(--font-display);
}

    .cmp-tbl th:not(:first-child) {
        text-align: center
    }

.cmp-tbl td {
    padding: 11px 14px;
    font-size: .82rem;
    border-bottom: 1px solid var(--bd);
    color: #9da3b4;
    vertical-align: middle;
}

    .cmp-tbl td:not(:first-child) {
        text-align: center
    }

.cmp-tbl tr.hl td {
    background: rgba(45,212,191,.03);
    color: #f0f1f5
}

.cmp-tbl tr:last-child td {
    border-bottom: none
}

.cy {
    color: var(--teal);
    font-size: 1rem
}

.cn {
    color: #2e3348;
    font-size: .9rem
}

.cv {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--teal);
    font-size: .88rem
}

/* FAQ */
#faq {
    background: var(--bg);
    border-top: 1px solid var(--bd);
    padding: 72px 5%
}

.faq-inner {
    max-width: 680px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--bd)
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    cursor: pointer;
    gap: 14px;
    font-family: var(--font-display);
    font-size: .93rem;
    font-weight: 700;
    color: #f0f1f5;
    transition: color .15s;
}

    .faq-q:hover {
        color: var(--teal)
    }

.faq-ico {
    font-size: 1.1rem;
    color: #2e3348;
    flex-shrink: 0;
    transition: transform .25s
}

.faq-item.open .faq-ico {
    transform: rotate(45deg);
    color: var(--teal)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    font-size: .85rem;
    color: #9da3b4;
    line-height: 1.75;
    transition: max-height .32s ease,padding .3s;
}

.faq-item.open .faq-a {
    max-height: 600px;
    padding-bottom: 18px
}

/* FINAL CTA */
#final {
    position: relative;
    overflow: hidden;
    padding: 80px 5%;
    text-align: center;
    background: var(--bg2);
    border-top: 1px solid var(--bd);
}

    #final::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 80% at 50% 0%,rgba(45,212,191,.06),transparent);
        pointer-events: none;
    }

.fin-inner {
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

    .fin-inner h2 {
        font-size: clamp(2rem,4.5vw,3rem);
        font-weight: 800;
        color: #f0f1f5;
        margin-bottom: 14px;
    }

    .fin-inner p {
        color: #9da3b4;
        font-size: .95rem;
        line-height: 1.75;
        margin-bottom: 28px;
    }

.btn-final {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: #07080c;
    padding: 16px 36px;
    border-radius: 11px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: all .15s;
}

    .btn-final:hover {
        filter: brightness(1.08);
        transform: translateY(-1px);
        box-shadow: 0 10px 32px var(--teal-glow)
    }

    .btn-final.purple-final {
        background: linear-gradient(135deg,#5b34c8,#7c3aed);
        color: #fff;
        box-shadow: 0 4px 18px rgba(167,139,250,.2);
    }

        .btn-final.purple-final:hover {
            box-shadow: 0 10px 32px var(--purple-glow)
        }

.fin-alts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.fin-or {
    font-size: .7rem;
    color: #2e3348
}

.fin-ghost {
    color: #9da3b4;
    font-size: .8rem;
    text-decoration: none;
    border-bottom: 1px solid var(--bd2);
    padding-bottom: 1px;
    transition: color .15s;
}

    .fin-ghost:hover {
        color: var(--teal)
    }

.fin-note {
    font-size: .71rem;
    color: #2e3348;
    margin-top: 14px
}

/* MOBILE STICKY */
.mob-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 299;
    background: var(--surface);
    border-top: 1px solid var(--bd2);
    padding-top: 10px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: max(10px,env(safe-area-inset-bottom,10px));
    box-shadow: 0 -6px 24px rgba(0,0,0,.6);
    max-height: none;
    min-height: calc(68px + env(safe-area-inset-bottom,0px));
}

.ms-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
    height: 48px;
}

.ms-price {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    line-height: 1
}

.ms-now {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    color: #f0f1f5;
    line-height: 1.2
}

.ms-per {
    font-size: .58rem;
    color: #4a5068;
    line-height: 1.2
}

.ms-link {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    color: #07080c;
    border-radius: 9px;
    padding: 0 16px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .85rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 48px;
    -webkit-tap-highlight-color: transparent;
}

    .ms-link:hover {
        filter: brightness(1.08)
    }

    .ms-link.purple-sticky {
        background: linear-gradient(135deg,#5b34c8,#7c3aed);
        color: #fff;
    }

/* FOOTER */
footer {
    padding: 22px 5%;
    border-top: 1px solid var(--bd);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: var(--bg);
    font-size: .72rem;
    color: #2e3348;
    position: relative;
    z-index: 1;
}

    footer a {
        color: #2e3348;
        text-decoration: none;
        transition: color .15s
    }

        footer a:hover {
            color: #9da3b4
        }

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease,transform .6s ease
}

    .reveal.on {
        opacity: 1;
        transform: translateY(0)
    }

/* RESPONSIVE */
@media(max-width:1000px) {
    #hero {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .buy-card {
        position: static
    }

    #pricingPlans {
        grid-template-columns: 1fr !important;
        max-width: 440px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .test-grid {
        grid-template-columns: 1fr
    }

    .nav-links {
        display: none
    }

    .ham {
        display: flex
    }

    .step {
        grid-template-columns: 52px 1fr
    }
}

@media(max-width:999px) and (min-width:769px) {
    #hero {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .buy-card {
        position: static;
        max-width: 520px;
        margin: 0 auto
    }
}

@media(max-width:900px) {
    .nav-price {
        display: none
    }
}

@media(max-width:860px) {
    .mm-branches {
        grid-template-columns: repeat(2,1fr)
    }

    #pricingPlans {
        grid-template-columns: 1fr !important;
        max-width: 440px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@@media(max-width:768px) {
    .mob-sticky {
        display: block
    }

    body {
        padding-bottom: calc(78px + env(safe-area-inset-bottom,0px))
    }

    .nav-cta {
        display: none
    }

    #proof-bar {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }

        #proof-bar::-webkit-scrollbar {
            display: none
        }

    .pb {
        padding: 6px 14px
    }

    .step {
        grid-template-columns: 44px 1fr
    }

    .step-body {
        padding: 0 0 36px 20px
    }

    .step-num {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        font-size: .7rem
    }

    .practice-split {
        grid-template-columns: 1fr
    }

    .mm-branches {
        grid-template-columns: repeat(2,1fr)
    }

    .rw {
        flex-wrap: wrap;
        gap: 6px
    }

    .rw-topic {
        width: 100%;
        order: 2
    }

    .rw-status {
        order: 3
    }

    #video .sec-inner {
        padding: 0
    }

    .yt-wrap {
        border-radius: 10px
    }

    .faq-item.open .faq-a {
        max-height: 600px
    }
}

@media(max-width:700px) {
    h1 br {
        display: none
    }

    .practice-split {
        grid-template-columns: 1fr
    }
}

@media(max-width:600px) {
    .practice-split {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    h1 {
        font-size: 1.85rem
    }

    .sec {
        padding: 48px 4%
    }

    #hero {
        padding: 28px 4% 24px
    }

    .hero-cta {
        max-width: 100%
    }

    .compare-strip {
        flex-direction: column
    }

        .compare-strip .cmp-vs {
            border: none;
            border-top: 1px solid var(--bd);
            border-bottom: 1px solid var(--bd);
            padding: 6px 0;
            text-align: center;
        }

    #pricingPlans {
        padding: 0 4% !important;
        max-width: 100% !important
    }

    .ms-price {
        transform: scale(.82);
        transform-origin: left center;
    }

    .ms-link {
        font-size: .82rem;
        border-radius: 9px
    }

    .bc {
        font-size: .64rem;
        gap: 4px
    }

    .system-chips {
        display: none
    }

    .step {
        grid-template-columns: 38px 1fr
    }

    .step-body {
        padding: 0 0 32px 16px
    }

    .step-num {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        font-size: .65rem
    }

    .step:not(:last-child) .step-spine::after {
        left: 17px
    }

    .ri-name {
        width: 80px;
        font-size: .68rem
    }

    .rw-week {
        width: 40px;
        font-size: .72rem
    }

    .gate-row {
        flex-wrap: wrap;
        gap: 5px
    }

    .gate-text {
        width: 100%;
        order: 2
    }

    .gate-badge {
        order: 3;
        align-self: flex-start
    }

    .mm-branches {
        grid-template-columns: 1fr 1fr
    }

    .test-grid {
        grid-template-columns: 1fr
    }

    .pb-n {
        font-size: 1rem
    }

    .pb-l {
        font-size: .65rem
    }

    .faq-inner {
        padding: 0
    }

    .video-sub {
        font-size: .85rem
    }
}

@media(max-width:360px) {
    h1 {
        font-size: 1.6rem
    }

    nav {
        padding: 0 3%
    }

    .sec {
        padding: 36px 3%
    }

    #hero {
        padding: 22px 3% 20px
    }

    .step {
        grid-template-columns: 34px 1fr
    }

    .step-body {
        padding: 0 0 28px 12px
    }

    .step-num {
        width: 32px;
        height: 32px;
        font-size: .6rem
    }

    .step:not(:last-child) .step-spine::after {
        left: 15px
    }
}

@media(max-width:999px) and (min-width:601px) {
    #hero {
        padding: 48px 5% 40px;
        gap: 32px
    }

    .h-sub {
        max-width: 100%
    }
}

.sec-inner, .journey, .step, .step-body, .step-mock, .mock-body, .practice-split, .roadmap-weeks, .gate-wrap, .readiness-items {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

@media(min-width:1600px) {
    #hero {
        max-width: 1440px;
        gap: 80px;
    }

    .sec-inner {
        max-width: 1320px;
    }

    #pricingPlans {
        max-width: 1140px !important;
    }

    .cmp-tbl-wrap {
        max-width: 1320px;
    }

    h1 {
        font-size: clamp(2.6rem, 4vw, 4.4rem);
    }
}

@media(min-width:2000px) {
    #hero {
        max-width: 1640px;
    }

    .sec-inner {
        max-width: 1500px;
    }

    #pricingPlans {
        max-width: 1300px !important;
    }
}

