:root {
    --bg: #060711;
    --bg-soft: #090c17;
    --card: #0d1220;
    --card-light: #121a2b;

    --line: #202d48;

    --text: #f6f7fb;
    --muted: #8b96aa;
    --muted-dark: #59657a;

    --cyan: #39d7ff;
    --blue: #4e86ff;
    --purple: #8b5cff;
    --pink: #ff4fcb;

    --green: #4ce0a0;

    --width: 1160px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(
            circle at 85% 5%,
            rgba(139,92,255,.09),
            transparent 25%
        ),
        var(--bg);

    color: var(--text);

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

    line-height: 1.5;
}

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

.rgb-line {
    position: fixed;
    z-index: 100;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--blue),
            var(--purple),
            var(--pink)
        );
}


/* =========================================================
   NAV
   ========================================================= */

.nav-shell {
    position: sticky;
    top: 0;
    z-index: 50;

    background: rgba(6,7,17,.86);

    backdrop-filter: blur(18px);

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

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

    height: 74px;

    margin: auto;

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

.brand {
    font-size: 21px;
    font-weight: 800;

    letter-spacing: -.6px;
}

.brand span {
    color: var(--cyan);
}

nav {
    display: flex;

    gap: 29px;
}

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

    font-size: 13px;
    font-weight: 500;

    transition: color .2s;
}

nav a:hover {
    color: var(--text);
}

.nav-cta {
    padding: 9px 15px;

    border: 1px solid var(--line);
    border-radius: 9px;

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

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

.nav-cta:hover {
    background: var(--card);

    border-color: var(--blue);
}


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

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

    min-height: 650px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    align-items: center;

    gap: 80px;

    padding:
        70px 0;
}

.dev-label,
.small-label,
.section-side {
    color: var(--cyan);

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

    letter-spacing: 1.7px;
}

.hero h1 {
    max-width: 650px;

    margin:
        15px 0 23px;

    font-size:
        clamp(
            48px,
            5.5vw,
            73px
        );

    line-height: 1.03;

    letter-spacing: -3px;
}

.hero h1 span {
    display: block;

    color: var(--muted);
}

.hero-text {
    max-width: 560px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}

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

    gap: 23px;

    margin-top: 30px;
}

