@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Perfect Spray–style (tailwind slate + teal-400) */
    --ps-bg: #070d18;
    --ps-bg-mid: #0c1526;
    --ps-slate-950: #020617;
    --ps-teal-400: #2dd4bf;
    --ps-teal-300: #5eead4;
    --ps-teal-200: #99f6e4;
    --ps-teal-100: #ccfbf1;
    --ps-accent: var(--ps-teal-400);
    --ps-accent-strong: #14b8a6;
    --ps-border: rgba(255, 255, 255, 0.06);
    --ps-border-strong: rgba(255, 255, 255, 0.1);
    --ps-glow: rgba(45, 212, 191, 0.45);
    --ps-text: #f1f5f9;
    --ps-muted: #94a3b8;
    --ps-slate-400: #94a3b8;
    --ps-card: rgba(15, 23, 42, 0.5);
    --ps-emerald-400: #34d399;
    --ps-emerald-500: #10b981;
    --ps-surface-glow: rgba(45, 212, 191, 0.06);
}

.page.app-shell {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

#app-stage {
    flex: 1 0 auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

[data-site-section] {
    scroll-margin-top: 96px;
}

@media (max-width: 768px) {
    [data-site-section] {
        scroll-margin-top: 80px;
    }
}

/* Появление секций при скролле: контент не скрывается заранее, а только анимируется при входе в экран */
[data-site-section]:not(.hero) {
    will-change: transform, opacity;
}

[data-site-section]:not(.hero).scroll-section--animate {
    animation: sectionReveal 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes sectionReveal {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Непрерывная страница: все блоки подряд, навигация по якорям */
.app-stage {
    min-height: 0;
    position: relative;
    z-index: 1;
}

.app-view {
    display: block;
    scroll-margin-top: 96px;
}

@media (max-width: 768px) {
    .app-view {
        scroll-margin-top: 80px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes headerAnimation{
    from{
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);

    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}





body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    color: var(--ps-text);
    background-color: var(--ps-bg);
    background-image:
        radial-gradient(ellipse 120% 90% at 50% -25%, rgba(45, 212, 191, 0.11), transparent 52%),
        radial-gradient(ellipse 80% 60% at 100% 20%, rgba(56, 189, 248, 0.06), transparent 50%),
        radial-gradient(ellipse 70% 50% at 0% 80%, rgba(45, 212, 191, 0.05), transparent 45%),
        linear-gradient(180deg, var(--ps-bg) 0%, var(--ps-bg-mid) 45%, var(--ps-bg) 100%);
    background-attachment: fixed;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, #000 20%, transparent 72%);
}

::selection {
    background: rgba(45, 212, 191, 0.3);
    color: #fff;
}

.menu-toggle-btn {
    display: none;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid var(--ps-border-strong);
    border-radius: 12px;
    cursor: pointer;
    color: var(--ps-accent);
    z-index: 1001;
    position: relative;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
    padding: 0;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.menu-toggle-btn:hover {
    transform: scale(1.04);
    border-color: rgba(45, 212, 191, 0.35);
    background: rgba(15, 23, 42, 0.75);
}

.menu-toggle-btn.active {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(45, 212, 191, 0.12);
}

.menu-toggle-btn__hamburger {
    display: block;
    width: 20px;
    height: 14px;
    position: relative;
    margin: 0 auto;
}

.menu-toggle-btn__hamburger span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, top 0.3s ease;
}

.menu-toggle-btn__hamburger span:nth-child(1) {
    top: 0;
}

.menu-toggle-btn__hamburger span:nth-child(2) {
    top: 6px;
}

.menu-toggle-btn__hamburger span:nth-child(3) {
    top: 12px;
}

.menu-toggle-btn.active .menu-toggle-btn__hamburger span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.menu-toggle-btn.active .menu-toggle-btn__hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle-btn.active .menu-toggle-btn__hamburger span:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
}

.ps-header {
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 16px;
    pointer-events: none;
    animation: headerAnimation 0.8s ease-out;
}

.ps-header__inner {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}

.ps-header__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 14px 0 10px;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--ps-border-strong);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    color: var(--ps-text);
    transition: border-color 0.25s ease, background 0.25s ease;
    font: inherit;
    cursor: pointer;
}

.ps-header__logo:hover {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(15, 23, 42, 0.55);
}

.ps-header__logo img {
    width: 36px;
    height: auto;
    display: block;
    border-radius: 8px;
}

.ps-header__logo-text {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ps-teal-200);
}

.ps-header__login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--ps-teal-200);
    background: rgba(94, 234, 212, 0.12);
    border: 1px solid rgba(94, 234, 212, 0.22);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.ps-header__login:hover {
    background: rgba(94, 234, 212, 0.2);
    border-color: rgba(94, 234, 212, 0.45);
    color: var(--ps-teal-100);
    transform: translateY(-1px);
}

