* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;

    font-family: Arial, sans-serif;

    color: white;

    background:
        radial-gradient(
            circle at 20% 20%,
            #0c5966,
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #06151b,
            #082d36,
            #06151b
        );
}

header {
    width: 100%;

    padding: 25px 7%;

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

.brand {
    font-size: 26px;
    font-weight: 700;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-buttons a {
    color: white;
    text-decoration: none;

    padding: 10px 18px;

    border-radius: 10px;

    border: 1px solid rgba(255,255,255,.15);

    background: rgba(255,255,255,.06);
}

.hero {
    min-height: 75vh;

    display: flex;

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

    gap: 50px;

    padding: 60px 7%;
}

.hero-text {
    max-width: 650px;
}

.badge {
    display: inline-block;

    padding: 8px 14px;

    border-radius: 20px;

    background: rgba(24,196,216,.12);

    color: #7cebf5;

    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 85px);

    line-height: .95;

    margin-bottom: 25px;
}

.hero-text p {
    color: #b8c9cd;

    font-size: 18px;

    line-height: 1.7;

    max-width: 550px;
}

.hero-buttons {
    display: flex;

    gap: 15px;

    margin-top: 35px;
}

.primary-btn,
.secondary-btn {
    text-decoration: none;

    padding: 15px 25px;

    border-radius: 12px;

    font-weight: 600;
}

.primary-btn {
    color: white;

    background: linear-gradient(
        135deg,
        #0c6b78,
        #18c4d8
    );
}

.secondary-btn {
    color: white;

    border: 1px solid rgba(255,255,255,.2);
}

.hero-card {
    width: 350px;

    padding: 35px;

    border-radius: 25px;

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

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.12);

    box-shadow: 0 25px 60px rgba(0,0,0,.3);
}

.rank {
    color: #7cebf5;

    font-weight: 700;

    margin-bottom: 20px;
}

.hero-card h2 {
    font-size: 30px;
}

.hero-card p {
    color: #a8b9bd;

    margin: 8px 0 25px;
}

.xp {
    display: flex;

    justify-content: space-between;

    margin-bottom: 10px;
}

.progress {
    height: 8px;

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

    border-radius: 10px;

    overflow: hidden;
}

.progress div {
    width: 25%;

    height: 100%;

    background: #18c4d8;
}

.stats {
    display: flex;

    justify-content: space-between;

    margin-top: 30px;

    text-align: center;
}

.stats div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.stats small {
    color: #91a5aa;
}

.features {
    padding: 70px 7%;

    text-align: center;
}

.features h2 {
    font-size: 35px;

    margin-bottom: 40px;
}

.feature-grid {
    display: grid;

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

    gap: 20px;
}

.feature-grid div {
    padding: 30px;

    border-radius: 20px;

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

    border: 1px solid rgba(255,255,255,.1);
}

.feature-grid h3 {
    margin: 15px 0 10px;
}

.feature-grid p {
    color: #a8b9bd;

    line-height: 1.6;
}

footer {
    text-align: center;

    padding: 30px;

    color: #73878b;
}

@media (max-width: 800px) {

    header {
        padding: 20px;
    }

    .hero {
        flex-direction: column;

        padding: 50px 20px;

        text-align: center;
    }

    .hero-text p {
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;

        flex-wrap: wrap;
    }

    .hero-card {
        width: 100%;

        max-width: 350px;
    }

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

    .nav-buttons a {
        padding: 8px 12px;
    }

}
/* =========================================
   PREMIUM FEATURE SHOWCASE
========================================= */

.hq-features {
    position: relative;

    padding:
        120px 7% 110px;

    overflow: hidden;
}


/* =========================================
   SECTION BACKGROUND
========================================= */

.hq-features::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(124,235,245,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(124,235,245,.025) 1px,
            transparent 1px
        );

    background-size:
        65px 65px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 15%,
            black 80%,
            transparent
        );
}


/* AMBIENT LIGHTS */

.section-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    filter:
        blur(100px);

    opacity: .13;

    pointer-events: none;
}

.glow-left {
    left: -180px;
    top: 20%;

    background:
        #22d3ee;

    animation:
        featureGlowLeft
        10s ease-in-out infinite alternate;
}

.glow-right {
    right: -180px;
    bottom: 10%;

    background:
        #7c3aed;

    animation:
        featureGlowRight
        13s ease-in-out infinite alternate;
}


@keyframes featureGlowLeft {

    from {
        transform:
            translateY(-30px)
            scale(.9);
    }

    to {
        transform:
            translate(90px,80px)
            scale(1.15);
    }

}


@keyframes featureGlowRight {

    from {
        transform:
            translateY(30px)
            scale(1);
    }

    to {
        transform:
            translate(-80px,-70px)
            scale(1.18);
    }

}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    position: relative;

    z-index: 2;

    max-width: 760px;

    margin:
        0 auto 55px;

    text-align: center;
}


.section-kicker {
    display: inline-block;

    margin-bottom: 15px;

    color: #7cebf5;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;
}


.section-heading h2 {
    margin: 0;

    font-size:
        clamp(
            36px,
            5vw,
            58px
        );

    line-height: 1.08;
}


.section-heading h2 span {
    background:
        linear-gradient(
            90deg,
            #67e8f9,
            #8b5cf6
        );

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

    color: transparent;
}

.section-heading p {
    max-width: 590px;

    margin:
        18px auto 0;

    color: #91a8ad;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   GRID
========================================= */

.hq-feature-grid {
    position: relative;

    z-index: 2;

    display: grid;

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

    gap: 18px;

    max-width: 1250px;

    margin: auto;
}


/* =========================================
   CARD
========================================= */

.hq-feature-card {
    position: relative;

    min-height: 290px;

    padding: 25px;

    overflow: hidden;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.018)
        );

    border:
        1px solid
        rgba(255,255,255,.08);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 18px 45px
        rgba(0,0,0,.18);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


.hq-feature-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

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

    border-radius: 50%;

    background:
        #22d3ee;

    filter:
        blur(70px);

    opacity: .08;

    transition:
        opacity .35s ease,
        transform .35s ease;
}


.hq-feature-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(124,235,245,.25);

    box-shadow:
        0 24px 60px
        rgba(0,0,0,.28),
        0 0 35px
        rgba(34,211,238,.05);
}


.hq-feature-card:hover::before {
    opacity: .17;

    transform:
        scale(1.3);
}


/* =========================================
   CARD TYPES
========================================= */

.card-large {
    grid-row:
        span 2;
}


.card-wide {
    grid-column:
        span 2;
}


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

.feature-top {
    display: flex;

    justify-content:
        space-between;

    align-items:
        center;

    margin-bottom:
        23px;
}


.feature-icon {
    width: 44px;
    height: 44px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    color: #67e8f9;

    background:
        rgba(34,211,238,.10);

    border:
        1px solid
        rgba(34,211,238,.16);

    font-size: 20px;
}


.feature-icon.purple {
    color: #c084fc;

    background:
        rgba(168,85,247,.10);
}


.feature-icon.orange {
    background:
        rgba(249,115,22,.10);
}


.feature-icon.blue {
    color: #60a5fa;

    background:
        rgba(59,130,246,.10);
}


.feature-icon.gold {
    background:
        rgba(245,158,11,.10);
}


.feature-icon.cyan {
    color: #5eead4;

    background:
        rgba(45,212,191,.10);
}


.feature-number {
    color:
        rgba(255,255,255,.18);

    font-size: 11px;

    letter-spacing: 1px;
}


/* =========================================
   TEXT
========================================= */

.hq-feature-card h3 {
    margin: 0;

    font-size: 19px;
}


.hq-feature-card > p {
    margin-top: 9px;

    color: #8fa4aa;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================
   HABIT MINI DEMO
========================================= */

.habit-demo {
    display: grid;

    gap: 9px;

    margin-top: 28px;
}


.demo-row {
    padding:
        12px 13px;

    display: flex;

    justify-content:
        space-between;

    border-radius: 11px;

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

    border:
        1px solid
        rgba(255,255,255,.05);

    font-size: 11px;
}


.demo-row strong {
    color:
        #67e8f9;

    font-size: 10px;
}


.demo-row.active {
    box-shadow:
        inset 3px 0 0
        #22d3ee;
}


.demo-row.bad strong {
    color:
        #f472b6;
}


/* =========================================
   ROUTINE DEMO
========================================= */

.mini-routine {
    display: flex;

    gap: 7px;

    margin-top: 35px;
}


.mini-routine span {
    height: 6px;

    flex: 1;

    border-radius: 20px;

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

    overflow: hidden;
}


.mini-routine span:nth-child(1),
.mini-routine span:nth-child(2),
.mini-routine span:nth-child(3) {
    background:
        linear-gradient(
            90deg,
            #22d3ee,
            #8b5cf6
        );

    animation:
        routinePulse
        3s ease-in-out infinite alternate;
}


@keyframes routinePulse {

    from {
        opacity: .45;
    }

    to {
        opacity: 1;
    }

}


/* =========================================
   STREAK
========================================= */

.streak-demo {
    margin-top: 25px;
}


.streak-demo strong {
    font-size: 30px;

    color: #fb923c;
}


.streak-demo small {
    display: block;

    margin-top: 3px;

    color: #65787e;

    font-size: 8px;

    letter-spacing: 1px;
}


.streak-bars {
    display: flex;

    gap: 6px;

    margin-top: 20px;
}


.streak-bars span {
    flex: 1;

    height: 28px;

    border-radius: 7px;

    background:
        linear-gradient(
            180deg,
            rgba(251,146,60,.70),
            rgba(244,63,94,.20)
        );

    animation:
        streakWave
        1.8s ease-in-out infinite alternate;
}


.streak-bars span:nth-child(2) {
    animation-delay: .12s;
}

.streak-bars span:nth-child(3) {
    animation-delay: .24s;
}

.streak-bars span:nth-child(4) {
    animation-delay: .36s;
}

.streak-bars span:nth-child(5) {
    animation-delay: .48s;
}

.streak-bars span:nth-child(6) {
    animation-delay: .60s;
}

.streak-bars span:nth-child(7) {
    animation-delay: .72s;
}


@keyframes streakWave {

    from {
        transform:
            scaleY(.55);

        opacity: .45;
    }

    to {
        transform:
            scaleY(1);

        opacity: 1;
    }

}


/* =========================================
   LEVEL DEMO
========================================= */

.level-demo {
    margin-top: 30px;

    display: flex;

    align-items: center;

    gap: 25px;
}


.level-info {
    min-width: 75px;
}


.level-info span {
    display: block;

    color: #73878c;

    font-size: 9px;

    letter-spacing: 1px;
}


.level-info strong {
    display: block;

    margin-top: 3px;

    font-size: 34px;

    color: #67e8f9;
}


.level-progress {
    flex: 1;
}


.level-bar {
    height: 9px;

    overflow: hidden;

    border-radius: 20px;

    background:
        rgba(255,255,255,.07);
}


.level-bar span {
    display: block;

    width: 80%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #22d3ee,
            #8b5cf6
        );

    background-size:
        200% 100%;

    animation:
        levelFlow
        3s linear infinite;
}


