*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --bg: #060607;
    --bg2: #111114;
    --card: rgba(18, 18, 21, 0.8);
    --card-h: rgba(28, 28, 32, 0.92);
    --p: #d6d0c6;
    --pl: #f4eee6;
    --pd: #8f897f;
    --pg: rgba(214, 208, 198, 0.1);
    --pgs: rgba(214, 208, 198, 0.2);
    --t1: #f5f0e8;
    --t2: #c4beb4;
    --t3: #807a71;
    --brd: rgba(255, 255, 255, 0.1);
    --f: "Inter", sans-serif;
    --fm: "JetBrains Mono", monospace;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
html {
    scroll-behavior: smooth;
}
body {
    position: relative;
    font-family: var(--f);
    background: linear-gradient(180deg, #0a0a0b 0%, #050506 48%, #020202 100%);
    color: var(--t1);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}
body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}
body::before {
    z-index: 0;
    background:
        radial-gradient(
            circle at 50% -12%,
            rgba(255, 255, 255, 0.14),
            transparent 38%
        ),
        linear-gradient(
            120deg,
            rgba(255, 255, 255, 0.03) 0%,
            rgba(255, 255, 255, 0.015) 28%,
            rgba(255, 255, 255, 0) 56%,
            rgba(255, 255, 255, 0.02) 100%
        );
    opacity: 0.76;
    animation: bgDrift 18s ease-in-out infinite alternate;
}
body::after {
    z-index: 1;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 255, 255, 0.05),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.018) 0%,
            rgba(255, 255, 255, 0) 34%,
            rgba(255, 255, 255, 0.01) 72%,
            rgba(255, 255, 255, 0) 100%
        );
    opacity: 0.5;
    filter: blur(28px);
}
#rays-canvas,
#orbCanvas,
#orbCanvasLegacy {
    display: none !important;
}
::-webkit-scrollbar {
    width: 0;
    display: none;
}
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}

