:root {
    --bg: #07090d;
    --bg2: #0b0f16;
    --panel: #0e131b;
    --panel2: #111722;

    --text: #f5f7fb;
    --muted: #929cac;

    --border: #202735;

    --purple: #0307f5;
    --purple-light: #0307f5;

    --green: #56e39f;

    --shadow:
        0 25px 80px rgba(0, 0, 0, .35);
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(124, 92, 255, .15),
            transparent 38%
        ),
        var(--bg);

    color: var(--text);

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

    line-height: 1.6;
}


body::selection {
    background: var(--purple);
    color: white;
}


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


button {
    font: inherit;
}


/* =========================
   NAVIGATION
========================= */

.navbar {
    height: 76px;

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

    padding: 0 6%;

    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(7, 9, 13, .88);

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

    backdrop-filter: blur(18px);
}


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

    gap: 10px;

    font-size: 20px;

    font-weight: 850;
}


.brand-icon {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            #0307f5
        );

    color: white;

    font-weight: 900;

    box-shadow:
        0 8px 25px rgba(124, 92, 255, .25);
}


.navigation {
    display: flex;

    align-items: center;

    gap: 30px;

    color: #aeb6c4;

    font-size: 14px;
}


.navigation a {
    transition: .2s;
}


.navigation a:hover {
    color: white;
}


.nav-button {
    padding: 10px 17px;

    border: 1px solid #343b4b;

    border-radius: 9px;

    font-size: 14px;

    transition: .2s;
}


.nav-button:hover {
    background: #121720;

    border-color: #4a5262;
}


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