@keyframes levelFlow {

    to {
        background-position:
            200% 0;
    }

}


.level-progress small {
    display: block;

    margin-top: 8px;

    color: #6d8186;

    font-size: 9px;
}


/* =========================================
   BADGES
========================================= */

.badge-demo {
    display: flex;

    gap: 12px;

    margin-top: 30px;
}


.badge-demo span {
    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 50%;

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

    border:
        1px solid
        rgba(255,255,255,.08);

    box-shadow:
        0 0 18px
        rgba(124,235,245,.04);

    animation:
        badgeFloat
        3s ease-in-out infinite alternate;
}


.badge-demo span:nth-child(2) {
    animation-delay:
        .4s;
}


.badge-demo span:nth-child(3) {
    animation-delay:
        .8s;
}


@keyframes badgeFloat {

    to {
        transform:
            translateY(-7px);
    }

}


/* =========================================
   ANALYTICS
========================================= */

.analytics-demo {
    height: 80px;

    margin-top: 28px;

    display: flex;

    gap: 7px;

    align-items: flex-end;
}


.analytics-demo span {
    flex: 1;

    height:
        var(--h);

    border-radius:
        6px 6px 2px 2px;

    background:
        linear-gradient(
            180deg,
            #22d3ee,
            #6366f1
        );

    opacity: .75;

    animation:
        analyticsGrow
        2.4s ease-in-out infinite alternate;
}


.analytics-demo span:nth-child(2) {
    animation-delay: .15s;
}

.analytics-demo span:nth-child(3) {
    animation-delay: .3s;
}

.analytics-demo span:nth-child(4) {
    animation-delay: .45s;
}

.analytics-demo span:nth-child(5) {
    animation-delay: .6s;
}

.analytics-demo span:nth-child(6) {
    animation-delay: .75s;
}


@keyframes analyticsGrow {

    from {
        transform:
            scaleY(.65);

        opacity: .4;
    }

    to {
        transform:
            scaleY(1);

        opacity: .9;
    }

}


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

@media (max-width: 950px) {

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

    .card-large {
        grid-row:
            auto;
    }

    .card-wide {
        grid-column:
            span 2;
    }

}


@media (max-width: 620px) {

    .hq-features {
        padding:
            85px 18px 80px;
    }

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

    .card-wide {
        grid-column:
            auto;
    }

    .hq-feature-card {
        min-height:
            auto;
    }

    .section-heading {
        margin-bottom:
            35px;
    }

    .level-demo {
        flex-direction:
            column;

        align-items:
            stretch;
    }

}
/* =========================================
   JS SCROLL REVEAL
========================================= */

.reveal-section .section-heading {
    opacity: 1x;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s
        cubic-bezier(.2,.8,.2,1);
}


.reveal-section.is-visible
.section-heading {
    opacity: 1;

    transform:
        translateY(0);
}


.reveal-card {
    opacity: 1;

    transform:
        translateY(45px)
        scale(.97);

    transition:
        opacity .7s ease
        var(--reveal-delay, 0ms),

        transform .7s
        cubic-bezier(.2,.8,.2,1)
        var(--reveal-delay, 0ms),

        border-color .35s ease,

        box-shadow .35s ease;
}


.reveal-card.is-visible {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}


/* =========================================
   CURSOR LIGHT
========================================= */

.hq-cursor-glow {
    position: fixed;

    left: 0;
    top: 0;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    pointer-events: none;

    z-index: 0;

    opacity: .07;

    background:
        radial-gradient(
            circle,
            #22d3ee 0%,
            rgba(34,211,238,.35) 25%,
            transparent 68%
        );

    filter:
        blur(15px);
}


/* =========================================
   CARD CURSOR LIGHT
========================================= */

.hq-feature-card::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: 0;

    background:
        radial-gradient(
            220px circle
            at
            var(--mouse-x, 50%)
            var(--mouse-y, 50%),

            rgba(103,232,249,.10),

            transparent 65%
        );

    transition:
        opacity .25s ease;
}


.hq-feature-card:hover::after {
    opacity: 1;
}


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

header {
    position: relative;

    z-index: 100;

    transition:
        background .3s ease,
        backdrop-filter .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


header.header-scrolled {
    position: sticky;

    top: 0;

    background:
        rgba(5,18,23,.78);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid
        rgba(255,255,255,.06);

    box-shadow:
        0 8px 35px
        rgba(0,0,0,.18);
}


/* =========================================
   REDUCED MOTION
========================================= */

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

    .reveal-card,
    .reveal-section .section-heading {
        opacity: 1;

        transform: none;

        transition: none;
    }

    .hq-cursor-glow {
        display: none;
    }

}
/* =========================================
   GAMIFICATION SHOWCASE
========================================= */

.game-section {
    position: relative;

    padding: 130px 7%;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(10,35,43,.22),
            transparent
        );
}


.game-container {
    position: relative;

    z-index: 2;

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    align-items: center;

    gap: 90px;
}


/* =========================================
   AMBIENT ORBS
========================================= */

.game-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(110px);

    pointer-events: none;

    opacity: .12;
}


.game-orb-one {
    width: 420px;
    height: 420px;

    right: 5%;
    top: 15%;

    background: #7c3aed;

    animation:
        gameOrbOne
        10s ease-in-out
        infinite alternate;
}


.game-orb-two {
    width: 300px;
    height: 300px;

    left: -100px;
    bottom: 0;

    background: #22d3ee;

    animation:
        gameOrbTwo
        12s ease-in-out
        infinite alternate;
}


@keyframes gameOrbOne {

    to {
        transform:
            translate(-80px,70px)
            scale(1.2);
    }

}


@keyframes gameOrbTwo {

    to {
        transform:
            translate(90px,-70px)
            scale(.85);
    }

}


/* =========================================
   LEFT CONTENT
========================================= */

.game-content h2 {
    margin-top: 10px;

    max-width: 560px;

    font-size:
        clamp(
            38px,
            5vw,
            62px
        );

    line-height: 1.06;
}


.game-content h2 span {
    background:
        linear-gradient(
            90deg,
            #67e8f9,
            #8b5cf6
        );

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

    color: transparent;
}


.game-description {
    max-width: 540px;

    margin-top: 22px;

    color: #91a8ad;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   POINTS
========================================= */

.game-points {
    display: grid;

    gap: 12px;

    margin-top: 38px;
}


.game-point {
    display: flex;

    gap: 15px;

    padding: 15px;

    border-radius: 15px;

    border:
        1px solid transparent;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.game-point:hover {
    background:
        rgba(255,255,255,.025);

    border-color:
        rgba(255,255,255,.06);

    transform:
        translateX(7px);
}


.game-point-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 12px;

    color: #67e8f9;

    background:
        rgba(34,211,238,.09);

    border:
        1px solid
        rgba(34,211,238,.12);

    font-size: 11px;

    font-weight: 800;
}


.game-point-icon.streak {
    background:
        rgba(249,115,22,.08);
}


.game-point-icon.trophy {
    color: #c084fc;

    background:
        rgba(168,85,247,.08);
}


.game-point h3 {
    margin-bottom: 5px;

    font-size: 14px;
}


.game-point p {
    max-width: 380px;

    color: #73888d;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================
   DASHBOARD
========================================= */

.game-dashboard {
    position: relative;

    padding: 28px;

    overflow: hidden;

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.075),
            rgba(255,255,255,.025)
        );

    border:
        1px solid
        rgba(124,235,245,.13);

    backdrop-filter:
        blur(25px);

    box-shadow:
        0 35px 90px
        rgba(0,0,0,.30),
        0 0 60px
        rgba(34,211,238,.04);

    transform-style:
        preserve-3d;
}