/* === Bounce-Р В°Р Р…Р С‘Р СР В°РЎвЂ Р С‘Р С‘ Р Т‘Р В»РЎРЏ Р Р†РЎРѓР ВµРЎвЂ¦ РЎРѓРЎвЂљРЎР‚Р В°Р Р…Р С‘РЎвЂ  === */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    60% {
        opacity: 1;
        transform: translateY(-8px) scale(1.02);
    }
    80% {
        transform: translateY(3px) scale(0.99);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes bounceScale {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    60% {
        opacity: 1;
        transform: scale(1.06);
    }
    80% {
        transform: scale(0.97);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes bounceDown {
    0% {
        opacity: 0;
        transform: translateY(-40px) scale(0.97);
    }
    60% {
        opacity: 1;
        transform: translateY(6px) scale(1.01);
    }
    80% {
        transform: translateY(-2px) scale(1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes ptFadeOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(30px);
    }
}
@keyframes bgDrift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.66;
    }
    100% {
        transform: translate3d(-2%, 1%, 0) scale(1.04);
        opacity: 0.9;
    }
}

/* Р С›РЎвЂљР С”Р В»РЎР‹РЎвЂЎР В°Р ВµР С .rv Р Т‘Р В»РЎРЏ bounce-РЎРЊР В»Р ВµР СР ВµР Р…РЎвЂљР С•Р Р† */
.adv2-card.rv,
.vid-card.rv,
.faq-i.rv,
.prod-card.rv,
.stat.rv,
.sh.rv,
.stats.rv,
.hero-c.rv {
    transition: none !important;
}
.adv2-card.rv.a,
.vid-card.rv.a,
.faq-i.rv.a,
.prod-card.rv.a,
.stat.rv.a,
.sh.rv.a,
.stats.rv.a,
.hero-c.rv.a {
    opacity: 0;
    transform: none;
}

/* Р СњР В°Р Р†Р В±Р В°РЎР‚ */
.nav-glass {
    opacity: 0;
    animation: bounceDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s forwards;
}

/* Hero (Р С–Р В»Р В°Р Р†Р Р…Р В°РЎРЏ) */
.hero-c {
    opacity: 0;
    animation: bounceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards;
}

/* Р РЋРЎвЂљР В°РЎвЂљРЎвЂ№ */
.stats {
    opacity: 0;
    animation: bounceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s forwards;
}
.stat {
    opacity: 0;
    animation: bounceScale 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.stat:nth-child(1) {
    animation-delay: 0.3s;
}
.stat:nth-child(2) {
    animation-delay: 0.4s;
}
.stat:nth-child(3) {
    animation-delay: 0.5s;
}
.stat:nth-child(4) {
    animation-delay: 0.6s;
}

/* Р вЂ”Р В°Р С–Р С•Р В»Р С•Р Р†Р С”Р С‘ РЎРѓР ВµР С”РЎвЂ Р С‘Р в„– */
.sh {
    opacity: 0;
    animation: bounceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards;
}

/* Advantage Р С”Р В°РЎР‚РЎвЂљР С•РЎвЂЎР С”Р С‘ */
.adv2-card {
    opacity: 0;
    animation: bounceScale 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.adv2-card:nth-child(1) {
    animation-delay: 0.2s;
}
.adv2-card:nth-child(2) {
    animation-delay: 0.3s;
}
.adv2-card:nth-child(3) {
    animation-delay: 0.4s;
}
.adv2-card:nth-child(4) {
    animation-delay: 0.5s;
}
.adv2-card:nth-child(5) {
    animation-delay: 0.6s;
}
.adv2-card:nth-child(6) {
    animation-delay: 0.7s;
}

/* Р вЂ™Р С‘Р Т‘Р ВµР С• Р С”Р В°РЎР‚РЎвЂљР С•РЎвЂЎР С”Р С‘ */
.vid-card {
    opacity: 0;
    animation: bounceScale 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.vid-card:nth-child(1) {
    animation-delay: 0.2s;
}
.vid-card:nth-child(2) {
    animation-delay: 0.3s;
}
.vid-card:nth-child(3) {
    animation-delay: 0.4s;
}
.vid-card:nth-child(4) {
    animation-delay: 0.5s;
}
.vid-card:nth-child(5) {
    animation-delay: 0.6s;
}
.vid-card:nth-child(6) {
    animation-delay: 0.7s;
}

/* FAQ */
.faq-i {
    opacity: 0;
    animation: bounceIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.faq-i:nth-child(1) {
    animation-delay: 0.15s;
}
.faq-i:nth-child(2) {
    animation-delay: 0.25s;
}
.faq-i:nth-child(3) {
    animation-delay: 0.35s;
}
.faq-i:nth-child(4) {
    animation-delay: 0.45s;
}
.faq-i:nth-child(5) {
    animation-delay: 0.55s;
}
.faq-i:nth-child(6) {
    animation-delay: 0.65s;
}
.faq-i:nth-child(7) {
    animation-delay: 0.75s;
}

/* Products */
.prod-card {
    opacity: 0;
    animation: bounceScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.prod-card:nth-child(1) {
    animation-delay: 0.2s;
}
.prod-card:nth-child(2) {
    animation-delay: 0.3s;
}
.prod-card:nth-child(3) {
    animation-delay: 0.4s;
}
.prod-grid-bottom .prod-card:nth-child(1) {
    animation-delay: 0.5s;
}
.prod-grid-bottom .prod-card:nth-child(2) {
    animation-delay: 0.6s;
}

/* Footer */
footer {
    opacity: 0;
    animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}

/* Р вЂ™РЎвЂ№РЎвЂ¦Р С•Р Т‘Р Р…Р В°РЎРЏ Р В°Р Р…Р С‘Р СР В°РЎвЂ Р С‘РЎРЏ */
body.page-leaving .nav-glass,
body.page-leaving .hero-c,
body.page-leaving .sh,
body.page-leaving .stats,
body.page-leaving .adv2-card,
body.page-leaving .vid-card,
body.page-leaving .faq-i,
body.page-leaving .prod-card,
body.page-leaving .pr-left,
body.page-leaving .pr-info,
body.page-leaving .pr-act-wrap,
body.page-leaving footer {
    animation: ptFadeOut 0.3s ease forwards;
}

/* РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’
   Р СњР С’Р вЂ™Р вЂР С’Р В  - РЎРѓРЎРѓРЎвЂ№Р В»Р С”Р С‘ Р РЋР вЂєР вЂўР вЂ™Р С’, Profile Р РЋР СџР В Р С’Р вЂ™Р С’
   Full-width Р С”Р В°Р С” Р Р…Р В° Shake
   РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’РІвЂўС’ */
nav {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 24px;
}
.nav-glass {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(12, 12, 14, 0.82);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 9px 12px;
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: all 0.3s;
}
.nav-glass::before {
    content: "Vesence";
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 24px;
    margin-right: 6px;
    border-radius: 16px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.03)
    );
    color: var(--t1);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-family: var(--fm);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 10px 24px rgba(0, 0, 0, 0.22);
}
nav.scrolled .nav-glass {
    background: rgba(10, 10, 11, 0.92);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--t2);
    font-size: 0.89rem;
    font-weight: 600;
    padding: 11px 16px;
    border-radius: 12px;
    transition: all 0.25s;
    white-space: nowrap;
}
.nav-link svg {
    width: 14px;
    height: 14px;
    opacity: 0.5;
    transition: all 0.25s;
}
.nav-link:hover {
    color: var(--t1);
    background: rgba(255, 255, 255, 0.04);
}
.nav-link:hover svg {
    opacity: 0.8;
    color: var(--pl);
}
.nav-link.active {
    color: var(--pl);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.025)
    );
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.nav-link.active svg {
    opacity: 0.8;
    color: var(--pl);
}
.nav-profile {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(
        180deg,
        rgba(244, 238, 230, 0.98),
        rgba(204, 196, 184, 0.96)
    );
    color: #111114;
    padding: 11px 24px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}
.nav-profile:hover {
    background: linear-gradient(
        180deg,
        rgba(255, 248, 238, 0.98),
        rgba(214, 208, 198, 0.98)
    );
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}
.nav-profile svg {
    width: 14px;
    height: 14px;
}
.nav-sep {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 8px;
    flex-shrink: 0;
}

/* Lang switcher */
.lang-wrap {
    position: relative;
}
.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--t2);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    font-family: var(--f);
}
.lang-btn:hover {
    color: var(--t1);
    border-color: rgba(255, 255, 255, 0.16);
}
.lang-btn svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}
.lang-drop {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: rgba(10, 10, 12, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 4px;
    min-width: 140px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: all 0.2s;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 100;
}
.lang-drop.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.lang-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 7px;
    font-size: 0.82rem;
    color: var(--t2);
    cursor: pointer;
    transition: all 0.15s;
    font-family: var(--f);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}
.lang-opt:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--t1);
}
.lang-opt.active {
    color: var(--pl);
}

