
:root {
    --bg: #060e15;
    --bg-soft: #09151e;
    --card: #0d1b25;
    --card-hover: #10232e;

    --border: rgba(255,255,255,.075);
    --border-hover: rgba(255,255,255,.14);

    --text: #f3f8fa;
    --muted: #8da2ae;

    --accent: #25d0c5;
    --accent-light: #58e2da;
    --accent-soft: rgba(37,208,197,.11);

    --radius: 18px;
    --radius-lg: 26px;

    --container: 1180px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    color: var(--text);
    background: var(--bg);

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

    -webkit-font-smoothing:
        antialiased;

    line-height: 1.5;
}


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


button {
    font: inherit;
}


svg {
    display: block;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


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

    margin: 0 auto;
}


.hidden {
    display: none !important;
}



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

.header {
    position: sticky;
    top: 0;

    z-index: 50;

    background:
        rgba(6,14,21,.82);

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

    backdrop-filter:
        blur(20px);
}


.nav {
    min-height: 76px;

    display: grid;
    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 40px;
}


.brand {
    display: inline-flex;
    align-items: center;

    gap: 11px;

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

    letter-spacing: -.5px;
}


.brand-mark {
    width: 8px;
    height: 25px;

    display: block;

    border-radius: 2px;

    background:
        linear-gradient(
            180deg,
            #4de4dc,
            #19c1b8
        );

    box-shadow:
        0 0 25px
        rgba(37,208,197,.35);
}


.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 32px;
}


.nav-links a {
    color: var(--muted);

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

    transition:
        color .16s ease;
}


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


.nav-actions {
    display: flex;
    align-items: center;

    gap: 8px;
}