.dashboard-shine {
    position: absolute;

    width: 220px;
    height: 220px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    background:
        #22d3ee;

    filter:
        blur(90px);

    opacity: .10;

    pointer-events: none;
}


/* HEADER */

.dashboard-header {
    position: relative;

    display: flex;

    justify-content:
        space-between;

    align-items: center;
}


.dashboard-header small {
    color: #61787d;

    font-size: 8px;

    letter-spacing: 1.4px;
}


.dashboard-header h3 {
    margin-top: 5px;

    font-size: 19px;
}


.dashboard-level {
    padding: 8px 12px;

    border-radius: 10px;

    color: #67e8f9;

    background:
        rgba(34,211,238,.08);

    border:
        1px solid
        rgba(34,211,238,.13);

    font-size: 10px;

    font-weight: 800;
}


/* =========================================
   XP
========================================= */

.dashboard-xp {
    margin-top: 27px;
}


.dashboard-xp-info {
    display: flex;

    justify-content:
        space-between;

    margin-bottom: 8px;
}


.dashboard-xp-info span {
    color: #60757a;

    font-size: 8px;

    letter-spacing: 1px;
}


.dashboard-xp-info strong {
    color: #8fa7ac;

    font-size: 9px;
}


.dashboard-xp-bar {
    height: 8px;

    overflow: hidden;

    border-radius: 20px;

    background:
        rgba(255,255,255,.06);
}


.dashboard-xp-bar span {
    display: block;

    width: 0;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #22d3ee,
            #6366f1,
            #a855f7
        );

    box-shadow:
        0 0 15px
        rgba(34,211,238,.25);
}


.game-section.is-visible
.dashboard-xp-bar span {
    animation:
        dashboardXP
        1.6s
        cubic-bezier(.2,.8,.2,1)
        .5s forwards;
}


@keyframes dashboardXP {

    to {
        width: 80%;
    }

}


/* =========================================
   DASHBOARD STATS
========================================= */

.dashboard-stats {
    display: grid;

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

    gap: 10px;

    margin-top: 22px;
}


.dashboard-stat {
    padding: 14px 8px;

    text-align: center;

    border-radius: 13px;

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

    border:
        1px solid
        rgba(255,255,255,.045);
}


.stat-symbol {
    display: block;

    margin-bottom: 5px;

    font-size: 15px;
}


.dashboard-stat strong {
    display: block;

    font-size: 17px;
}


.dashboard-stat small {
    display: block;

    margin-top: 3px;

    color: #647a80;

    font-size: 8px;
}


/* =========================================
   QUESTS
========================================= */

.dashboard-today {
    margin-top: 25px;
}


.today-title {
    display: flex;

    justify-content:
        space-between;

    margin-bottom: 11px;
}


.today-title span,
.today-title small {
    color: #61777c;

    font-size: 8px;

    letter-spacing: 1px;
}


.quest-row {
    display: grid;

    grid-template-columns:
        27px 1fr auto;

    align-items: center;

    gap: 10px;

    padding: 10px;

    margin-top: 7px;

    border-radius: 10px;

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

    border:
        1px solid
        rgba(255,255,255,.04);

    transition:
        transform .25s ease,
        background .25s ease;
}


.quest-row:hover {
    transform:
        translateX(4px);

    background:
        rgba(255,255,255,.045);
}


.quest-check {
    width: 23px;
    height: 23px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #05181d;

    background: #67e8f9;

    font-size: 10px;

    font-weight: 900;
}


.quest-check.empty {
    background: transparent;

    border:
        1px solid
        rgba(255,255,255,.15);
}


.quest-row strong {
    display: block;

    font-size: 10px;
}


.quest-row small {
    display: block;

    margin-top: 2px;

    color: #60757a;

    font-size: 7px;
}


.quest-row b {
    color: #67e8f9;

    font-size: 8px;
}


/* =========================================
   FLOATING XP
========================================= */

.xp-float {
    position: absolute;

    right: 25px;
    top: 90px;

    padding: 7px 11px;

    border-radius: 9px;

    color: #67e8f9;

    background:
        rgba(6,28,34,.92);

    border:
        1px solid
        rgba(34,211,238,.18);

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.25);

    font-size: 10px;

    font-weight: 800;

    opacity: 0;
}


.game-section.is-visible
.xp-float {
    animation:
        xpRewardFloat
        3s ease-in-out
        1.8s infinite;
}


@keyframes xpRewardFloat {

    0% {
        opacity: 0;

        transform:
            translateY(15px)
            scale(.8);
    }

    20% {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;

        transform:
            translateY(-35px)
            scale(.95);
    }

}


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

@media (max-width: 950px) {

    .game-container {
        grid-template-columns:
            1fr;

        gap: 60px;
    }

    .game-content {
        max-width: 650px;
    }

    .game-dashboard {
        max-width: 650px;

        width: 100%;

        margin: auto;
    }

}


@media (max-width: 600px) {

    .game-section {
        padding:
            90px 18px;
    }

    .game-dashboard {
        padding: 19px;

        border-radius: 20px;
    }

    .dashboard-stats {
        gap: 6px;
    }

    .dashboard-stat {
        padding:
            12px 4px;
    }

}
/* =========================================
   HOW HABITQUEST WORKS
========================================= */

.how-section {
    position: relative;
    padding: 125px 7% 140px;

    overflow: hidden;
}

.how-section::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(34,211,238,.06),
            transparent 32%
        ),
        radial-gradient(
            circle at 50% 80%,
            rgba(139,92,246,.05),
            transparent 35%
        );
}


/* =========================================
   QUEST PATH
========================================= */

.quest-path {
    position: relative;

    max-width: 1080px;

    margin: 70px auto 0;

    display: grid;

    gap: 70px;
}


/* Vertical track */

.quest-line {
    position: absolute;

    left: 50%;
    top: 15px;
    bottom: 15px;

    width: 3px;

    transform:
        translateX(-50%);

    border-radius: 20px;

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

    overflow: hidden;
}


/* Animated fill */

.quest-line-fill {
    display: block;

    width: 100%;
    height: 0%;

    border-radius: inherit;

    background:
        linear-gradient(
            180deg,
            #22d3ee,
            #6366f1,
            #a855f7
        );

    box-shadow:
        0 0 16px rgba(34,211,238,.35);

    transition:
        height 1.8s
        cubic-bezier(.2,.8,.2,1);
}


.how-section.is-visible
.quest-line-fill {
    height: 100%;
}


/* =========================================
   STEP
========================================= */

.journey-step {
    position: relative;

    width: 46%;

    display: flex;

    gap: 22px;

    align-items: flex-start;

    padding: 24px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.05),
            rgba(255,255,255,.02)
        );

    border:
        1px solid
        rgba(255,255,255,.07);

    backdrop-filter:
        blur(16px);

    box-shadow:
        0 20px 45px
        rgba(0,0,0,.18);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


/* Alternating alignment */

.journey-step:nth-of-type(2),
.journey-step:nth-of-type(4) {
    justify-self: end;
}


.journey-step:nth-of-type(3),
.journey-step:nth-of-type(5) {
    justify-self: start;
}


/* Hover */

.journey-step:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(124,235,245,.20);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.24),
        0 0 25px
        rgba(34,211,238,.05);
}


/* =========================================
   STEP NODE
========================================= */

.step-node {
    position: relative;

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #67e8f9;

    background:
        rgba(34,211,238,.08);

    border:
        1px solid
        rgba(34,211,238,.20);

    box-shadow:
        0 0 20px
        rgba(34,211,238,.08);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .7px;
}


/* Connector dot towards center line */

.journey-step::after {
    content: "";

    position: absolute;

    top: 45px;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background:
        #22d3ee;

    box-shadow:
        0 0 14px
        rgba(34,211,238,.55);

    opacity: 0;

    transform:
        scale(.4);

    transition:
        opacity .4s ease,
        transform .4s ease;
}


.journey-step:nth-of-type(2)::after,
.journey-step:nth-of-type(4)::after {
    left: calc(100% + 39px);
}


.journey-step:nth-of-type(3)::after,
.journey-step:nth-of-type(5)::after {
    right: calc(100% + 39px);
}


.journey-step.is-visible::after {
    opacity: 1;

    transform:
        scale(1);
}


/* =========================================
   STEP CONTENT
========================================= */

.step-content > span {
    display: block;

    margin-bottom: 7px;

    color: #6e858a;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.4px;
}


.step-content h3 {
    margin: 0;

    font-size: 18px;
}


.step-content p {
    margin-top: 8px;

    color: #82979c;

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================
   SMALL ENERGY PULSE
========================================= */

.step-node::before {
    content: "";

    position: absolute;

    inset: -7px;

    border-radius: 50%;

    border:
        1px solid
        rgba(34,211,238,.10);

    animation:
        nodePulse
        2.8s ease-out infinite;
}


@keyframes nodePulse {

    0% {
        transform:
            scale(.75);

        opacity: .55;
    }

    100% {
        transform:
            scale(1.5);

        opacity: 0;
    }

}


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

@media (max-width: 850px) {

    .quest-path {
        gap: 35px;

        padding-left: 45px;
    }

    .quest-line {
        left: 18px;

        transform: none;
    }

    .journey-step,
    .journey-step:nth-of-type(2),
    .journey-step:nth-of-type(3),
    .journey-step:nth-of-type(4),
    .journey-step:nth-of-type(5) {
        width: 100%;

        justify-self: stretch;
    }

    .journey-step::after,
    .journey-step:nth-of-type(2)::after,
    .journey-step:nth-of-type(3)::after,
    .journey-step:nth-of-type(4)::after,
    .journey-step:nth-of-type(5)::after {
        left: -33px;
        right: auto;
    }

}


@media (max-width: 600px) {

    .how-section {
        padding:
            90px 18px 100px;
    }

    .quest-path {
        margin-top:
            45px;
    }

    .journey-step {
        padding:
            18px;
    }

}
/* =========================================
   FEATURE EXPLORER
========================================= */

.explorer-section {
    position: relative;
    padding: 125px 7% 140px;
    overflow: hidden;
}

.explorer-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #6366f1;
    filter: blur(160px);
    opacity: .055;
    pointer-events: none;
}


