/* =========================================================
   OSON STARS
   Main Landing Page Styles
   /stars/assets/css/style.css
========================================================= */


/* =========================================================
   1. ROOT
========================================================= */

:root {
    --bg: #07070d;
    --bg-soft: #0b0913;

    --card: rgba(18, 15, 31, 0.72);
    --card-strong: rgba(23, 18, 40, 0.90);

    --purple: #7c3cff;
    --purple-light: #a86cff;
    --violet: #9a4dff;

    --pink: #ff3ca6;
    --pink-light: #ff6fc5;

    --blue: #597cff;
    --cyan: #4bdfff;

    --gold: #ffb52e;
    --gold-light: #ffd76a;

    --white: #ffffff;
    --text: #f7f5ff;
    --muted: #a7a1b5;

    --border: rgba(255, 255, 255, 0.10);
    --border-purple: rgba(143, 76, 255, 0.30);

    --gradient:
        linear-gradient(
            135deg,
            #7650ff 0%,
            #a83cff 45%,
            #ff3ca6 100%
        );

    --gradient-text:
        linear-gradient(
            90deg,
            #6f73ff,
            #a94cff,
            #ff3ca6
        );

    --shadow:
        0 25px 70px rgba(0, 0, 0, 0.45);

    --purple-shadow:
        0 0 45px rgba(124, 60, 255, 0.24);

    --container: 1180px;

    --header-height: 82px;
}


/* =========================================================
   2. RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 75% 8%,
            rgba(111, 40, 180, 0.12),
            transparent 25%
        ),
        radial-gradient(
            circle at 20% 28%,
            rgba(66, 38, 160, 0.08),
            transparent 30%
        ),
        #07070d;

    color: var(--text);

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

    line-height: 1.5;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

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

::selection {
    background: rgba(153, 71, 255, 0.55);
    color: #fff;
}


/* =========================================================
   3. SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #07070d;
}

::-webkit-scrollbar-thumb {
    background:
        linear-gradient(
            #743cff,
            #db3da8
        );

    border-radius: 20px;
}


/* =========================================================
   4. GLOBAL
========================================================= */

.container {
    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin-inline: auto;
}

.section {
    position: relative;

    padding:
        105px
        0;
}

.section-heading {
    text-align: center;

    max-width: 760px;

    margin:
        0 auto
        55px;
}

.section-heading h2 {
    font-size: clamp(
        32px,
        5vw,
        50px
    );

    line-height: 1.1;

    font-weight: 900;

    letter-spacing: -1.7px;
}

.section-kicker {
    display: inline-flex;

    margin-bottom: 13px;

    color: #b88cff;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2.2px;
}

.gradient-text {
    background: var(--gradient-text);

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

    color: transparent;
}


/* =========================================================
   5. BACKGROUND
========================================================= */

.page-background {
    position: fixed;

    inset: 0;

    z-index: -10;

    pointer-events: none;

    overflow: hidden;
}

.page-background::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: 0.17;

    background-image:
        linear-gradient(
            rgba(255,255,255,.015) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.015) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

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

.background-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(110px);

    opacity: 0.18;

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

.glow-one {
    width: 520px;
    height: 520px;

    background: #6f2cff;

    top: -180px;
    right: -100px;
}

.glow-two {
    width: 450px;
    height: 450px;

    background: #e6319e;

    top: 450px;
    left: -260px;

    animation-delay: -4s;
}

.glow-three {
    width: 420px;
    height: 420px;

    background: #3e47e8;

    bottom: 0;
    right: 10%;

    animation-delay: -7s;
}

@keyframes backgroundFloat {
    from {
        transform:
            translate3d(
                0,
                0,
                0
            )
            scale(1);
    }

    to {
        transform:
            translate3d(
                30px,
                50px,
                0
            )
            scale(1.12);
    }
}


/* =========================================================
   6. MINI BACKGROUND STARS
========================================================= */

.mini-star {
    position: absolute;

    color: #b354ff;

    opacity: 0.65;

    text-shadow:
        0 0 12px
        currentColor;

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

.star-1 {
    left: 8%;
    top: 15%;

    font-size: 15px;
}

.star-2 {
    right: 12%;
    top: 22%;

    font-size: 12px;

    color: #ff4da8;

    animation-delay: -2s;
}

.star-3 {
    left: 23%;
    top: 55%;

    font-size: 18px;

    animation-delay: -3s;
}

.star-4 {
    right: 25%;
    top: 72%;

    color: #ffb940;

    animation-delay: -1s;
}

.star-5 {
    left: 70%;
    top: 40%;

    animation-delay: -4s;
}

.star-6 {
    left: 48%;
    top: 82%;

    color: #ff5ab2;

    animation-delay: -5s;
}

@keyframes miniStarFloat {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(0deg)
            scale(1);

        opacity: 0.4;
    }

    50% {
        transform:
            translateY(-18px)
            rotate(30deg)
            scale(1.2);

        opacity: 1;
    }
}


/* =========================================================
   7. HEADER
========================================================= */

.site-header {
    position: fixed;

    z-index: 1000;

    top: 0;
    left: 0;

    width: 100%;

    height: var(--header-height);

    display: flex;
    align-items: center;

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

.site-header.scrolled {
    background:
        rgba(
            7,
            7,
            13,
            0.80
        );

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

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

    box-shadow:
        0 10px 45px
        rgba(0,0,0,.22);
}

.header-container {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 30px;
}


/* =========================================================
   8. LOGO
========================================================= */

.logo {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    flex-shrink: 0;

    font-size: 22px;

    font-weight: 950;

    letter-spacing: -0.7px;
}

.logo-icon {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 31px;
    height: 31px;

    margin-right: 2px;

    color: #fff;

    font-size: 27px;

    text-shadow:
        0 0 7px #b448ff,
        0 0 20px #8b3cff;

    animation:
        logoPulse
        3s
        ease-in-out
        infinite;
}

.logo-oson {
    color: #fff;
}

.logo-stars {
    background:
        linear-gradient(
            90deg,
            #955cff,
            #cf4dff
        );

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

    color: transparent;
}

@keyframes logoPulse {
    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(8deg) scale(1.08);
    }
}