.navigation {
    display: block;
}

.navigation-list {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0;
    padding: 4px;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--ps-border-strong);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navigation_item a,
.navigation_item .nav-screen-btn {
    color: var(--ps-slate-400);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 9999px;
    display: inline-block;
    transition: color 0.2s ease, background 0.2s ease;
}

.navigation_item .nav-screen-btn {
    appearance: none;
    border: none;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.navigation_item a::after {
    display: none;
}

.navigation_item .nav-screen-btn.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.navigation_item a:hover,
.navigation_item .nav-screen-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

/* Мобильное меню - полноэкранное */
@media (max-width: 768px) {
    .menu-toggle-btn {
        display: flex;
    }

    .ps-header {
        top: 12px;
    }

    .ps-header__inner {
        width: 100%;
        justify-content: flex-start;
    }

    .ps-header__login {
        margin-left: auto;
    }
    
    .navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 18, 32, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .navigation.menu-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .navigation-list {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
        padding: 24px;
        border-radius: 20px;
        background: rgba(15, 23, 42, 0.6);
        border: 1px solid var(--ps-border-strong);
    }
    
    .navigation_item {
        width: 100%;
        text-align: center;
    }
    
    .navigation_item a,
    .navigation_item .nav-screen-btn {
        font-size: 18px;
        font-weight: 600;
        padding: 14px 16px;
        display: block;
        width: 100%;
        color: #e2e8f0;
        transition: all 0.3s ease;
        border-radius: 12px;
    }
    
    .navigation_item .nav-screen-btn.active {
        color: var(--ps-teal-200);
        background: rgba(45, 212, 191, 0.1);
        border: 1px solid rgba(45, 212, 191, 0.2);
    }
    
    .navigation_item a:hover,
    .navigation_item .nav-screen-btn:hover {
        color: #fff;
        transform: none;
        background: rgba(255, 255, 255, 0.06);
        padding-left: 16px;
    }

    .navigation_item-btn {
        font-size: 18px;
        font-weight: 600;
        padding: 14px 16px;
        display: block;
        width: 100%;
        color: #e2e8f0;
        border-radius: 12px;
    }

    .navigation_item-btn:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.06);
    }

    .navigation_item--login {
        margin-left: 0;
        margin-top: 10px;
        padding-left: 0;
        padding-top: 14px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        width: 100%;
    }

    .navigation_item-btn.navigation_item-btn--accent {
        color: #000000;
        background: #2dd4bf;
        border: 1px solid rgba(45, 212, 191, 0.55);
        font-weight: 800;
        border-radius: 12px;
        box-shadow:
            0 0 22px rgba(45, 212, 191, 0.45),
            0 2px 8px rgba(0, 0, 0, 0.25);
    }

    .navigation_item-btn.navigation_item-btn--accent:hover {
        color: #000000;
        background: #5eead4;
        border-color: rgba(94, 234, 212, 0.75);
        box-shadow:
            0 0 28px rgba(94, 234, 212, 0.5),
            0 4px 12px rgba(0, 0, 0, 0.28);
    }
    
    .ps-header__logo img {
        width: 32px;
    }
}

@media (max-width: 480px) {
    .navigation_item a,
    .navigation_item .nav-screen-btn,
    .navigation_item-btn {
        font-size: 17px;
    }
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 100px;
    position: relative;
    z-index: 10;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(720px, 90vw);
    height: min(720px, 90vw);
    background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.container-hero {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-top: 32px;
    padding-left: 24px;
    padding-right: 24px;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 1024px) {
    .container-hero {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 64px;
    }
}

.hero-image {
    position: relative;
    max-width: 100%;
    flex-shrink: 0;
    animation: heroAnimation 0.8s ease-out;
    perspective: 1000px;
    perspective-origin: 50% 45%;
    transform-style: preserve-3d;
    overflow: visible;
}

@media (min-width: 1024px) {
    .hero-image {
        max-width: min(480px, 46vw);
    }
}

@keyframes heroAnimation {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0)
        ;
    }
}

.hero-base {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    display: block;
    transform: rotateY(-11deg) rotateX(3deg) translateZ(0);
    transform-origin: center center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 3px 0 0 rgba(255, 255, 255, 0.04) inset,
        0 36px 70px -28px rgba(0, 0, 0, 0.72),
        0 0 48px -12px rgba(45, 212, 191, 0.14);
}

@media (max-width: 768px) {
    .hero-image {
        perspective: 820px;
    }

    .hero-base {
        transform: rotateY(-7deg) rotateX(2deg) translateZ(0);
        border-radius: 14px;
        box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.6);
    }

    .hero-makcu {
        right: 0;
        bottom: -2px;
        width: 190px;
        height: 162px;
        transform: translate3d(14px, 0, 22px) rotateY(-7deg) rotateX(2deg) rotateZ(-6deg);
    }
}