.button {
    display: inline-block;

    padding:
        12px 18px;

    border-radius: 10px;

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

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

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

.primary {
    background:
        linear-gradient(
            100deg,
            var(--blue),
            var(--purple)
        );

    box-shadow:
        0 12px 35px
        rgba(78,134,255,.15);
}

.text-link {
    color: var(--muted);

    font-size: 13px;

    transition: color .2s;
}

.text-link:hover {
    color: white;
}

.hero-status {
    display: flex;

    gap: 42px;

    margin-top: 55px;

    padding-top: 20px;

    border-top:
        1px solid var(--line);
}

.hero-status div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

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

.hero-status span {
    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   PRODUCT WINDOW
   ========================================================= */

.hero-product {
    position: relative;
}

.product-glow {
    position: absolute;

    width: 320px;
    height: 320px;

    top: 50%;
    left: 50%;

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

    background:
        var(--purple);

    opacity: .12;

    filter: blur(100px);

    border-radius: 50%;
}

.product-window {
    position: relative;

    overflow: hidden;

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

    border-radius: 18px;

    background:
        #0b0f1b;

    box-shadow:
        0 45px 90px
        rgba(0,0,0,.38);
}

.window-top {
    height: 42px;

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

    padding:
        0 15px;

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

    color: var(--muted-dark);

    font-size: 11px;
}

.window-dots {
    display: flex;

    gap: 6px;
}

.window-dots i {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--muted-dark);
}

.window-body {
    padding:
        34px;

    display: flex;
    align-items: center;

    gap: 25px;
}

.window-body img {
    width: 165px;
    height: 165px;

    object-fit: contain;
}

.window-info h2 {
    margin:
        8px 0 3px;

    font-size: 29px;
}

.window-info p {
    color: var(--muted);

    font-size: 13px;
}

.status-dot {
    color: var(--green);

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

    letter-spacing: 1px;
}


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

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

    margin: auto;

    padding:
        105px 0;

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


/* =========================================================
   VEXPAD
   ========================================================= */

.vexpad-section {
    display: grid;

    grid-template-columns:
        120px 1fr;

    gap: 40px;
}

.section-side {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.section-number {
    color: var(--muted-dark);

    font-size: 24px;

    letter-spacing: 0;
}

.vexpad-heading {
    display: grid;

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

    gap: 60px;

    align-items: end;

    margin-bottom: 42px;
}

.vexpad-heading h2 {
    margin-top: 10px;

    font-size:
        clamp(
            38px,
            4.5vw,
            60px
        );

    line-height: 1.05;

    letter-spacing: -2px;
}

.vexpad-heading h2 span {
    display: block;

    color: var(--muted);
}

.vexpad-heading p {
    color: var(--muted);

    line-height: 1.8;

    font-size: 14px;
}

.vexpad-showcase {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

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

    background:
        var(--card);

    border-radius: 17px;

    overflow: hidden;
}

.vexpad-logo-box {
    min-height: 350px;

    display: grid;
    place-items: center;

    background:
        #090d18;

    border-right:
        1px solid var(--line);
}

.vexpad-logo-box img {
    width: 75%;
    max-width: 300px;
}

.vexpad-details {
    padding:
        24px 30px;
}

.detail-row {
    min-height: 58px;

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

    gap: 20px;

    border-bottom:
        1px solid var(--line);
}

.detail-row:last-child {
    border-bottom: 0;
}

.detail-row span {
    color: var(--muted);

    font-size: 12px;
}

.detail-row strong {
    font-size: 13px;
}

.vexpad-features {
    display: grid;

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

    margin-top: 13px;

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

    border-radius: 13px;

    overflow: hidden;
}

.vexpad-features div {
    padding:
        18px;

    display: flex;
    flex-direction: column;

    gap: 3px;

    border-right:
        1px solid var(--line);
}

.vexpad-features div:last-child {
    border-right: 0;
}

.vexpad-features strong {
    font-size: 12px;
}

.vexpad-features span {
    color: var(--muted);

    font-size: 11px;
}

.project-actions {
    margin-top: 23px;

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

    gap: 20px;

    font-size: 11px;
}

.project-state {
    color: var(--green);
}

.release-note {
    color: var(--muted);
}


/* =========================================================
   BUILD SECTION
   ========================================================= */

.build-section {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;
}

.build-heading h2 {
    margin-top: 12px;

    font-size:
        clamp(
            38px,
            4vw,
            55px
        );

    line-height: 1.07;

    letter-spacing: -2px;
}

.build-copy {
    display: flex;
    flex-direction: column;

    gap: 24px;

    color: var(--muted);

    line-height: 1.9;

    font-size: 15px;
}


/* =========================================================
   PROJECTS
   ========================================================= */

.projects-header {
    margin-bottom: 28px;
}

.projects-header h2 {
    margin-top: 10px;

    font-size:
        37px;

    letter-spacing: -1.4px;
}

.project-row {
    min-height: 145px;

    padding:
        22px;

    display: grid;

    grid-template-columns:
        105px 1fr auto 45px;

    align-items: center;

    gap: 24px;

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

    border-radius: 14px;

    background:
        var(--card);
}

.project-icon {
    width: 95px;
    height: 95px;

    display: grid;
    place-items: center;

    background:
        #090d18;

    border-radius: 12px;
}

.project-icon img {
    width: 83%;
}

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

    gap: 13px;
}

.project-title h3 {
    font-size: 22px;
}

.project-title span {
    color: var(--green);

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

    letter-spacing: 1px;
}

.project-description p {
    margin-top: 5px;

    color: var(--muted);

    font-size: 13px;
}

.project-platforms {
    display: flex;

    gap: 6px;
}

.project-platforms span {
    padding:
        6px 8px;

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

    border-radius: 6px;

    color: var(--muted);

    font-size: 9px;
}

.project-arrow {
    color: var(--cyan);

    font-size: 23px;
}

.next-project {
    padding:
        35px 5px 0;

    color: var(--muted);
}

.next-project span {
    color: var(--text);

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

.next-project p {
    margin-top: 5px;

    font-size: 12px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;
}

.about-title h2 {
    margin-top: 12px;

    max-width: 500px;

    font-size:
        clamp(
            36px,
            4vw,
            52px
        );

    line-height: 1.08;

    letter-spacing: -2px;
}

.about-text {
    color: var(--muted);

    line-height: 1.9;

    font-size: 15px;
}

.about-text p + p {
    margin-top: 20px;
}

.signature {
    color: var(--text);

    font-weight: 600;
}


/* =========================================================
   SUPPORT
   ========================================================= */

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

    margin:
        0 auto 90px;

    padding:
        45px;

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

    gap: 50px;

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

    border-radius: 16px;

    background:
        linear-gradient(
            120deg,
            rgba(57,215,255,.04),
            rgba(139,92,255,.04)
        );
}

.support-section h2 {
    margin:
        8px 0 7px;

    font-size: 32px;

    letter-spacing: -1px;
}

.support-section p {
    max-width: 650px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


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

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

    margin: auto;

    padding:
        35px 0 45px;

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

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

    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.footer-brand strong {
    font-size: 14px;
}

.footer-brand span {
    color: var(--muted);

    font-size: 11px;
}

.footer-nav {
    display: flex;

    gap: 23px;
}

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

    font-size: 11px;

    transition: color .2s;
}

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

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

    padding-top: 18px;

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

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

    color: var(--muted-dark);

    font-size: 10px;
}