/* =========================================================
   9. DESKTOP NAVIGATION
========================================================= */

.desktop-navigation {
    display: flex;

    align-items: center;

    gap: 44px;

    margin-left: auto;
}

.desktop-navigation a {
    position: relative;

    color:
        rgba(
            255,
            255,
            255,
            0.88
        );

    font-size: 14px;

    font-weight: 700;

    transition:
        color .25s ease;
}

.desktop-navigation a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -8px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background: var(--gradient);

    transform:
        translateX(-50%);

    transition:
        width
        .25s
        ease;
}

.desktop-navigation a:hover {
    color: #fff;
}

.desktop-navigation a:hover::after {
    width: 100%;
}


/* =========================================================
   10. HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;

    align-items: center;

    gap: 12px;
}


/* =========================================================
   11. LANGUAGE
========================================================= */

.language-switcher {
    position: relative;
}

.language-current {
    height: 44px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        0
        16px;

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

    border-radius: 18px;

    background:
        rgba(
            18,
            16,
            29,
            0.70
        );

    color: #fff;

    cursor: pointer;

    backdrop-filter:
        blur(15px);

    transition:
        .25s ease;
}

.language-current:hover {
    border-color:
        rgba(
            151,
            80,
            255,
            .45
        );

    background:
        rgba(
            31,
            24,
            50,
            .9
        );
}

.language-current strong {
    font-size: 13px;
}

.language-arrow {
    margin-left: 2px;

    color: #9991a8;

    transition:
        transform
        .25s
        ease;
}

.language-switcher.open
.language-arrow {
    transform:
        rotate(180deg);
}

.language-dropdown {
    position: absolute;

    right: 0;
    top: calc(100% + 9px);

    width: 115px;

    padding: 7px;

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

    border-radius: 16px;

    background:
        rgba(
            16,
            13,
            27,
            .96
        );

    backdrop-filter:
        blur(22px);

    box-shadow:
        0 20px 60px
        rgba(0,0,0,.40);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-7px)
        scale(.97);

    transform-origin:
        top right;

    transition:
        .22s ease;
}

.language-switcher.open
.language-dropdown {
    opacity: 1;

    visibility: visible;

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

.language-dropdown a {
    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        10px
        11px;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 700;

    transition:
        background
        .2s
        ease;
}

.language-dropdown a:hover,
.language-dropdown a.active {
    background:
        rgba(
            125,
            60,
            255,
            .17
        );
}


/* =========================================================
   12. MOBILE MENU
========================================================= */

.mobile-menu-button {
    width: 43px;
    height: 43px;

    display: none;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

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

    border-radius: 14px;

    background:
        rgba(
            17,
            14,
            29,
            .75
        );

    cursor: pointer;
}

.mobile-menu-button span {
    width: 18px;
    height: 2px;

    border-radius: 10px;

    background: #fff;

    transition:
        .25s ease;
}

.mobile-menu-button.active
span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.mobile-menu-button.active
span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active
span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}

.mobile-navigation {
    position: fixed;

    z-index: 999;

    top: var(--header-height);

    left: 20px;
    right: 20px;

    display: none;

    padding: 10px;

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

    border-radius: 20px;

    background:
        rgba(
            12,
            10,
            21,
            .97
        );

    backdrop-filter:
        blur(25px);

    box-shadow:
        var(--shadow);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-10px);

    transition:
        .25s ease;
}

.mobile-navigation.active {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}

.mobile-navigation a {
    display: block;

    padding: 14px;

    border-radius: 12px;

    color: #ddd9e7;

    font-size: 14px;

    font-weight: 750;
}

.mobile-navigation a:hover {
    background:
        rgba(
            125,
            60,
            255,
            .12
        );

    color: #fff;
}


/* =========================================================
   13. HERO
========================================================= */

.hero {
    position: relative;

    min-height: 820px;

    display: flex;

    align-items: center;

    padding:
        135px
        0
        65px;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -160px;
    top: 30px;

    border-radius: 50%;

    background:
        rgba(
            130,
            45,
            255,
            .10
        );

    filter:
        blur(100px);

    pointer-events: none;
}

.hero-container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(450px, .95fr);

    align-items: center;

    gap: 55px;
}