@media (max-width: 480px) {
    .hero-base {
        transform: none;
        border: none;
    }

    .hero-makcu {
        transform: none;
        filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.45));
    }
}

.hero-makcu {
    position: absolute;
    right: 0;
    bottom: -2px;
    z-index: 5;
    width: 230px;
    height: 198px;
    max-width: 100%;
    object-fit: contain;
    transform: translate3d(24px, 0, 36px) rotateY(-11deg) rotateX(3deg) rotateZ(-8deg);
    transform-origin: 50% 65%;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

@keyframes ps-shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.hero_brand {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ps-teal-200);
    margin-bottom: 16px;
}

.hero_pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 12px;
    margin-bottom: 28px;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(94, 234, 212, 0.22);
    box-shadow: 0 0 24px rgba(45, 212, 191, 0.12);
    color: var(--ps-teal-100);
}

.hero_pill__icon {
    flex-shrink: 0;
    color: var(--ps-teal-200);
}

.hero_pill__text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero_display {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
    margin-bottom: 12px;
    max-width: 20ch;
    margin-left: auto;
    margin-right: auto;
}

.hero_shimmer {
    background: linear-gradient(
        90deg,
        var(--ps-teal-200) 0%,
        #ffffff 45%,
        var(--ps-teal-200) 90%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: ps-shimmer 5s linear infinite;
}

.hero_tagline {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--ps-slate-400);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.hero_content {
    text-align: center;
    z-index: 2;
    position: relative;
    flex: 1;
    min-width: 0;
}

@media (min-width: 1024px) {
    .hero_content {
        text-align: left;
    }

    .hero_display {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }

    .hero_buttons {
        justify-content: flex-start !important;
    }

    .hero_desc {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

.hero_desc {
    font-size: 1.05rem;
    color: var(--ps-slate-400);
    margin-top: 24px;
    margin-bottom: 32px;
    line-height: 1.65;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.hero_desc strong {
    color: #e2e8f0;
    font-weight: 600;
}

.hero_buttons {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 18px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .hero_buttons {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        max-width: none;
    }
}

.btn-prim, .btn-second {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.2s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    font-weight: 700;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    text-decoration: none;
}

.btn-prim {
    background: var(--ps-teal-400);
    color: #000;
    border: none;
    box-shadow: 0 0 22px rgba(94, 234, 212, 0.45);
    position: relative;
    overflow: hidden;
}

.btn-prim__icon {
    flex-shrink: 0;
}

.btn-prim:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(94, 234, 212, 0.65);
}

.btn-second {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.btn-second:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(45, 212, 191, 0.25);
    color: #fff;
}

.btn-tg {
    background: rgba(34, 158, 217, 0.1);
    border-color: rgba(34, 158, 217, 0.22);
    color: #38bdf8;
}

.btn-tg:hover {
    background: rgba(34, 158, 217, 0.18);
    border-color: rgba(34, 158, 217, 0.45);
    color: #e0f2fe;
}

/* —— Perfect Spray–style analytics strip —— */
.analytics {
    position: relative;
    z-index: 10;
    padding: 48px 24px 56px;
}

.analytics__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 28px 36px;
    border-radius: 22px;
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.42) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 1px rgba(45, 212, 191, 0.06) inset,
        0 32px 64px rgba(0, 0, 0, 0.42),
        0 0 80px -20px rgba(45, 212, 191, 0.08);
}

.analytics__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.analytics__title-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.analytics__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0;
}

.analytics__mono {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-family: ui-monospace, 'Cascadia Code', monospace;
    font-size: 11px;
    color: var(--ps-slate-400);
}

.analytics__mono--dim {
    opacity: 0.75;
}

.analytics__body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: stretch;
}

.analytics__pattern {
    position: relative;
    min-height: 248px;
    padding: 20px;
    border-radius: 6px;
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.analytics__pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.analytics__pattern-label {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
}

.analytics__svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
}