.eyebrow {
    margin-bottom: 18px;

    color: var(--purple-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.button {
    display: inline-flex;

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

    min-height: 46px;

    padding: 12px 21px;

    border-radius: 10px;

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

    font-size: 14px;

    font-weight: 750;

    cursor: pointer;

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


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


.button.primary {
    background: var(--purple);

    border-color: var(--purple);

    color: white;

    box-shadow:
        0 10px 30px rgba(124, 92, 255, .18);
}


.button.primary:hover {
    background: #0307f5;

    box-shadow:
        0 15px 40px rgba(124, 92, 255, .28);
}


.button.secondary {
    background: #10151e;

    border-color: #2b3341;
}


.button.secondary:hover {
    background: #171d27;

    border-color: #414a5b;
}


.full {
    width: 100%;
}


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

.hero {
    max-width: 1250px;

    margin: auto;

    padding: 110px 5% 95px;

    display: grid;

    grid-template-columns: 1fr 1.08fr;

    gap: 70px;

    align-items: center;
}


.hero-content {
    position: relative;
}


.hero h1 {
    margin: 0 0 24px;

    font-size: clamp(48px, 6vw, 70px);

    line-height: 1.01;

    letter-spacing: -3px;
}


.hero h1 span {
    color: var(--purple-light);
}


.hero-content > p {
    max-width: 630px;

    margin: 0;

    color: var(--muted);

    font-size: 18px;
}


.hero-buttons {
    display: flex;

    gap: 12px;

    margin: 32px 0;
}


.trust {
    display: flex;

    flex-wrap: wrap;

    gap: 17px;

    color: #737e8f;

    font-size: 12px;
}


/* =========================
   APP PREVIEW
========================= */

.app-preview {
    overflow: hidden;

    border: 1px solid #282f3d;

    border-radius: 16px;

    background: #0b0f15;

    box-shadow: var(--shadow);

    transform:
        perspective(1200px)
        rotateY(-4deg);

    transition: .4s;
}


.app-preview:hover {
    transform:
        perspective(1200px)
        rotateY(0deg)
        translateY(-4px);
}


.window-bar {
    height: 43px;

    display: flex;

    align-items: center;

    padding: 0 15px;

    border-bottom: 1px solid #202632;

    color: #7e8796;

    font-size: 11px;
}


.window-bar strong {
    margin: auto;
}


.window-buttons {
    display: flex;

    gap: 7px;
}


.window-buttons span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #343b48;
}


.app-layout {
    display: grid;

    grid-template-columns: 145px 1fr;

    min-height: 370px;
}


.sidebar {
    padding: 15px;

    background: #0a0e14;

    border-right: 1px solid #202632;
}


.mini-logo {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    border-radius: 7px;

    background: var(--purple);

    font-size: 12px;

    font-weight: 900;
}


.menu {
    margin: 3px 0;

    padding: 9px;

    border-radius: 6px;

    color: #727d8c;

    font-size: 10px;

    transition: .2s;
}


.menu:hover {
    background: #10151e;

    color: #aeb7c5;
}


.menu.active {
    background: #18142c;

    color: #c9c0ff;
}


.dashboard {
    padding: 20px;
}


.dashboard-header {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.dashboard-header small {
    color: #707b8d;

    font-size: 8px;

    letter-spacing: 1px;
}


.dashboard-header h3 {
    margin: 2px 0 15px;

    font-size: 17px;
}


.dashboard-header button {
    padding: 7px 10px;

    border: 0;

    border-radius: 6px;

    background: #0307f5;

    color: white;

    font-size: 8px;

    cursor: pointer;
}


.stats {
    display: grid;

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

    gap: 8px;
}


.stat {
    padding: 12px;

    border:
        1px solid #242b37;

    border-radius: 8px;

    background: #10151d;
}


.stat small {
    color: #707b8d;

    font-size: 8px;

    letter-spacing: 1px;
}


.stat strong {
    display: block;

    margin: 3px 0;

    font-size: 20px;
}


.stat span {
    color: var(--green);

    font-size: 8px;
}


.chart {
    height: 155px;

    margin-top: 9px;

    padding: 12px;

    border:
        1px solid #242b37;

    border-radius: 8px;

    background: #10151d;
}


.chart-title {
    color: #7e8897;

    font-size: 9px;
}


.bars {
    height: 110px;

    display: flex;

    align-items: end;

    gap: 10px;

    padding: 12px;
}


.bars i {
    width: 12%;

    border-radius:
        3px 3px 0 0;

    background:
        linear-gradient(
            #0307f5,
            #0307f5
        );

    animation:
        growBars 1.2s ease;
}


@keyframes growBars {

    from {
        transform: scaleY(0);
        transform-origin: bottom;
    }

    to {
        transform: scaleY(1);
    }

}


/* =========================
   LOGOS
========================= */

.logos {
    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 70px;

    padding: 26px 6%;

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

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

    color: #596272;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


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

.section {
    max-width: 1180px;

    margin: auto;

    padding: 110px 5%;
}


.section-title {
    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}


.section-title h2 {
    margin: 0 0 17px;

    font-size: 44px;

    line-height: 1.1;

    letter-spacing: -1.5px;
}


.section-title h2 span {
    color: var(--purple-light);
}


.section-title p {
    margin: 0;

    color: var(--muted);
}


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

.feature-grid {
    display: grid;

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

    gap: 14px;
}


.feature {
    min-height: 200px;

    padding: 25px;

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

    border-radius: 13px;

    background: var(--panel);

    transition: .25s;
}


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

    border-color: #3c3262;

    background: #10151e;
}


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

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border-radius: 10px;

    background: #17132a;

    color: var(--purple-light);

    font-weight: 800;
}


.feature h3 {
    margin: 0 0 7px;

    font-size: 16px;
}


.feature p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
}


/* =========================
   PRODUCTS
========================= */

.products-section {
    max-width: 1100px;

    margin: auto;

    padding: 110px 5%;
}


.products-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;
}


.product-card {
    position: relative;

    padding: 35px;

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

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #0e131b,
            #0a0e14
        );

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

    transition: .3s;
}


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

    border-color: #343d4e;
}


.product-card.devforge {
    border-color: #0307f5;

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(124,92,255,.18),
            transparent 40%
        ),
        #0d1118;

    box-shadow:
        0 25px 80px rgba(80,60,170,.15);
}


.product-logo {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border-radius: 13px;

    font-size: 21px;

    font-weight: 900;
}