/* =========================================================
   14. HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 4;
}

.hero-badge {
    width: fit-content;

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 24px;

    padding:
        8px
        14px;

    border:
        1px solid
        rgba(
            150,
            79,
            255,
            .25
        );

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            rgba(112, 51, 221, .23),
            rgba(213, 47, 155, .12)
        );

    color: #e9ddff;

    font-size: 12px;

    font-weight: 800;

    box-shadow:
        inset 0 0 25px
        rgba(125,60,255,.06);
}

.hero-badge span {
    color: #ffcb43;

    text-shadow:
        0 0 10px
        #ffae24;
}

.hero h1 {
    max-width: 720px;

    font-size:
        clamp(
            47px,
            5.1vw,
            70px
        );

    line-height: 1.08;

    letter-spacing: -3px;

    font-weight: 950;
}

.hero h1 > span {
    display: block;
}

.hero-description {
    max-width: 610px;

    margin-top: 26px;

    color: #aaa5b6;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   15. BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 32px;
}

.button {
    position: relative;

    min-height: 54px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding:
        0
        25px;

    border-radius: 16px;

    font-size: 14px;

    font-weight: 850;

    overflow: hidden;

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

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

.button-primary {
    background:
        linear-gradient(
            100deg,
            #7445ff,
            #b63df2,
            #f63d9e
        );

    color: #fff;

    box-shadow:
        0 12px 35px
        rgba(
            163,
            54,
            241,
            .30
        );
}

.button-primary::before {
    content: "";

    position: absolute;

    top: -50%;
    left: -90%;

    width: 45%;
    height: 200%;

    transform:
        rotate(25deg);

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

    transition:
        left
        .7s
        ease;
}

.button-primary:hover::before {
    left: 150%;
}

.button-primary:hover {
    box-shadow:
        0 15px 45px
        rgba(
            181,
            57,
            239,
            .42
        );
}

.button-outline {
    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .18
        );

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

    color: #fff;

    backdrop-filter:
        blur(10px);
}

.button-outline:hover {
    border-color:
        rgba(
            162,
            91,
            255,
            .55
        );

    background:
        rgba(
            120,
            61,
            220,
            .08
        );
}

.button-arrow {
    font-size: 18px;

    transition:
        transform
        .25s
        ease;
}

.button:hover
.button-arrow {
    transform:
        translateX(4px);
}


/* =========================================================
   16. HERO TRUST
========================================================= */

.hero-trust {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 30px;
}

.trust-avatars {
    display: flex;
}

.trust-avatars span {
    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    margin-left: -8px;

    border:
        2px solid
        #0a0910;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #7b49ff,
            #ff62a8
        );

    font-size: 15px;
}

.trust-avatars span:first-child {
    margin-left: 0;
}

.trust-text {
    color: #9e99aa;

    font-size: 12px;
}

.trust-text strong {
    color: #fff;
}

.trust-stars {
    margin-top: 2px;

    color: #ffc431;

    font-size: 12px;

    letter-spacing: 2px;

    text-shadow:
        0 0 8px
        rgba(
            255,
            188,
            43,
            .35
        );
}


/* =========================================================
   17. HERO ART
========================================================= */

.hero-art {
    position: relative;

    min-height: 590px;

    isolation: isolate;
}

.hero-art::before {
    content: "";

    position: absolute;

    z-index: -4;

    width: 440px;
    height: 440px;

    left: 50%;
    top: 49%;

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(198, 42, 197, .27),
            rgba(109, 35, 255, .12) 45%,
            transparent 70%
        );

    filter:
        blur(15px);
}


/* =========================================================
   18. ORBITS
========================================================= */

.orbit {
    position: absolute;

    z-index: -2;

    left: 50%;
    top: 47%;

    border:
        2px solid
        rgba(
            169,
            73,
            255,
            .45
        );

    border-radius: 50%;

    box-shadow:
        0 0 18px
        rgba(
            173,
            64,
            255,
            .20
        );
}

.orbit::after {
    content: "";

    position: absolute;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #ffb43b;

    box-shadow:
        0 0 12px #ff8d25,
        0 0 30px #ff3ba5;
}

.orbit-one {
    width: 520px;
    height: 235px;

    transform:
        translate(-50%, -50%)
        rotate(-14deg);

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

.orbit-one::after {
    right: 15%;
    top: 7%;
}

.orbit-two {
    width: 440px;
    height: 330px;

    transform:
        translate(-50%, -50%)
        rotate(30deg);

    border-color:
        rgba(
            255,
            52,
            164,
            .24
        );
}

@keyframes orbitGlow {
    0%,
    100% {
        opacity: .45;
    }

    50% {
        opacity: 1;
    }
}


/* =========================================================
   19. MAIN STAR
========================================================= */

.main-star-wrapper {
    position: absolute;

    z-index: 5;

    left: 50%;
    top: 45%;

    width: 280px;
    height: 280px;

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

    animation:
        mainFloat
        5s
        ease-in-out
        infinite;
}

.main-star-glow {
    position: absolute;

    inset: 20px;

    border-radius: 50%;

    background:
        #f534a6;

    filter:
        blur(55px);

    opacity: .25;
}

.main-star-orb {
    position: absolute;

    inset: 0;

    display: grid;

    place-items: center;

    border:
        2px solid
        rgba(
            255,
            125,
            218,
            .50
        );

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(255,255,255,.25),
            rgba(240,68,185,.20) 25%,
            rgba(115,46,210,.13) 57%,
            rgba(37,16,70,.30)
        );

    box-shadow:
        inset -25px -35px 70px
        rgba(67, 17, 121, .42),

        inset 15px 18px 40px
        rgba(255,255,255,.07),

        0 0 40px
        rgba(255,60,176,.28),

        0 0 100px
        rgba(125,48,255,.20);

    backdrop-filter:
        blur(6px);
}

.main-star-orb::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 50px;

    top: 23px;
    left: 53px;

    border-radius: 50%;

    transform:
        rotate(-25deg);

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

    filter:
        blur(6px);
}

.main-star {
    position: relative;

    z-index: 2;

    color: #ffb22f;

    font-size: 155px;

    line-height: 1;

    transform:
        translateY(-4px);

    text-shadow:
        0 4px 0 #dd781b,
        0 10px 18px rgba(0,0,0,.25),
        0 0 24px rgba(255,184,46,.55);

    filter:
        drop-shadow(
            0 10px 12px
            rgba(0,0,0,.20)
        );
}