.analytics__svg--spray {
    max-width: min(220px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.analytics__stats {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.analytics__stats li {
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(2, 6, 23, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.analytics__stat-label {
    display: block;
    font-size: 12px;
    color: var(--ps-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.analytics__stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    color: #f8fafc;
}

.analytics__stat-value--ok {
    color: #4ade80;
    font-size: 18px;
}

.analytics__stat-value--muted {
    color: var(--ps-muted);
    font-size: 20px;
}

.analytics__divider {
    height: 1px;
    margin: 28px 0 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
}

.analytics__weapons {
    padding-top: 12px;
    text-align: center;
}

.section-eyebrow--in-card {
    margin-bottom: 10px;
}

.analytics__weapons .section-title {
    margin-bottom: 10px;
}

.analytics__weapons-lead {
    font-size: 17px;
    color: var(--ps-muted);
    text-align: center;
    max-width: 520px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ps-teal-200);
    margin-bottom: 12px;
}

.section-eyebrow--center {
    text-align: center;
}

.section-lead {
    font-size: 17px;
    color: var(--ps-muted);
    text-align: center;
    max-width: 520px;
    margin: -36px auto 40px;
    line-height: 1.6;
}

.section-lead--pricing {
    margin-top: 8px;
    margin-bottom: 36px;
}

.section-title--tight {
    margin-bottom: 12px;
}

.weapons-panel {
    margin-top: 28px;
    text-align: left;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 22px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--ps-border);
}

.weapons-panel.weapons-panel--in-card {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    margin-top: 4px;
    background: rgba(2, 6, 23, 0.4);
}

.weapons-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--ps-slate-400);
    margin-bottom: 12px;
    font-family: ui-monospace, monospace;
}

.weapons-panel__ok {
    color: rgba(16, 185, 129, 0.45);
}

.weapons-panel__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.weapon-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.weapon-row:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(16, 185, 129, 0.18);
}

.weapon-row__left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.weapon-row__thumb {
    width: 48px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--ps-slate-400);
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.weapon-row__name {
    font-size: 14px;
    font-weight: 500;
    color: var(--ps-slate-400);
    transition: color 0.2s ease;
}

.weapon-row:hover .weapon-row__name {
    color: #fff;
}

.weapon-row__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ps-emerald-400);
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.12);
    flex-shrink: 0;
}

.weapon-row__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ps-emerald-500);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.75; transform: scale(0.9); }
}

/* —— Support (chat mock) —— */
.support-line {
    padding: 80px 24px;
    position: relative;
    z-index: 10;
}

.support-line__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.support-line__title {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.support-line__desc {
    color: var(--ps-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 440px;
}

.support-line__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    color: #030712;
    background: linear-gradient(135deg, var(--ps-accent), var(--ps-accent-strong));
    box-shadow: 0 8px 28px var(--ps-glow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-line__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px var(--ps-glow);
}

.support-line__mock {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--ps-border);
    background: rgba(11, 18, 32, 0.95);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.support-line__mock-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(3, 7, 18, 0.9);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.support-line__mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ps-accent), var(--ps-accent-strong));
}

.support-line__mock-title {
    flex: 1;
    font-family: ui-monospace, monospace;
    font-size: 13px;
    color: #94a3b8;
}

.support-line__mock-live {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4ade80;
}

.support-line__mock-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 200px;
}

.support-line__msg {
    font-size: 13px;
    line-height: 1.55;
    padding: 10px 14px;
    border-radius: 10px;
    max-width: 92%;
}

.support-line__msg--bot {
    align-self: flex-start;
    background: rgba(30, 41, 59, 0.9);
    color: #cbd5e1;
    border: 1px solid rgba(148, 163, 184, 0.15);
}

.support-line__msg--user {
    align-self: flex-end;
    background: rgba(45, 212, 191, 0.12);
    color: #e0f2fe;
    border: 1px solid var(--ps-border);
}

.support-line__msg--staff {
    align-self: flex-start;
    background: rgba(14, 165, 233, 0.15);
    color: #bae6fd;
    border: 1px solid rgba(14, 165, 233, 0.35);
}

.support-line__mock-input {
    margin: 0 16px 16px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
    color: #64748b;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.pricing-card__tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #030712;
    background: linear-gradient(135deg, var(--ps-accent), var(--ps-accent-strong));
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.pricing-card__tag--gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1c1917;
}

.pricing-card__tag--lua {
    background: linear-gradient(135deg, #38bdf8, #0284c7);
    color: #0c4a6e;
}

.video {
    position: relative;
    z-index: 10;
    padding: 120px 40px;
}

.video__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.video__item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}

.video__item iframe {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(45, 212, 191, 0.2);
    transition: all 0.3s ease;
}

.video__item iframe:hover {
    box-shadow: 0 12px 40px rgba(45, 212, 191, 0.2);
    border-color: rgba(45, 212, 191, 0.4);
}

.status__container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
}

.status__panel {
    display: flex;
    justify-content: center;
    width: 100%;
}

.status__card {
    background-color: rgba(18, 18, 24, 0.95);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(45, 212, 191, 0.2);
    width: 100%;
    max-width: 600px;
    transition: all 0.3s ease;
}

.status__card:hover {
    border-color: rgba(45, 212, 191, 0.4);
    box-shadow: 0 8px 30px rgba(45, 212, 191, 0.15);
}

.status__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.status__title-group {
    flex: 1;
}