.taskforge-logo {
    background:
        linear-gradient(
            135deg,
            #0307f5,
            #0307f5
        );
}


.devforge-logo {
    background:
        linear-gradient(
            135deg,
            var(--purple),
            #0307f5
        );
}


.product-label {
    color: #8d98a8;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.7px;
}


.product-card h3 {
    margin: 7px 0 10px;

    font-size: 29px;
}


.product-card > p {
    min-height: 52px;

    margin: 0;

    color: var(--muted);

    font-size: 14px;
}


.product-price {
    margin: 25px 0 10px;

    font-size: 39px;

    font-weight: 850;
}


.product-price small {
    color: var(--muted);

    font-size: 12px;

    font-weight: 500;
}


.product-card ul {
    list-style: none;

    padding: 12px 0 22px;

    display: grid;

    gap: 9px;

    color: #c6cdd7;

    font-size: 13px;
}


.product-card li::first-letter {
    color: var(--green);
}


.popular {
    position: absolute;

    top: 20px;
    right: 20px;

    padding: 5px 10px;

    border:
        1px solid #0307f5;

    border-radius: 20px;

    background: #251c52;

    color: #c0b3ff;

    font-size: 9px;

    font-weight: 800;
}


/* =========================
   DEVELOPMENT
========================= */

.development {
    max-width: 1180px;

    margin: auto;

    padding: 110px 5%;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;

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


.development h2 {
    margin: 0 0 17px;

    font-size: 44px;

    line-height: 1.1;

    letter-spacing: -1.5px;
}


.development h2 span {
    color: var(--purple-light);
}


.development-text > p {
    color: var(--muted);
}


.development ul {
    list-style: none;

    padding: 0;

    display: grid;

    gap: 10px;

    color: #c8ced8;

    font-size: 14px;
}


.development li {
    transition: .2s;
}


.development li:hover {
    color: white;

    transform: translateX(4px);
}


/* =========================
   TERMINAL
========================= */

.terminal {
    overflow: hidden;

    border:
        1px solid #282f3b;

    border-radius: 13px;

    background: #080b10;

    box-shadow: var(--shadow);
}


.terminal-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 12px 16px;

    border-bottom:
        1px solid #222833;

    color: #717b8a;

    font-size: 11px;
}


.terminal pre {
    margin: 0;

    padding: 25px;

    color: #b8c0cb;

    font:
        12px/2.1
        ui-monospace,
        SFMono-Regular,
        Consolas,
        monospace;
}


.terminal pre span {
    color: #0307f5;
}


.terminal pre .success {
    color: var(--green);
}


/* =========================
   PRICING
========================= */

.pricing {
    padding-top: 80px;
}


.pricing-grid {
    max-width: 850px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;
}


.price-card {
    position: relative;

    padding: 30px;

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

    border-radius: 16px;

    background: var(--panel);
}


.price-card.featured {
    border-color: #0307f5;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(124,92,255,.14),
            transparent 45%
        ),
        var(--panel);

    box-shadow:
        0 25px 70px rgba(89,65,190,.14);
}


.plan {
    color: #a79dbe;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.price-card h3 {
    margin: 8px 0;

    font-size: 25px;
}


.price {
    margin: 20px 0 8px;

    font-size: 39px;

    font-weight: 850;
}


.price small {
    color: var(--muted);

    font-size: 12px;

    font-weight: 500;
}


.price-card > p {
    color: var(--muted);

    font-size: 13px;
}


.price-card ul {
    list-style: none;

    padding: 10px 0 20px;

    display: grid;

    gap: 9px;

    color: #c4cbd5;

    font-size: 13px;
}


.price-card li {
    color: #c8ced8;
}


.price-card li::first-letter {
    color: var(--green);
}


/* =========================
   DOWNLOAD
========================= */

.download {
    max-width: 1180px;

    margin: 40px auto 100px;

    padding: 60px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    border:
        1px solid #302b4b;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 80% 20%,
            #1a1539,
            transparent 42%
        ),
        #0c0f16;
}


.download h2 {
    margin: 0 0 10px;

    font-size: 40px;

    letter-spacing: -1px;
}