@keyframes mainFloat {
    0%,
    100% {
        transform:
            translate(-50%, -50%)
            translateY(0)
            rotate(-2deg);
    }

    50% {
        transform:
            translate(-50%, -50%)
            translateY(-17px)
            rotate(2deg);
    }
}


/* =========================================================
   20. TELEGRAM ORB
========================================================= */

.telegram-orb {
    position: absolute;

    z-index: 7;

    width: 160px;
    height: 160px;

    left: 48%;
    top: 67%;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(
            208,
            145,
            255,
            .50
        );

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(255,255,255,.24),
            rgba(128,57,205,.52) 40%,
            rgba(61,29,104,.75)
        );

    box-shadow:
        inset -20px -25px 45px
        rgba(33,15,67,.50),

        0 0 35px
        rgba(146,69,255,.30);

    animation:
        telegramFloat
        4.4s
        ease-in-out
        infinite;
}

.telegram-plane {
    color: #fff;

    font-size: 78px;

    transform:
        rotate(-38deg)
        translateY(-3px);

    text-shadow:
        0 8px 20px
        rgba(0,0,0,.25);
}

@keyframes telegramFloat {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(2deg);
    }

    50% {
        transform:
            translateY(-13px)
            rotate(-2deg);
    }
}


/* =========================================================
   21. FLOATING HERO ITEMS
========================================================= */

.floating-gift {
    position: absolute;

    z-index: 8;

    left: 6%;
    top: 11%;

    font-size: 75px;

    filter:
        drop-shadow(
            0 15px 22px
            rgba(156, 50, 255, .30)
        );

    animation:
        giftFloat
        5.5s
        ease-in-out
        infinite;
}

.floating-premium {
    position: absolute;

    z-index: 8;

    right: 1%;
    top: 14%;

    width: 105px;
    height: 105px;

    display: grid;

    place-items: center;

    border-radius: 27px;

    background:
        linear-gradient(
            145deg,
            #a64bff,
            #6d2cd8
        );

    color: #fff;

    font-size: 54px;

    box-shadow:
        inset 0 0 25px
        rgba(255,255,255,.14),

        0 15px 35px
        rgba(120,42,220,.30);

    transform:
        rotate(12deg);

    animation:
        premiumFloat
        5s
        ease-in-out
        infinite;
}

@keyframes giftFloat {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(-8deg);
    }

    50% {
        transform:
            translateY(-18px)
            rotate(3deg);
    }
}

@keyframes premiumFloat {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(12deg);
    }

    50% {
        transform:
            translateY(15px)
            rotate(4deg);
    }
}


/* =========================================================
   22. PARTICLES
========================================================= */

.floating-particle {
    position: absolute;

    z-index: 10;

    color: #ffb43b;

    text-shadow:
        0 0 15px
        currentColor;

    animation:
        particlePulse
        3s
        ease-in-out
        infinite;
}

.particle-one {
    left: 5%;
    top: 40%;

    font-size: 25px;
}

.particle-two {
    right: 14%;
    top: 7%;

    color: #ff3da6;

    font-size: 14px;

    animation-delay: -1s;
}

.particle-three {
    right: 7%;
    bottom: 25%;

    color: #a348ff;

    font-size: 20px;

    animation-delay: -2s;
}

@keyframes particlePulse {
    0%,
    100% {
        transform:
            scale(.8)
            rotate(0);

        opacity: .45;
    }

    50% {
        transform:
            scale(1.3)
            rotate(30deg);

        opacity: 1;
    }
}


/* =========================================================
   23. HERO SERVICES GLASS CARD
========================================================= */

.hero-services {
    position: absolute;

    z-index: 15;

    right: -15px;
    bottom: 45px;

    width: 190px;

    padding: 17px;

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

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(34, 27, 52, .76),
            rgba(18, 15, 31, .66)
        );

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

    backdrop-filter:
        blur(18px);
}

.hero-service {
    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        10px
        0;
}

.hero-service + .hero-service {
    border-top:
        1px solid
        rgba(255,255,255,.06);
}

.service-icon {
    font-size: 24px;
}

.hero-service strong {
    display: block;

    font-size: 13px;
}

.hero-service small {
    display: block;

    margin-top: 2px;

    color: #9d97aa;

    font-size: 10px;
}


/* =========================================================
   24. BENEFITS
========================================================= */

.benefits-section {
    position: relative;

    z-index: 5;

    padding:
        0
        0
        30px;
}

.benefits-grid {
    display: grid;

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

    gap: 1px;

    padding: 20px;

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

    border-radius: 21px;

    background:
        linear-gradient(
            120deg,
            rgba(23,19,37,.70),
            rgba(11,10,19,.68)
        );

    backdrop-filter:
        blur(20px);

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

.benefit {
    display: flex;

    align-items: center;

    gap: 14px;

    min-height: 95px;

    padding:
        10px
        20px;

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

.benefit:last-child {
    border-right: 0;
}

.benefit-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    font-size: 27px;

    box-shadow:
        inset 0 0 20px
        rgba(255,255,255,.10);
}

.benefit-icon.purple {
    background:
        linear-gradient(
            145deg,
            #7334da,
            #3b1a79
        );
}

.benefit-icon.blue {
    background:
        linear-gradient(
            145deg,
            #2778df,
            #183b84
        );
}

.benefit-icon.orange {
    background:
        linear-gradient(
            145deg,
            #ff9828,
            #ad4b13
        );
}

.benefit-icon.violet {
    background:
        linear-gradient(
            145deg,
            #6f38db,
            #392078
        );
}

.benefit h3 {
    margin-bottom: 4px;

    font-size: 13px;

    font-weight: 850;
}

.benefit p {
    color: #8f899c;

    font-size: 10px;

    line-height: 1.55;
}


/* =========================================================
   25. HOW IT WORKS
========================================================= */

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

.steps {
    display: grid;

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

    gap: 0;

    padding:
        34px
        20px;

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

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(18,15,31,.52),
            rgba(9,8,15,.50)
        );
}