/* =========================================
   MAIN SHELL
========================================= */

.explorer-shell {
    position: relative;
    z-index: 2;

    max-width: 1180px;
    margin: 65px auto 0;

    padding: 10px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.018)
        );

    border:
        1px solid rgba(255,255,255,.08);

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

    backdrop-filter: blur(20px);
}


/* =========================================
   TABS
========================================= */

.explorer-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 7px;

    padding: 7px;

    border-radius: 18px;

    background: rgba(0,0,0,.14);
}

.explorer-tab {
    position: relative;

    padding: 13px 10px;

    border: 0;
    outline: 0;

    border-radius: 12px;

    color: #71878c;

    background: transparent;

    font-family: inherit;
    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition:
        color .3s ease,
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.explorer-tab:hover {
    color: #d9f8fb;
    background: rgba(255,255,255,.035);
}

.explorer-tab.active {
    color: #67e8f9;

    background:
        linear-gradient(
            135deg,
            rgba(34,211,238,.12),
            rgba(99,102,241,.08)
        );

    box-shadow:
        inset 0 0 0 1px rgba(34,211,238,.12),
        0 8px 25px rgba(0,0,0,.12);
}


/* active bottom light */

.explorer-tab.active::after {
    content: "";

    position: absolute;

    left: 25%;
    right: 25%;
    bottom: 2px;

    height: 2px;

    border-radius: 10px;

    background: #67e8f9;

    box-shadow:
        0 0 10px rgba(103,232,249,.7);
}


/* =========================================
   CONTENT
========================================= */

.explorer-content {
    min-height: 420px;

    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    align-items: center;

    gap: 65px;

    padding: 60px;
}


/* =========================================
   COPY
========================================= */

.explorer-copy {
    transition:
        opacity .22s ease,
        transform .22s ease;
}

.explorer-copy.switching {
    opacity: 0;

    transform:
        translateY(10px);
}

#explorerEyebrow {
    display: block;

    margin-bottom: 12px;

    color: #67e8f9;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

#explorerTitle {
    max-width: 440px;

    font-size:
        clamp(28px, 3.5vw, 43px);

    line-height: 1.12;
}

#explorerDescription {
    max-width: 470px;

    margin-top: 17px;

    color: #82989d;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================
   POINTS
========================================= */

.explorer-points {
    display: grid;

    gap: 11px;

    margin-top: 27px;
}

.explorer-points > div {
    display: flex;

    align-items: center;

    gap: 10px;
}

.explorer-points > div > span {
    width: 23px;
    height: 23px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #071b20;

    background: #67e8f9;

    font-size: 9px;
    font-weight: 900;

    box-shadow:
        0 0 13px rgba(34,211,238,.15);
}

.explorer-points p {
    color: #9aadb1;

    font-size: 11px;
}


/* =========================================
   PREVIEW AREA
========================================= */

.explorer-preview {
    position: relative;

    min-height: 320px;

    overflow: hidden;

    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            rgba(6,30,37,.92),
            rgba(12,30,44,.78)
        );

    border:
        1px solid rgba(124,235,245,.10);

    box-shadow:
        inset 0 0 45px rgba(34,211,238,.025),
        0 25px 55px rgba(0,0,0,.20);
}


/* glow inside preview */

.explorer-preview::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -90px;
    top: -100px;

    border-radius: 50%;

    background: #8b5cf6;

    filter: blur(90px);

    opacity: .11;

    pointer-events: none;
}


/* =========================================
   PANELS
========================================= */

.preview-panel {
    position: absolute;
    inset: 0;

    padding: 28px;

    opacity: 0;

    visibility: hidden;

    transform:
        translateX(25px)
        scale(.98);

    transition:
        opacity .38s ease,
        transform .38s
        cubic-bezier(.2,.8,.2,1),
        visibility .38s;
}

.preview-panel.active {
    opacity: 1;

    visibility: visible;

    transform:
        translateX(0)
        scale(1);
}


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

.preview-top {
    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 25px;
}

.preview-top span {
    font-size: 12px;
    font-weight: 700;
}

.preview-top strong {
    color: #67e8f9;

    font-size: 10px;
}


/* =========================================
   HABITS PREVIEW
========================================= */

.preview-list {
    display: grid;
    gap: 9px;
}

.preview-item {
    display: grid;

    grid-template-columns:
        30px 1fr auto;

    gap: 10px;

    align-items: center;

    padding: 13px;

    border-radius: 12px;

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

    border:
        1px solid rgba(255,255,255,.045);

    transition:
        transform .25s ease,
        background .25s ease;
}

.preview-item:hover {
    transform: translateX(5px);

    background:
        rgba(255,255,255,.05);
}

.preview-item > span {
    width: 25px;
    height: 25px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.13);
}

.preview-item.done > span {
    color: #06191e;

    background: #67e8f9;

    border-color: transparent;

    font-size: 10px;
    font-weight: 900;
}

.preview-item strong {
    display: block;

    font-size: 10px;
}

.preview-item small {
    display: block;

    margin-top: 3px;

    color: #60757a;

    font-size: 7px;
}

.preview-item b {
    color: #67e8f9;

    font-size: 8px;
}


/* =========================================
   ROUTINE TIMELINE
========================================= */

.routine-timeline {
    position: relative;

    display: grid;

    gap: 12px;

    padding-left: 18px;
}

.routine-timeline::before {
    content: "";

    position: absolute;

    left: 4px;
    top: 8px;
    bottom: 8px;

    width: 2px;

    background:
        linear-gradient(
            #22d3ee,
            #8b5cf6
        );

    opacity: .45;
}

.routine-timeline > div {
    position: relative;

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 12px 14px;

    border-radius: 11px;

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

    border:
        1px solid rgba(255,255,255,.04);
}

.routine-timeline > div::before {
    content: "";

    position: absolute;

    left: -18px;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #67e8f9;

    box-shadow:
        0 0 10px rgba(103,232,249,.5);
}

.routine-timeline span {
    color: #67e8f9;

    font-size: 8px;
}

.routine-timeline strong {
    font-size: 10px;
}


/* =========================================
   PROGRESS GRAPH
========================================= */

.progress-chart {
    height: 220px;

    display: flex;

    align-items: flex-end;

    gap: 10px;

    padding: 20px 5px 5px;
}

.progress-chart span {
    flex: 1;

    height: var(--bar);

    border-radius:
        7px 7px 3px 3px;

    background:
        linear-gradient(
            180deg,
            #67e8f9,
            #6366f1
        );

    transform-origin: bottom;

    animation:
        explorerBarPulse
        2.4s ease-in-out
        infinite alternate;

    box-shadow:
        0 0 12px rgba(34,211,238,.07);
}

.progress-chart span:nth-child(2) {
    animation-delay: .1s;
}

.progress-chart span:nth-child(3) {
    animation-delay: .2s;
}

.progress-chart span:nth-child(4) {
    animation-delay: .3s;
}

.progress-chart span:nth-child(5) {
    animation-delay: .4s;
}

.progress-chart span:nth-child(6) {
    animation-delay: .5s;
}

.progress-chart span:nth-child(7) {
    animation-delay: .6s;
}

@keyframes explorerBarPulse {

    from {
        transform: scaleY(.65);
        opacity: .5;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }

}


/* =========================================
   ACHIEVEMENTS
========================================= */

.achievement-preview {
    min-height: 220px;

    display: grid;

    grid-template-columns:
        repeat(2, 90px);

    justify-content: center;

    align-content: center;

    gap: 17px;
}

.achievement-preview div {
    width: 90px;
    height: 90px;

    display: grid;

    place-items: center;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.02)
        );

    border:
        1px solid rgba(255,255,255,.08);

    font-size: 28px;

    animation:
        achievementFloat
        3s ease-in-out infinite alternate;
}

.achievement-preview div:nth-child(2) {
    animation-delay: .3s;
}

.achievement-preview div:nth-child(3) {
    animation-delay: .6s;
}

.achievement-preview div:nth-child(4) {
    animation-delay: .9s;
}

@keyframes achievementFloat {

    to {
        transform:
            translateY(-8px)
            rotate(2deg);
    }

}


/* =========================================
   PREMIUM
========================================= */

.premium-preview {
    display: grid;

    gap: 12px;

    margin-top: 10px;
}