/* РІвЂўС’РІвЂўС’РІвЂўС’ ANIMATIONS РІвЂўС’РІвЂўС’РІвЂўС’ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.rv {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s var(--ease);
}
.rv.a {
    opacity: 1;
    transform: translateY(0);
}

/* РІвЂўС’РІвЂўС’РІвЂўС’ UTILS РІвЂўС’РІвЂўС’РІвЂўС’ */
.sec {
    position: relative;
    z-index: 2;
}
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.sh {
    text-align: left;
    margin-bottom: 56px;
}
.sh h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.sh p {
    color: var(--t2);
    font-size: 1rem;
    max-width: 560px;
    margin: 0;
    line-height: 1.7;
}
.sh-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: var(--pl);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--fm);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.07),
        rgba(255, 255, 255, 0.02)
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 7px 16px;
    border-radius: 100px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.sh-tag svg {
    width: 12px;
    height: 12px;
}
.page-pad {
    padding: 100px 0;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 13px 28px;
    font-family: var(--f);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.btn svg {
    width: 15px;
    height: 15px;
}
.btn-p {
    background: linear-gradient(
        180deg,
        rgba(244, 238, 230, 0.98),
        rgba(204, 196, 184, 0.96)
    );
    color: #111114;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}
.btn-p:hover {
    background: linear-gradient(
        180deg,
        rgba(255, 248, 238, 0.98),
        rgba(214, 208, 198, 0.98)
    );
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    transform: translateY(-2px);
}
.btn-s {
    background: rgba(18, 18, 21, 0.7);
    color: var(--t2);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}
.btn-s:hover {
    color: var(--t1);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

/* РІвЂўС’РІвЂўС’РІвЂўС’ ADVANTAGE CARDS РІвЂўС’РІвЂўС’РІвЂўС’ */
.adv2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.adv2-card {
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(24, 24, 27, 0.94),
        rgba(12, 12, 14, 0.92)
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.35s;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    min-height: 292px;
}
.adv2-card:hover {
    border-color: rgba(244, 238, 230, 0.16);
    transform: translateY(-8px);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

/* Accent line */
.adv2-accent {
    width: 54px;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgba(244, 238, 230, 0.92),
        rgba(244, 238, 230, 0.32)
    );
    margin: 24px 0 0 24px;
    border-radius: 999px;
    box-shadow: none;
}

/* Р ВР С”Р С•Р Р…Р С”Р С‘ */
.adv2-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 18px 24px 20px;
}
.adv2-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    flex-shrink: 0;
    transition: all 0.35s;
}
.adv2-ico-sm {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.adv2-ico-sm svg {
    width: 17px;
    height: 17px;
    color: var(--t2);
}
.adv2-ico-lg {
    width: 58px;
    height: 58px;
    background: linear-gradient(
        180deg,
        rgba(244, 238, 230, 0.98),
        rgba(204, 196, 184, 0.96)
    );
    border: none;
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #111114;
}
.adv2-ico-lg svg {
    width: 22px;
    height: 22px;
}
.adv2-card:hover .adv2-ico-lg {
    box-shadow:
        0 22px 42px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: scale(1.04);
}
.adv2-card:hover .adv2-ico-sm {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
}

/* Р СћР ВµР С”РЎРѓРЎвЂљ */
.adv2-body {
    padding: 0 24px 26px;
}
.adv2-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.adv2-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--t1);
    line-height: 1.2;
}
.adv2-num {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.74rem;
    font-weight: 600;
    color: rgba(244, 238, 230, 0.64);
    font-family: var(--fm);
    flex-shrink: 0;
}
.adv2-desc {
    color: var(--t2);
    font-size: 0.9rem;
    line-height: 1.72;
    max-width: 32ch;
}

/* РІвЂўС’РІвЂўС’РІвЂўС’ CARDS РІвЂўС’РІвЂўС’РІвЂўС’ */
.vid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.vid-card {
    background: linear-gradient(
        180deg,
        rgba(24, 24, 27, 0.94),
        rgba(12, 12, 14, 0.92)
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.35s;
    backdrop-filter: blur(40px);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.vid-card:hover {
    border-color: rgba(244, 238, 230, 0.16);
    transform: translateY(-5px);
}
.vid-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.02)
    );
    display: flex;
    align-items: center;
    justify-content: center;
}
.vid-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.vid-card:hover .vid-play {
    background: linear-gradient(
        180deg,
        rgba(244, 238, 230, 0.98),
        rgba(204, 196, 184, 0.96)
    );
    transform: scale(1.06);
}
.vid-play svg {
    width: 18px;
    height: 18px;
    color: var(--pl);
    transition: 0.3s;
}
.vid-card:hover .vid-play svg {
    color: #111114;
}
.vid-info {
    padding: 14px 16px;
}
.vid-title {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 3px;
}
.vid-meta {
    font-size: 0.76rem;
    color: var(--t3);
}

