:root {
    --bg: #090611;
    --bg-soft: #100b1c;
    --panel: rgba(255,255,255,.055);
    --panel-strong: rgba(255,255,255,.085);
    --border: rgba(255,255,255,.11);

    --text: #ffffff;
    --muted: #aaa6ba;

    --purple: #8257ff;
    --purple-light: #a683ff;
    --blue: #5688ff;
    --pink: #e653c7;
    --cyan: #42d9e8;

    --radius: 26px;
    --radius-small: 18px;

    --shadow: 0 30px 80px rgba(0,0,0,.32);

    --shell: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(105,65,220,.12), transparent 28%),
        linear-gradient(180deg, #090611 0%, #0c0815 55%, #090611 100%);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}


/* HEADER */

.site-header {
    position: relative;
    z-index: 30;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: rgba(9,6,17,.80);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    width: 245px;
    height: auto;
    display: block;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: .92rem;
    font-weight: 650;
    transition: .2s ease;
}

.desktop-nav a:hover {
    color: white;
}

.desktop-nav .nav-cta {
    color: white;
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--purple), #6637e8);
    box-shadow: 0 12px 35px rgba(130,87,255,.25);
}


/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 96px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.hero-glow-one {
    width: 480px;
    height: 480px;
    background: rgba(119,71,255,.19);
    top: -160px;
    right: -100px;
}

.hero-glow-two {
    width: 360px;
    height: 360px;
    background: rgba(223,65,202,.12);
    bottom: -150px;
    left: -100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-pill,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .73rem;
    font-weight: 850;
    color: #c5b5ff;
}

.hero-pill {
    text-transform: none;
    letter-spacing: 0;
    font-size: .82rem;
    border: 1px solid rgba(177,147,255,.2);
    background: rgba(126,81,255,.09);
    border-radius: 999px;
    padding: 8px 14px;
}

.hero h1 {
    margin: 25px 0 20px;
    max-width: 790px;
    font-size: clamp(3.1rem, 7vw, 6.6rem);
    line-height: .94;
    letter-spacing: -.065em;
}