.status__title {
    font-family: 'Exo 2', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.status__subtitle {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #d0d0d0;
    margin: 0;
    letter-spacing: 0.3px;
}

.status__badge {
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.status__badge--undetected {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.status__time {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #9ca3af;
    font-size: 14px;
}

.status__time-icon {
    font-size: 16px;
}

.status__time-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.status__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.3), transparent);
    margin: 20px 0;
}

.status__description {
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.status__description p {
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.features {
    padding: 100px 40px;
    background-color: transparent;
    position: relative;
    z-index: 10;
}

.features_container,
.features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.02em;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 42%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 32px rgba(45, 212, 191, 0.08);
}

@supports not (background-clip: text) {
    .section-title,
    .rew-title {
        color: #f8fafc;
        background: none;
    }
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 24px;
}

.feature-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(12px);
    padding: 36px 28px;
    border-radius: 18px;
    border: 1px solid var(--ps-border);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.04), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 212, 191, 0.22);
    background: rgba(15, 23, 42, 0.62);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 40px -8px rgba(45, 212, 191, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 22px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(45, 212, 191, 0.14), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(45, 212, 191, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.7;
}

.pricing {
    padding-left: 100px;
    padding-right: 100px;
    margin-bottom: 100px;
    position: relative;
    z-index: 10;
}

.price__amount {
    color: var(--ps-accent);
}

.price__currency {
    color: #ffffff;
}

.price-old {
    color: #9ca3af;
    text-decoration: line-through;
}

.pricing__container {
    max-width: 1440px;
    margin: 0 auto;
}

.pricing-modern {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 340px));
    gap: 20px;
    justify-content: center;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-modern__card {
    position: relative;
    border-radius: 20px;
    padding: 18px 16px 16px;
    background: linear-gradient(180deg, rgba(13, 18, 27, 0.96), rgba(8, 12, 18, 0.92));
    border: 1px solid rgba(88, 104, 124, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 20px 42px rgba(0, 0, 0, 0.34);
    text-align: center;
    display: grid;
    grid-template-rows: auto auto auto minmax(180px, 1fr) auto;
    align-items: start;
    justify-items: center;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.35s ease;
}

.pricing-modern__card:hover {
    transform: translateY(-8px);
    border-color: rgba(45, 212, 191, 0.32);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 32px 56px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(45, 212, 191, 0.12),
        0 0 48px -12px rgba(45, 212, 191, 0.18);
}

.pricing-modern__card--popular:hover {
    border-color: rgba(45, 212, 191, 0.45);
    box-shadow:
        inset 0 1px 0 rgba(45, 212, 191, 0.22),
        0 36px 60px rgba(6, 33, 33, 0.55),
        0 0 64px -10px rgba(45, 212, 191, 0.22);
}

.pricing-modern__card--private:hover {
    border-color: rgba(52, 211, 153, 0.45);
    box-shadow:
        inset 0 1px 0 rgba(52, 211, 153, 0.12),
        0 32px 56px rgba(0, 0, 0, 0.45),
        0 0 48px -8px rgba(52, 211, 153, 0.2);
}

.pricing-modern__card--popular {
    border-color: rgba(45, 212, 191, 0.34);
    box-shadow: inset 0 1px 0 rgba(45, 212, 191, 0.2), 0 0 0 1px rgba(45, 212, 191, 0.18), 0 24px 44px rgba(6, 33, 33, 0.5);
    background: radial-gradient(120% 130% at 50% 0%, rgba(17, 43, 74, 0.55) 0%, rgba(10, 18, 28, 0.96) 50%, rgba(8, 12, 18, 0.92) 100%);
}

.pricing-modern__card--private {
    border-color: rgba(52, 211, 153, 0.38);
}

.pricing-modern__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.8);
    color: #9fb1c7;
    font-size: 10px;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.pricing-modern__badge--popular,
.pricing-modern__badge--private {
    border-color: rgba(16, 185, 129, 0.35);
    color: #34d399;
    background: rgba(16, 185, 129, 0.14);
}

.pricing-modern__thumb {
    width: 100%;
    max-width: 220px;
    height: 108px;
    object-fit: contain;
    display: block;
    margin: 12px auto 2px;
    opacity: 0.95;
}

.pricing-modern__price-row {
    margin-top: 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.pricing-modern__price {
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: #ffffff;
    font-weight: 900;
}

.pricing-modern__period {
    color: #8ea1b9;
    font-size: 1.02rem;
    font-weight: 600;
}

.pricing-modern__list {
    list-style: none;
    margin: 0;
    padding: 12px 0 16px;
    border-top: 1px solid rgba(80, 97, 117, 0.28);
    display: grid;
    gap: 10px;
    width: 100%;
    align-content: start;
}

.pricing-modern__list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #dce4ef;
    font-size: 1.06rem;
    font-weight: 600;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.pricing-modern__list li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.18);
    color: #34d399;
    font-size: 12px;
    font-weight: 900;
    flex-shrink: 0;
}