.mv-section {
    position: relative;
    z-index: 2;
    padding: 40px 0 24px;
}
.mv-head {
    position: relative;
    max-width: 760px;
    margin: 0 auto 26px;
}
.mv-head::after {
    content: "03";
    position: absolute;
    right: 8px;
    top: -18px;
    font-size: clamp(5rem, 11vw, 8rem);
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}
.mv-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(16, 16, 18, 0.82);
    color: rgba(240, 245, 255, 0.84);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.mv-tag svg {
    width: 16px;
    height: 16px;
    color: var(--t1);
}
.mv-head h2 {
    font-size: clamp(2.4rem, 4vw, 3.45rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}
.mv-head p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 1.02rem;
}
.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.mv-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(16, 22, 30, 0.92),
        rgba(11, 15, 23, 0.92)
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 22px 44px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}
.mv-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 238, 230, 0.16);
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(244, 238, 230, 0.04);
}
.mv-media {
    position: relative;
    aspect-ratio: 16 / 11.6;
    overflow: hidden;
}
.mv-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 9, 14, 0.18),
        rgba(5, 9, 14, 0) 30%,
        rgba(5, 9, 14, 0.68) 100%
    );
}
.mv-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.38s ease;
}
.mv-card:hover .mv-thumb {
    transform: scale(1.06);
}
.mv-topline,
.mv-bottomline {
    position: absolute;
    left: 18px;
    right: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mv-topline {
    top: 16px;
}
.mv-bottomline {
    bottom: 16px;
}
.mv-stat,
.mv-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(9, 12, 18, 0.62);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    font-weight: 700;
    backdrop-filter: blur(18px);
}
.mv-stat svg,
.mv-duration svg {
    width: 13px;
    height: 13px;
    color: var(--pl);
}
.mv-info {
    padding: 16px 18px 18px;
}
.mv-author {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.9rem;
    margin-bottom: 6px;
}
.mv-author::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pl);
    box-shadow: 0 0 0 4px rgba(214, 208, 198, 0.12);
}
.mv-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 700;
    min-height: 2.7em;
}

.sys-section {
    position: relative;
    z-index: 2;
    padding: 20px 0 18px;
}
.sys-grid {
    display: grid;
    grid-template-columns: 1.08fr 1.08fr 0.56fr;
    gap: 12px;
}
.sys-card {
    position: relative;
    overflow: hidden;
    padding-bottom: 112px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(
            circle at top,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0) 38%
        ),
        linear-gradient(180deg, rgba(16, 18, 24, 0.98), rgba(12, 14, 19, 0.98));
    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.sys-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.045) 0.8px,
        transparent 0.8px
    );
    background-size: 12px 12px;
    opacity: 0.22;
    pointer-events: none;
}
.sys-support {
    grid-column: 1 / span 2;
    min-height: 420px;
}
.sys-opt {
    min-height: 596px;
}
.sys-vis {
    min-height: 596px;
}
.sys-combat {
    grid-row: 1 / span 2;
    min-height: 1028px;
}
.sys-support-stage {
    position: relative;
    min-height: 300px;
    padding: 22px 18px 16px;
}
.sys-bubble {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 64px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(18, 18, 24, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.sys-bubble.main {
    top: 28px;
    left: 50%;
    width: 430px;
    transform: translateX(-50%);
}
.sys-bubble.left {
    left: 18px;
    top: 112px;
    width: 315px;
}
.sys-bubble.right {
    right: 20px;
    top: 112px;
    width: 315px;
}
.sys-bubble.bottom {
    left: 50%;
    bottom: 18px;
    width: 430px;
    transform: translateX(-50%);
}
.sys-bubble-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pl);
    flex-shrink: 0;
}
.sys-bubble-icon svg {
    width: 18px;
    height: 18px;
}
.sys-bubble-title {
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 4px;
}
.sys-bubble-text {
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.2;
}
.sys-support-lines {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 18px 14px;
}
.sys-support-lines span {
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pl), rgba(214, 208, 198, 0.38));
}
.sys-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 108px;
    padding: 16px 20px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(15, 16, 22, 0.96);
}
.sys-meta-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.sys-meta-title svg {
    width: 16px;
    height: 16px;
    color: var(--pl);
}
.sys-meta-text {
    color: rgba(255, 255, 255, 0.56);
    line-height: 1.32;
}

.sys-opt-stage {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 24px 120px;
}
.sys-opt-core {
    position: relative;
    width: 272px;
    height: 272px;
    animation: sysFloat 5.2s ease-in-out infinite;
}
.sys-opt-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(214, 208, 198, 0.38);
}
.sys-opt-ring.r2 {
    inset: 16px;
    animation: sysSpin 11s linear infinite;
}
.sys-opt-ring.r3 {
    inset: 32px;
    opacity: 0.72;
    animation: sysSpinReverse 9s linear infinite;
}
.sys-opt-ring.r4 {
    inset: 48px;
    opacity: 0.38;
}
.sys-opt-core::before {
    content: "";
    position: absolute;
    inset: 54px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(214, 208, 198, 0.14),
        rgba(214, 208, 198, 0) 66%
    );
    filter: blur(10px);
}
.sys-opt-center {
    position: absolute;
    inset: 76px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(252, 247, 240, 1) 0%,
        rgba(224, 216, 204, 0.96) 68%,
        rgba(183, 173, 159, 0.86) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 18px rgba(214, 208, 198, 0.05),
        0 0 44px rgba(214, 208, 198, 0.18);
    animation: sysPulse 2.7s ease-in-out infinite;
}
.sys-opt-center svg {
    width: 62px;
    height: 62px;
    color: rgba(17, 17, 20, 0.56);
}
.sys-opt-node {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(214, 208, 198, 0.72);
    background: rgba(15, 16, 22, 0.98);
    box-shadow: 0 0 0 4px rgba(214, 208, 198, 0.08);
}
.sys-opt-node.n1 {
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
}
.sys-opt-node.n2 {
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}
.sys-opt-node.n3 {
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
}
.sys-opt-node.n4 {
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.sys-vis-stage,
.sys-combat-stage {
    position: relative;
    padding: 24px 18px 120px;
}
.sys-vis-stage {
    min-height: 500px;
}
.sys-combat-stage {
    min-height: 780px;
    padding-bottom: 300px;
}
.sys-player-label {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    min-height: 40px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(18, 18, 24, 0.86);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}
.sys-visual-area {
    position: relative;
    min-height: 360px;
}
.sys-divider {
    position: absolute;
    top: 20px;
    bottom: 16px;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}
.sys-divider.left {
    left: 26%;
}
.sys-divider.right {
    right: 26%;
}
.sys-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 44%;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(17, 19, 25, 1);
    border: 1px solid rgba(255, 255, 255, 0.13);
}
.sys-gear-label {
    position: absolute;
    min-width: 74px;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(18, 18, 24, 0.86);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.96rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}