.step {
    position: relative;

    padding:
        0
        20px;

    text-align: center;
}

.step-top {
    position: relative;

    height: 82px;
}

.step-number {
    position: relative;

    z-index: 5;

    width: 60px;
    height: 60px;

    display: grid;

    place-items: center;

    margin: auto;

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

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #864cff,
            #5222bb
        );

    color: #fff;

    font-size: 21px;

    font-weight: 950;

    box-shadow:
        0 0 25px
        rgba(125,57,255,.35);
}

.step-line {
    position: absolute;

    z-index: 1;

    left: 50%;
    top: 29px;

    width: 100%;
    height: 1px;

    background:
        repeating-linear-gradient(
            90deg,
            rgba(151,88,255,.45) 0,
            rgba(151,88,255,.45) 7px,
            transparent 7px,
            transparent 14px
        );
}

.step-line span {
    position: absolute;

    right: 0;
    top: -3px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #9256ff;

    box-shadow:
        0 0 10px
        #9256ff;
}

.step-icon {
    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    margin:
        5px
        auto
        13px;

    border:
        1px solid
        rgba(153,89,255,.16);

    border-radius: 15px;

    background:
        rgba(
            120,
            60,
            220,
            .10
        );

    font-size: 22px;
}

.step h3 {
    margin-bottom: 7px;

    font-size: 13px;

    font-weight: 850;
}

.step p {
    color: #8f899b;

    font-size: 10px;

    line-height: 1.55;
}


/* =========================================================
   26. PRODUCTS
========================================================= */

.products-section {
    overflow: hidden;
}

.products-grid {
    display: grid;

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

    gap: 18px;
}

.product-card {
    position: relative;

    min-height: 360px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

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

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(21,18,34,.88),
            rgba(12,10,21,.94)
        );

    box-shadow:
        0 20px 55px
        rgba(0,0,0,.22);

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

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

    border-color:
        rgba(158,82,255,.34);

    box-shadow:
        0 28px 70px
        rgba(0,0,0,.35),

        0 0 35px
        rgba(117,48,230,.12);
}

.product-light {
    position: absolute;

    width: 230px;
    height: 230px;

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

    border-radius: 50%;

    background:
        #7a39ff;

    filter:
        blur(80px);

    opacity: .14;
}

.gift-card
.product-light {
    background: #ff3b9d;
}

.product-visual {
    position: relative;

    height: 190px;

    display: grid;

    place-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(122,52,255,.16),
            transparent 65%
        );
}

.gift-card
.product-visual {
    background:
        radial-gradient(
            circle at center,
            rgba(255,56,157,.15),
            transparent 65%
        );
}

.product-star {
    color: #ffb329;

    font-size: 125px;

    line-height: 1;

    text-shadow:
        0 4px 0 #d96c14,
        0 0 30px rgba(255,173,39,.35);

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

.product-mini-star {
    position: absolute;

    color: #ffc544;

    text-shadow:
        0 0 10px
        rgba(255,185,45,.5);
}

.product-mini-star.one {
    left: 20%;
    top: 33%;

    font-size: 26px;
}

.product-mini-star.two {
    right: 20%;
    bottom: 24%;

    font-size: 18px;
}

.premium-crown {
    color: #b978ff;

    font-family: Georgia, serif;

    font-size: 130px;

    line-height: 1;

    text-shadow:
        0 0 20px rgba(178,92,255,.55),
        0 0 50px rgba(115,52,255,.30);

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

.gift-box {
    font-size: 115px;

    filter:
        drop-shadow(
            0 15px 30px
            rgba(225,53,160,.30)
        );

    animation:
        productFloat
        4.2s
        ease-in-out
        infinite;
}

@keyframes productFloat {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(-2deg);
    }

    50% {
        transform:
            translateY(-11px)
            rotate(2deg);
    }
}

.product-content {
    position: relative;

    z-index: 3;

    flex: 1;

    padding:
        22px
        25px
        25px;
}

.product-content h3 {
    margin-bottom: 10px;

    font-size: 19px;

    font-weight: 900;
}

.product-content p {
    min-height: 58px;

    color: #9892a4;

    font-size: 12px;

    line-height: 1.65;
}

.product-button {
    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 20px;

    margin-top: 19px;

    padding:
        10px
        16px;

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

    border-radius: 12px;

    font-size: 11px;

    font-weight: 850;

    transition:
        .25s ease;
}

.product-button:hover {
    border-color:
        rgba(151,81,255,.50);

    background:
        rgba(123,60,225,.09);
}

.product-button span {
    font-size: 16px;

    transition:
        transform
        .25s
        ease;
}

.product-button:hover span {
    transform:
        translateX(4px);
}


/* =========================================================
   27. STATISTICS
========================================================= */

.statistics-section {
    padding:
        5px
        0
        75px;
}

.statistics {
    display: grid;

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

    border:
        1px solid
        rgba(157,84,255,.24);

    border-radius: 22px;

    overflow: hidden;

    background:
        linear-gradient(
            100deg,
            rgba(36,32,74,.72),
            rgba(62,24,94,.72),
            rgba(35,17,61,.80)
        );

    box-shadow:
        0 18px 50px
        rgba(0,0,0,.22);
}

.stat-item {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    min-height: 115px;

    padding: 20px;

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

.stat-item:last-child {
    border-right: 0;
}

.stat-icon {
    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

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

    border-radius: 50%;

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

    font-size: 22px;
}

.stat-item strong {
    display: block;

    color: #e1b9ff;

    font-size: 24px;

    font-weight: 900;
}

.stat-item span {
    color: #b4acbe;

    font-size: 12px;
}


/* =========================================================
   28. ABOUT
========================================================= */

.about-section {
    overflow: hidden;
}

.about-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 70px;
}

.about-content h2 {
    margin-bottom: 20px;

    font-size:
        clamp(
            35px,
            5vw,
            52px
        );

    font-weight: 950;

    letter-spacing: -2px;
}

.about-content h3 {
    max-width: 570px;

    margin-bottom: 18px;

    font-size: 20px;

    line-height: 1.5;
}

.about-content p {
    max-width: 600px;

    margin-bottom: 16px;

    color: #9d97aa;

    font-size: 14px;

    line-height: 1.8;
}

.about-content .button {
    margin-top: 12px;
}


/* =========================================================
   29. ABOUT ART
========================================================= */

.about-art {
    position: relative;

    min-height: 460px;
}

.about-art::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    left: 50%;
    top: 50%;

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

    border-radius: 50%;

    background:
        rgba(119,52,245,.18);

    filter:
        blur(80px);
}