.hero h1 span {
    display: block;
    background: linear-gradient(90deg, #ffffff 0%, #a88cff 45%, #6d42ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 690px;
    color: #beb9ca;
    font-size: clamp(1.05rem, 1.7vw, 1.27rem);
    line-height: 1.72;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 999px;
    padding: 13px 24px;
    text-decoration: none;
    border: 1px solid transparent;
    font-weight: 800;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: white;
    background: linear-gradient(135deg, #8b60ff, #6533e6);
    box-shadow: 0 16px 42px rgba(121,74,242,.3);
}

.button-secondary {
    color: white;
    border-color: var(--border);
    background: rgba(255,255,255,.04);
}

.button-light {
    color: #251348;
    background: white;
}

.hero-note {
    margin-top: 20px;
    color: #9f99ae;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .93rem;
}

.hero-note span {
    color: #6ee7b7;
}


/* HERO ORBIT */

.hero-visual {
    min-height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-orbit {
    position: relative;
    width: min(470px, 100%);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(159,125,255,.17);
}

.orbit-ring-one {
    inset: 5%;
}

.orbit-ring-two {
    inset: 19%;
    border-color: rgba(255,255,255,.11);
}

.ai-core {
    width: 190px;
    aspect-ratio: 1;
    border-radius: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 35% 25%, rgba(255,255,255,.2), transparent 30%),
        linear-gradient(145deg, #733fff, #3d1e8f);
    box-shadow:
        0 0 90px rgba(110,62,255,.35),
        inset 0 1px 0 rgba(255,255,255,.18);
    transform: rotate(-6deg);
}

.ai-core strong {
    font-size: 4.6rem;
    line-height: .9;
    letter-spacing: -.08em;
}

.core-small {
    font-size: .55rem;
    letter-spacing: .18em;
    color: #d9d0ff;
    margin: 10px 0;
}

.orbit-card {
    position: absolute;
    width: 170px;
    padding: 15px 17px;
    border-radius: 18px;
    background: rgba(19,13,34,.9);
    border: 1px solid rgba(255,255,255,.11);
    box-shadow: 0 18px 50px rgba(0,0,0,.26);
    backdrop-filter: blur(16px);
}

.orbit-card span {
    font-size: 1.25rem;
    display: block;
    margin-bottom: 4px;
}

.orbit-card strong,
.orbit-card small {
    display: block;
}

.orbit-card strong {
    font-size: .95rem;
}

.orbit-card small {
    color: var(--muted);
}

.orbit-card-one {
    top: 2%;
    left: 7%;
}

.orbit-card-two {
    right: -3%;
    top: 42%;
}

.orbit-card-three {
    bottom: 3%;
    left: 9%;
}


/* STATS */

.stats-strip {
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.018);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.stats-grid > div {
    min-height: 125px;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-right: 1px solid rgba(255,255,255,.07);
}

.stats-grid > div:last-child {
    border-right: 0;
}

.stats-grid strong {
    font-size: 2rem;
    line-height: 1;
}

.stats-grid span {
    color: var(--muted);
    margin-top: 10px;
    font-size: .85rem;
}


/* SECTIONS */

.section {
    padding: 110px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.section-heading-center {
    text-align: center;
    margin-inline: auto;
}

.section-heading h2 {
    margin: 12px 0 18px;
    font-size: clamp(2.35rem, 5vw, 4.6rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
}


/* FEATURES */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 17px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    min-height: 275px;
    padding: 27px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--panel);
}

.feature-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    top: -70px;
    right: -70px;
    filter: blur(20px);
    opacity: .18;
}

.feature-purple::after { background: var(--purple); }
.feature-blue::after   { background: var(--blue); }
.feature-pink::after   { background: var(--pink); }
.feature-cyan::after   { background: var(--cyan); }

.feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin: 50px 0 8px;
}

.feature-card p {
    color: var(--muted);
    margin: 0;
}


/* LESSONS */

.lessons-section {
    background:
        linear-gradient(180deg, rgba(255,255,255,.02), transparent),
        radial-gradient(circle at 50% 10%, rgba(116,69,255,.08), transparent 35%);
}

.lesson-list {
    display: grid;
    gap: 13px;
    max-width: 980px;
    margin: 0 auto;
}

.lesson-card {
    min-height: 150px;
    display: grid;
    grid-template-columns: 88px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    border-radius: 25px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.035);
    transition: .22s ease;
}

.lesson-card:hover {
    transform: translateY(-2px);
    border-color: rgba(152,113,255,.32);
    background: rgba(255,255,255,.05);
}

.lesson-number {
    font-size: 2.15rem;
    font-weight: 900;
    letter-spacing: -.07em;
    color: #796ba0;
}

.lesson-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8f899d;
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.free-badge {
    color: #bbf7d0;
    background: rgba(34,197,94,.12);
    border: 1px solid rgba(34,197,94,.18);
    border-radius: 999px;
    padding: 3px 8px;
}

.locked-badge {
    color: #d5c9ff;
    background: rgba(139,92,246,.11);
    border: 1px solid rgba(139,92,246,.18);
    border-radius: 999px;
    padding: 3px 8px;
}

.lesson-content h3 {
    margin: 7px 0 5px;
    font-size: 1.34rem;
}

.lesson-content p {
    margin: 0;
    color: var(--muted);
}

.lesson-arrow {
    width: 49px;
    height: 49px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    background: white;
    color: #24123f;
    font-size: 1.35rem;
    font-weight: 900;
}

.lesson-lock {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}

.coming-label {
    color: #8e879a;
    font-size: .8rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .09em;
}

.lesson-coming:not(.lesson-locked) {
    opacity: .68;
}


/* JOURNEY */

.journey-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 15px;
}

.journey-card {
    min-height: 230px;
    border-radius: var(--radius);
    padding: 26px;
    background: var(--panel);
    border: 1px solid var(--border);
}

.journey-step {
    color: #a78bfa;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.journey-card h3 {
    font-size: 1.55rem;
    margin: 48px 0 7px;
}

.journey-card p {
    color: var(--muted);
    margin: 0;
}

.journey-arrow {
    color: #615a6e;
    font-size: 1.4rem;
}


/* CTA */

.cta-section {
    padding: 30px 0 110px;
}