.pricing-modern__actions {
    display: grid;
    gap: 10px;
    width: 100%;
}

.pricing-modern__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 12px;
    text-decoration: none;
    color: #e8eef7;
    border: 1px solid rgba(87, 103, 121, 0.38);
    background: rgba(13, 18, 27, 0.85);
    font-weight: 800;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.pricing-modern__btn:hover {
    border-color: rgba(104, 120, 139, 0.58);
    background: rgba(18, 25, 36, 0.92);
}

.pricing-modern__btn--alt {
    background: rgba(10, 15, 24, 0.96);
}

.pricing-modern__btn--solid {
    color: #042214;
    border-color: rgba(52, 211, 153, 0.62);
    background: linear-gradient(180deg, #2dd4bf 0%, #10b981 100%);
}

.pricing-modern__btn--solid:hover {
    color: #042214;
    border-color: rgba(94, 234, 212, 0.8);
    background: linear-gradient(180deg, #5eead4 0%, #22c55e 100%);
}

.pricing-modern__btn--outline-accent {
    border-color: rgba(52, 211, 153, 0.58);
    color: #34d399;
    background: rgba(5, 20, 16, 0.66);
}

.pricing-modern__btn--outline-accent:hover {
    border-color: rgba(94, 234, 212, 0.82);
    color: #a7f3d0;
}

@media (max-width: 1300px) {
    .pricing-modern {
        grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    }
}

@media (max-width: 720px) {
    .pricing-modern {
        grid-template-columns: 1fr;
    }

    .pricing-modern__price {
        font-size: 2.2rem;
    }

    .pricing-modern__card {
        grid-template-rows: auto auto auto auto auto;
    }
}

.pricing__cards {
    display: grid;
    grid-template-columns: repeat(4, 350px) ;
    justify-content: center;
    column-gap: 40px;
    margin-top: 40px;
}

.pricing-card {
    border: 1px solid var(--ps-border);
    border-radius: 16px;
    padding: 32px 26px;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.25s ease;
    position: relative;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(15, 23, 42, 0.62);
    transform: translateY(-3px);
}

.pricing-card--featured {
    border-color: rgba(45, 212, 191, 0.25);
    box-shadow: 0 0 36px rgba(45, 212, 191, 0.12);
}

.pricing-card--featured-3 {
    border-color: rgba(56, 189, 248, 0.28);
    box-shadow: 0 0 36px rgba(56, 189, 248, 0.1);
}

.popular-badge {
    position: absolute;
    right: 12px;
    top: 12px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 9999px;
    color: #fcd34d;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-card__undetected {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 20px;
    padding: 8px 14px;
    width: fit-content;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #34d399;
}

.pricing-card__ud-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    animation: pulseDot 2s ease-in-out infinite;
}

.pricing-card__undetected--lua {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.22);
    color: #38bdf8;
}

.pricing-card__undetected--lua .pricing-card__ud-dot {
    background: #0ea5e9;
    box-shadow: 0 0 8px rgba(14, 165, 233, 0.5);
}

.pricing-card__header {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-card__header img,
.pricing-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.pricing-card__header h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card__features li {
    padding: 12px 0;
    color: #cbd5e1;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing_card_btn {
    width: 100%;
    background: var(--ps-teal-400);
    color: #000;
    border: none;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    box-sizing: border-box;
    box-shadow: 0 0 20px rgba(94, 234, 212, 0.35);
}

.pricing_card_btn:hover {
    box-shadow: 0 0 28px rgba(94, 234, 212, 0.55);
    transform: translateY(-2px);
}





.reviews {
    padding: 100px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 10;
    background-color: transparent;
}

.reviews .section-eyebrow {
    margin-bottom: 10px;
}

.rew-title {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.02em;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 42%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 0.8s ease-out;
}

.rew-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.rew-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(45, 212, 191, 0.2);
    background: rgba(18, 18, 24, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    display: block;
    position: relative;
    overflow: hidden;
}

.rew-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.rew-img:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(45, 212, 191, 0.5);
    box-shadow: 0 16px 50px rgba(45, 212, 191, 0.25);
}

.rew-img:hover::before {
    left: 100%;
}

.rew-img:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.rew-img:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.rew-img:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.rew-img:nth-child(4) {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}












.faq {
    padding: 100px 40px;
    background-color: transparent;
    position: relative;
    z-index: 10;
}

.faq__container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(18, 18, 24, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 16px;
    padding: 28px 32px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(45, 212, 191, 0.38);
    box-shadow: 0 8px 28px rgba(45, 212, 191, 0.12);
    transform: translateX(4px);
}

