:root {
    --bg: #09070f;
    --bg-soft: #100b19;
    --panel: rgba(26, 21, 33, 0.78);

    --text: #ffffff;
    --text-soft: #c6bece;
    --text-muted: #8f8599;

    --purple: #9b65dc;
    --purple-light: #c4a2f2;
    --purple-deep: #5c2c93;

    --border: rgba(255, 255, 255, 0.10);

    --page-width: 1440px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}


body {
    background: var(--bg);

    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    -webkit-font-smoothing: antialiased;
}


a {
    color: inherit;
    text-decoration: none;
}


img {
    display: block;
    max-width: 100%;
}


/* =====================================
   HEADER
===================================== */

.site-header {
    position: absolute;
    z-index: 50;

    top: 0;
    left: 0;

    width: 100%;
}


.nav-shell {
    width: min(
        calc(100% - 80px),
        var(--page-width)
    );

    min-height: 96px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 34px;
}


.site-logo-link {
    flex: 0 0 auto;
}


.site-logo {
    width: 172px;
    height: auto;
}


.primary-navigation {
    display: flex;
    align-items: center;

    gap: 25px;
}


.primary-navigation a {
    position: relative;

    color: #d7d0df;

    font-size: 14px;
    font-weight: 500;

    white-space: nowrap;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}


.primary-navigation a:hover {
    color: #ffffff;
}


.primary-navigation a[aria-current="page"] {
    color: #ffffff;
}


.primary-navigation a[aria-current="page"]:not(.nav-cta)::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -10px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(190, 137, 235, 0.9),
            transparent
        );
}


.nav-sign-in {
    margin-left: 7px;
}


.nav-cta {
    padding: 12px 19px;

    border:
        1px solid
        rgba(175, 114, 237, 0.45);

    border-radius: 8px;

    background:
        rgba(118, 67, 177, 0.12);
}


.nav-cta:hover,
.nav-cta[aria-current="page"] {
    border-color: #a66ee2;

    background:
        rgba(118, 67, 177, 0.23);
}


.menu-toggle {
    display: none;

    position: relative;

    width: 44px;
    height: 44px;

    padding: 10px;

    border: 0;

    background: transparent;

    cursor: pointer;
}


.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    border-radius: 10px;

    background: #ffffff;

    transform-origin: center;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.menu-toggle.is-open span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}


.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}


.menu-toggle.is-open span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =====================================
   HERO
===================================== */

.hero {
    position: relative;

    min-height: 930px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 77% 35%,
            rgba(111, 53, 171, 0.22),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 32%,
            rgba(78, 41, 126, 0.18),
            transparent 34%
        ),
        #09070f;
}


.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(9, 7, 15, 1) 0%,
            rgba(9, 7, 15, 0.94) 38%,
            rgba(9, 7, 15, 0.55) 72%,
            rgba(9, 7, 15, 0.8) 100%
        );

    pointer-events: none;
}


.hero-background {
    position: absolute;

    inset: 0;

    opacity: 0.35;

    background-image:
        linear-gradient(
            rgba(8, 5, 12, 0.2),
            rgba(8, 5, 12, 0.2)
        ),
        url("/site-v2/assets/images/hero-practitioner.jpg");

    background-size: cover;

    background-position:
        center right;

    mix-blend-mode: screen;
}


.hero-shell {
    position: relative;
    z-index: 5;

    width: min(
        calc(100% - 80px),
        var(--page-width)
    );

    min-height: 930px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(480px, 1.05fr);

    align-items: center;

    gap: 90px;

    padding:
        160px 0
        105px;
}


.hero-copy {
    max-width: 720px;
}


.eyebrow {
    margin:
        0 0
        19px;

    color: var(--purple-light);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.2px;

    line-height: 1.5;
}


.hero h1 {
    margin: 0;

    font-size:
        clamp(
            52px,
            5.2vw,
            82px
        );

    line-height: 0.99;

    letter-spacing: -3.8px;

    font-weight: 600;
}


.hero h1 span {
    color: #ffffff;
}


.hero h1 strong {
    display: block;

    margin-top: 13px;

    color: #cbb9e7;

    font-weight: 400;
}


.hero-intro {
    max-width: 680px;

    margin:
        34px 0
        0;

    color: var(--text-soft);

    font-size: 20px;

    line-height: 1.65;
}


.hero-benefit {
    margin:
        14px 0
        0;

    color: #ffffff;

    font-size: 20px;

    line-height: 1.5;

    font-weight: 500;
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;
}


.button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding:
        0 24px;

    border-radius: 9px;

    font-size: 15px;
    font-weight: 650;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


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


.button-primary {
    background:
        linear-gradient(
            135deg,
            #7950b7,
            #a165de
        );

    box-shadow:
        0 16px 42px
        rgba(
            110,
            64,
            166,
            0.25
        );
}