.premium-preview > div {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 16px;

    border-radius: 13px;

    background:
        linear-gradient(
            90deg,
            rgba(139,92,246,.07),
            rgba(34,211,238,.025)
        );

    border:
        1px solid rgba(139,92,246,.10);

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.premium-preview > div:hover {
    transform: translateX(5px);

    border-color:
        rgba(192,132,252,.22);
}

.premium-preview span {
    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    color: #c084fc;

    background:
        rgba(168,85,247,.10);

    font-size: 10px;
    font-weight: 900;
}

.premium-preview strong {
    font-size: 11px;
}


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

@media (max-width: 850px) {

    .explorer-tabs {
        display: flex;

        overflow-x: auto;

        scrollbar-width: none;
    }

    .explorer-tabs::-webkit-scrollbar {
        display: none;
    }

    .explorer-tab {
        min-width: 115px;
    }

    .explorer-content {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 40px 30px;
    }

}


@media (max-width: 600px) {

    .explorer-section {
        padding:
            90px 18px 100px;
    }

    .explorer-shell {
        margin-top: 40px;

        border-radius: 20px;
    }

    .explorer-content {
        padding: 32px 17px;
    }

    .explorer-preview {
        min-height: 315px;
    }

    .preview-panel {
        padding: 20px;
    }

}
/* =========================================
   HABITQUEST PHILOSOPHY
========================================= */

.philosophy-section {
    position: relative;

    min-height: 760px;

    display: flex;

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

    padding: 130px 7%;

    overflow: hidden;

    isolation: isolate;
}


/* =========================================
   GRID BACKGROUND
========================================= */

.philosophy-grid {
    position: absolute;

    inset: 0;

    z-index: -3;

    background-image:
        linear-gradient(
            rgba(103,232,249,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(103,232,249,.025) 1px,
            transparent 1px
        );

    background-size:
        55px 55px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 72%
        );
}


/* =========================================
   AMBIENT LIGHT
========================================= */

.philosophy-orb {
    position: absolute;

    z-index: -2;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;
}


.philosophy-orb-one {
    width: 430px;
    height: 430px;

    left: 15%;
    top: 25%;

    background: #22d3ee;

    opacity: .07;

    animation:
        philosophyOrbOne
        10s ease-in-out
        infinite alternate;
}


.philosophy-orb-two {
    width: 480px;
    height: 480px;

    right: 10%;
    bottom: 10%;

    background: #7c3aed;

    opacity: .08;

    animation:
        philosophyOrbTwo
        13s ease-in-out
        infinite alternate;
}


@keyframes philosophyOrbOne {

    to {
        transform:
            translate(90px, 50px)
            scale(1.2);
    }

}


@keyframes philosophyOrbTwo {

    to {
        transform:
            translate(-80px, -60px)
            scale(.85);
    }

}


/* =========================================
   CONTENT
========================================= */

.philosophy-content {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1300px;

    text-align: center;
}


.philosophy-intro {
    margin-top: 15px;

    color: #72898e;

    font-size: 12px;

    letter-spacing: .5px;
}


/* =========================================
   EQUATION
========================================= */

.success-equation {
    margin-top: 65px;

    display: flex;

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

    gap: clamp(18px, 3vw, 48px);
}


/* =========================================
   WORDS
========================================= */

.equation-word {
    position: relative;

    padding: 24px 5px;

    opacity: 0;

    transform:
        translateY(35px)
        scale(.94);

    filter: blur(8px);

    transition:
        opacity .8s ease,
        transform .8s
        cubic-bezier(.2,.8,.2,1),
        filter .8s ease;
}


.equation-word small {
    display: block;

    margin-bottom: 9px;

    color: #50686e;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}


.equation-word strong {
    display: block;

    font-size:
        clamp(
            25px,
            4vw,
            56px
        );

    line-height: 1;

    letter-spacing: -1px;
}


/* =========================================
   SYMBOLS
========================================= */

.equation-symbol {
    color:
        rgba(255,255,255,.20);

    font-size:
        clamp(
            25px,
            3vw,
            44px
        );

    font-weight: 300;

    opacity: 0;

    transform:
        scale(.3)
        rotate(-25deg);

    transition:
        opacity .6s ease,
        transform .6s
        cubic-bezier(.2,.9,.2,1);
}


/* =========================================
   CONSISTENCY
========================================= */

.consistency-word strong {
    color: #d6f9fb;

    text-shadow:
        0 0 25px
        rgba(34,211,238,.08);
}


/* =========================================
   DISCIPLINE
========================================= */

.discipline-word strong {
    color: #b9c8ff;

    text-shadow:
        0 0 25px
        rgba(99,102,241,.10);
}


/* =========================================
   SUCCESS
========================================= */

.success-word {
    overflow: hidden;

    padding:
        24px 20px;

    border-radius: 18px;
}


.success-word strong {
    position: relative;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            #67e8f9,
            #818cf8,
            #c084fc,
            #67e8f9
        );

    background-size:
        250% 100%;

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

    color: transparent;

    animation:
        successGradient
        4s linear infinite;
}


@keyframes successGradient {

    to {
        background-position:
            250% 0;
    }

}


/* scanning light */

.success-scan {
    position: absolute;

    top: 0;
    bottom: 0;

    left: -80%;

    width: 40%;

    opacity: 0;

    transform:
        skewX(-20deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.12),
            transparent
        );
}


/* =========================================
   REVEAL SEQUENCE
========================================= */

.philosophy-section.is-visible
.consistency-word {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);

    filter: blur(0);

    transition-delay: .15s;
}


.philosophy-section.is-visible
.plus-symbol {
    opacity: 1;

    transform:
        scale(1)
        rotate(0);

    transition-delay: .65s;
}


.philosophy-section.is-visible
.discipline-word {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);

    filter: blur(0);

    transition-delay: .9s;
}


.philosophy-section.is-visible
.equals-symbol {
    opacity: 1;

    transform:
        scale(1)
        rotate(0);

    transition-delay: 1.4s;
}


.philosophy-section.is-visible
.success-word {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);

    filter: blur(0);

    transition-delay: 1.65s;
}


.philosophy-section.is-visible
.success-scan {
    animation:
        successScan
        1.2s ease
        2.25s forwards;
}


@keyframes successScan {

    0% {
        left: -70%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        left: 140%;
        opacity: 0;
    }

}


/* =========================================
   BOTTOM TEXT
========================================= */

.philosophy-bottom {
    max-width: 580px;

    margin:
        55px auto 0;

    color: #71878c;

    font-size: 12px;

    line-height: 1.8;

    opacity: 0;

    transform:
        translateY(15px);

    transition:
        opacity .7s ease 2s,
        transform .7s ease 2s;
}


.philosophy-section.is-visible
.philosophy-bottom {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================
   PARTICLES
========================================= */

.formula-particles span {
    position: absolute;

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #67e8f9;

    box-shadow:
        0 0 9px
        rgba(103,232,249,.65);

    opacity: .25;

    animation:
        formulaParticle
        6s ease-in-out
        infinite alternate;
}


.formula-particles span:nth-child(1) {
    left: 15%;
    top: 25%;
}

.formula-particles span:nth-child(2) {
    left: 28%;
    bottom: 20%;

    animation-delay: .8s;
}

.formula-particles span:nth-child(3) {
    right: 20%;
    top: 22%;

    animation-delay: 1.6s;
}

.formula-particles span:nth-child(4) {
    right: 12%;
    bottom: 27%;

    animation-delay: 2.2s;
}

.formula-particles span:nth-child(5) {
    left: 48%;
    top: 15%;

    animation-delay: 3s;
}

.formula-particles span:nth-child(6) {
    left: 58%;
    bottom: 14%;

    animation-delay: 3.8s;
}


@keyframes formulaParticle {

    to {
        transform:
            translateY(-35px)
            scale(1.8);

        opacity: .65;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .success-equation {
        flex-direction: column;

        gap: 8px;

        margin-top: 45px;
    }

    .equation-symbol {
        margin: 2px 0;
    }

    .equation-word {
        padding: 15px;
    }

}


@media (max-width: 600px) {

    .philosophy-section {
        min-height: 700px;

        padding:
            100px 18px;
    }

    .equation-word strong {
        font-size: 31px;
    }

}
/* =========================================
   FAQ
========================================= */

.faq-section {
    position: relative;

    padding:
        120px 7% 130px;

    overflow: hidden;
}


.faq-list {
    position: relative;

    z-index: 2;

    max-width: 850px;

    margin:
        55px auto 0;

    display: grid;

    gap: 11px;
}


.faq-item {
    overflow: hidden;

    border-radius: 16px;

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

    border:
        1px solid
        rgba(255,255,255,.065);

    transition:
        border-color .3s ease,
        background .3s ease,
        transform .3s ease;
}


.faq-item:hover {
    border-color:
        rgba(103,232,249,.16);

    background:
        rgba(255,255,255,.045);
}


.faq-item.open {
    border-color:
        rgba(103,232,249,.20);
}


.faq-question {
    width: 100%;

    padding:
        19px 21px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 20px;

    border: none;

    color: white;

    background: transparent;

    font-family: inherit;

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

    text-align: left;

    cursor: pointer;
}


.faq-question b {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #67e8f9;

    background:
        rgba(34,211,238,.07);

    font-size: 18px;
    font-weight: 400;

    transition:
        transform .3s ease,
        background .3s ease;
}


.faq-item.open
.faq-question b {
    transform:
        rotate(45deg);

    background:
        rgba(34,211,238,.13);
}


/* =========================================
   ANSWER
========================================= */

.faq-answer {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height .4s ease,
        opacity .35s ease;
}


.faq-answer p {
    padding:
        0 21px 21px;

    color: #82979c;

    font-size: 12px;

    line-height: 1.75;
}


.faq-item.open
.faq-answer {
    max-height: 180px;

    opacity: 1;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .faq-section {
        padding:
            90px 18px 100px;
    }

    .faq-question {
        padding:
            17px;

        font-size:
            12px;
    }

    .faq-answer p {
        padding:
            0 17px 18px;
    }

}
/* =========================================
   FINAL CTA
========================================= */

.final-cta {
    position: relative;

    min-height: 620px;

    display: flex;

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

    padding: 120px 7%;

    overflow: hidden;

    text-align: center;

    isolation: isolate;
}


.cta-grid {
    position: absolute;

    inset: 0;

    z-index: -3;

    background-image:
        linear-gradient(
            rgba(103,232,249,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(103,232,249,.025) 1px,
            transparent 1px
        );

    background-size:
        65px 65px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 72%
        );
}


/* GLOWS */

.cta-glow {
    position: absolute;

    z-index: -2;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;
}


.cta-glow-one {
    width: 430px;
    height: 430px;

    left: 10%;
    top: 20%;

    background: #22d3ee;

    opacity: .10;

    animation:
        ctaGlowOne
        9s ease-in-out
        infinite alternate;
}


.cta-glow-two {
    width: 470px;
    height: 470px;

    right: 8%;
    bottom: 10%;

    background: #7c3aed;

    opacity: .11;

    animation:
        ctaGlowTwo
        12s ease-in-out
        infinite alternate;
}


@keyframes ctaGlowOne {

    to {
        transform:
            translate(90px,55px)
            scale(1.18);
    }

}


@keyframes ctaGlowTwo {

    to {
        transform:
            translate(-80px,-50px)
            scale(.9);
    }

}


/* CONTENT */

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;
}


.cta-content h2 {
    margin-top: 14px;

    font-size:
        clamp(
            44px,
            6vw,
            76px
        );

    line-height: 1.02;
}


.cta-content h2 span {
    background:
        linear-gradient(
            90deg,
            #67e8f9,
            #818cf8,
            #c084fc
        );

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

    color: transparent;
}


.cta-content > p {
    max-width: 620px;

    margin:
        22px auto 0;

    color: #82979c;

    font-size: 14px;

    line-height: 1.8;
}


/* ACTIONS */

.cta-actions {
    margin-top: 35px;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 14px;
}


.cta-primary,
.cta-secondary {
    text-decoration: none;

    border-radius: 13px;

    font-size: 12px;

    font-weight: 700;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.cta-primary {
    padding:
        15px 22px;

    display: inline-flex;

    gap: 12px;

    align-items: center;

    color: #031114;

    background:
        linear-gradient(
            135deg,
            #67e8f9,
            #22d3ee
        );

    box-shadow:
        0 12px 35px
        rgba(34,211,238,.18);
}


.cta-primary:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 18px 45px
        rgba(34,211,238,.28);
}


.cta-primary span {
    transition:
        transform .25s ease;
}


.cta-primary:hover span {
    transform:
        translateX(4px);
}


.cta-secondary {
    padding:
        14px 20px;

    color: #c7d5d8;

    border:
        1px solid
        rgba(255,255,255,.10);

    background:
        rgba(255,255,255,.025);
}


.cta-secondary:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(103,232,249,.20);
}