.sys-gear-label.left {
    left: 16px;
    top: 178px;
}
.sys-gear-label.right {
    right: 18px;
    top: 178px;
}
.sys-gear-box {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    border: 1px dashed rgba(214, 208, 198, 0.54);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pl);
}
.sys-gear-box.left {
    left: 28px;
    top: 232px;
}
.sys-gear-box.right {
    right: 30px;
    top: 232px;
}
.sys-gear-box svg {
    width: 34px;
    height: 34px;
}
.sys-player-wrap {
    position: absolute;
    left: 50%;
    top: 52px;
    width: 280px;
    height: 332px;
    transform: translateX(-50%);
}
.sys-player-frame {
    position: absolute;
    left: 30px;
    right: 30px;
    top: 24px;
    bottom: 24px;
    border-radius: 26px;
    border: 2px dashed rgba(214, 208, 198, 0.62);
}
.sys-player-svg {
    position: absolute;
    inset: 0;
    color: var(--pl);
    filter: drop-shadow(0 0 10px rgba(214, 208, 198, 0.12));
}
.sys-player-svg svg {
    width: 100%;
    height: 100%;
}
.sys-heart {
    position: absolute;
    width: 18px;
    height: 18px;
    color: var(--pl);
    animation: sysPulse 2.4s ease-in-out infinite;
}
.sys-heart.left {
    left: 46px;
    top: 44px;
}
.sys-heart.right {
    right: 48px;
    top: 44px;
}
.sys-heart svg {
    width: 100%;
    height: 100%;
}
.sys-crosshair {
    position: absolute;
    left: 50%;
    top: 76px;
    width: 32px;
    height: 32px;
    transform: translateX(-50%);
    color: rgba(214, 208, 198, 0.62);
    opacity: 0.9;
}
.sys-crosshair svg {
    width: 100%;
    height: 100%;
}

.sys-combat-visual {
    position: relative;
    min-height: 310px;
    margin: 2px 0 14px;
}
.sys-combat-player {
    position: relative;
    width: 100%;
    max-width: 250px;
    height: 340px;
    margin: 0 auto;
}
.sys-combat-player .sys-player-wrap {
    position: absolute;
    inset: 0;
    width: 250px;
    height: 340px;
    transform: none;
}
.sys-combat-player .sys-player-frame {
    opacity: 0;
    transition: opacity 0.24s ease;
}
.sys-combat-player .sys-heart,
.sys-combat-player .sys-crosshair,
.sys-combat-icon {
    opacity: 0;
    transition:
        opacity 0.24s ease,
        transform 0.24s ease;
}
.sys-combat-player[data-mode="speed"] .sys-combat-icon.speed,
.sys-combat-player[data-mode="autototem"] .sys-combat-icon.autototem,
.sys-combat-player[data-mode="hitboxes"] .sys-player-frame,
.sys-combat-player[data-mode="killaura"] .sys-heart,
.sys-combat-player[data-mode="killaura"] .sys-crosshair,
.sys-combat-player[data-mode="triggerbot"] .sys-crosshair {
    opacity: 1;
}
.sys-combat-player[data-mode="triggerbot"] .sys-crosshair {
    transform: translateX(-50%) scale(1.1);
}
.sys-combat-player[data-mode="hitboxes"] .sys-player-frame {
    opacity: 1;
}
.sys-combat-icon {
    position: absolute;
    color: var(--pl);
    filter: drop-shadow(0 0 12px rgba(214, 208, 198, 0.1));
}
.sys-combat-icon.speed.left {
    left: 18px;
    top: 88px;
}
.sys-combat-icon.speed.right {
    right: 18px;
    top: 52px;
}
.sys-combat-icon.autototem.center {
    left: 50%;
    top: 132px;
    transform: translateX(-50%);
}
.sys-combat-icon svg {
    width: 22px;
    height: 22px;
}
.sys-feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sys-feature {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(19, 20, 26, 0.88);
    color: inherit;
    font-family: var(--f);
    text-align: left;
    cursor: pointer;
    transition:
        border-color 0.24s ease,
        background 0.24s ease,
        transform 0.24s ease;
}
.sys-feature:hover {
    border-color: rgba(214, 208, 198, 0.14);
    transform: translateY(-1px);
}
.sys-feature.active {
    border-color: rgba(214, 208, 198, 0.18);
    background: rgba(24, 28, 31, 0.92);
}
.sys-feature-copy {
    min-width: 0;
}
.sys-feature-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.96rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.sys-feature-name svg {
    width: 15px;
    height: 15px;
    color: rgba(255, 255, 255, 0.62);
}
.sys-feature.active .sys-feature-name {
    color: var(--pl);
}
.sys-feature.active .sys-feature-name svg {
    color: var(--pl);
}
.sys-feature-text {
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.25;
}
.sys-switch {
    position: relative;
    width: 38px;
    height: 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    transition: background 0.24s ease;
}
.sys-switch::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.45);
    transition:
        left 0.24s ease,
        background 0.24s ease;
}
.sys-feature.active .sys-switch {
    background: rgba(214, 208, 198, 0.96);
}
.sys-feature.active .sys-switch::before {
    left: 22px;
    background: #ffffff;
}