.button-secondary {
    border:
        1px solid
        rgba(
            180,
            125,
            232,
            0.45
        );

    background:
        rgba(
            40,
            27,
            51,
            0.44
        );
}


.button-secondary:hover {
    border-color:
        #a771da;

    background:
        rgba(
            74,
            45,
            98,
            0.45
        );
}


.human-line {
    margin-top: 35px;

    display: flex;
    align-items: flex-start;

    gap: 13px;

    max-width: 610px;
}


.human-line-mark {
    width: 30px;
    height: 1px;

    margin-top: 11px;

    flex: 0 0 auto;

    background:
        var(--purple);
}


.human-line p {
    margin: 0;

    color: #94899e;

    font-size: 14px;

    line-height: 1.6;
}


/* =====================================
   HERO VISUAL
===================================== */

.hero-visual {
    position: relative;

    min-height: 610px;

    perspective: 1200px;
}


.visual-orbit {
    position: absolute;

    width: 530px;
    height: 530px;

    left: 50%;
    top: 50%;

    transform:
        translate(
            -50%,
            -50%
        );

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(
                138,
                79,
                202,
                0.18
            ),
            rgba(
                84,
                44,
                134,
                0.05
            ) 48%,
            transparent 70%
        );

    filter: blur(3px);
}


.workspace-card {
    position: absolute;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.11
        );

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(
                37,
                28,
                46,
                0.88
            ),
            rgba(
                17,
                13,
                22,
                0.73
            )
        );

    box-shadow:
        0 30px 80px
        rgba(
            0,
            0,
            0,
            0.40
        );

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}


.workspace-main {
    width: 360px;

    right: 9%;
    top: 145px;

    padding: 29px;

    transform:
        rotateY(-6deg)
        rotateX(2deg);
}


.workspace-progress {
    width: 245px;

    left: 2%;
    top: 42px;

    padding: 23px;
}


.workspace-assessment {
    width: 285px;

    right: 0;
    top: 12px;

    padding: 22px;
}


.workspace-next {
    width: 260px;

    left: 10%;
    bottom: 44px;

    padding: 22px;
}


.card-label {
    margin:
        0 0
        10px;

    color:
        #a98ad0;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.6px;
}


.workspace-card h3 {
    margin: 0;

    font-size: 28px;
}


.workspace-card h4 {
    margin:
        4px 0
        14px;

    font-size: 20px;
}


.muted {
    margin:
        5px 0
        18px;

    color:
        #81788a;

    font-size: 13px;
}


.tag-row,
.small-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}


.tag-row span,
.small-tags span {
    padding:
        7px 10px;

    border-radius: 7px;

    background:
        rgba(
            133,
            77,
            189,
            0.14
        );

    color:
        #cdbce0;

    font-size: 11px;
}


.mini-divider {
    height: 1px;

    margin:
        23px 0;

    background:
        rgba(
            255,
            255,
            255,
            0.08
        );
}


.signal-text {
    margin: 0;

    color:
        #b8aebe;

    font-size: 13px;

    line-height: 1.55;
}


.metric {
    display: flex;
    justify-content:
        space-between;
    align-items: center;

    margin-top: 15px;

    color:
        #bbb1c5;
}


.metric strong {
    color:
        #c9a4f5;

    font-size: 26px;
}


.progress-line {
    height: 7px;

    margin-top: 17px;

    border-radius: 30px;

    background:
        rgba(
            255,
            255,
            255,
            0.07
        );

    overflow: hidden;
}


.progress-line span {
    display: block;

    width: 78%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #64379f,
            #ad6bea
        );
}


.workspace-next p:last-child {
    margin:
        8px 0 0;

    color:
        #bbb0c4;

    line-height: 1.5;
}


.hero-philosophy {
    position: absolute;
    z-index: 6;

    left: 50%;
    bottom: 38px;

    transform:
        translateX(-50%);

    width: min(
        calc(100% - 80px),
        var(--page-width)
    );

    color:
        #675c70;

    font-size: 13px;
}


/* =====================================
   JOURNEY PREVIEW
===================================== */

.journey-preview {
    padding:
        120px 0
        135px;

    background:
        linear-gradient(
            180deg,
            #0a0710,
            #0d0914
        );

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.04
        );
}


.section-shell {
    width: min(
        calc(100% - 80px),
        1180px
    );

    margin: 0 auto;

    text-align: center;
}


.section-shell h2 {
    max-width: 850px;

    margin:
        0 auto;

    font-size:
        clamp(
            39px,
            4.2vw,
            62px
        );

    line-height: 1.06;

    letter-spacing: -2.5px;

    font-weight: 500;
}