/* =========================================================
   ANIMATION
   ========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(18px);

    transition:
        opacity .55s ease,
        transform .55s ease;
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    nav {
        display: none;
    }

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

        gap: 60px;
    }

    .vexpad-section {
        grid-template-columns: 1fr;
    }

    .section-side {
        flex-direction: row;
    }

    .vexpad-heading,
    .build-section,
    .about-section {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .vexpad-showcase {
        grid-template-columns: 1fr;
    }

    .vexpad-logo-box {
        border-right: 0;

        border-bottom:
            1px solid var(--line);
    }

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

    .vexpad-features div:nth-child(2) {
        border-right: 0;
    }

    .project-row {
        grid-template-columns:
            90px 1fr 35px;
    }

    .project-platforms {
        display: none;
    }

}


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

@media (max-width: 560px) {

    .navbar,
    .hero,
    .section,
    .support-section,
    footer {
        width:
            calc(100% - 28px);
    }

    .nav-cta {
        display: none;
    }

    .hero {
        min-height: 0;

        padding:
            65px 0 80px;
    }

    .hero h1 {
        font-size: 45px;

        letter-spacing: -2px;
    }

    .hero-actions {
        align-items: flex-start;

        flex-direction: column;
    }

    .hero-status {
        flex-direction: column;

        gap: 16px;
    }

    .window-body {
        flex-direction: column;

        text-align: center;
    }

    .section {
        padding:
            75px 0;
    }

    .vexpad-features {
        grid-template-columns: 1fr;
    }

    .vexpad-features div {
        border-right: 0;

        border-bottom:
            1px solid var(--line);
    }

    .vexpad-features div:last-child {
        border-bottom: 0;
    }

    .project-actions {
        flex-direction: column;
    }

    .project-row {
        grid-template-columns:
            70px 1fr;

        gap: 16px;
    }

    .project-icon {
        width: 70px;
        height: 70px;
    }

    .project-arrow {
        display: none;
    }

    .project-title {
        align-items: flex-start;
        flex-direction: column;

        gap: 3px;
    }

    .support-section {
        padding: 28px;

        align-items: flex-start;
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-nav {
        flex-wrap: wrap;
    }

}


/* =========================================================
   LEGAL / PRIVACY
   ========================================================= */

.legal-main {
    width:
        min(
            calc(100% - 40px),
            900px
        );

    margin: auto;
}

