/* =========================================================
   Void Visuals WEB STUDIO — PLANS
   SAME VISUAL SYSTEM AS ABOUT PAGE
========================================================= */

:root {
    --bg: #05070b;
    --bg2: #090d14;

    --white: #f5f7fb;
    --text: #d8dce5;
    --muted: #858d9d;
    --dim: #5d6574;

    --cyan: #62f4ff;
    --purple: #9b70ff;

    --border: rgba(255,255,255,.09);
    --glass: rgba(255,255,255,.045);

    --container: 1240px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    background: var(--bg);

    color: var(--white);

    font-family:
        "Space Grotesk",
        sans-serif;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================================
   EXACT ABOUT PAGE BACKGROUND
========================================================= */

.background-grid {
    position: fixed;

    inset: 0;

    z-index: -10;

    pointer-events: none;

    opacity: .4;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    -webkit-mask-image:
        radial-gradient(
            ellipse at center,
            black 15%,
            transparent 82%
        );

    mask-image:
        radial-gradient(
            ellipse at center,
            black 15%,
            transparent 82%
        );
}


/* =========================================================
   CYAN GLOW
========================================================= */

.glow {
    position: fixed;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;

    z-index: -8;

    transition:
        transform .5s ease-out;
}

.glow-one {
    top: -220px;
    right: -120px;

    background:
        rgba(98,244,255,.09);
}


/* =========================================================
   PURPLE GLOW
========================================================= */

.glow-two {
    bottom: -250px;
    left: -150px;

    background:
        rgba(155,112,255,.09);
}


/* =========================================================
   PARTICLES
========================================================= */

#particles {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: -7;

    pointer-events: none;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    height: 82px;

    padding:
        0 max(
            24px,
            calc((100vw - var(--container)) / 2)
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 1000;

    transition:
        background .3s ease,
        border .3s ease,
        box-shadow .3s ease;
}

.navbar.scrolled {
    background:
        rgba(5,7,11,.82);

    border-bottom:
        1px solid var(--border);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 15px 50px
        rgba(0,0,0,.25);
}


/* =========================================================
   LOGO
========================================================= */

.logo,
.footer-logo {
    font-size: 25px;

    font-weight: 700;

    letter-spacing: -1.5px;
}

.logo span,
.footer-logo span {
    color: var(--cyan);

    text-shadow:
        0 0 18px
        rgba(98,244,255,.45);
}


/* =========================================================
   NAVIGATION
========================================================= */

.navbar nav {
    display: flex;

    align-items: center;

    gap: 34px;
}

.navbar nav a {
    position: relative;

    color: #858c99;

    font-size: 13px;

    transition:
        color .25s ease;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: white;
}

.navbar nav a.active::after {
    content: "";

    position: absolute;

    left: 50%;

    bottom: -12px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    transform:
        translateX(-50%);

    background:
        var(--cyan);

    box-shadow:
        0 0 10px
        var(--cyan);
}


/* =========================================================
   NAV BUTTON
========================================================= */

.nav-button {
    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        11px 16px;

    border:
        1px solid
        var(--border);

    border-radius: 8px;

    color: #dfe3eb;

    font-size: 12px;

    transition:
        .3s ease;
}

.nav-button span {
    color: var(--cyan);

    font-size: 15px;
}

.nav-button:hover {
    border-color:
        rgba(98,244,255,.4);

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 30px
        rgba(98,244,255,.07);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border:
        1px solid
        var(--border);

    border-radius: 8px;

    background:
        rgba(255,255,255,.03);

    color: white;

    font-size: 18px;

    cursor: pointer;
}


/* =========================================================
   MAIN
========================================================= */

main {
    position: relative;

    z-index: 2;

    width:
        min(
            var(--container),
            calc(100% - 48px)
        );

    margin: auto;
}


/* =========================================================
   COMMON SECTION
========================================================= */

section {
    padding-top: 130px;
}


/* =========================================================
   TAG
========================================================= */

.tag {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    color: #8e96a6;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2.5px;
}

.tag > span {
    width: 27px;
    height: 1px;

    display: block;

    background:
        var(--cyan);

    box-shadow:
        0 0 12px
        var(--cyan);
}


/* =========================================================
   PLANS HERO
========================================================= */

.plans-hero {
    min-height: 75vh;

    padding-top: 150px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}

.plans-hero .tag {
    justify-content: center;
}

.plans-hero h1 {
    max-width: 850px;

    font-size:
        clamp(
            48px,
            6vw,
            82px
        );

    line-height: .98;

    letter-spacing: -4px;

    font-weight: 600;
}

.plans-hero h1 span {
    display: block;

    color: var(--cyan);

    text-shadow:
        0 0 40px
        rgba(98,244,255,.12);
}

.plans-hero p {
    max-width: 650px;

    margin-top: 27px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   PLANS GRID
========================================================= */

.plans-section {
    padding-top: 0;
}

.plans-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;

    align-items: stretch;
}


/* =========================================================
   PLAN CARD
========================================================= */

.plan-card {
    position: relative;

    min-height: 650px;

    padding: 30px;

    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.018)
        );

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