@keyframes sysSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes sysSpinReverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}
@keyframes sysPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}
@keyframes sysFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-i {
    background: linear-gradient(
        180deg,
        rgba(24, 24, 27, 0.94),
        rgba(12, 12, 14, 0.92)
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.3s;
    backdrop-filter: blur(40px);
    box-shadow:
        0 16px 30px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.faq-i:hover,
.faq-i.o {
    border-color: rgba(244, 238, 230, 0.16);
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.94rem;
    transition: color 0.3s;
    user-select: none;
}
.faq-q:hover {
    color: var(--pl);
}
.faq-q svg {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--t3);
    width: 16px;
    height: 16px;
}
.faq-i.o .faq-q svg {
    transform: rotate(45deg);
    color: var(--pl);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}
.faq-i.o .faq-a {
    max-height: 200px;
}
.faq-ai {
    padding: 0 20px 18px;
    color: var(--t2);
    font-size: 0.88rem;
    line-height: 1.65;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}
.prod-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 790px;
    margin: 16px auto 0;
}
.prod-card {
    background: linear-gradient(
        180deg,
        rgba(24, 24, 27, 0.96),
        rgba(12, 12, 14, 0.92)
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.35s;
    backdrop-filter: blur(40px);
    text-align: center;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.prod-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 238, 230, 0.16);
}
.prod-card.ft {
    border-color: rgba(244, 238, 230, 0.16);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.09),
        rgba(12, 12, 14, 0.94)
    );
}
.pop-tag {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
        180deg,
        rgba(244, 238, 230, 0.98),
        rgba(204, 196, 184, 0.96)
    );
    color: #111114;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.prod-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--t2);
    margin-bottom: 16px;
}
.prod-price {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.prod-f {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.prod-f li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: var(--t2);
}
.prod-f li svg {
    flex-shrink: 0;
    color: var(--p);
    width: 14px;
    height: 14px;
}
.prod-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-family: var(--f);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    display: block;
}
.prod-btn-o {
    background: transparent;
    border: 1px solid var(--brd);
    color: var(--t1);
}
.prod-btn-o:hover {
    border-color: var(--pl);
    background: var(--pg);
}
.prod-btn-f {
    background: linear-gradient(
        180deg,
        rgba(244, 238, 230, 0.98),
        rgba(204, 196, 184, 0.96)
    );
    border: none;
    color: #111114;
}
.prod-btn-f:hover {
    background: linear-gradient(
        180deg,
        rgba(255, 248, 238, 0.98),
        rgba(214, 208, 198, 0.98)
    );
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* РІвЂўС’РІвЂўС’РІвЂўС’ PROFILE РІвЂўС’РІвЂўС’РІвЂўС’ */
.profile-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding-top: 100px;
}
.profile-left {
    background: var(--card);
    border: 1px solid var(--brd);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(8px);
}
.profile-tabs {
    display: flex;
    border-bottom: 1px solid var(--brd);
}
.profile-tab {
    flex: 1;
    padding: 16px 18px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--t2);
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.profile-tab svg {
    width: 13px;
    height: 13px;
    opacity: 0.5;
}
.profile-tab:hover {
    color: var(--t1);
}
.profile-tab.active {
    color: var(--t1);
    background: rgba(255, 255, 255, 0.04);
}
.profile-tab.active svg {
    opacity: 1;
    color: var(--p);
}
.profile-user {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
}
.profile-avatar {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pd), var(--p));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}
.profile-name {
    font-weight: 600;
    font-size: 1rem;
}
.profile-name span {
    color: var(--p);
    font-family: var(--fm);
    font-size: 0.85rem;
    margin-left: 5px;
}
.profile-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.profile-row {
    background: var(--card);
    border: 1px solid var(--brd);
    border-radius: 8px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(8px);
}
.profile-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
}
.profile-row-left svg {
    width: 15px;
    height: 15px;
    color: var(--p);
}
.profile-row-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--p);
    color: #fff;
    padding: 9px 20px;
    border-radius: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.profile-row-btn:hover {
    background: var(--pl);
    box-shadow: 0 4px 16px var(--pgs);
}
.profile-row-btn svg {
    width: 13px;
    height: 13px;
}