.faq-question {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.faq-answer {
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.8;
}

.faq-answer a {
    color: var(--ps-accent);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-answer ol,
.faq-answer ul {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer ol li,
.faq-answer ul li {
    margin: 8px 0;
    line-height: 1.8;
}

.faq-answer h3 {
    color: var(--ps-accent);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.faq-answer h3:first-child {
    margin-top: 0;
}

.faq-item summary {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer {
    background: linear-gradient(180deg, rgba(12, 18, 28, 0.72) 0%, rgba(8, 12, 20, 0.88) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid transparent;
    padding-top: 36px;
    padding-bottom: 32px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    z-index: 10;
    box-shadow: 0 -1px 0 rgba(45, 212, 191, 0.12);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.5), transparent);
    pointer-events: none;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 28px;
    align-items: start;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.footer__tagline {
    color: var(--ps-muted);
    font-size: 15px;
    line-height: 1.65;
    max-width: 320px;
}

.footer__col-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f1f5f9;
    margin-bottom: 16px;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 10px;
}

.footer__list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer__list a:hover {
    color: var(--ps-accent);
}

.footer__status-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.footer__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(45, 212, 191, 0.1);
}

.footer__bottom p {
    color: #555555;
    font-size: 16px;
}


/* ============================================
   АДАПТИВНЫЕ СТИЛИ ДЛЯ ВСЕХ СЕКЦИЙ
   ============================================ */

/* Планшеты и меньше (до 1024px) */
@media (max-width: 1024px) {
    .container-hero {
        gap: 60px;
    }
    
    .hero_desc {
        font-size: 18px;
    }
    
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .pricing__cards {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 30px;
        row-gap: 30px;
    }
    
    .pricing {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .video__container {
        gap: 40px;
    }
    
    /* Reviews секция */
    .rew-container {
        gap: 30px;
    }
    
    .rew-title {
        font-size: 42px;
    }

    .analytics__body {
        grid-template-columns: 1fr;
    }

    .support-line__container {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

/* Планшеты (до 768px) */
@media (max-width: 768px) {
    /* Hero секция */
    .hero {
        padding-top: 90px;
        padding-bottom: 80px;
    }
    
    .container-hero {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero_desc {
        font-size: 16px;
        max-width: 100%;
    }
    
    .hero_buttons {
        flex-direction: column;
        max-width: 100%;
    }
    
    .btn-prim, .btn-second {
        width: 100%;
        padding: 16px 30px;
        font-size: 15px;
    }
    
    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero-base {
        max-width: 100%;
        height: auto;
    }
    
    .hero-makcu {
        width: 200px;
        height: 170px;
        right: 0;
        bottom: -10px;
        transform: translate3d(10px, 0, 16px) rotateY(-7deg) rotateX(2deg) rotateZ(-6deg);
    }
    
    .hero::before {
        width: 400px;
        height: 400px;
    }
    
    .analytics__container {
        padding: 22px 20px;
    }

    .support-line {
        padding: 56px 20px;
    }

    /* Video/Status секция */
    .video {
        padding: 60px 20px;
    }
    
    .video__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .status__card {
        padding: 24px;
    }
    
    .status__title {
        font-size: 26px;
    }
    
    .status__subtitle {
        font-size: 16px;
    }
    
    .status__badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    /* Features секция */
    .features {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 24px;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    .faq-item:hover {
        transform: none;
    }
    
    /* Pricing секция */
    .pricing {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 60px;
    }
    
    .pricing__cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card {
        padding: 30px 24px;
    }
    
    .pricing-card__header img {
        width: 100%;
        max-width: 250px;
        height: auto;
    }
    
    .pricing-card__header h3 {
        font-size: 22px;
    }
    
    .pricing_card_btn {
        padding: 14px;
        font-size: 15px;
    }
    
    /* FAQ секция */
    .faq {
        padding: 60px 20px;
    }
    
    .faq-item {
        padding: 20px 24px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    /* Reviews секция */
    .reviews {
        padding: 60px 20px;
    }
    
    .rew-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .rew-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .rew-img {
        border-radius: 12px;
    }
    
    /* Footer */
    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer__brand {
        align-items: center;
    }

    .footer__tagline {
        max-width: 100%;
    }
    
    .footer__tagline {
        font-size: 16px;
    }
}

/* Мобильные устройства (до 480px) */
@media (max-width: 480px) {
    /* Hero секция */
    .hero {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .hero_desc {
        font-size: 14px;
        margin-bottom: 32px;
    }
    
    .btn-prim, .btn-second {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .hero-makcu {
        width: 150px;
        height: 130px;
        right: 0;
        bottom: -6px;
        transform: translate3d(8px, 0, 0) rotateZ(-5deg);
    }
    
    .hero::before {
        width: 300px;
        height: 300px;
    }
    
    /* Video/Status секция */
    .video {
        padding: 40px 15px;
    }
    
    .status__card {
        padding: 20px;
    }
    
    .status__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .status__title {
        font-size: 22px;
    }
    
    .status__subtitle {
        font-size: 14px;
    }
    
    .status__badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .status__description {
        font-size: 13px;
    }
    
    /* Features секция */
    .features {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .feature-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    /* Pricing секция */
    .pricing {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 40px;
    }
    
    .pricing-card {
        padding: 24px 20px;
    }
    
    .pricing-card__header {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .pricing-card__header img {
        max-width: 200px;
    }
    
    .pricing-card__header h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .pricing-card__features {
        margin-bottom: 20px;
    }
    
    .pricing-card__features li {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .pricing_card_btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .popular-badge {
        font-size: 10px;
        padding: 6px 12px;
        right: 8px;
        top: 8px;
    }
    
    /* FAQ секция */
    .faq {
        padding: 40px 15px;
    }
    
    .faq-item {
        padding: 16px 20px;
    }
    
    .faq-question {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .faq-answer {
        font-size: 13px;
    }
    
    /* Reviews секция */
    .reviews {
        padding: 40px 15px;
    }
    
    .rew-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .rew-container {
        gap: 20px;
    }
    
    .rew-img {
        border-radius: 10px;
    }
    
    /* Footer */
    .footer {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .footer__grid {
        gap: 28px;
    }
    
    .footer__brand img {
        display: block;
        margin: 0 auto;
        width: 70px;
        height: 60px;
    }
    
    .footer__list a {
        font-size: 14px;
    }
    
    .footer__tagline {
        font-size: 14px;
    }
    
    .footer__bottom {
        padding-top: 20px;
    }
    
    .footer__bottom p {
        font-size: 14px;
    }
}

/* Очень маленькие экраны (до 360px) */
@media (max-width: 360px) {
    .hero_desc {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .status__title {
        font-size: 20px;
    }
    
    .status__badge {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .pricing-card__header h3 {
        font-size: 18px;
    }
    
    .pricing-card__header img {
        max-width: 180px;
    }
    
    .feature-card h3 {
        font-size: 16px;
    }
    
    .faq-question {
        font-size: 14px;
    }
    
    .btn-prim, .btn-second {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* —— Модальное окно «Вход» —— */
.navigation_item-btn {
    appearance: none;
    font: inherit;
    cursor: pointer;
    color: var(--ps-slate-400);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 9999px;
    border: none;
    background: transparent;
    display: inline-block;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.navigation_item-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

/* «Вход» — как основная CTA: бирюза, чёрный текст, свечение; пункт отделён в разметке .navigation_item--login */
.navigation_item--login {
    margin-left: 10px;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
}

.navigation_item-btn--accent {
    color: #000000;
    background: #2dd4bf;
    border: 1px solid rgba(45, 212, 191, 0.55);
    font-weight: 800;
    letter-spacing: 0.02em;
    border-radius: 12px;
    padding: 10px 18px;
    box-shadow:
        0 0 22px rgba(45, 212, 191, 0.45),
        0 2px 8px rgba(0, 0, 0, 0.25);
}

.navigation_item-btn--accent:hover {
    color: #000000;
    background: #5eead4;
    border-color: rgba(94, 234, 212, 0.75);
    box-shadow:
        0 0 32px rgba(94, 234, 212, 0.55),
        0 4px 14px rgba(0, 0, 0, 0.3);
}

.navigation_item:has(.navigation_item-btn).navigation_item--current .navigation_item-btn:not(.navigation_item-btn--accent) {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.login-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.login-modal[hidden] {
    display: none;
}

body.login-modal-open {
    overflow: hidden;
}

.login-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.login-modal__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    padding: 28px 24px 24px;
    border-radius: 16px;
    background: var(--card, #09090b);
    border: 1px solid var(--border, #27272a);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
    color: var(--foreground, #fafafa);
}

.login-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--muted-foreground, #a1a1aa);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, background 0.2s ease;
}

.login-modal__close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.login-modal__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--muted, #27272a);
    color: var(--muted-foreground, #a1a1aa);
}

.login-modal__title {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 14px;
    letter-spacing: 0.02em;
}

.login-modal__text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted-foreground, #a1a1aa);
    margin: 0 0 12px;
    text-align: center;
}

.login-modal__text strong {
    color: var(--foreground, #fafafa);
    font-weight: 600;
}

.login-modal__sub {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-foreground, #a1a1aa);
    margin: 0 0 22px;
    text-align: center;
}

.login-modal__sub a {
    color: var(--ring, #d4d4d8);
    text-decoration: none;
    font-weight: 600;
}

.login-modal__sub a:hover {
    text-decoration: underline;
}

.login-modal__action {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
}