.legal-header {
    padding:
        90px 0 45px;

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

.legal-header h1 {
    margin:
        12px 0 10px;

    font-size:
        clamp(
            40px,
            6vw,
            64px
        );

    line-height: 1.05;

    letter-spacing: -2px;
}

.legal-header p {
    color: var(--muted);

    font-size: 13px;
}

.legal-content {
    padding:
        25px 0 100px;
}

.legal-intro {
    margin:
        20px 0 45px;

    padding:
        25px;

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

    border-radius: 14px;

    background:
        var(--card);

    color:
        var(--muted);

    line-height: 1.8;
}

.legal-intro p + p {
    margin-top: 13px;
}

.legal-content article {
    padding:
        30px 0;

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

.legal-content article:last-child {
    border-bottom: 0;
}

.legal-content h2 {
    margin-bottom: 14px;

    font-size: 21px;

    letter-spacing: -.5px;
}

.legal-content p {
    color:
        var(--muted);

    line-height: 1.85;

    font-size: 14px;
}

.legal-content p + p {
    margin-top: 13px;
}

.legal-content ul {
    margin:
        16px 0 16px 22px;

    color:
        var(--muted);

    line-height: 1.9;

    font-size: 14px;
}

.legal-content a {
    color:
        var(--cyan);
}

.legal-content strong {
    color:
        var(--text);
}

@media (max-width: 560px) {

    .legal-main {
        width:
            calc(100% - 28px);
    }

    .legal-header {
        padding:
            65px 0 35px;
    }

    .legal-content {
        padding-bottom:
            70px;
    }

}


/* =========================================================
   SUPPORT PAGE
   ========================================================= */

.support-main {
    width:
        min(
            calc(100% - 40px),
            900px
        );

    margin: auto;
}

.support-hero {
    padding:
        90px 0 60px;

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

.support-hero h1 {
    margin:
        12px 0 12px;

    font-size:
        clamp(
            45px,
            7vw,
            68px
        );

    letter-spacing: -2.5px;

    line-height: 1.04;
}

.support-hero > p {
    max-width: 570px;

    color:
        var(--muted);

    line-height: 1.8;
}

.support-status {
    display: flex;

    gap: 8px;

    margin-top: 25px;
}

.support-status span {
    padding:
        6px 9px;

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

    border-radius:
        6px;

    color:
        var(--muted);

    font-size:
        10px;
}

.support-block {
    padding:
        60px 0;

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

.support-block-title {
    display: grid;

    grid-template-columns:
        50px 1fr;

    gap: 15px;

    margin-bottom:
        30px;
}

.support-block-title > span {
    color:
        var(--cyan);

    font-size:
        12px;

    font-weight:
        800;
}

.support-block-title h2 {
    font-size:
        27px;

    letter-spacing:
        -.8px;
}

.support-block-title p {
    margin-top:
        4px;

    color:
        var(--muted);

    font-size:
        12px;
}


/* STEPS */

.support-steps {
    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        10px;
}

.support-steps article {
    padding:
        20px;

    display:
        flex;

    gap:
        15px;

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

    border-radius:
        12px;

    background:
        var(--card);
}

.support-steps article > strong {
    flex-shrink:
        0;

    width:
        30px;

    height:
        30px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        8px;

    background:
        var(--card-light);

    color:
        var(--cyan);

    font-size:
        11px;
}

.support-steps h3 {
    margin-bottom:
        4px;

    font-size:
        14px;
}

.support-steps p {
    color:
        var(--muted);

    font-size:
        12px;

    line-height:
        1.6;
}


/* FAQ */

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

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

.faq summary {
    padding:
        20px 4px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    cursor:
        pointer;

    list-style:
        none;

    font-size:
        14px;

    font-weight:
        600;
}

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

.faq summary::after {
    content:
        "+";

    color:
        var(--cyan);

    font-size:
        19px;

    font-weight:
        400;
}

.faq details[open] summary::after {
    content:
        "−";
}

.faq-answer {
    padding:
        0 40px 20px 4px;
}

.faq-answer p {
    color:
        var(--muted);

    font-size:
        13px;

    line-height:
        1.8;
}

.faq-answer p + p {
    margin-top:
        10px;
}


/* TECH */

.support-tech {
    display:
        grid;

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

    overflow:
        hidden;

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

    border-radius:
        12px;
}

.support-tech div {
    padding:
        18px;

    display:
        flex;

    flex-direction:
        column;

    gap:
        4px;

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

    background:
        var(--card);
}

.support-tech div:last-child {
    border-right:
        0;
}

.support-tech span {
    color:
        var(--muted);

    font-size:
        10px;
}

.support-tech strong {
    font-size:
        12px;
}


/* CONTACT */

.support-contact {
    margin:
        65px 0 30px;

    padding:
        35px;

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    gap:
        40px;

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

    border-radius:
        15px;

    background:
        linear-gradient(
            120deg,
            rgba(57,215,255,.045),
            rgba(139,92,255,.045)
        );
}

.support-contact h2 {
    margin:
        8px 0 6px;

    font-size:
        28px;
}

.support-contact p {
    max-width:
        550px;

    color:
        var(--muted);

    font-size:
        12px;

    line-height:
        1.7;
}

.support-links {
    padding:
        0 0 75px;

    display:
        flex;

    gap:
        20px;
}

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

    font-size:
        11px;
}

.support-links a:hover {
    color:
        var(--cyan);
}


@media (max-width: 700px) {

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

    .support-tech {
        grid-template-columns:
            1fr 1fr;
    }

    .support-tech div:nth-child(2) {
        border-right:
            0;
    }

    .support-tech div {
        border-bottom:
            1px solid var(--line);
    }

    .support-contact {
        align-items:
            flex-start;

        flex-direction:
            column;
    }

}


@media (max-width: 560px) {

    .support-main {
        width:
            calc(100% - 28px);
    }

    .support-hero {
        padding:
            65px 0 45px;
    }

    .support-tech {
        grid-template-columns:
            1fr;
    }

    .support-tech div {
        border-right:
            0;
    }

    .support-contact {
        padding:
            25px;
    }

}


/* =========================================================
   VEXPAD PRODUCT PAGE
   ========================================================= */

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

    min-height: 620px;

    margin: auto;

    padding: 75px 0;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;
}

.vp-hero h1 {
    margin: 13px 0 20px;

    font-size:
        clamp(
            52px,
            6vw,
            78px
        );

    line-height: 1;

    letter-spacing: -3px;
}

.vp-hero h1 span {
    display: block;

    color: var(--muted);
}

.vp-hero-copy > p {
    max-width: 580px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}

.vp-actions {
    display: flex;

    gap: 10px;

    margin-top: 28px;
}

.vp-secondary {
    border: 1px solid var(--line);

    background: var(--card);
}

.vp-platforms {
    display: flex;

    gap: 7px;

    margin-top: 33px;
}

.vp-platforms span {
    padding: 6px 9px;

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

    border-radius: 6px;

    color: var(--muted);

    font-size: 10px;
}


/* LOGO */

.vp-hero-logo {
    position: relative;

    display: grid;

    place-items: center;
}

.vp-logo-glow {
    position: absolute;

    width: 370px;
    height: 370px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--cyan),
            var(--purple),
            var(--pink)
        );

    opacity: .12;

    filter: blur(110px);
}