/* CARD GLOW */

.plan-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -120px;
    bottom: -120px;

    border-radius: 50%;

    background:
        rgba(98,244,255,.07);

    filter: blur(45px);

    transition:
        transform .5s ease;
}

.plan-card:hover {
    transform:
        translateY(-10px);

    border-color:
        rgba(98,244,255,.3);

    box-shadow:
        0 25px 70px
        rgba(0,0,0,.3);
}

.plan-card:hover::before {
    transform:
        scale(1.7);
}


/* POPULAR */

.plan-card.popular {
    border-color:
        rgba(98,244,255,.28);

    box-shadow:
        0 20px 70px
        rgba(98,244,255,.05);
}

.plan-card.popular:hover {
    box-shadow:
        0 30px 80px
        rgba(98,244,255,.10);
}


/* PREMIUM */

.plan-card.premium::before {
    background:
        rgba(155,112,255,.08);
}


/* =========================================================
   POPULAR BADGE
========================================================= */

.popular-badge {
    position: absolute;

    top: 0;
    right: 25px;

    padding:
        8px 14px;

    border-radius:
        0 0 8px 8px;

    background:
        var(--cyan);

    color:
        #041013;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    box-shadow:
        0 10px 30px
        rgba(98,244,255,.15);
}


/* =========================================================
   PLAN TOP
========================================================= */

.plan-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.plan-number {
    color:
        #545c6b;

    font-size: 10px;

    letter-spacing: 2px;
}

.plan-type {
    color:
        var(--cyan);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;
}

.premium .plan-type {
    color:
        var(--purple);
}


/* =========================================================
   PLAN TITLE
========================================================= */

.plan-card h2 {
    margin-top: 48px;

    font-size: 29px;

    letter-spacing: -1.5px;
}

.plan-description {
    min-height: 62px;

    margin-top: 12px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   PRICE
========================================================= */

.price {
    margin-top: 30px;

    font-size: 48px;

    font-weight: 600;

    line-height: 1;

    letter-spacing: -3px;
}

.price span {
    margin-right: 4px;

    color: var(--cyan);

    font-size: 23px;
}

.premium .price span {
    color:
        var(--purple);
}

.price-note {
    margin-top: 8px;

    color:
        var(--dim);

    font-size: 9px;

    letter-spacing: .5px;
}


/* =========================================================
   DIVIDER
========================================================= */

.divider {
    width: 100%;

    height: 1px;

    margin:
        25px 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.10),
            transparent
        );
}


/* =========================================================
   FEATURES
========================================================= */

.plan-card ul {
    list-style: none;

    display: grid;

    gap: 12px;

    margin-bottom: 28px;
}

.plan-card li {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color:
        #aeb5c2;

    font-size: 12px;

    line-height: 1.5;
}

.plan-card li > span {
    color:
        var(--cyan);

    font-weight: 700;
}

.plan-card li.highlight {
    color:
        #dceff2;
}

.plan-card li.highlight > span {
    color:
        var(--cyan);
}


/* =========================================================
   PLAN BUTTON
========================================================= */

.plan-button {
    position: relative;

    width: 100%;

    min-height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 8px;

    background:
        rgba(255,255,255,.025);

    color:
        #dfe3eb;

    font-size: 12px;

    font-weight: 600;

    overflow: hidden;

    transition:
        .3s ease;
}

.plan-button:hover {
    color:
        #041013;

    background:
        var(--cyan);

    border-color:
        var(--cyan);

    transform:
        translateY(-2px);

    box-shadow:
        0 15px 45px
        rgba(98,244,255,.15);
}

.plan-button span {
    color:
        var(--cyan);

    transition:
        transform .3s ease;
}

.plan-button:hover span {
    color:
        #041013;

    transform:
        translate(3px,-3px);
}


/* =========================================================
   INCLUDED
========================================================= */

.included {
    margin:
        120px 0 0;

    padding:
        55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    border:
        1px solid
        var(--border);

    border-radius: 20px;

    background:
        linear-gradient(
            110deg,
            rgba(98,244,255,.045),
            rgba(155,112,255,.045)
        );
}

.included-content {
    max-width: 600px;
}

.included h2 {
    font-size:
        clamp(
            38px,
            4.5vw,
            62px
        );

    line-height: 1;

    letter-spacing: -3px;
}

.included h2 span {
    color:
        var(--cyan);
}

.included p {
    margin-top: 18px;

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.8;
}

.included-items {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;
}

.included-items div {
    min-width: 150px;

    padding: 20px;

    border:
        1px solid
        var(--border);

    border-radius: 12px;

    background:
        rgba(255,255,255,.025);

    transition:
        .3s ease;
}

.included-items div:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(98,244,255,.25);

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.2);
}

.included-items strong {
    display: block;

    color:
        var(--cyan);

    font-size: 9px;

    letter-spacing: 2px;
}

.included-items span {
    display: block;

    margin-top: 8px;

    font-size: 13px;
}