/* MINI POINTS */

.cta-mini-points {
    margin-top: 22px;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;

    color: #60777c;

    font-size: 9px;
}


/* ENERGY LINE */

.cta-energy-line {
    position: absolute;

    left: 15%;
    right: 15%;
    bottom: 0;

    height: 1px;

    overflow: hidden;

    background:
        rgba(255,255,255,.05);
}


.cta-energy-line::after {
    content: "";

    position: absolute;

    width: 25%;
    height: 100%;

    left: -30%;

    background:
        linear-gradient(
            90deg,
            transparent,
            #67e8f9,
            transparent
        );

    animation:
        ctaLineMove
        5s linear infinite;
}


@keyframes ctaLineMove {

    to {
        left: 110%;
    }

}


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

.hq-footer {
    position: relative;

    padding:
        60px 7% 25px;

    text-align: left;

    background:
        rgba(3,12,16,.72);

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


.footer-main {
    max-width: 1250px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    gap: 80px;

    padding-bottom: 45px;
}


.footer-brand {
    max-width: 310px;
}


.footer-brand h2 {
    font-size: 24px;
}


.footer-brand p {
    margin-top: 12px;

    color: #647b80;

    font-size: 11px;

    line-height: 1.7;
}


.footer-links {
    display: grid;

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

    gap: 55px;
}


.footer-links > div {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}


.footer-links span {
    margin-bottom: 5px;

    color: #587076;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.footer-links a {
    color: #96a9ad;

    text-decoration: none;

    font-size: 10px;

    transition:
        color .2s ease,
        transform .2s ease;
}


.footer-links a:hover {
    color: #67e8f9;

    transform:
        translateX(3px);
}


/* BOTTOM */

.footer-bottom {
    max-width: 1250px;

    margin: auto;

    padding-top: 22px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

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

    color: #4d646a;

    font-size: 8px;

    letter-spacing: .7px;
}


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

@media (max-width: 800px) {

    .footer-main {
        flex-direction: column;

        gap: 40px;
    }

    .footer-links {
        grid-template-columns:
            repeat(3,1fr);

        gap: 25px;
    }

}


@media (max-width: 600px) {

    .final-cta {
        min-height: 580px;

        padding:
            95px 18px;
    }

    .cta-content h2 {
        font-size: 42px;
    }

    .cta-mini-points {
        flex-direction: column;

        gap: 8px;
    }

    .hq-footer {
        padding:
            50px 18px 22px;
    }

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

        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
    }

}
/* =========================================
   LANDING PAGE SPACING COMPACT
========================================= */

.hq-features {
    padding-top: 85px;
    padding-bottom: 85px;
}

.game-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.how-section {
    padding-top: 90px;
    padding-bottom: 95px;
}

.explorer-section {
    padding-top: 90px;
    padding-bottom: 95px;
}

.philosophy-section {
    min-height: 620px;
    padding-top: 85px;
    padding-bottom: 85px;
}

.faq-section {
    padding-top: 85px;
    padding-bottom: 90px;
}

.final-cta {
    min-height: 520px;
    padding-top: 90px;
    padding-bottom: 90px;
}


/* Heading ke baad ka extra gap bhi kam */

.section-heading {
    margin-bottom: 40px;
}

.quest-path {
    margin-top: 50px;
}

.explorer-shell {
    margin-top: 45px;
}

.success-equation {
    margin-top: 45px;
}

.faq-list {
    margin-top: 40px;
}


/* MOBILE */