.cta-card {
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    padding: 75px 35px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,.17), transparent 20%),
        linear-gradient(135deg, #7f4cff 0%, #5925c8 55%, #3e198b 100%);
    box-shadow: 0 30px 90px rgba(77,36,162,.3);
}

.cta-card .eyebrow {
    color: #e3d9ff;
}

.cta-card h2 {
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -.055em;
    margin: 17px 0;
}

.cta-card p {
    color: #ded2ff;
}


/* FOOTER */

.site-footer {
    padding: 46px 0 120px;
    border-top: 1px solid rgba(255,255,255,.07);
    background: #07050c;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 35px;
    align-items: center;
}

.footer-tagline {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: .83rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 19px;
}

.footer-links a,
.text-button {
    font: inherit;
    font-size: .82rem;
    color: #aaa4b5;
    text-decoration: none;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.footer-links a:hover,
.text-button:hover {
    color: white;
}

.footer-copy {
    color: #777181;
    font-size: .8rem;
}


/* MODALS */

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(4,2,8,.82);
    backdrop-filter: blur(10px);
}

.modal-backdrop.is-open {
    display: flex;
}

.modal-card {
    width: min(760px,100%);
    max-height: min(820px, calc(100vh - 40px));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 27px;
    border: 1px solid rgba(255,255,255,.13);
    background: #110c1c;
    box-shadow: var(--shadow);
}

.modal-header {
    padding: 25px 27px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.modal-header h2 {
    margin: 4px 0 0;
    font-size: 2rem;
}

.modal-close {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.05);
    color: white;
    font-size: 1.7rem;
    cursor: pointer;
}

.modal-body {
    overflow: auto;
    padding: 25px 27px 35px;
    color: #beb8c8;
}

.modal-body h3 {
    margin-top: 27px;
    color: white;
}

.modal-body a {
    color: #b89dff;
}


/* MOBILE BOTTOM NAV */

.mobile-bottom-nav {
    display: none;
}


/* SIMPLE / LESSON */

.simple-page,
.lesson-shell {
    min-height: 70vh;
    padding: 80px 0 120px;
}

.simple-page h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    letter-spacing: -.05em;
    line-height: 1;
}

.simple-page p {
    color: var(--muted);
    max-width: 660px;
    font-size: 1.1rem;
}

.lesson-layout {
    max-width: 920px;
}

.lesson-progress-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    color: var(--muted);
}

.lesson-progress-top a {
    text-decoration: none;
}

.lesson-placeholder {
    border-radius: 30px;
    padding: clamp(28px, 6vw, 65px);
    background: var(--panel);
    border: 1px solid var(--border);
}

.lesson-placeholder h1 {
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    line-height: .98;
    letter-spacing: -.06em;
}

.lesson-intro {
    font-size: 1.2rem;
    color: var(--muted);
}

.lesson-dev-note,
.locked-panel {
    margin-top: 45px;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.035);
}

.locked-big {
    font-size: 2rem;
}


/* MOBILE */