.about-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    border:
        1px solid
        rgba(151,81,255,.22);

    border-radius: 50%;
}

.ring-one {
    width: 360px;
    height: 360px;

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

    animation:
        ringSpin
        20s
        linear
        infinite;
}

.ring-two {
    width: 280px;
    height: 280px;

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

    border-color:
        rgba(255,63,168,.18);

    animation:
        ringSpinReverse
        15s
        linear
        infinite;
}

@keyframes ringSpin {
    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }
}

@keyframes ringSpinReverse {
    to {
        transform:
            translate(-50%, -50%)
            rotate(-360deg);
    }
}

.about-platform {
    position: absolute;

    z-index: 4;

    left: 50%;
    top: 50%;

    width: 220px;
    height: 220px;

    display: grid;

    place-items: center;

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

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(255,255,255,.12),
            rgba(107,43,202,.32),
            rgba(24,13,45,.85)
        );

    box-shadow:
        0 0 50px
        rgba(119,52,245,.25);
}

.about-shield {
    width: 115px;
    height: 135px;

    display: grid;

    place-items: center;

    clip-path:
        polygon(
            50% 0,
            93% 15%,
            87% 70%,
            50% 100%,
            13% 70%,
            7% 15%
        );

    background:
        linear-gradient(
            145deg,
            #8c4fff,
            #5620bb
        );

    box-shadow:
        inset 0 0 25px
        rgba(255,255,255,.13);
}

.about-shield span {
    color: #ffc03e;

    font-size: 55px;

    text-shadow:
        0 0 15px
        rgba(255,184,49,.45);
}

.about-floating {
    position: absolute;

    z-index: 7;

    width: 65px;
    height: 65px;

    display: grid;

    place-items: center;

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

    border-radius: 20px;

    background:
        rgba(
            38,
            27,
            63,
            .75
        );

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

    backdrop-filter:
        blur(15px);

    font-size: 29px;

    animation:
        aboutFloat
        5s
        ease-in-out
        infinite;
}

.about-user {
    left: 10%;
    top: 23%;
}

.about-gift {
    right: 8%;
    top: 18%;

    animation-delay: -1.2s;
}

.about-lightning {
    left: 14%;
    bottom: 14%;

    animation-delay: -2.4s;
}

.about-star {
    right: 12%;
    bottom: 17%;

    animation-delay: -3.5s;
}

@keyframes aboutFloat {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(-3deg);
    }

    50% {
        transform:
            translateY(-15px)
            rotate(3deg);
    }
}


/* =========================================================
   30. FAQ
========================================================= */

.faq-section {
    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(91,34,168,.035),
            transparent
        );
}

.faq-container {
    max-width: 900px;
}

.faq-list {
    display: grid;

    gap: 12px;
}

.faq-item {
    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 17px;

    background:
        rgba(
            17,
            14,
            28,
            .65
        );

    overflow: hidden;

    transition:
        border-color
        .25s
        ease;
}

.faq-item.active {
    border-color:
        rgba(
            145,
            73,
            255,
            .34
        );
}

.faq-question {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 20px;

    padding:
        20px
        22px;

    background: transparent;

    color: #fff;

    cursor: pointer;

    text-align: left;

    font-size: 14px;

    font-weight: 800;
}

.faq-plus {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    background:
        rgba(
            126,
            61,
            230,
            .12
        );

    color: #b781ff;

    font-size: 20px;

    transition:
        transform
        .25s
        ease;
}

.faq-item.active
.faq-plus {
    transform:
        rotate(45deg);
}

.faq-answer {
    display: grid;

    grid-template-rows:
        0fr;

    transition:
        grid-template-rows
        .35s
        ease;
}

.faq-answer > div {
    overflow: hidden;
}

.faq-item.active
.faq-answer {
    grid-template-rows:
        1fr;
}

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

    color: #96909f;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   31. CTA
========================================================= */

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

.cta-box {
    position: relative;

    min-height: 280px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border:
        1px solid
        rgba(157,76,255,.34);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(135,47,255,.26),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(255,53,158,.15),
            transparent 30%
        ),
        linear-gradient(
            110deg,
            rgba(29,23,63,.92),
            rgba(51,18,81,.91)
        );

    box-shadow:
        0 25px 80px
        rgba(0,0,0,.28);
}