@media (max-width: 600px) {

    .hq-features,
    .game-section,
    .how-section,
    .explorer-section,
    .faq-section {
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .philosophy-section {
        min-height: 580px;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .final-cta {
        min-height: 500px;
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .section-heading {
        margin-bottom: 30px;
    }
}
/* =========================================
   LANDING NAVBAR V2
========================================= */

.landing-header {
    position: sticky;
    top: 0;

    z-index: 200;

    width: min(1180px, calc(100% - 36px));

    height: 68px;

    margin: 16px auto 0;

    padding: 0 16px 0 18px;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 35px;

    border-radius: 18px;

    border:
        1px solid rgba(255,255,255,.08);

    background:
        rgba(4,18,24,.72);

    backdrop-filter:
        blur(22px);

    box-shadow:
        0 12px 40px rgba(0,0,0,.18);
}


.landing-brand {
    display: flex;

    align-items: center;

    gap: 10px;

    color: white;

    text-decoration: none;
}


.brand-mark {
    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color: #03171b;

    background:
        linear-gradient(
            135deg,
            #67e8f9,
            #22d3ee
        );

    font-size: 11px;
    font-weight: 900;

    box-shadow:
        0 0 22px rgba(34,211,238,.18);
}


.landing-brand strong {
    font-size: 16px;

    letter-spacing: -.2px;
}


/* NAV */

.landing-nav {
    display: flex;

    justify-content: center;

    gap: 30px;
}


.landing-nav a {
    position: relative;

    color: #81959a;

    text-decoration: none;

    font-size: 11px;
    font-weight: 600;

    transition:
        color .2s ease;
}


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


.landing-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -9px;

    width: 0;
    height: 2px;

    transform:
        translateX(-50%);

    border-radius: 20px;

    background: #67e8f9;

    transition:
        width .25s ease;

    box-shadow:
        0 0 10px rgba(103,232,249,.5);
}


.landing-nav a:hover::after {
    width: 75%;
}


/* ACTIONS */

.landing-actions {
    display: flex;

    align-items: center;

    gap: 10px;
}


.nav-login,
.nav-start {
    text-decoration: none;

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


.nav-login {
    color: #9aadb1;

    padding: 10px 12px;
}


.nav-start {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 11px 15px;

    border-radius: 11px;

    color: #04171b;

    background:
        #67e8f9;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.nav-start:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(34,211,238,.18);
}


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

.landing-hero {
    position: relative;

    width:
        min(1180px, calc(100% - 36px));

    min-height: 720px;

    margin: 0 auto;

    padding:
        85px 25px 70px;

    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    align-items: center;

    gap: 70px;

    overflow: hidden;

    isolation: isolate;
}


/* subtle grid */

.hero-grid-bg {
    position: absolute;

    inset: 0;

    z-index: -4;

    background-image:
        linear-gradient(
            rgba(103,232,249,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(103,232,249,.018) 1px,
            transparent 1px
        );

    background-size:
        55px 55px;

    mask-image:
        radial-gradient(
            ellipse at center,
            black,
            transparent 75%
        );

    pointer-events: none;
}


/* AMBIENT */

.hero-ambient {
    position: absolute;

    z-index: -3;

    border-radius: 50%;

    filter:
        blur(130px);

    pointer-events: none;
}


.hero-ambient-one {
    width: 420px;
    height: 420px;

    left: -120px;
    top: 90px;

    background:
        #22d3ee;

    opacity: .08;
}


.hero-ambient-two {
    width: 520px;
    height: 520px;

    right: -170px;
    top: 80px;

    background:
        #6366f1;

    opacity: .09;
}


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

.landing-hero-copy {
    position: relative;

    z-index: 3;

    max-width: 590px;
}


.hero-pill {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 12px;

    margin-bottom: 22px;

    border-radius: 999px;

    border:
        1px solid rgba(103,232,249,.12);

    background:
        rgba(34,211,238,.045);

    color: #79dfe8;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.3px;
}


.hero-pill-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #67e8f9;

    box-shadow:
        0 0 10px
        rgba(103,232,249,.8);

    animation:
        heroPillPulse
        1.8s ease-in-out infinite;
}


@keyframes heroPillPulse {

    50% {
        transform:
            scale(1.45);

        opacity: .55;
    }

}


.landing-hero-copy h1 {
    margin: 0;

    font-size:
        clamp(
            48px,
            5.4vw,
            73px
        );

    line-height: .99;

    letter-spacing:
        -3px;
}


.landing-hero-copy h1 span {
    background:
        linear-gradient(
            90deg,
            #67e8f9,
            #5dd9f2,
            #818cf8
        );

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

    color: transparent;
}


.landing-hero-copy > p {
    max-width: 525px;

    margin-top: 25px;

    color: #82979d;

    font-size: 15px;

    line-height: 1.75;
}


/* ACTIONS */

.landing-hero-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}


.hero-main-btn,
.hero-explore-btn {
    text-decoration: none;

    font-size: 11px;
    font-weight: 700;
}


.hero-main-btn {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 14px 19px;

    border-radius: 12px;

    color: #03171b;

    background:
        linear-gradient(
            135deg,
            #67e8f9,
            #22d3ee
        );

    box-shadow:
        0 12px 35px
        rgba(34,211,238,.13);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.hero-main-btn:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 17px 40px
        rgba(34,211,238,.22);
}


.hero-main-btn span {
    transition:
        transform .25s ease;
}


.hero-main-btn:hover span {
    transform:
        translateX(4px);
}


.hero-explore-btn {
    padding:
        13px 17px;

    border-radius: 12px;

    border:
        1px solid rgba(255,255,255,.09);

    color: #a5b6ba;

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

    transition:
        border-color .2s ease,
        color .2s ease;
}


.hero-explore-btn:hover {
    color: white;

    border-color:
        rgba(103,232,249,.20);
}


/* TRUST */

.hero-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 19px;

    margin-top: 24px;

    color: #5d7479;

    font-size: 9px;
}


.hero-trust div {
    display: flex;

    align-items: center;

    gap: 6px;
}


.hero-trust span {
    color: #67e8f9;
}


/* =========================================
   PRODUCT PREVIEW
========================================= */

.hero-product-wrap {
    position: relative;

    width: 100%;

    max-width: 570px;

    justify-self: end;
}


.hero-dashboard {
    position: relative;

    padding: 25px;

    border-radius: 24px;

    overflow: hidden;

    border:
        1px solid rgba(255,255,255,.085);

    background:
        linear-gradient(
            145deg,
            rgba(13,42,50,.87),
            rgba(8,20,32,.92)
        );

    box-shadow:
        0 35px 90px
        rgba(0,0,0,.34),
        0 0 55px
        rgba(34,211,238,.035);

    backdrop-filter:
        blur(20px);

    animation:
        heroDashboardFloat
        6s ease-in-out infinite;
}


@keyframes heroDashboardFloat {

    50% {
        transform:
            translateY(-8px);
    }

}


/* TOP */

.hero-dashboard-top {
    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 14px;

    padding-bottom: 18px;

    border-bottom:
        1px solid rgba(255,255,255,.055);
}


.dashboard-window-dots {
    display: flex;

    gap: 5px;
}


.dashboard-window-dots span {
    width: 6px;
    height: 6px;

    border-radius: 50%;
}


.dashboard-window-dots span:nth-child(1) {
    background: #fb7185;
}

.dashboard-window-dots span:nth-child(2) {
    background: #fbbf24;
}

.dashboard-window-dots span:nth-child(3) {
    background: #4ade80;
}


.hero-dashboard-top > small {
    color: #50686e;

    font-size: 7px;

    letter-spacing: 1px;
}


.hero-level-pill {
    padding:
        6px 8px;

    border-radius: 8px;

    color: #67e8f9;

    background:
        rgba(34,211,238,.07);

    font-size: 8px;
    font-weight: 800;
}


/* TITLE */

.hero-dashboard-title {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    margin-top: 23px;
}


.hero-dashboard-title small {
    color: #526a70;

    font-size: 7px;

    letter-spacing: 1.2px;
}


.hero-dashboard-title h2 {
    margin-top: 4px;

    font-size: 20px;
}


.dashboard-avatar {
    width: 39px;
    height: 39px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    color: #05191d;

    background:
        linear-gradient(
            135deg,
            #67e8f9,
            #22d3ee
        );

    font-size: 13px;
    font-weight: 900;
}


/* XP */

.hero-xp-area {
    margin-top: 24px;
}


.hero-xp-info {
    display: flex;

    justify-content: space-between;

    margin-bottom: 8px;
}


.hero-xp-info span,
.hero-xp-info strong {
    font-size: 8px;
}


.hero-xp-info span {
    color: #526a70;

    letter-spacing: .8px;
}


.hero-xp-info strong {
    color: #8ea3a8;
}


.hero-xp-track {
    height: 8px;

    overflow: hidden;

    border-radius: 999px;

    background:
        rgba(255,255,255,.055);
}


.hero-xp-track span {
    display: block;

    width: 80%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #22d3ee,
            #6366f1
        );

    background-size:
        200% 100%;

    animation:
        heroXpFlow
        3s linear infinite;
}


@keyframes heroXpFlow {

    to {
        background-position:
            200% 0;
    }

}


/* STATS */

.hero-stat-grid {
    display: grid;

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

    gap: 8px;

    margin-top: 19px;
}


.hero-stat-card {
    padding:
        13px 8px;

    text-align: center;

    border-radius: 12px;

    border:
        1px solid rgba(255,255,255,.045);

    background:
        rgba(255,255,255,.025);
}


.hero-stat-card > span {
    display: block;

    margin-bottom: 4px;

    font-size: 13px;
}


.hero-stat-card strong {
    display: block;

    font-size: 15px;
}


.hero-stat-card small {
    display: block;

    margin-top: 3px;

    color: #536a70;

    font-size: 7px;
}


/* QUESTS */

.hero-quests {
    margin-top: 20px;
}


.hero-quests-heading {
    display: flex;

    justify-content: space-between;

    margin-bottom: 8px;
}


.hero-quests-heading span,
.hero-quests-heading small {
    color: #526a70;

    font-size: 7px;

    letter-spacing: .8px;
}


.hero-quest {
    display: grid;

    grid-template-columns:
        26px 1fr auto;

    align-items: center;

    gap: 9px;

    padding: 9px 10px;

    margin-top: 6px;

    border-radius: 10px;

    border:
        1px solid rgba(255,255,255,.04);

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

    transition:
        background .2s ease,
        transform .2s ease;
}


.hero-quest:hover {
    transform:
        translateX(4px);

    background:
        rgba(255,255,255,.04);
}


.hero-check {
    width: 22px;
    height: 22px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #06191d;

    background: #67e8f9;

    font-size: 9px;

    font-weight: 900;
}


.hero-check.pending {
    background: transparent;

    border:
        1px solid rgba(255,255,255,.12);
}


.hero-quest strong {
    display: block;

    font-size: 9px;
}


.hero-quest small {
    display: block;

    margin-top: 2px;

    color: #52686d;

    font-size: 6px;
}


.hero-quest b {
    color: #67e8f9;

    font-size: 7px;
}


/* =========================================
   FLOATING HERO CARDS
========================================= */

.hero-float-card {
    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 12px;

    border-radius: 12px;

    border:
        1px solid rgba(255,255,255,.08);

    background:
        rgba(5,23,30,.88);

    backdrop-filter:
        blur(15px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.27);

    animation:
        heroFloatSmall
        4s ease-in-out infinite;
}


.hero-float-card > span {
    font-size: 15px;
}


.hero-float-card small {
    display: block;

    color: #526a70;

    font-size: 6px;

    letter-spacing: .7px;
}


.hero-float-card strong {
    display: block;

    margin-top: 2px;

    font-size: 9px;
}


.hero-streak-float {
    left: -38px;
    bottom: 60px;
}


.hero-xp-float {
    right: -25px;
    top: 70px;

    animation-delay:
        1.2s;
}


.hero-xp-float > span {
    color: #67e8f9;

    font-size: 10px;

    font-weight: 900;
}