@media (max-width: 900px) {

    .desktop-nav {
        display: none;
    }

    .header-inner {
        min-height: 76px;
    }

    .brand-logo {
        width: 205px;
    }

    .hero {
        padding-top: 56px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 14vw, 5.5rem);
    }

    .hero-visual {
        min-height: 430px;
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .stats-grid > div {
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .feature-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .journey-grid {
        grid-template-columns: 1fr 1fr;
    }

    .journey-arrow {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        z-index: 200;

        min-height: 68px;
        padding: 7px 8px;

        display: grid;
        grid-template-columns: repeat(5,1fr);
        align-items: center;

        border-radius: 23px;
        border: 1px solid rgba(255,255,255,.12);
        background: rgba(14,9,25,.93);
        box-shadow: 0 20px 55px rgba(0,0,0,.45);
        backdrop-filter: blur(22px);
    }

    .bottom-nav-item {
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 2px;
        text-decoration: none;
        color: #aaa4b8;
        font-size: .62rem;
        font-weight: 700;
    }

    .bottom-icon {
        font-size: 1.2rem;
        line-height: 1.1;
    }

    .bottom-nav-primary {
        width: 54px;
        height: 54px;
        justify-self: center;
        border-radius: 18px;
        background: linear-gradient(145deg, #8d60ff, #6030da);
        color: white;
        transform: translateY(-14px);
        box-shadow: 0 13px 32px rgba(111,60,234,.4);
    }

    .bottom-nav-primary span:last-child {
        font-size: .56rem;
    }

    body {
        padding-bottom: 85px;
    }

    .site-footer {
        padding-bottom: 60px;
    }
}

@media (max-width: 640px) {

    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .header-inner {
        justify-content: center;
    }

    .brand-logo {
        width: min(230px,80vw);
    }

    .hero {
        padding: 45px 0 68px;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 390px;
        margin-top: 10px;
    }

    .ai-orbit {
        width: 360px;
        max-width: 100%;
    }

    .ai-core {
        width: 145px;
        border-radius: 36px;
    }

    .ai-core strong {
        font-size: 3.5rem;
    }

    .orbit-card {
        width: 145px;
        padding: 12px 13px;
    }

    .orbit-card-one {
        top: 0;
        left: 0;
    }

    .orbit-card-two {
        right: 0;
    }

    .orbit-card-three {
        left: 0;
    }

    .stats-grid > div {
        padding: 20px 10px;
        min-height: 105px;
    }

    .stats-grid strong {
        font-size: 1.6rem;
    }

    .stats-grid span {
        font-size: .72rem;
        text-align: center;
    }

    .section {
        padding: 78px 0;
    }

    .feature-grid,
    .journey-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 220px;
    }

    .feature-card h3 {
        margin-top: 35px;
    }

    .lesson-card {
        grid-template-columns: 50px 1fr;
        gap: 14px;
        padding: 20px;
    }

    .lesson-number {
        align-self: start;
        font-size: 1.45rem;
    }

    .lesson-action {
        grid-column: 2;
    }

    .lesson-arrow {
        width: 42px;
        height: 42px;
    }

    .cta-card {
        border-radius: 28px;
        padding: 52px 22px;
    }

    .modal-backdrop {
        padding: 10px;
    }

    .modal-card {
        max-height: calc(100vh - 20px);
        border-radius: 22px;
    }
}


/* ============================================================
   LEARNINGAI BRIGHT THEME OVERRIDE
   ============================================================ */

:root {
    --bg: #fffaf4;
    --bg-soft: #fff4e8;

    --panel: #ffffff;
    --panel-strong: #ffffff;

    --border: #e8ddf8;

    --text: #271a3b;
    --muted: #70667c;

    --purple: #7c3aed;
    --purple-light: #a855f7;

    --blue: #4f7df3;
    --pink: #ec4899;
    --cyan: #21bfc6;

    --yellow: #ffca58;
    --orange: #ff8e55;
    --green: #56c596;

    --shadow:
        0 24px 60px rgba(92, 52, 132, .12);
}


body {
    background:
        radial-gradient(
            circle at 5% 5%,
            rgba(255, 202, 88, .24),
            transparent 25%
        ),
        radial-gradient(
            circle at 95% 7%,
            rgba(168, 85, 247, .13),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            #fffdf9 0%,
            #fffaf4 46%,
            #fff8ef 100%
        );

    color: var(--text);
}


/* HEADER */

.site-header {
    background:
        rgba(255,255,255,.94);

    border-bottom:
        1px solid rgba(91,62,120,.10);

    box-shadow:
        0 6px 28px rgba(65,42,89,.045);

    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 94px;
}

.brand-logo {
    width: 250px;
    height: auto;
    display: block;

    /*
      The supplied logo itself uses a dark background.
      This gives it room to breathe inside the bright UI.
    */
    border-radius: 9px;
}

.desktop-nav a {
    color: #62556f;
}

.desktop-nav a:hover {
    color: var(--purple);
}

.desktop-nav .nav-cta {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #9258ff,
            #7137e8
        );

    box-shadow:
        0 12px 30px rgba(124,58,237,.22);
}


/* HERO */

.hero {
    padding: 75px 0 84px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.75),
            rgba(255,247,235,.72)
        );

    border-bottom:
        1px solid #efe5f6;
}

.hero-sun {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(45px);
}

.hero-sun-one {
    width: 330px;
    height: 330px;

    top: -150px;
    left: -100px;

    background:
        rgba(255,203,91,.27);
}