.cta-box::after {
    content: "";

    position: absolute;

    inset: 0;

    opacity: .18;

    background-image:
        radial-gradient(
            circle,
            rgba(255,255,255,.8) 1px,
            transparent 1px
        );

    background-size:
        55px
        55px;

    mask-image:
        linear-gradient(
            90deg,
            black,
            transparent 45%,
            black
        );
}

.cta-content {
    position: relative;

    z-index: 5;

    max-width: 680px;

    padding: 45px;

    text-align: center;
}

.cta-content h2 {
    font-size:
        clamp(
            27px,
            4vw,
            42px
        );

    line-height: 1.15;

    font-weight: 950;

    letter-spacing: -1.4px;
}

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

    color: #bbb2c6;

    font-size: 14px;
}

.cta-button {
    margin-top: 25px;
}

.cta-star {
    position: absolute;

    z-index: 4;

    color: #ffb42c;

    text-shadow:
        0 0 18px
        rgba(255,171,36,.6);

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

.cta-star-one {
    left: 9%;
    top: 27%;

    font-size: 44px;
}

.cta-star-two {
    left: 18%;
    bottom: 20%;

    color: #ff55af;

    font-size: 20px;

    animation-delay: -1.5s;
}

.cta-star-three {
    right: 16%;
    top: 20%;

    font-size: 27px;

    animation-delay: -2.7s;
}

@keyframes ctaStar {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-13px)
            rotate(15deg)
            scale(1.1);
    }
}

.cta-orb {
    position: absolute;

    z-index: 3;

    right: -50px;
    bottom: -90px;

    width: 230px;
    height: 230px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(204,145,255,.40);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(255,255,255,.15),
            rgba(122,50,218,.55),
            rgba(42,18,81,.82)
        );

    box-shadow:
        0 0 50px
        rgba(128,47,255,.25);
}

.cta-orb div {
    color: #fff;

    font-size: 85px;

    transform:
        rotate(-35deg);
}


/* =========================================================
   32. FOOTER
========================================================= */

.footer {
    border-top:
        1px solid
        rgba(255,255,255,.07);

    background:
        rgba(
            5,
            5,
            10,
            .55
        );

    padding:
        60px
        0
        25px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr;

    gap: 50px;

    padding-bottom: 45px;
}

.footer-brand p {
    max-width: 380px;

    margin-top: 17px;

    color: #817b8c;

    font-size: 12px;

    line-height: 1.7;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 11px;
}

.footer-column strong {
    margin-bottom: 6px;

    font-size: 13px;
}

.footer-column a {
    width: fit-content;

    color: #817b8c;

    font-size: 12px;

    transition:
        color
        .2s
        ease;
}

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

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 20px;

    padding-top: 22px;

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

    color: #686271;

    font-size: 11px;
}

.footer-bottom div {
    display: flex;

    gap: 7px;
}

.footer-bottom a:hover {
    color: #b987ff;
}


/* =========================================================
   33. SCROLL TOP
========================================================= */

.scroll-top {
    position: fixed;

    z-index: 900;

    right: 25px;
    bottom: 25px;

    width: 47px;
    height: 47px;

    display: grid;

    place-items: center;

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

    border-radius: 15px;

    background:
        rgba(
            27,
            20,
            44,
            .82
        );

    color: #fff;

    font-size: 20px;

    cursor: pointer;

    backdrop-filter:
        blur(15px);

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

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        .25s ease;
}

.scroll-top.visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}

.scroll-top:hover {
    background:
        #6933cc;
}


/* =========================================================
   34. SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(35px);

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

.reveal.revealed {
    opacity: 1;

    transform:
        translateY(0);
}

.products-grid
.product-card:nth-child(2) {
    transition-delay: .10s;
}

.products-grid
.product-card:nth-child(3) {
    transition-delay: .20s;
}

.steps
.step:nth-child(2) {
    transition-delay: .08s;
}

.steps
.step:nth-child(3) {
    transition-delay: .16s;
}

.steps
.step:nth-child(4) {
    transition-delay: .24s;
}

.steps
.step:nth-child(5) {
    transition-delay: .32s;
}


/* =========================================================
   35. RESPONSIVE — 1100
========================================================= */

@media (max-width: 1100px) {

    .hero-container {
        grid-template-columns:
            1fr
            430px;

        gap: 25px;
    }

    .hero h1 {
        font-size: 54px;
    }

    .hero-art {
        transform:
            scale(.88);
    }

    .benefit {
        padding:
            10px
            12px;
    }

}


/* =========================================================
   36. RESPONSIVE — 950
========================================================= */

@media (max-width: 950px) {

    :root {
        --header-height: 72px;
    }

    .desktop-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .mobile-navigation {
        display: block;
    }

    .hero {
        min-height: auto;

        padding-top: 130px;
    }

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

        text-align: center;
    }

    .hero-content {
        max-width: 720px;

        margin: auto;
    }

    .hero-badge {
        margin-inline: auto;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-art {
        width: 600px;
        max-width: 100%;

        margin: auto;

        transform: none;
    }

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

    .benefit:nth-child(2) {
        border-right: 0;
    }

    .benefit:nth-child(-n+2) {
        border-bottom:
            1px solid
            rgba(255,255,255,.07);
    }

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

        gap: 35px 10px;
    }

    .step-line {
        display: none;
    }

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

    .product-card {
        min-height: 320px;

        display: grid;

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

        align-items: center;
    }

    .product-visual {
        height: 100%;
        min-height: 300px;
    }

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

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(-n+2) {
        border-bottom:
            1px solid
            rgba(255,255,255,.08);
    }

    .about-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .about-content p,
    .about-content h3 {
        margin-left: auto;
        margin-right: auto;
    }

    .about-art {
        max-width: 600px;

        width: 100%;

        margin: auto;
    }

}