/* =========================================================
   FAQ
========================================================= */

.faq {
    margin-top: 120px;

    padding-bottom: 0;
}

.section-title {
    margin-bottom: 48px;
}

.section-title h2 {
    font-size:
        clamp(
            40px,
            5vw,
            65px
        );

    line-height: 1;

    letter-spacing: -3px;
}

.section-title h2 span {
    color:
        var(--cyan);
}

.faq-list {
    display: grid;

    gap: 12px;
}

details {
    border:
        1px solid
        var(--border);

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.018)
        );

    overflow: hidden;

    transition:
        border-color .3s ease,
        background .3s ease;
}

details:hover,
details[open] {
    border-color:
        rgba(98,244,255,.25);
}

summary {
    cursor: pointer;

    padding:
        23px 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color:
        #e7ebf2;

    font-size: 13px;

    font-weight: 600;

    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary span {
    color:
        var(--cyan);

    font-size: 20px;

    transition:
        transform .3s ease;
}

details[open] summary span {
    transform:
        rotate(45deg);
}

details p {
    max-width: 850px;

    padding:
        0 25px 23px;

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   CTA
========================================================= */

.plans-cta {
    margin:
        120px auto 100px;

    padding:
        55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border:
        1px solid
        var(--border);

    border-radius: 20px;

    background:
        linear-gradient(
            110deg,
            rgba(98,244,255,.045),
            rgba(155,112,255,.045)
        );
}

.plans-cta h2 {
    font-size:
        clamp(
            38px,
            4.5vw,
            62px
        );

    line-height: 1;

    letter-spacing: -3px;
}

.plans-cta h2 span {
    color:
        var(--cyan);
}

.plans-cta p {
    max-width: 550px;

    margin-top: 18px;

    color:
        var(--muted);

    font-size: 14px;
}


/* CTA BUTTON */

.cta-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 50px;

    padding:
        0 22px;

    border-radius: 8px;

    color:
        #041013;

    background:
        var(--cyan);

    border:
        1px solid
        var(--cyan);

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.cta-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 15px 45px
        rgba(98,244,255,.2);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    width:
        min(
            var(--container),
            calc(100% - 48px)
        );

    min-height: 90px;

    margin:
        0 auto;

    display: flex;

    align-items: center;

    gap: 25px;

    border-top:
        1px solid
        var(--border);

    color:
        #697180;

    font-size: 11px;
}

footer small {
    margin-left: auto;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.show {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .plans-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .plan-card.premium {
        grid-column:
            span 2;
    }

    .included {
        flex-direction:
            column;

        align-items:
            flex-start;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .navbar {
        height: 70px;

        padding:
            0 20px;
    }

    .navbar nav {
        display: none;

        position: absolute;

        top: 80px;

        left: 15px;
        right: 15px;

        padding: 20px;

        flex-direction: column;

        align-items: stretch;

        gap: 20px;

        border:
            1px solid
            var(--border);

        border-radius: 14px;

        background:
            rgba(7,9,14,.96);

        backdrop-filter:
            blur(18px);
    }

    .navbar nav.open {
        display: flex;
    }

    .navbar nav a.active::after {
        display: none;
    }

    .nav-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    main {
        width:
            calc(100% - 40px);
    }

    .plans-hero {
        min-height:
            auto;

        padding-top:
            130px;

        padding-bottom:
            90px;
    }

    .plans-hero h1 {
        font-size:
            clamp(
                42px,
                12vw,
                62px
            );

        letter-spacing:
            -3px;
    }

    .plans-hero p {
        font-size:
            13px;
    }

    .plans-grid {
        grid-template-columns:
            1fr;
    }

    .plan-card {
        min-height:
            auto;

        padding:
            28px;
    }

    .plan-card.premium {
        grid-column:
            auto;
    }

    .price {
        font-size:
            45px;
    }

    .included {
        margin-top:
            90px;

        padding:
            30px;

        align-items:
            flex-start;
    }

    .included h2 {
        font-size:
            40px;

        letter-spacing:
            -2px;
    }

    .included-items {
        width:
            100%;

        grid-template-columns:
            1fr 1fr;
    }

    .included-items div {
        min-width:
            0;

        padding:
            16px;
    }

    .faq {
        margin-top:
            90px;
    }

    .section-title h2 {
        font-size:
            42px;

        letter-spacing:
            -2px;
    }

    .plans-cta {
        margin-top:
            90px;

        margin-bottom:
            70px;

        padding:
            30px;

        flex-direction:
            column;

        align-items:
            flex-start;
    }

    .plans-cta h2 {
        font-size:
            40px;

        letter-spacing:
            -2px;
    }

    .cta-button {
        width:
            100%;
    }

    footer {
        width:
            calc(100% - 40px);

        padding:
            25px 0;

        flex-wrap:
            wrap;
    }

    footer p {
        width:
            100%;
    }

    footer small {
        width:
            100%;

        margin-left:
            0;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

        scroll-behavior:
            auto !important;
    }
}