.hero-sun-two {
    width: 370px;
    height: 370px;

    top: -80px;
    right: -110px;

    background:
        rgba(172,111,255,.16);
}

.hero-grid {
    grid-template-columns:
        minmax(0, .92fr)
        minmax(0, 1.08fr);

    gap: 56px;
}

.hero-pill {
    color: #6c37cb;

    border:
        1px solid #d9c7fb;

    background:
        #f3ebff;
}

.hero h1 {
    color: #28173d;

    max-width: 680px;
}

.hero h1 span {
    background:
        linear-gradient(
            90deg,
            #7235dc 0%,
            #ad4fcc 46%,
            #ef6d85 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-lead {
    color: #655a70;
}

.hero-note {
    color: #6f6578;
}

.hero-note span {
    color: #23996e;
}


/* BUTTONS */

.button-primary {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #8851f5,
            #7334d9
        );

    box-shadow:
        0 16px 35px rgba(119,58,218,.22);
}

.button-secondary {
    color: #5a376e;

    border-color: #ded1ea;

    background: #ffffff;

    box-shadow:
        0 10px 28px rgba(64,45,83,.06);
}

.button-secondary:hover {
    background: #fbf7ff;
}


/* HERO PHOTO */

.hero-visual {
    min-height: 510px;
}

.hero-photo-wrap {
    position: relative;

    width: 100%;
    max-width: 720px;

    padding: 10px;

    border-radius: 36px;

    background:
        linear-gradient(
            135deg,
            #fff3c8,
            #f0dcff
        );

    box-shadow:
        0 28px 70px rgba(76,46,108,.15);
}

.hero-photo {
    display: block;

    width: 100%;
    height: 500px;

    object-fit: cover;

    border-radius: 28px;
}

.hero-photo-badge {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 13px 16px;

    border-radius: 18px;

    background:
        rgba(255,255,255,.94);

    color: #322044;

    border:
        1px solid rgba(78,47,105,.1);

    box-shadow:
        0 15px 35px rgba(72,45,97,.14);

    backdrop-filter: blur(14px);
}

.hero-photo-badge > span {
    font-size: 1.35rem;
}

.hero-photo-badge strong,
.hero-photo-badge small {
    display: block;
}

.hero-photo-badge strong {
    font-size: .86rem;
}

.hero-photo-badge small {
    margin-top: 2px;

    color: #75697e;

    font-size: .7rem;
}

.hero-photo-badge-one {
    left: -22px;
    bottom: 56px;
}

.hero-photo-badge-two {
    right: -18px;
    top: 50px;
}


/* STATS */

.stats-strip {
    background: #ffffff;

    border-top:
        1px solid #eee3f4;

    border-bottom:
        1px solid #eee3f4;
}

.stats-grid > div {
    border-right:
        1px solid #eee7f3;
}

.stats-grid > div:nth-child(1) strong {
    color: #7c3aed;
}

.stats-grid > div:nth-child(2) strong {
    color: #ed6d77;
}

.stats-grid > div:nth-child(3) strong {
    color: #16a085;
}

.stats-grid > div:nth-child(4) strong {
    color: #e59425;
}

.stats-grid span {
    color: #756c7d;
}


/* GENERIC SECTIONS */

.section-heading h2 {
    color: #2d1c40;
}

.section-heading p {
    color: #756a80;
}

.eyebrow {
    color: #7c3aed;
}


/* FEATURE CARDS */

.feature-card {
    background: #ffffff;

    border:
        1px solid #ece2f3;

    box-shadow:
        0 18px 40px rgba(75,46,100,.06);
}

.feature-card:nth-child(1) {
    background:
        linear-gradient(
            145deg,
            #fff7d7,
            #ffffff
        );
}

.feature-card:nth-child(2) {
    background:
        linear-gradient(
            145deg,
            #e9f5ff,
            #ffffff
        );
}

.feature-card:nth-child(3) {
    background:
        linear-gradient(
            145deg,
            #fff0f7,
            #ffffff
        );
}

.feature-card:nth-child(4) {
    background:
        linear-gradient(
            145deg,
            #e9fbf8,
            #ffffff
        );
}

.feature-icon {
    background: #ffffff;

    box-shadow:
        0 8px 20px rgba(67,42,90,.08);
}