@keyframes heroFloatSmall {

    50% {
        transform:
            translateY(-9px);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .landing-header {
        grid-template-columns:
            auto 1fr;

        width:
            calc(100% - 24px);
    }


    .landing-nav {
        display: none;
    }


    .landing-actions {
        justify-self: end;
    }


    .landing-hero {
        width:
            calc(100% - 24px);

        min-height: auto;

        grid-template-columns: 1fr;

        gap: 65px;

        padding:
            75px 8px 70px;

        text-align: center;
    }


    .landing-hero-copy {
        max-width: 650px;

        margin: auto;
    }


    .landing-hero-copy > p {
        margin-left: auto;
        margin-right: auto;
    }


    .landing-hero-actions,
    .hero-trust {
        justify-content: center;
    }


    .hero-product-wrap {
        justify-self: center;

        max-width: 570px;
    }

}


@media (max-width: 600px) {

    .landing-header {
        height: 62px;

        margin-top: 10px;

        padding:
            0 10px;
    }


    .brand-mark {
        width: 32px;
        height: 32px;
    }


    .landing-brand strong {
        font-size: 14px;
    }


    .nav-login {
        display: none;
    }


    .nav-start {
        padding:
            9px 11px;

        font-size: 9px;
    }


    .landing-hero-copy h1 {
        font-size: 46px;

        letter-spacing:
            -2px;
    }


    .landing-hero-copy > p {
        font-size: 13px;
    }


    .hero-trust {
        gap: 10px;

        font-size: 8px;
    }


    .hero-dashboard {
        padding: 18px;

        border-radius: 19px;
    }


    .hero-float-card {
        display: none;
    }

}
/* =========================================
   COMPACT LANDING FIX
========================================= */

.hq-features,
.game-section,
.how-section,
.explorer-section,
.philosophy-section,
.faq-section,
.final-cta {
    min-height: auto;
}

.hq-features {
    padding-top: 70px;
    padding-bottom: 70px;
}

.game-section {
    padding-top: 75px;
    padding-bottom: 75px;
}

.how-section {
    padding-top: 75px;
    padding-bottom: 80px;
}

.explorer-section {
    padding-top: 75px;
    padding-bottom: 80px;
}

.philosophy-section {
    min-height: 420px;
    padding-top: 65px;
    padding-bottom: 65px;
}

.faq-section {
    padding-top: 70px;
    padding-bottom: 75px;
}

.final-cta {
    min-height: 460px;
    padding-top: 75px;
    padding-bottom: 75px;
}

.section-heading {
    margin-bottom: 32px;
}

.quest-path,
.explorer-shell,
.faq-list {
    margin-top: 35px;
}

.success-equation {
    margin-top: 30px;
}

.philosophy-bottom {
    margin-top: 30px;
}
/* =========================================
   HABITQUEST QUEST ORBIT
========================================= */

.quest-orbit-wrap {
    position: relative;

    width: min(100%, 540px);
    height: 540px;

    justify-self: end;

    display: grid;
    place-items: center;

    isolation: isolate;
}


/* =========================================
   BACKGROUND ENERGY
========================================= */

.orbit-ambient {
    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(34,211,238,.13),
            rgba(99,102,241,.045) 45%,
            transparent 72%
        );

    filter: blur(12px);

    animation:
        orbitAmbientPulse
        4s ease-in-out infinite;
}

@keyframes orbitAmbientPulse {

    50% {
        transform: scale(1.12);
        opacity: .65;
    }

}


/* =========================================
   ORBIT RINGS
========================================= */

.orbit-ring {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.orbit-ring-one {
    width: 255px;
    height: 255px;

    border:
        1px solid rgba(103,232,249,.13);
}


.orbit-ring-two {
    width: 365px;
    height: 365px;

    border:
        1px dashed rgba(103,232,249,.10);

    animation:
        orbitRotate
        35s linear infinite;
}


.orbit-ring-three {
    width: 475px;
    height: 475px;

    border:
        1px solid rgba(129,140,248,.065);

    animation:
        orbitRotateReverse
        50s linear infinite;
}


@keyframes orbitRotate {

    to {
        transform: rotate(360deg);
    }

}


@keyframes orbitRotateReverse {

    to {
        transform: rotate(-360deg);
    }

}


/* small moving energy point */

.orbit-ring-two::before {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    left: 50%;
    top: -4px;

    border-radius: 50%;

    background: #67e8f9;

    box-shadow:
        0 0 12px #67e8f9,
        0 0 25px rgba(103,232,249,.5);
}


.orbit-ring-three::after {
    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    right: 35px;
    bottom: 95px;

    border-radius: 50%;

    background: #818cf8;

    box-shadow:
        0 0 15px rgba(129,140,248,.7);
}


/* =========================================
   CENTER CORE
========================================= */

.orbit-core {
    position: relative;

    z-index: 5;

    width: 190px;
    height: 190px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(10,35,43,.96),
            rgba(5,19,27,.96)
        );

    box-shadow:
        0 0 60px rgba(34,211,238,.08),
        inset 0 0 35px rgba(34,211,238,.025);
}


.orbit-core-inner {
    position: relative;

    z-index: 3;

    text-align: center;
}


.orbit-core-label {
    display: block;

    color: #597177;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1.8px;
}


.orbit-core-inner strong {
    display: block;

    margin: 7px 0 4px;

    font-size: 42px;

    letter-spacing: -2px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #67e8f9
        );

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

    color: transparent;
}


.orbit-core-inner small {
    color: #6c858a;

    font-size: 7px;

    letter-spacing: .9px;
}


/* =========================================
   CIRCULAR PROGRESS
========================================= */

.orbit-progress {
    position: absolute;

    inset: 5px;

    width: calc(100% - 10px);
    height: calc(100% - 10px);

    transform: rotate(-90deg);
}


.orbit-progress circle {
    fill: none;

    stroke-width: 3;
}


.orbit-progress-bg {
    stroke:
        rgba(255,255,255,.045);
}


.orbit-progress-value {
    stroke: #67e8f9;

    stroke-linecap: round;

    stroke-dasharray: 515;

    stroke-dashoffset: 82;

    filter:
        drop-shadow(
            0 0 5px
            rgba(103,232,249,.6)
        );

    animation:
        orbitProgressLoad
        1.8s ease-out;
}


@keyframes orbitProgressLoad {

    from {
        stroke-dashoffset: 515;
    }

}


/* =========================================
   ORBIT NODES
========================================= */

.orbit-node {
    position: absolute;

    z-index: 7;

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 125px;

    padding: 10px 12px;

    border-radius: 14px;

    border:
        1px solid rgba(255,255,255,.075);

    background:
        rgba(5,22,29,.82);

    backdrop-filter:
        blur(14px);

    box-shadow:
        0 12px 35px rgba(0,0,0,.22);

    animation:
        orbitNodeFloat
        4.5s ease-in-out infinite;
}


.orbit-node-icon {
    width: 31px;
    height: 31px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color: #67e8f9;

    background:
        rgba(34,211,238,.075);

    font-size: 9px;
    font-weight: 900;
}


.orbit-node small {
    display: block;

    color: #526a70;

    font-size: 6px;

    letter-spacing: .9px;
}


.orbit-node strong {
    display: block;

    margin-top: 3px;

    font-size: 10px;
}


.orbit-streak {
    left: 2px;
    top: 115px;
}


.orbit-xp {
    right: -5px;
    top: 145px;

    animation-delay: .8s;
}


.orbit-habits {
    left: 30px;
    bottom: 95px;

    animation-delay: 1.6s;
}


@keyframes orbitNodeFloat {

    50% {
        transform:
            translateY(-7px);
    }

}


/* =========================================
   LEVEL INDICATOR
========================================= */

.orbit-level {
    position: absolute;

    z-index: 7;

    right: 45px;
    bottom: 120px;

    width: 62px;
    height: 62px;

    display: grid;
    place-content: center;

    text-align: center;

    border-radius: 18px;

    transform: rotate(6deg);

    border:
        1px solid rgba(129,140,248,.13);

    background:
        rgba(13,20,42,.76);

    backdrop-filter: blur(12px);
}


.orbit-level span {
    color: #65758b;

    font-size: 6px;

    letter-spacing: 1px;
}


.orbit-level strong {
    margin-top: 2px;

    color: #a5b4fc;

    font-size: 18px;
}


/* =========================================
   ACTIVITY STRIP
========================================= */

.orbit-activity {
    position: absolute;

    z-index: 8;

    left: 50%;
    bottom: 4px;

    width: 255px;

    transform:
        translateX(-50%);

    padding: 13px 15px;

    border-radius: 15px;

    border:
        1px solid rgba(255,255,255,.065);

    background:
        rgba(4,18,24,.88);

    backdrop-filter: blur(16px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.25);
}


.orbit-activity-top {
    display: flex;

    justify-content: space-between;

    align-items: center;
}


.orbit-activity-top span {
    color: #61787d;

    font-size: 6px;

    letter-spacing: 1px;
}


.orbit-activity-top strong {
    color: #67e8f9;

    font-size: 8px;
}


.orbit-activity-bars {
    display: grid;

    grid-template-columns:
        repeat(7,1fr);

    gap: 5px;

    margin: 10px 0 7px;
}


.orbit-activity-bars span {
    height: 5px;

    border-radius: 10px;

    background:
        rgba(255,255,255,.07);
}


.orbit-activity-bars span.done {
    background:
        linear-gradient(
            90deg,
            #22d3ee,
            #67e8f9
        );

    box-shadow:
        0 0 7px
        rgba(34,211,238,.16);
}


.orbit-activity > small {
    color: #536a70;

    font-size: 7px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .quest-orbit-wrap {
        justify-self: center;
    }

}


@media (max-width: 600px) {

    .quest-orbit-wrap {
        height: 430px;

        transform: scale(.82);

        margin:
            -30px auto;
    }

}