.section-intro {
    max-width: 720px;

    margin:
        25px auto
        0;

    color:
        #a89fae;

    font-size: 18px;

    line-height: 1.65;
}


.journey-row {
    margin-top: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 19px;
}


.journey-item {
    width: 160px;

    min-height: 110px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 10px;

    padding: 20px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

    border-radius: 16px;

    background:
        rgba(
            255,
            255,
            255,
            0.026
        );
}


.journey-item span {
    color:
        #7d629a;

    font-size: 11px;

    letter-spacing: 1.4px;
}


.journey-item strong {
    font-size: 16px;

    font-weight: 550;
}


.journey-arrow {
    color:
        #5e496f;

    font-size: 20px;
}


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

.site-footer {
    position: relative;

    overflow: hidden;

    padding:
        130px 0
        0;

    background:
        linear-gradient(
            180deg,
            #09070f 0%,
            #10051d 58%,
            #160621 100%
        );
}


.footer-glow {
    position: absolute;

    left: 50%;
    bottom: -205px;

    width: 1150px;
    height: 440px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(168, 87, 255, 0.33) 0%,
            rgba(94, 30, 151, 0.16) 32%,
            transparent 70%
        );

    filter:
        blur(4px);
}


.footer-glow::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 185px;

    width: 1700px;
    height: 2px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(154, 74, 228, 0.18),
            rgba(214, 154, 255, 0.95),
            rgba(154, 74, 228, 0.18),
            transparent
        );

    box-shadow:
        0 0 28px
        rgba(168, 82, 244, 0.55);
}


.footer-shell {
    position: relative;
    z-index: 5;

    width: min(
        calc(100% - 80px),
        var(--page-width)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(260px, 0.9fr)
        minmax(520px, 1.1fr);

    gap: 110px;

    padding-bottom: 115px;
}


.footer-logo-link {
    display: inline-block;
}


.footer-logo {
    width: 220px;
}


.footer-tagline {
    margin:
        18px 0
        0;

    color: #c8bdd1;

    font-size: 15px;
}


.footer-brand-copy {
    max-width: 430px;

    margin:
        22px 0
        0;

    color: #817787;

    font-size: 14px;

    line-height: 1.7;
}


.footer-links {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 40px;
}


.footer-column h3 {
    margin:
        0 0
        20px;

    color: #8c6eaa;

    font-size: 11px;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}


.footer-column a {
    display: block;

    margin:
        0 0
        14px;

    color: #c9c1cf;

    font-size: 14px;

    line-height: 1.45;
}


.footer-column a:hover {
    color: #ffffff;
}


.footer-bottom {
    position: relative;
    z-index: 5;

    width: min(
        calc(100% - 80px),
        var(--page-width)
    );

    margin: 0 auto;

    display: flex;
    justify-content: space-between;

    gap: 50px;

    padding:
        25px 0
        34px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.07);

    color: #766d7d;

    font-size: 11px;

    line-height: 1.6;
}


.footer-bottom p {
    margin: 0;
}


.footer-bottom p:last-child {
    max-width: 620px;

    text-align: right;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1100px) {

    .nav-shell {
        width:
            calc(100% - 48px);
    }


    .menu-toggle {
        display: block;

        position: relative;
        z-index: 60;
    }


    .primary-navigation {
        display: none;

        position: absolute;

        top: 78px;
        left: 24px;
        right: 24px;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 16px;

        border:
            1px solid
            var(--border);

        border-radius: 16px;

        background:
            rgba(
                12,
                9,
                18,
                0.96
            );

        box-shadow:
            0 30px 60px
            rgba(
                0,
                0,
                0,
                0.5
            );

        backdrop-filter:
            blur(20px);
    }


    .primary-navigation.is-open {
        display: flex;
    }


    .primary-navigation a {
        padding:
            14px 13px;

        border-radius: 8px;
    }


    .nav-sign-in {
        margin-left: 0;
    }


    .nav-cta {
        margin-top: 8px;

        text-align: center;
    }


    .hero {
        min-height: auto;
    }


    .hero-shell {
        width:
            calc(100% - 48px);

        min-height: auto;

        grid-template-columns: 1fr;

        gap: 70px;

        padding:
            145px 0
            120px;
    }


    .hero-copy {
        max-width: 790px;
    }


    .hero-visual {
        width: 100%;
        max-width: 760px;

        margin: 0 auto;
    }


    .hero-philosophy {
        width:
            calc(100% - 48px);

        bottom: 28px;
    }


    .footer-shell {
        width:
            calc(100% - 48px);

        grid-template-columns: 1fr;

        gap: 70px;
    }


    .footer-links {
        max-width: 700px;
    }


    .footer-bottom {
        width:
            calc(100% - 48px);
    }

}