.feature-card h3 {
    color: #332243;
}

.feature-card p {
    color: #74697d;
}


/* LESSON SECTION */

.lessons-section {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(132,81,246,.08),
            transparent 33%
        ),
        linear-gradient(
            180deg,
            #f9f5ff 0%,
            #fffaf4 100%
        );
}

.lesson-card {
    background: #ffffff;

    border:
        1px solid #e5d9ed;

    box-shadow:
        0 12px 32px rgba(71,43,95,.055);
}

.lesson-card:hover {
    border-color: #c9aef0;

    background: #fffdfd;

    box-shadow:
        0 18px 40px rgba(76,42,106,.09);
}

.lesson-number {
    color: #9b78cf;
}

.lesson-content h3 {
    color: #2c1c3b;
}

.lesson-content p {
    color: #74697d;
}

.lesson-meta {
    color: #81778a;
}

.free-badge {
    color: #16845f;

    background: #e7f8ef;

    border-color: #b9ead3;
}

.locked-badge {
    color: #7040be;

    background: #f0e7ff;

    border-color: #dac7f8;
}

.lesson-arrow {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #8552ef,
            #6d35ce
        );

    box-shadow:
        0 10px 24px rgba(120,62,219,.2);
}


/* HOW IT WORKS */

.journey-card {
    background: #ffffff;

    border:
        1px solid #eadff0;

    box-shadow:
        0 14px 34px rgba(68,42,92,.055);
}

.journey-card:nth-of-type(1) {
    background:
        linear-gradient(
            145deg,
            #fff9df,
            #fff
        );
}

.journey-card:nth-of-type(3) {
    background:
        linear-gradient(
            145deg,
            #edf5ff,
            #fff
        );
}

.journey-card:nth-of-type(5) {
    background:
        linear-gradient(
            145deg,
            #fff0f7,
            #fff
        );
}

.journey-card:nth-of-type(7) {
    background:
        linear-gradient(
            145deg,
            #ecfaf4,
            #fff
        );
}

.journey-step {
    color: #8852e6;
}

.journey-card h3 {
    color: #30203f;
}

.journey-card p {
    color: #74697c;
}

.journey-arrow {
    color: #b39bc7;
}


/* CTA */

.cta-section {
    background: #fffaf4;
}

.cta-card {
    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(255,255,255,.26),
            transparent 23%
        ),
        linear-gradient(
            120deg,
            #8950ef 0%,
            #b557d0 48%,
            #f17884 100%
        );

    box-shadow:
        0 28px 70px rgba(141,72,169,.22);
}

.button-light {
    color: #6d34b8;

    background: #ffffff;
}


/* FOOTER */

.site-footer {
    background: #ffffff;

    color: #4b3d58;

    border-top:
        1px solid #eee5f3;
}

.footer-tagline,
.footer-copy {
    color: #83798c;
}

.footer-links a,
.text-button {
    color: #75687f;
}

.footer-links a:hover,
.text-button:hover {
    color: #7134cc;
}


/* MODALS */

.modal-backdrop {
    background:
        rgba(45,29,57,.48);
}

.modal-card {
    background: #ffffff;

    color: #382a43;

    border:
        1px solid #eadff1;
}

.modal-header {
    border-bottom:
        1px solid #eee5f3;
}

.modal-header h2 {
    color: #31203f;
}

.modal-close {
    color: #4c365d;

    background: #f8f3fb;

    border:
        1px solid #e6d9ee;
}

.modal-body {
    color: #6f6379;
}

.modal-body h3 {
    color: #352541;
}


/* LESSON / ACCOUNT BASE */

.simple-page,
.lesson-shell {
    background:
        linear-gradient(
            180deg,
            #fffaf4,
            #fff
        );
}

.simple-page h1,
.lesson-placeholder h1 {
    color: #2c1a3d;
}

.simple-page p,
.lesson-intro {
    color: #716677;
}

.lesson-placeholder,
.lesson-dev-note,
.locked-panel {
    background: #ffffff;

    border:
        1px solid #e9deef;

    box-shadow:
        0 16px 40px rgba(67,39,91,.06);
}

.lesson-progress-top {
    color: #776b81;
}


/* MOBILE NAV */