/* РІвЂўС’РІвЂўС’РІвЂўС’ FOOTER РІвЂўС’РІвЂўС’РІвЂўС’ */
footer {
    position: relative;
    z-index: 2;
    padding: 40px 0 28px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(
        180deg,
        rgba(5, 5, 6, 0),
        rgba(10, 10, 12, 0.72)
    );
}
.ft-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
}
.ft-left {
}
.ft-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.ft-brand svg {
    display: none;
}
.ft-brand span {
    font-weight: 700;
    font-size: 1.08rem;
    color: var(--t1);
}
.ft-copy {
    color: var(--t3);
    font-size: 0.78rem;
    line-height: 1.6;
    margin-bottom: 4px;
}
.ft-copy a {
    color: var(--t2);
    transition: color 0.2s;
}
.ft-copy a:hover {
    color: var(--pl);
}
.ft-note {
    color: var(--t3);
    font-size: 0.72rem;
    opacity: 0.6;
}
.ft-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.ft-links {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--t3);
}
.ft-links a {
    color: var(--t2);
    transition: color 0.2s;
}
.ft-links a:hover {
    color: var(--pl);
}
.ft-links span {
    color: var(--t3);
    opacity: 0.3;
}
.ft-socials {
    display: flex;
    gap: 8px;
}
.ft-socials a {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(18, 18, 21, 0.78);
    color: var(--t2);
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.2s;
    font-family: var(--f);
}
.ft-socials a:hover {
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--t1);
    background: rgba(255, 255, 255, 0.06);
}
.ft-dev {
    font-size: 0.72rem;
    color: var(--t3);
    opacity: 0.5;
}
.ft-dev a {
    color: var(--t2);
    transition: color 0.2s;
}
.ft-dev a:hover {
    color: var(--pl);
}

.hero-logo svg,
.auth-logo svg {
    display: none;
}