.vp-hero-logo img {
    position: relative;

    width: min(430px, 90%);

    filter:
        drop-shadow(
            0 30px 55px rgba(0,0,0,.4)
        );
}


/* STATUS */

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

    margin: auto;

    display: grid;

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

    overflow: hidden;

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

    border-radius: 12px;

    background: var(--card);
}

.vp-status-bar div {
    padding: 16px 18px;

    display: flex;

    flex-direction: column;

    gap: 3px;

    border-right:
        1px solid var(--line);
}

.vp-status-bar div:last-child {
    border-right: 0;
}

.vp-status-bar span {
    color: var(--muted);

    font-size: 9px;
}

.vp-status-bar strong {
    font-size: 11px;
}

.green-text {
    color: var(--green);
}


/* SECTIONS */

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

    margin: auto;

    padding: 100px 0;

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

.vp-section-heading {
    margin-bottom: 35px;
}

.vp-section-heading h2,
.vp-intro h2 {
    margin-top: 8px;

    font-size:
        clamp(
            36px,
            4vw,
            52px
        );

    line-height: 1.07;

    letter-spacing: -2px;
}

.vp-heading-note {
    margin-top: 10px;

    color: var(--muted);

    font-size: 12px;
}


/* INTRO */

.vp-intro {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;
}

.vp-intro-copy {
    display: flex;

    flex-direction: column;

    gap: 18px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.85;
}


/* FEATURES */

.vp-feature-grid {
    display: grid;

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

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

    border-left: 1px solid var(--line);
}

.vp-feature-grid article {
    min-height: 185px;

    padding: 23px;

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

    border-bottom:
        1px solid var(--line);
}

.vp-feature-grid article > span {
    color: var(--cyan);

    font-size: 10px;

    font-weight: 800;
}

.vp-feature-grid h3 {
    margin: 25px 0 7px;

    font-size: 16px;
}

.vp-feature-grid p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


/* FLOW */

.vp-flow {
    display: grid;

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

    align-items: center;

    gap: 16px;
}

.vp-flow article {
    min-height: 180px;

    padding: 24px;

    display: flex;

    gap: 18px;

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

    border-radius: 12px;

    background: var(--card);
}

.vp-flow article > strong {
    flex-shrink: 0;

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 8px;

    background: var(--card-light);

    color: var(--cyan);

    font-size: 12px;
}

.vp-flow h3 {
    margin-bottom: 7px;

    font-size: 15px;
}