@media (max-width: 900px) {

    .mobile-bottom-nav {
        background:
            rgba(255,255,255,.96);

        border:
            1px solid #e3d7ea;

        box-shadow:
            0 18px 45px rgba(71,45,92,.16);
    }

    .bottom-nav-item {
        color: #75687e;
    }

    .bottom-nav-primary {
        color: #ffffff;

        background:
            linear-gradient(
                145deg,
                #9259f4,
                #7135db
            );

        box-shadow:
            0 13px 30px rgba(112,58,211,.25);
    }

}


@media (max-width: 640px) {

    .header-inner {
        justify-content: center;
    }

    .brand-logo {
        width: min(245px, 82vw);
    }

    .hero {
        padding-top: 42px;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero h1 {
        color: #2b193d;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-photo-wrap {
        border-radius: 28px;
        padding: 7px;
    }

    .hero-photo {
        height: 360px;
        border-radius: 22px;
    }

    .hero-photo-badge {
        position: static;
        margin-top: 9px;
    }

    .hero-photo-badge-one {
        margin-right: 34px;
    }

    .hero-photo-badge-two {
        margin-left: 34px;
    }

}


/* ============================================================
   TYPOGRAPHY POLISH
   ============================================================ */

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    letter-spacing: 0;
}


/* HERO HEADLINE */

.hero h1 {
    font-size: clamp(3rem, 6.2vw, 6rem);

    line-height: 1.02;

    letter-spacing: -0.035em;

    font-weight: 800;
}


/* SECTION HEADLINES */

.section-heading h2 {
    font-size: clamp(2.25rem, 4.7vw, 4.2rem);

    line-height: 1.08;

    letter-spacing: -0.025em;

    font-weight: 780;
}


/* CTA HEADLINE */

.cta-card h2 {
    font-size: clamp(2.2rem, 4.6vw, 4.15rem);

    line-height: 1.08;

    letter-spacing: -0.025em;

    font-weight: 780;
}


/* LESSON PAGE HEADINGS */

.lesson-placeholder h1,
.simple-page h1 {
    line-height: 1.06;

    letter-spacing: -0.03em;

    font-weight: 780;
}


/* CARD HEADINGS */

.feature-card h3,
.lesson-content h3,
.journey-card h3 {
    line-height: 1.25;

    letter-spacing: -0.012em;

    font-weight: 750;
}


/* BODY COPY */

.hero-lead,
.section-heading p,
.feature-card p,
.lesson-content p,
.journey-card p,
.simple-page p,
.lesson-intro,
.modal-body {
    line-height: 1.7;

    letter-spacing: 0;
}


/* EYEBROWS */

.eyebrow {
    letter-spacing: .12em;
}


/* ============================================================
   FOOTER POLISH
   ============================================================ */

.site-footer {
    padding: 48px 0 120px;
}

.footer-inner {
    display: grid;

    grid-template-columns: 1fr auto;

    gap: 40px;

    align-items: start;
}

.footer-brand strong {
    font-size: 1rem;
}

.footer-legal {
    min-width: 220px;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 7px;
}

.footer-links {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 16px;
}

.footer-copy {
    margin-top: 7px;

    color: #83798c;

    font-size: .8rem;
}

.footer-dookun-link {
    color: #6f3ac8;

    font-size: .8rem;

    font-weight: 700;

    text-decoration: none;
}

.footer-dookun-link:hover {
    text-decoration: underline;
}


/* MOBILE */

@media (max-width: 900px) {

    .footer-inner {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .footer-legal {
        align-items: flex-start;
    }

    .footer-links {
        justify-content: flex-start;
    }

}


@media (max-width: 640px) {

    .hero h1 {
        font-size: clamp(3rem, 13vw, 4.7rem);

        line-height: 1.04;

        letter-spacing: -0.028em;
    }

    .section-heading h2 {
        font-size: clamp(2.15rem, 10vw, 3.45rem);

        line-height: 1.09;

        letter-spacing: -0.02em;
    }

    .cta-card h2 {
        font-size: clamp(2.1rem, 10vw, 3.25rem);

        line-height: 1.09;
    }

    .feature-card h3,
    .lesson-content h3,
    .journey-card h3 {
        line-height: 1.28;
    }

}