.download p {
    margin: 0;

    color: var(--muted);
}


.download-box {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 9px;

    min-width: 240px;
}


.download-box small {
    color: #687283;

    font-size: 10px;
}


/* =========================
   PURCHASE
========================= */

.purchase {
    padding: 110px 5%;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(124,92,255,.11),
            transparent 45%
        );

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

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


.purchase-content {
    max-width: 750px;

    margin: auto;
}


.purchase h2 {
    margin: 0 0 17px;

    font-size: 46px;

    line-height: 1.1;

    letter-spacing: -1.5px;
}


.purchase h2 span {
    color: var(--purple-light);
}


.purchase p {
    color: var(--muted);
}


.purchase-price {
    margin: 25px 0;

    font-size: 50px;

    font-weight: 900;
}


.purchase-content > small {
    display: block;

    margin-top: 14px;

    color: #657080;

    font-size: 11px;
}


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

.faq {
    max-width: 850px;

    padding-top: 90px;
}


.faq details {
    padding: 20px 0;

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


.faq summary {
    cursor: pointer;

    font-weight: 700;

    transition: .2s;
}


.faq summary:hover {
    color: var(--purple-light);
}


.faq p {
    margin-bottom: 0;

    color: var(--muted);

    font-size: 14px;
}


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

footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 35px 6%;

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

    color: #626c7b;

    font-size: 12px;
}


.footer-brand {
    display: flex;

    align-items: center;

    gap: 10px;

    color: white;
}


.footer-brand .brand-icon {
    width: 31px;
    height: 31px;
}


.footer-links {
    display: flex;

    gap: 18px;
}


.footer-links a {
    transition: .2s;
}


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


/* =========================
   TOAST
========================= */

.toast {
    position: fixed;

    right: 25px;
    bottom: 25px;

    max-width: 350px;

    padding: 14px 17px;

    border:
        1px solid #343c4b;

    border-radius: 10px;

    background: #171c25;

    color: #e1e5eb;

    font-size: 13px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.35);

    opacity: 0;

    pointer-events: none;

    transform: translateY(15px);

    transition: .3s;

    z-index: 2000;
}


.toast.show {
    opacity: 1;

    transform: translateY(0);
}


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

@media (max-width: 1000px) {

    .navigation {
        gap: 17px;
    }


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

        padding-top: 75px;
    }


    .app-preview {
        transform: none;
    }


    .app-preview:hover {
        transform: translateY(-3px);
    }


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


    .development {
        grid-template-columns:
            1fr;
    }

}


@media (max-width: 800px) {

    .navbar {
        padding: 0 5%;
    }


    .navigation {
        display: none;
    }


    .nav-button {
        display: none;
    }


    .hero {
        padding-left: 5%;
        padding-right: 5%;
    }


    .hero h1 {
        font-size: 54px;
    }


    .products-grid {
        grid-template-columns:
            1fr;
    }


    .pricing-grid {
        grid-template-columns:
            1fr;
    }


    .download {
        margin-left: 5%;
        margin-right: 5%;

        flex-direction: column;

        align-items: flex-start;
    }


    .download-box {
        align-items: flex-start;
    }

}


@media (max-width: 560px) {

    .hero {
        padding-top: 60px;
    }


    .hero h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }


    .hero-content > p {
        font-size: 16px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .button {
        width: 100%;
    }


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


    .app-layout {
        grid-template-columns:
            85px 1fr;
    }


    .menu {
        font-size: 8px;
    }


    .stats {
        grid-template-columns:
            1fr;
    }


    .chart {
        display: none;
    }


    .logos {
        gap: 20px;
    }


    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }


    .section-title h2,
    .development h2 {
        font-size: 35px;
    }


    .purchase h2 {
        font-size: 36px;
    }


    .purchase-price {
        font-size: 42px;
    }


    .download {
        padding: 40px 25px;
    }


    .download h2 {
        font-size: 32px;
    }


    footer {
        flex-direction: column;

        text-align: center;
    }


    .footer-links {
        flex-wrap: wrap;

        justify-content: center;
    }

}