.vp-flow p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}

.vp-flow-arrow {
    color: var(--muted-dark);

    font-size: 20px;
}


/* OS */

.vp-os-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;
}

.vp-os-grid article {
    padding: 30px;

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

    border-radius: 14px;

    background: var(--card);
}

.vp-os-name {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-bottom: 18px;

    border-bottom:
        1px solid var(--line);
}

.vp-os-name span {
    color: var(--cyan);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.vp-os-name strong {
    font-size: 12px;
}

.vp-os-grid p {
    margin-top: 20px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}

.vp-os-grid ul {
    margin: 20px 0 0 18px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.9;
}


/* SCREENSHOTS */

.vp-screenshots {
    display: grid;

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

    gap: 12px;
}

.vp-shot {
    aspect-ratio: 9 / 13;

    padding: 22px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    gap: 4px;

    border: 1px dashed var(--line);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(57,215,255,.025),
            rgba(139,92,255,.025)
        );
}

.vp-shot span {
    color: var(--cyan);

    font-size: 9px;

    font-weight: 800;
}

.vp-shot strong {
    font-size: 14px;
}

.vp-shot small {
    color: var(--muted-dark);
}


/* REQUIREMENTS */

.vp-requirements {
    display: grid;

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

    overflow: hidden;

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

    border-radius: 12px;
}

.vp-requirements div {
    padding: 20px;

    display: flex;

    flex-direction: column;

    gap: 4px;

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

    background: var(--card);
}

.vp-requirements div:last-child {
    border-right: 0;
}

.vp-requirements span {
    color: var(--muted);

    font-size: 9px;
}

.vp-requirements strong {
    font-size: 11px;
}


/* DOWNLOAD */

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

    margin: 90px auto 30px;

    padding: 40px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 50px;

    align-items: center;

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

    border-radius: 16px;

    background:
        linear-gradient(
            120deg,
            rgba(57,215,255,.035),
            rgba(139,92,255,.045)
        );
}

.vp-download h2 {
    margin: 8px 0 8px;

    font-size: 31px;
}

.vp-download p {
    max-width: 560px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.75;
}

.vp-download-actions {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 8px;
}

.vp-download-disabled {
    padding: 17px;

    display: flex;

    flex-direction: column;

    gap: 3px;

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

    border-radius: 10px;

    background: var(--card);

    opacity: .65;
}

.vp-download-disabled span {
    color: var(--muted);

    font-size: 9px;
}

.vp-download-disabled strong {
    font-size: 12px;
}

.vp-download-disabled small {
    color: var(--muted-dark);
}


/* BOTTOM HELP */

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

    margin: 0 auto 90px;

    padding: 35px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}

.vp-bottom-help h2 {
    margin-top: 6px;

    font-size: 25px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .vp-hero,
    .vp-intro,
    .vp-download {
        grid-template-columns: 1fr;
    }

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

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

    .vp-flow {
        grid-template-columns: 1fr;
    }

    .vp-flow-arrow {
        transform: rotate(90deg);

        text-align: center;
    }

    .vp-os-grid {
        grid-template-columns: 1fr;
    }

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

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

}


@media (max-width: 560px) {

    .vp-hero,
    .vp-status-bar,
    .vp-section,
    .vp-download,
    .vp-bottom-help {
        width: calc(100% - 28px);
    }

    .vp-hero {
        min-height: 0;

        padding: 65px 0;
    }

    .vp-hero h1 {
        font-size: 46px;
    }

    .vp-status-bar,
    .vp-feature-grid,
    .vp-screenshots,
    .vp-requirements,
    .vp-download-actions {
        grid-template-columns: 1fr;
    }

    .vp-intro {
        gap: 35px;
    }

    .vp-download {
        padding: 26px;
    }

    .vp-bottom-help {
        align-items: flex-start;

        flex-direction: column;
    }

}
/* =========================================================
   VEXPAD - SCREENSHOTS REALES
   ========================================================= */

.vp-shot-real {
    position: relative;
    padding: 0;
    overflow: hidden;
    border-style: solid;
    background: #080b12;
}

.vp-shot-real img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.vp-shot-real .vp-shot-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 45px 18px 17px;

    display: flex;
    flex-direction: column;
    gap: 3px;

    background:
        linear-gradient(
            transparent,
            rgba(5,6,16,.94)
        );
}

.vp-shot-wide img {
    object-position: center;
}