/* =========================================================
   37. RESPONSIVE — 650
========================================================= */

@media (max-width: 650px) {

    .container {
        width:
            min(
                100% - 26px,
                var(--container)
            );
    }

    .section {
        padding:
            75px
            0;
    }

    .logo {
        font-size: 18px;
    }

    .logo-icon {
        width: 27px;
        height: 27px;

        font-size: 23px;
    }

    .language-current {
        height: 40px;

        padding:
            0
            12px;
    }

    .mobile-menu-button {
        width: 40px;
        height: 40px;
    }

    .hero {
        padding:
            112px
            0
            35px;
    }

    .hero h1 {
        font-size:
            clamp(
                39px,
                12vw,
                53px
            );

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        display: grid;

        grid-template-columns: 1fr;

        width: 100%;
    }

    .hero-buttons
    .button {
        width: 100%;
    }

    .hero-art {
        min-height: 470px;
    }

    .main-star-wrapper {
        width: 220px;
        height: 220px;

        top: 44%;
    }

    .main-star {
        font-size: 120px;
    }

    .telegram-orb {
        width: 125px;
        height: 125px;

        top: 65%;
    }

    .telegram-plane {
        font-size: 62px;
    }

    .floating-gift {
        left: 2%;
        top: 12%;

        font-size: 58px;
    }

    .floating-premium {
        width: 75px;
        height: 75px;

        right: 2%;
        top: 16%;

        font-size: 39px;

        border-radius: 21px;
    }

    .orbit-one {
        width: 390px;
        height: 190px;
    }

    .orbit-two {
        width: 330px;
        height: 270px;
    }

    .hero-services {
        right: 0;
        bottom: 5px;

        width: 165px;

        padding: 12px;
    }

    .hero-service {
        padding:
            7px
            0;
    }

    .service-icon {
        font-size: 19px;
    }

    .hero-service strong {
        font-size: 11px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;

        padding:
            8px
            15px;
    }

    .benefit {
        border-right: 0;

        border-bottom:
            1px solid
            rgba(255,255,255,.07) !important;

        padding:
            15px
            5px;
    }

    .benefit:last-child {
        border-bottom: 0 !important;
    }

    .benefit-icon {
        width: 52px;
        height: 52px;

        flex-basis: 52px;
    }

    .steps {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .step {
        padding:
            15px
            10px;

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

    .step:last-child {
        border-bottom: 0;
    }

    .product-card {
        display: block;
    }

    .product-visual {
        height: 190px;
        min-height: 190px;
    }

    .product-content p {
        min-height: auto;
    }

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

    .stat-item {
        justify-content:
            flex-start;

        padding-left: 28px;

        border-right: 0;

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

    .stat-item:last-child {
        border-bottom: 0;
    }

    .about-art {
        min-height: 380px;
    }

    .about-platform {
        width: 180px;
        height: 180px;
    }

    .about-shield {
        width: 95px;
        height: 112px;
    }

    .ring-one {
        width: 300px;
        height: 300px;
    }

    .ring-two {
        width: 235px;
        height: 235px;
    }

    .about-floating {
        width: 53px;
        height: 53px;

        border-radius: 16px;

        font-size: 23px;
    }

    .faq-question {
        padding:
            17px
            16px;

        font-size: 13px;
    }

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

    .cta-box {
        min-height: 330px;
    }

    .cta-content {
        padding:
            40px
            20px;
    }

    .cta-orb {
        width: 170px;
        height: 170px;

        right: -90px;
        bottom: -80px;
    }

    .cta-orb div {
        font-size: 60px;
    }

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

        gap: 30px;
    }

    .footer-bottom {
        align-items:
            flex-start;

        flex-direction: column;
    }

}


/* =========================================================
   38. RESPONSIVE — 400
========================================================= */

@media (max-width: 400px) {

    .logo {
        font-size: 16px;
    }

    .language-current {
        padding:
            0
            9px;
    }

    .language-current
    .language-arrow {
        display: none;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-badge {
        font-size: 10px;
    }

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

    .hero-services {
        width: 145px;
    }

    .trust-text {
        font-size: 10px;
    }

}


/* =========================================================
   39. REDUCED MOTION
========================================================= */

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }

    .reveal {
        opacity: 1;

        transform: none;
    }

}

/* =========================================================
   40. INTERACTIVE EFFECTS
========================================================= */

@media (pointer: fine) {

    .hero-art {
        transform:
            perspective(1000px)
            rotateX(
                calc(
                    var(--mouse-y, 0) * -1.5deg
                )
            )
            rotateY(
                calc(
                    var(--mouse-x, 0) * 1.8deg
                )
            );

        transition:
            transform
            .15s
            linear;
    }

    .product-card::after {
        content: "";

        position: absolute;

        z-index: 2;

        width: 230px;
        height: 230px;

        left:
            calc(
                var(--card-x, 50%) - 115px
            );

        top:
            calc(
                var(--card-y, 50%) - 115px
            );

        border-radius: 50%;

        background:
            radial-gradient(
                circle,
                rgba(157, 82, 255, .11),
                transparent 67%
            );

        opacity: 0;

        pointer-events: none;

        transition:
            opacity
            .3s
            ease;
    }

    .product-card:hover::after {
        opacity: 1;
    }

}