@media (max-width: 960px) {
    .adv2-grid,
    .vid-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .prod-grid,
    .prod-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .sys-grid {
        grid-template-columns: 1fr;
    }
    .sys-support,
    .sys-combat {
        grid-column: auto;
        grid-row: auto;
    }
    .sys-combat {
        min-height: 940px;
    }
    .sys-support-stage {
        min-height: 360px;
    }
    .sys-bubble.left,
    .sys-bubble.right {
        width: 280px;
    }
    .profile-wrap {
        grid-template-columns: 1fr;
    }
    .nav-glass::before {
        min-width: 0;
        padding-right: 16px;
    }
}
@media (max-width: 680px) {
    .adv2-grid,
    .vid-grid {
        grid-template-columns: 1fr;
    }
    .prod-grid,
    .prod-grid-bottom {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
    .nav-links {
        gap: 0;
    }
    .nav-glass {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        border-radius: 18px;
    }
    .nav-glass::before {
        width: 100%;
        justify-content: center;
        margin-right: 0;
        margin-bottom: 4px;
    }
    .nav-link {
        padding: 8px 10px;
        font-size: 0.78rem;
    }
    .nav-link svg {
        display: none;
    }
    .mv-head::after {
        display: none;
    }
    .mv-head h2 {
        font-size: 2.1rem;
    }
    .sys-support {
        min-height: auto;
    }
    .sys-support-stage {
        min-height: auto;
        display: grid;
        gap: 10px;
    }
    .sys-bubble {
        position: relative;
        inset: auto;
        width: 100%;
        transform: none;
    }
    .sys-bubble.main,
    .sys-bubble.left,
    .sys-bubble.right,
    .sys-bubble.bottom {
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        transform: none;
    }
    .sys-support-lines {
        grid-template-columns: 1fr;
    }
    .sys-opt,
    .sys-vis,
    .sys-combat {
        min-height: auto;
    }
    .sys-opt-stage,
    .sys-vis-stage,
    .sys-combat-stage {
        padding-bottom: 128px;
    }
    .sys-player-wrap,
    .sys-combat-player .sys-player-wrap {
        width: 236px;
        height: 296px;
    }
    .sys-combat-player {
        max-width: 236px;
        height: 296px;
    }
    .sys-divider.left {
        left: 18%;
    }
    .sys-divider.right {
        right: 18%;
    }
    .sys-gear-label.left {
        left: 8px;
    }
    .sys-gear-label.right {
        right: 8px;
    }
    .sys-gear-box.left {
        left: 18px;
    }
    .sys-gear-box.right {
        right: 18px;
    }
    .ft-inner {
        flex-direction: column;
    }
    .ft-right {
        align-items: flex-start;
    }
}

/* Unicorn shimmer accent */
@keyframes rgShimmer {
    0% {
        color: #8f897f;
    }
    25% {
        color: #c8c1b5;
    }
    50% {
        color: #f4eee6;
    }
    75% {
        color: #c8c1b5;
    }
    100% {
        color: #8f897f;
    }
}
.rg-shimmer {
    animation: rgShimmer 3s ease-in-out infinite;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}
.rg-shimmer:hover {
    text-shadow: 0 0 12px rgba(214, 208, 198, 0.32);
}

/* Homepage cleanup overrides */
.sys-grid {
    grid-template-columns: 1fr;
}
.sys-combat {
    grid-row: auto;
    min-height: 596px;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
}
.sys-combat-stage {
    min-height: auto;
    padding: 24px 18px 120px;
}
@media (max-width: 1180px) {
    .sys-grid {
        grid-template-columns: 1fr;
    }
    .sys-combat {
        min-height: auto;
    }
}

/* Blue Theme */
:root {
    --bg: #090b12;
    --bg2: #121826;
    --card: rgba(10, 13, 22, 0.82);
    --card-h: rgba(14, 20, 32, 0.92);
    --p: #8e9dc0;
    --pl: #e2e9f7;
    --pd: #232f4b;
    --pg: rgba(101, 120, 168, 0.1);
    --pgs: rgba(101, 120, 168, 0.18);
    --t1: #eef2fb;
    --t2: #adb5c8;
    --t3: #6d7588;
    --brd: rgba(145, 156, 185, 0.1);
}
body {
    background:
        linear-gradient(145deg, #0e1017 0%, #0b0e16 38%, #090c13 72%, #07090f 100%);
}
body::before {
    background:
        radial-gradient(
            circle at 18% 14%,
            rgba(92, 113, 165, 0.12),
            transparent 26%
        ),
        radial-gradient(
            circle at 72% 10%,
            rgba(63, 83, 133, 0.08),
            transparent 34%
        ),
        linear-gradient(
            120deg,
            rgba(134, 151, 195, 0.032) 0%,
            rgba(95, 111, 160, 0.018) 28%,
            rgba(255, 255, 255, 0) 56%,
            rgba(120, 137, 180, 0.025) 100%
        );
    opacity: 0.78;
}
body::after {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(90, 108, 150, 0.05),
            transparent 22%
        ),
        linear-gradient(
            180deg,
            rgba(132, 150, 194, 0.016) 0%,
            rgba(255, 255, 255, 0) 36%,
            rgba(96, 114, 160, 0.012) 72%,
            rgba(255, 255, 255, 0) 100%
        );
    opacity: 0.56;
    filter: blur(42px);
}
nav.scrolled .nav-glass,
.nav-glass {
    background: rgba(10, 13, 22, 0.84);
    border-color: rgba(145, 156, 185, 0.08);
    box-shadow:
        0 20px 48px rgba(1, 3, 8, 0.42),
        inset 0 1px 0 rgba(220, 232, 255, 0.03);
    padding: 10px 14px;
}
.nav-glass::before {
    content: none;
    display: none;
}
.nav-link:hover {
    background: rgba(101, 120, 168, 0.08);
}
.nav-link:hover svg,
.nav-link.active,
.nav-link.active svg,
.lang-opt.active {
    color: var(--pl);
}
.nav-link.active {
    background: linear-gradient(
        180deg,
        rgba(108, 124, 170, 0.16),
        rgba(52, 61, 94, 0.08)
    );
    box-shadow: inset 0 1px 0 rgba(224, 234, 255, 0.05);
}
.nav-profile,
.btn-p,
.prod-btn-f {
    background: linear-gradient(135deg, #6271b1, #8796c4);
    color: #eef2fb;
    box-shadow: 0 16px 34px rgba(8, 11, 20, 0.3);
}
.nav-profile:hover,
.btn-p:hover,
.prod-btn-f:hover {
    background: linear-gradient(135deg, #6d7dbc, #95a4cd);
    box-shadow: 0 12px 30px rgba(8, 11, 20, 0.28);
}
.btn-s,
.lang-btn {
    background: rgba(15, 18, 28, 0.78);
    border-color: rgba(145, 156, 185, 0.1);
}
.btn-s:hover,
.lang-btn:hover,
.lang-opt:hover {
    background: rgba(91, 105, 144, 0.1);
    border-color: rgba(166, 179, 211, 0.12);
}
.lang-drop {
    background: rgba(10, 13, 22, 0.94);
    border-color: rgba(145, 156, 185, 0.1);
}
.sh-tag {
    background: linear-gradient(
        180deg,
        rgba(88, 102, 138, 0.1),
        rgba(38, 45, 70, 0.04)
    );
    border-color: rgba(145, 156, 185, 0.1);
    box-shadow: inset 0 1px 0 rgba(220, 232, 255, 0.04);
}
.adv2-card,
.faq-i,
.prod-card,
.profile-left,
.sys-card,
.vid-card {
    background: linear-gradient(
        180deg,
        rgba(14, 18, 30, 0.94),
        rgba(9, 12, 21, 0.92)
    );
    border-color: rgba(145, 156, 185, 0.08);
    box-shadow:
        0 18px 38px rgba(1, 3, 8, 0.28),
        inset 0 1px 0 rgba(220, 232, 255, 0.03);
}
.adv2-card:hover,
.faq-i:hover,
.faq-i.o,
.prod-card:hover,
.prod-card.ft {
    border-color: rgba(160, 173, 205, 0.14);
}
.adv2-accent {
    background: linear-gradient(
        90deg,
        rgba(142, 155, 197, 0.52),
        rgba(86, 97, 131, 0.16)
    );
}
.adv2-ico-sm {
    background: rgba(96, 112, 153, 0.06);
    border-color: rgba(145, 156, 185, 0.12);
}
.adv2-ico-lg,
.pop-tag {
    background: linear-gradient(135deg, #6271b1, #8796c4);
    color: #eef2fb;
    box-shadow:
        0 18px 34px rgba(8, 11, 20, 0.22),
        inset 0 1px 0 rgba(234, 240, 255, 0.24);
}
.prod-btn-o:hover {
    border-color: rgba(172, 188, 220, 0.14);
    background: rgba(91, 105, 144, 0.1);
}
.faq-q:hover,
.faq-i.o .faq-q svg,
.prod-f li svg,
.ft-copy a:hover,
.ft-links a:hover,
.ft-dev a:hover {
    color: var(--pl);
}
.ft-socials {
    display: none;
}
.rg-shimmer {
    animation: rgShimmerBlue 3s ease-in-out infinite;
}
.rg-shimmer:hover {
    text-shadow: 0 0 14px rgba(145, 198, 255, 0.34);
}
@keyframes rgShimmerBlue {
    0% {
        color: #6f84a5;
    }
    25% {
        color: #91b7e6;
    }
    50% {
        color: #c7e1ff;
    }
    75% {
        color: #91b7e6;
    }
    100% {
        color: #6f84a5;
    }
}