@media (max-width: 720px) {

    .nav-shell {
        width:
            calc(100% - 36px);

        min-height: 82px;
    }


    .site-logo {
        width: 145px;
    }


    .primary-navigation {
        left: 18px;
        right: 18px;

        top: 70px;
    }


    .hero-shell {
        width:
            calc(100% - 36px);

        gap: 52px;

        padding:
            125px 0
            100px;
    }


    .hero-background {
        opacity: 0.18;

        background-position:
            70% center;
    }


    .hero h1 {
        font-size:
            clamp(
                47px,
                13vw,
                66px
            );

        letter-spacing:
            -2.6px;
    }


    .hero-intro,
    .hero-benefit {
        font-size: 17px;
    }


    .hero-actions {
        display: grid;

        grid-template-columns: 1fr;
    }


    .button {
        width: 100%;
    }


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


    .workspace-main {
        width: 72%;

        right: 0;

        top: 132px;
    }


    .workspace-progress {
        width: 51%;

        left: 0;
        top: 30px;
    }


    .workspace-assessment {
        width: 54%;

        right: 2%;
        top: 8px;
    }


    .workspace-next {
        width: 57%;

        left: 5%;
        bottom: 25px;
    }


    .hero-philosophy {
        width:
            calc(100% - 36px);

        font-size: 12px;
    }


    .journey-preview {
        padding:
            95px 0;
    }


    .section-shell {
        width:
            calc(100% - 36px);
    }


    .journey-row {
        flex-direction: column;

        gap: 11px;
    }


    .journey-item {
        width: 100%;
        max-width: 380px;
    }


    .journey-arrow {
        transform:
            rotate(90deg);

        height: 25px;
    }


    .site-footer {
        padding-top:
            95px;
    }


    .footer-shell {
        width:
            calc(100% - 36px);

        padding-bottom:
            85px;
    }


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

        gap:
            45px 30px;
    }


    .footer-bottom {
        width:
            calc(100% - 36px);

        flex-direction: column;

        gap: 14px;
    }


    .footer-bottom p:last-child {
        text-align: left;
    }

}


@media (max-width: 470px) {

    .hero h1 {
        font-size: 45px;

        letter-spacing:
            -2.2px;
    }


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


    .workspace-main {
        width: 78%;

        padding: 20px;
    }


    .workspace-progress {
        width: 55%;

        padding: 18px;
    }


    .workspace-assessment {
        width: 58%;

        padding: 18px;
    }


    .workspace-next {
        width: 64%;

        padding: 18px;
    }


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


    .footer-statement {
        font-size: 34px;
    }

}
```

/* =====================================
   GLOBAL SHELL RESPONSIVE REFINEMENTS
===================================== */

@media (max-width: 1180px) {

    body.nav-open {
        overflow: hidden;
    }


    .nav-shell {
        width:
            calc(100% - 48px);
    }


    .menu-toggle {
        display: block;

        z-index: 60;
    }


    .primary-navigation {
        display: flex;

        position: absolute;

        top: 78px;
        left: 24px;
        right: 24px;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 14px;

        border:
            1px solid
            var(--border);

        border-radius: 16px;

        background:
            rgba(12, 9, 18, 0.98);

        box-shadow:
            0 30px 60px
            rgba(0, 0, 0, 0.50);

        backdrop-filter:
            blur(20px);

        -webkit-backdrop-filter:
            blur(20px);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform:
            translateY(-8px);

        transition:
            opacity 0.2s ease,
            transform 0.2s ease,
            visibility 0.2s ease;
    }


    .primary-navigation.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform:
            translateY(0);
    }


    .primary-navigation a {
        padding:
            14px 13px;

        border-radius: 8px;
    }


    .primary-navigation a[aria-current="page"]:not(.nav-cta)::after {
        display: none;
    }


    .primary-navigation a[aria-current="page"]:not(.nav-cta) {
        background:
            rgba(116, 67, 157, 0.11);

        color: #ffffff;
    }


    .nav-sign-in {
        margin-left: 0;

        margin-top: 7px;

        border-top:
            1px solid
            rgba(255, 255, 255, 0.06);

        border-radius: 0 !important;

        padding-top: 19px !important;
    }


    .nav-cta {
        margin-top: 7px;

        text-align: center;
    }

}


@media (max-width: 720px) {

    .nav-shell {
        width:
            calc(100% - 36px);

        min-height: 82px;
    }


    .site-logo {
        width: 145px;
    }


    .primary-navigation {
        top: 70px;
        left: 18px;
        right: 18px;
    }


    .footer-shell {
        width:
            calc(100% - 36px);

        padding-bottom: 85px;
    }


    .footer-brand-copy {
        max-width: 520px;
    }

}


@media (max-width: 470px) {

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

}


@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    .primary-navigation,
    .menu-toggle span,
    .button {
        transition: none;
    }

}