.nav-button {
    min-height: 40px;

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

    padding: 0 15px;

    border-radius: 10px;

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


.nav-button.primary {
    color: #031311;

    background:
        var(--accent);
}


.nav-button.secondary {
    color: var(--text);

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

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



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

.hero {
    position: relative;

    overflow: hidden;

    padding:
        132px 0
        100px;
}


.hero-inner {
    position: relative;
    z-index: 2;

    max-width: 950px;

    text-align: center;
}


.hero-badge {
    width: fit-content;

    margin:
        0 auto
        25px;

    display: flex;
    align-items: center;

    gap: 9px;

    padding:
        7px
        12px;

    border:
        1px solid
        rgba(37,208,197,.18);

    border-radius: 999px;

    background:
        rgba(37,208,197,.065);

    color: #9eece7;

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


.badge-dot {
    width: 7px;
    height: 7px;

    border-radius: 100%;

    background:
        #4ae1a5;

    box-shadow:
        0 0 12px
        rgba(74,225,165,.8);
}


.hero h1 {
    margin: 0;

    font-size:
        clamp(
            50px,
            7vw,
            86px
        );

    line-height: .99;

    letter-spacing:
        -4.2px;
}


.hero h1 span {
    display: block;

    color:
        var(--accent-light);
}


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

    margin:
        30px auto 0;

    color: var(--muted);

    font-size: 19px;
    line-height: 1.65;
}


.hero-buttons {
    margin-top: 36px;

    display: flex;
    justify-content: center;

    gap: 10px;

    flex-wrap: wrap;
}


.btn {
    min-height: 46px;

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

    gap: 9px;

    padding:
        0
        19px;

    border:
        1px solid transparent;

    border-radius: 11px;

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

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


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


.btn svg {
    width: 17px;
    height: 17px;
}


.btn-large {
    min-height: 50px;

    padding:
        0
        23px;
}


.btn-primary {
    color: #031311;

    background:
        var(--accent);
}


.btn-primary:hover {
    background:
        var(--accent-light);
}


.btn-secondary {
    color: white;

    border-color:
        var(--border);

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


.btn-secondary:hover {
    border-color:
        var(--border-hover);

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


.hero-meta {
    max-width: 820px;

    margin:
        72px auto 0;

    display: grid;
    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;

    align-items: center;

    padding:
        22px
        28px;

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

    border-radius:
        var(--radius);

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


.meta-item strong,
.meta-item span {
    display: block;
}


.meta-item strong {
    font-size: 16px;
}


.meta-item span {
    margin-top: 3px;

    color: var(--muted);

    font-size: 11px;
}


.meta-divider {
    width: 1px;
    height: 34px;

    background:
        var(--border);
}


.hero-glow {
    position: absolute;

    border-radius: 100%;

    pointer-events: none;

    filter: blur(1px);
}


.hero-glow-one {
    width: 620px;
    height: 620px;

    left:
        calc(50% - 310px);

    top: -340px;

    background:
        radial-gradient(
            circle,
            rgba(37,208,197,.13),
            transparent 67%
        );
}


.hero-glow-two {
    width: 600px;
    height: 300px;

    left:
        calc(50% - 300px);

    bottom: -240px;

    background:
        radial-gradient(
            circle,
            rgba(37,208,197,.07),
            transparent 70%
        );
}



/* ==========================================================
   SECTIONS
   ========================================================== */

.section {
    padding:
        105px 0;
}


.section-soft {
    background:
        var(--bg-soft);

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

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


.section-heading {
    max-width: 620px;

    margin-bottom: 48px;
}


.section-heading.center {
    margin:
        0 auto 50px;

    text-align: center;
}


.section-label {
    color:
        var(--accent);

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

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.section-heading h2 {
    margin:
        12px 0 0;

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

    line-height: 1.06;

    letter-spacing:
        -2px;
}


.section-heading p {
    margin:
        18px 0 0;

    color:
        var(--muted);

    font-size: 16px;
    line-height: 1.65;
}



/* ==========================================================
   FEATURES
   ========================================================== */

.feature-grid {
    display: grid;

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

    gap: 16px;
}


.feature-card {
    min-height: 230px;

    padding: 27px;

    display: flex;
    flex-direction: column;

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

    border-radius:
        var(--radius);

    background:
        var(--card);

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


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

    border-color:
        rgba(37,208,197,.20);

    background:
        var(--card-hover);
}


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

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

    border-radius: 13px;

    color:
        var(--accent-light);

    background:
        var(--accent-soft);
}


.feature-icon svg {
    width: 22px;
    height: 22px;
}


.feature-card h3 {
    margin:
        27px 0 0;

    font-size: 19px;
    letter-spacing: -.4px;
}


.feature-card p {
    margin:
        auto 0 0;

    color:
        var(--muted);

    font-size: 14px;
    line-height: 1.65;
}



/* ==========================================================
   PLANS
   ========================================================== */

.plans-grid {
    display: grid;

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

    gap: 14px;
}


.plan-card {
    position: relative;

    min-height: 400px;

    display: flex;
    flex-direction: column;

    padding: 28px;

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

    border-radius:
        var(--radius);

    background:
        var(--card);
}


.plan-card.featured {
    border-color:
        rgba(37,208,197,.35);

    background:
        linear-gradient(
            160deg,
            rgba(37,208,197,.07),
            transparent 45%
        ),
        var(--card);
}


.plan-badge {
    position: absolute;

    top: 20px;
    right: 20px;

    padding:
        5px
        9px;

    border-radius: 999px;

    color:
        #81e8e2;

    background:
        rgba(37,208,197,.10);

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

    text-transform: uppercase;
}


.plan-name {
    color:
        #a8b8c0;

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


.plan-price {
    margin-top: 17px;

    font-size: 48px;
    line-height: 1;

    font-weight: 850;
    letter-spacing: -2px;
}


.plan-price span {
    margin-left: 3px;

    font-size: 19px;
}


.plan-note {
    margin-top: 10px;

    color:
        var(--muted);

    font-size: 12px;
}


.plan-line {
    height: 1px;

    margin:
        25px 0;

    background:
        var(--border);
}


.plan-card ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.plan-card li {
    position: relative;

    padding:
        7px 0
        7px 23px;

    color:
        #a6b6be;

    font-size: 13px;
}


.plan-card li:before {
    content: "";

    position: absolute;

    left: 2px;
    top: 13px;

    width: 7px;
    height: 4px;

    border-left:
        1.5px solid
        var(--accent);

    border-bottom:
        1.5px solid
        var(--accent);

    transform:
        rotate(-45deg);
}


.plan-card .btn {
    width: 100%;

    margin-top: auto;
}


.btn-plan {
    color: white;

    border-color:
        var(--border);

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


.btn-plan:hover {
    background:
        rgba(255,255,255,.08);
}


.trial-strip {
    margin-top: 18px;

    min-height: 90px;

    display: grid;
    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 18px;

    padding:
        19px
        22px;

    border:
        1px solid
        rgba(37,208,197,.14);

    border-radius:
        var(--radius);

    background:
        rgba(37,208,197,.045);
}


.trial-icon {
    width: 45px;
    height: 45px;

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

    color:
        var(--accent-light);

    border-radius: 13px;

    background:
        rgba(37,208,197,.10);
}


.trial-icon svg {
    width: 22px;
    height: 22px;
}


.trial-strip strong,
.trial-strip span {
    display: block;
}


.trial-strip strong {
    font-size: 14px;
}


.trial-strip span {
    margin-top: 4px;

    color:
        var(--muted);

    font-size: 12px;
}



/* ==========================================================
   APPS
   ========================================================== */

.apps-layout {
    display: grid;

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

    gap: 90px;

    align-items: center;
}


.apps-heading {
    margin-bottom: 0;
}


.app-list {
    display: grid;
    gap: 12px;
}


.app-card {
    min-height: 88px;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 17px;

    padding:
        17px 19px;

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

    border-radius:
        var(--radius);

    background:
        var(--card);
}


.app-logo {
    width: 48px;
    height: 48px;

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

    border-radius: 14px;

    color:
        #041513;

    background:
        var(--accent);

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


.app-info strong,
.app-info span {
    display: block;
}


.app-info strong {
    font-size: 15px;
}


.app-info span {
    margin-top: 4px;

    color:
        var(--muted);

    font-size: 12px;
}


.app-status {
    padding:
        6px
        9px;

    border-radius: 999px;

    color:
        #83e7e1;

    background:
        rgba(37,208,197,.08);

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



/* ==========================================================
   STEPS
   ========================================================== */

.steps-grid {
    display: grid;

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

    gap: 16px;
}


.step-card {
    min-height: 230px;

    padding: 27px;

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

    border-radius:
        var(--radius);

    background:
        var(--card);
}


.step-number {
    display: block;

    color:
        var(--accent);

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

    letter-spacing: 1px;
}


.step-card h3 {
    margin:
        54px 0 0;

    font-size: 20px;
}


.step-card p {
    margin:
        12px 0 0;

    color:
        var(--muted);

    font-size: 13px;
    line-height: 1.7;
}



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

.faq-layout {
    display: grid;

    grid-template-columns:
        .75fr 1.25fr;

    gap: 100px;

    align-items: start;
}


.faq-heading {
    position: sticky;

    top: 115px;

    margin-bottom: 0;
}


.faq-list {
    border-top:
        1px solid
        var(--border);
}


.faq-list details {
    border-bottom:
        1px solid
        var(--border);
}


.faq-list summary {
    min-height: 76px;

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

    gap: 20px;

    cursor: pointer;

    list-style: none;

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


.faq-list summary::-webkit-details-marker {
    display: none;
}


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

    flex: 0 0 30px;

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

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

    border-radius: 9px;

    color:
        var(--muted);

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

    transition:
        transform .2s;
}


details[open]
.faq-plus {
    transform:
        rotate(45deg);
}


.faq-list details p {
    max-width: 620px;

    margin:
        -5px 0
        25px;

    padding-right: 50px;

    color:
        var(--muted);

    font-size: 13px;
    line-height: 1.7;
}



/* ==========================================================
   CTA
   ========================================================== */

.final-cta {
    padding:
        20px 0
        100px;
}


.cta-card {
    min-height: 230px;

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

    gap: 40px;

    padding:
        45px;

    overflow: hidden;

    border:
        1px solid
        rgba(37,208,197,.18);

    border-radius:
        var(--radius-lg);

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(37,208,197,.12),
            transparent 35%
        ),
        var(--card);
}


.cta-card h2 {
    margin:
        9px 0 0;

    font-size:
        clamp(
            34px,
            4vw,
            47px
        );

    letter-spacing:
        -1.6px;
}


.cta-card p {
    margin:
        13px 0 0;

    color:
        var(--muted);
}



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

.footer {
    border-top:
        1px solid
        var(--border);

    padding:
        42px 0 25px;
}


.footer-inner {
    display: flex;
    justify-content: space-between;

    gap: 50px;

    align-items: flex-start;
}


.footer-inner p {
    max-width: 280px;

    margin:
        13px 0 0;

    color:
        var(--muted);

    font-size: 12px;
}


.footer-links {
    display: flex;
    flex-wrap: wrap;

    gap: 27px;
}


.footer-links a {
    color:
        var(--muted);

    font-size: 12px;
}


.footer-links a:hover {
    color: white;
}


.footer-bottom {
    margin-top: 35px;

    padding-top: 20px;

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

    gap: 20px;

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

    color:
        #617884;

    font-size: 10px;
}



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

@media (
    max-width: 980px
) {

    .nav {
        grid-template-columns:
            auto 1fr;
    }

    .nav-links {
        display: none;
    }

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


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


    .apps-layout,
    .faq-layout {
        grid-template-columns:
            1fr;

        gap: 45px;
    }


    .faq-heading {
        position: static;
    }

}


@media (
    max-width: 720px
) {

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


    .header .nav {
        min-height: 66px;
    }


    .nav-actions
    .nav-button.secondary {
        display: none;
    }


    .hero {
        padding:
            85px 0
            70px;
    }


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

        letter-spacing:
            -2.8px;
    }


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


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

        gap: 22px;

        padding: 22px;
    }


    .meta-divider {
        display: none;
    }


    .section {
        padding:
            75px 0;
    }


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


    .feature-card,
    .step-card {
        min-height: 200px;
    }


    .plan-card {
        min-height: 360px;
    }


    .trial-strip {
        grid-template-columns:
            auto 1fr;
    }


    .trial-strip .btn {
        grid-column:
            1 / -1;

        width: 100%;
    }


    .app-status {
        display: none;
    }


    .cta-card {
        align-items:
            flex-start;

        flex-direction:
            column;

        padding:
            30px;
    }


    .cta-card .btn {
        width: 100%;
    }


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

}



/* ==========================================================
   SHAINVPN — BRIGHT V3
   ========================================================== */

:root {
    --bg: #07131c;
    --bg-soft: #0a1923;

    --card: #0e202b;
    --card-hover: #122936;

    --accent: #2ce2d4;
    --accent-light: #63eee4;

    --accent-soft:
        rgba(44,226,212,.12);
}


/* ==========================================================
   GENERAL BACKGROUND
   ========================================================== */

body {
    background:
        radial-gradient(
            circle at 50% -15%,
            rgba(44,226,212,.09),
            transparent 32%
        ),
        var(--bg);
}


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

.header {
    background:
        rgba(7,19,28,.84);

    border-bottom:
        1px solid
        rgba(99,238,228,.07);
}


.brand-mark {
    background:
        linear-gradient(
            180deg,
            #70fff3,
            #20d3c6
        );

    box-shadow:
        0 0 28px
        rgba(44,226,212,.42);
}


.nav-button.primary {
    background:
        linear-gradient(
            135deg,
            #3be5d8,
            #21cfc3
        );

    box-shadow:
        0 8px 26px
        rgba(44,226,212,.13);
}


/* ==========================================================
   HERO — КОМПАКТНЕЕ
   ========================================================== */

.hero {
    padding:
        90px 0
        55px;

    background:
        radial-gradient(
            ellipse at 50% 10%,
            rgba(44,226,212,.10),
            transparent 47%
        );
}


.hero-inner {
    max-width: 1050px;
}


.hero h1 {
    max-width: 1050px;

    margin:
        0 auto;

    font-size:
        clamp(
            50px,
            7.2vw,
            88px
        );

    line-height: .96;

    letter-spacing:
        -4px;
}


.hero h1 span {
    display: block;

    margin-top: 7px;

    background:
        linear-gradient(
            90deg,
            #45e8dc,
            #71f3e9,
            #35d5ca
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color: transparent;
}


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

    margin-top: 25px;

    font-size: 17px;

    color: #a1b6c0;
}


.hero-buttons {
    margin-top: 30px;
}


.hero-meta {
    max-width: 850px;

    margin-top: 46px;

    border-color:
        rgba(44,226,212,.11);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.015)
        );

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


.hero-glow-one {
    background:
        radial-gradient(
            circle,
            rgba(44,226,212,.18),
            transparent 65%
        );
}


/* ==========================================================
   ТАРИФЫ — ПРЯМО ПОД HERO
   ========================================================== */

#plans {
    position: relative;

    padding:
        65px 0
        90px;

    background:
        linear-gradient(
            180deg,
            rgba(44,226,212,.025),
            transparent 22%
        ),
        var(--bg-soft);
}


#plans .section-heading {
    margin-bottom: 34px;
}


#plans .section-heading h2 {
    font-size:
        clamp(
            36px,
            4.5vw,
            48px
        );
}


.plans-grid {
    gap: 14px;
}


.plan-card {
    min-height: 375px;

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

    background:
        linear-gradient(
            160deg,
            rgba(255,255,255,.025),
            transparent 45%
        ),
        #0e202b;

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

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


.plan-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(44,226,212,.26);

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


.plan-card.featured {
    border-color:
        rgba(44,226,212,.48);

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(44,226,212,.15),
            transparent 35%
        ),
        linear-gradient(
            160deg,
            rgba(44,226,212,.055),
            transparent 50%
        ),
        #10242e;

    box-shadow:
        0 22px 60px
        rgba(22,201,188,.08);
}


.plan-price {
    color:
        #ffffff;
}


.plan-card.featured
.plan-price {
    color:
        #68eee5;
}


.plan-badge {
    color:
        #071613;

    background:
        var(--accent);
}


.btn-plan {
    background:
        rgba(255,255,255,.065);

    border-color:
        rgba(255,255,255,.10);
}


.btn-plan:hover {
    border-color:
        rgba(44,226,212,.28);

    background:
        rgba(44,226,212,.09);
}


.trial-strip {
    border-color:
        rgba(44,226,212,.22);

    background:
        linear-gradient(
            90deg,
            rgba(44,226,212,.085),
            rgba(44,226,212,.025)
        );
}


/* ==========================================================
   ОСТАЛЬНЫЕ КАРТОЧКИ
   ========================================================== */

.feature-card,
.step-card,
.app-card {
    background:
        linear-gradient(
            160deg,
            rgba(255,255,255,.025),
            transparent 55%
        ),
        var(--card);
}


.feature-card:hover,
.app-card:hover {
    border-color:
        rgba(44,226,212,.22);
}


.feature-icon,
.trial-icon {
    border:
        1px solid
        rgba(44,226,212,.11);

    box-shadow:
        inset 0 0 20px
        rgba(44,226,212,.025);
}


/* ==========================================================
   CTA
   ========================================================== */

.cta-card {
    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(44,226,212,.20),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            rgba(44,226,212,.055),
            transparent
        ),
        var(--card);

    border-color:
        rgba(44,226,212,.25);
}


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

@media (max-width: 720px) {

    .hero {
        padding:
            68px 0
            45px;
    }


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

        letter-spacing:
            -2.6px;
    }


    #plans {
        padding-top:
            55px;
    }

}



/* ==========================================================
   HELP / CONNECTION V4
   ========================================================== */

.help-section {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 45%,
            rgba(40,100,255,.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 55%,
            rgba(130,65,255,.09),
            transparent 30%
        ),
        var(--bg);
}


.help-heading {
    max-width: 760px !important;
}


.help-list {
    max-width: 980px;

    margin:
        0 auto;

    display: grid;

    gap: 14px;
}


.help-list details {
    overflow: hidden;

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

    border-radius:
        20px;

    background:
        linear-gradient(
            110deg,
            rgba(35,72,110,.25),
            rgba(76,53,129,.18)
        ),
        rgba(255,255,255,.025);

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


.help-list details:hover {
    border-color:
        rgba(55,220,208,.24);

    transform:
        translateY(-1px);
}


.help-list details[open] {
    border-color:
        rgba(55,220,208,.27);

    background:
        linear-gradient(
            110deg,
            rgba(35,85,120,.30),
            rgba(82,58,145,.22)
        ),
        rgba(255,255,255,.03);
}


.help-list summary {
    min-height: 76px;

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

    gap: 18px;

    padding:
        0 24px;

    cursor: pointer;

    list-style: none;

    user-select: none;
}


.help-list summary::-webkit-details-marker {
    display: none;
}


.help-title {
    display: flex;
    align-items: center;

    gap: 13px;

    font-size: 16px;
    font-weight: 750;

    letter-spacing: -.2px;
}


.help-icon {
    width: 29px;

    flex: 0 0 29px;

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

    font-size: 17px;
}


.help-arrow {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

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

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

    border-radius: 9px;

    color:
        #91a8b4;

    font-size: 24px;
    font-weight: 300;

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


.help-list details[open]
.help-arrow {
    transform:
        rotate(90deg);

    color:
        var(--accent);

    background:
        rgba(44,226,212,.06);
}


.help-content {
    max-width: 780px;

    padding:
        0 70px
        25px 66px;

    color:
        var(--muted);
}


.help-content p {
    margin:
        8px 0;

    font-size: 13px;
    line-height: 1.7;
}


.help-content p:first-child {
    margin-top: 0;
}


@media (max-width: 720px) {

    .help-list {
        gap: 10px;
    }


    .help-list summary {
        min-height: 68px;

        padding:
            0 16px;
    }


    .help-title {
        gap: 9px;

        font-size: 14px;
    }


    .help-icon {
        width: 24px;

        flex-basis: 24px;
    }


    .help-arrow {
        width: 29px;
        height: 29px;

        flex-basis: 29px;
    }


    .help-content {
        padding:
            0 18px
            22px 49px;
    }

}



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

.site-legal-links {
    padding:
        23px 0;

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

    flex-wrap: wrap;

    gap:
        11px
        24px;

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


.site-legal-links a {
    color:
        #6f8490;

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

    transition:
        color .17s ease;
}


.site-legal-links a:hover {
    color:
        #dbe9ee;
}


@media (max-width: 720px) {

    .site-legal-links {
        justify-content:
            flex-start;

        gap:
            13px
            20px;
    }

}


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

.site-legal-links {
    padding:
        23px 0;

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

    flex-wrap: wrap;

    gap:
        11px
        24px;

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


.site-legal-links a {
    color:
        #6f8490;

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

    transition:
        color .17s ease;
}


.site-legal-links a:hover {
    color:
        #dbe9ee;
}


@media (max-width: 720px) {

    .site-legal-links {
        justify-content:
            flex-start;

        gap:
            13px
            20px;
    }

}


/* ==========================================================
   APP DOWNLOAD LINK
   ========================================================== */

.app-download-link {
    transition:
        background .17s ease,
        color .17s ease,
        transform .17s ease;

    cursor: pointer;
}


.app-download-link:hover {
    color: #061512;

    background:
        var(--accent);

    transform:
        translateY(-1px);
}

