:root {
    --bg: #30363d;
    --card: #373e45;
    --card-dark: #2f353b;
    --line: #46505a;

    --text: #edf1f4;
    --muted: #9ca6af;

    --blue: #18a4c4;
    --blue-light: #72c7df;

    --red: #e83e4d;
    --yellow: #ffbf00;
    --green: #28a745;
}


/* ================= RESET ================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--bg);

    color: var(--text);

    font-family:
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    line-height: 1.5;

    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


/* ================= BACKGROUND ================= */

body::before {
    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 75% 10%,
            rgba(24, 164, 196, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 65%,
            rgba(41, 155, 197, 0.06),
            transparent 28%
        );
}


.bg-grid {
    position: fixed;

    inset: 0;

    opacity: 0.045;

    pointer-events: none;

    background-image:
        linear-gradient(
            var(--line) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            var(--line) 1px,
            transparent 1px
        );

    background-size: 48px 48px;
}


/* ================= HEADER ================= */

.topbar {
    height: 72px;

    padding: 0 6vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: rgba(48, 54, 61, 0.92);

    border-bottom: 1px solid var(--line);

    backdrop-filter: blur(12px);

    position: sticky;

    top: 0;

    z-index: 10;
}


.brand {
    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 19px;

    font-weight: 600;
}


.brand-mark {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #e8eaec;

    color: #30363d;

    font-size: 12px;

    font-weight: 900;
}


.topbar nav {
    display: flex;

    align-items: center;

    gap: 26px;

    color: #cbd1d6;

    font-size: 14px;
}


.topbar nav > a:not(.nav-btn):hover {
    color: #fff;
}


.nav-btn {
    padding: 10px 17px;

    border: 1px solid #5a6874;

    border-radius: 6px;

    background: #3b434b;

    transition: 0.2s;
}


.nav-btn:hover {
    border-color: #79b9ca;
}


/* ================= MAIN ================= */

main {
    max-width: 1280px;

    margin: auto;

    padding: 0 28px;
}


/* ================= HERO ================= */

.hero {
    min-height: 670px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    padding: 80px 0 70px;
}


.eyebrow {
    font-size: 12px;

    letter-spacing: 2px;

    color: #7fbdce;

    font-weight: 700;
}


.eyebrow .dot {
    display: inline-block;

    width: 7px;
    height: 7px;

    margin-right: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 12px rgba(40, 167, 69, 0.8);
}


h1 {
    font-size: clamp(45px, 6vw, 76px);

    line-height: 0.98;

    letter-spacing: -2.5px;

    margin: 16px 0 24px;
}


h1 span {
    color: var(--blue-light);
}


.lead {
    max-width: 610px;

    margin: 0;

    color: #aeb7bf;

    font-size: 17px;
}


/* ================= BUTTONS ================= */

.hero-actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    margin: 32px 0 24px;
}


.primary-btn,
.secondary-btn,
.plan-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 20px;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.2s;
}


.primary-btn {
    background: var(--blue);

    box-shadow:
        0 10px 28px rgba(24, 164, 196, 0.18);
}


.primary-btn:hover {
    transform: translateY(-2px);

    filter: brightness(1.08);
}


.secondary-btn {
    border: 1px solid #596570;

    background: #3a4249;
}


.secondary-btn:hover {
    border-color: #79b9ca;
}


/* ================= STATUS ================= */

.trust-row {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}


.status-card {
    min-width: 170px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 11px 15px;

    border: 1px solid #46505a;

    border-radius: 6px;

    background: #353c43;
}


.status-card strong,
.status-card small {
    display: block;
}


.status-card small {
    margin-top: 2px;

    color: #9da7af;

    font-size: 11px;
}


.status-light {
    width: 9px;
    height: 9px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 10px rgba(40, 167, 69, 0.8);
}


.shield {
    width: 23px;
    height: 23px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border: 1px solid #69747e;

    border-radius: 50%;

    color: #bfc8cf;

    font-size: 12px;
}


.status-note {
    max-width: 530px;

    margin-top: 12px;

    color: #7f8992;

    font-size: 11px;
}


/* ================= DASHBOARD PREVIEW ================= */

.hero-panel {
    perspective: 1000px;
}


.panel-window {
    overflow: hidden;

    border: 1px solid #505b65;

    border-radius: 8px;

    background: var(--card-dark);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.3);

    transform:
        rotateY(-4deg)
        rotateX(2deg);
}


.window-top {
    height: 54px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 18px;

    background: #343a40;

    border-bottom: 1px solid #4b555e;
}


.window-brand {
    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 14px;
}


.mini-logo {
    width: 28px;
    height: 28px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #e8eaec;

    color: #30363d;

    font-size: 8px;

    font-weight: 900;
}


.window-label {
    color: #8e99a2;

    font-size: 10px;

    letter-spacing: 1.5px;
}


.window-body {
    padding: 23px;
}


.window-title {
    margin-bottom: 18px;

    font-size: 22px;
}


.stat-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
}


.stat {
    padding: 17px;

    border-left: 4px solid;

    border-radius: 5px;

    background: #394148;
}


.stat b {
    display: block;

    font-size: 24px;
}


.stat span {
    color: #9da6ae;

    font-size: 11px;
}


.stat.blue {
    border-color: var(--blue);
}


.stat.red {
    border-color: var(--red);
}


.stat.yellow {
    border-color: var(--yellow);
}


.stat.green {
    border-color: var(--green);
}


/* ================= CHART ================= */

.chart {
    height: 210px;

    margin-top: 14px;

    padding: 16px;

    border: 1px solid #454e56;

    border-radius: 5px;

    background: #32383e;
}


.chart-title {
    color: #d7dce0;

    font-size: 12px;
}


.bars {
    height: 145px;

    display: flex;

    align-items: end;

    gap: 6px;

    margin-top: 18px;

    border-bottom: 1px solid #47515a;
}


.bars i {
    display: block;

    flex: 1;

    height: 70%;

    border-radius: 2px 2px 0 0;

    background: rgba(41, 155, 197, 0.55);
}


.bars i:nth-child(2) {
    height: 45%;
}


.bars i:nth-child(3) {
    height: 80%;
}


.bars i:nth-child(4) {
    height: 60%;
}


.bars i:nth-child(5) {
    height: 90%;
}


.bars i:nth-child(6) {
    height: 55%;
}


.bars i:nth-child(7) {
    height: 72%;
}


.bars i:nth-child(8) {
    height: 95%;
}


.bars i:nth-child(9) {
    height: 67%;
}


.bars i:nth-child(10) {
    height: 88%;
}


/* ================= SECTIONS ================= */

.section {
    padding: 80px 0;

    border-top: 1px solid #424b53;
}


.section-head {
    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 28px;
}


.section-head p {
    max-width: 530px;

    margin: 0;

    color: #909aa3;

    font-size: 14px;
}


.centered {
    display: block;

    text-align: center;
}


.centered p {
    margin: 0 auto;
}


h2 {
    margin: 7px 0 10px;

    font-size: 36px;

    line-height: 1.1;

    letter-spacing: -1px;
}


h3 {
    margin: 10px 0;

    font-size: 23px;
}


code {
    color: #a9d6e2;
}


/* ================= GALLERY ================= */

.gallery {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;
}


.gallery-card {
    position: relative;

    overflow: hidden;

    aspect-ratio: 16 / 9;

    border: 1px solid #4b555e;

    border-radius: 7px;

    background: #353c43;
}


.gallery-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: 0.35s;
}


.gallery-card:hover img {
    transform: scale(1.035);
}


.gallery-caption {
    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    padding: 35px 15px 13px;

    background:
        linear-gradient(
            transparent,
            rgba(18, 21, 24, 0.9)
        );

    font-size: 13px;
}


/* ================= PLANS ================= */

.plans {
    max-width: 920px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

    margin: 35px auto 0;
}


.plan {
    position: relative;

    overflow: hidden;

    padding: 27px;

    border: 1px solid #4a555e;

    border-radius: 8px;

    background: #363d44;
}


.plan.pro {
    border-color: #318da8;
}


.plan-glow {
    position: absolute;

    top: -70px;
    right: -70px;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    background: rgba(24, 164, 196, 0.12);

    filter: blur(25px);
}


.plan-top {
    display: flex;

    align-items: start;

    justify-content: space-between;

    gap: 15px;
}


.plan-tag {
    display: inline-block;

    padding: 5px 8px;

    border-radius: 3px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.free {
    color: #72c7df;

    background: rgba(24, 164, 196, 0.15);
}


.paid {
    color: #ffd45c;

    background: rgba(255, 191, 0, 0.13);
}


.price {
    padding-top: 5px;

    color: #aab3ba;

    font-size: 12px;
}


.plan ul {
    margin: 22px 0;

    padding: 0;

    list-style: none;

    border-top: 1px solid #49535c;
}


.plan li {
    padding: 10px 0;

    color: #c8ced3;

    font-size: 14px;

    border-bottom: 1px solid #49535c;
}


.plan li::before {
    content: "✓";

    margin-right: 10px;

    color: #71c4d9;

    font-weight: 800;
}


.plan-btn {
    width: 100%;

    margin-top: 20px;

    border: 1px solid #56636d;

    background: #3d464e;
}


.plan-btn:hover {
    border-color: #79b9ca;
}


.pro-btn {
    border-color: var(--blue);

    background: var(--blue);
}


/* ================= CTA ================= */

.cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin: 40px 0 80px;

    padding: 36px 40px;

    border: 1px solid #4a555e;

    border-radius: 8px;

    background:
        linear-gradient(
            110deg,
            #363e45,
            #30373e
        );
}


.cta p {
    margin: 0;

    color: #939da5;
}


/* ================= FOOTER ================= */

footer {
    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 25px 18px;

    border-top: 1px solid #424b53;

    color: #7f8992;

    font-size: 12px;
}


/* ================= TABLET ================= */

@media (max-width: 900px) {

    .hero {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-top: 60px;
    }


    .hero-panel {
        max-width: 700px;
    }


    .gallery {
        grid-template-columns: 1fr 1fr;
    }


    .plans {
        grid-template-columns: 1fr;
    }


    .section-head {
        display: block;
    }


    .section-head p {
        margin-top: 12px;
    }


    .topbar nav a:not(.nav-btn) {
        display: none;
    }

}


/* ================= MOBILE ================= */

@media (max-width: 560px) {

    body {
        overflow-x: hidden;
    }


    /* HEADER */

    .topbar {
        height: 64px;

        padding: 0 18px;
    }


    .brand {
        gap: 9px;

        font-size: 16px;
    }


    .brand-mark {
        width: 38px;
        height: 38px;
    }


    .topbar nav a:not(.nav-btn) {
        display: none;
    }


    .nav-btn {
        padding: 9px 13px;

        font-size: 12px;
    }


    /* MAIN */

    main {
        padding: 0 18px;
    }


    /* HERO */

    .hero {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 35px;

        min-height: auto;

        padding: 48px 0 45px;
    }


    .hero-copy {
        width: 100%;
    }


    .eyebrow {
        font-size: 10px;

        letter-spacing: 1.7px;
    }


    h1 {
        margin: 13px 0 20px;

        font-size: 47px;

        line-height: 0.98;

        letter-spacing: -2px;
    }


    .lead {
        margin: 0;

        font-size: 15px;

        line-height: 1.7;
    }


    /* BUTTONS */

    .hero-actions {
        display: flex;

        flex-direction: column;

        gap: 10px;

        margin: 27px 0 22px;
    }


    .hero-actions .primary-btn,
    .hero-actions .secondary-btn {
        width: 100%;

        min-height: 48px;
    }


    /* STATUS */

    .trust-row {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }


    .status-card {
        min-width: 0;

        padding: 12px;

        gap: 9px;
    }


    .status-card strong {
        font-size: 13px;
    }


    .status-card small {
        font-size: 10px;
    }


    .status-note {
        max-width: 100%;

        margin-top: 11px;

        font-size: 10px;

        line-height: 1.5;
    }


    /* DASHBOARD */

    .hero-panel {
        width: 100%;

        max-width: none;
    }


    .panel-window {
        transform: none;
    }


    .window-body {
        padding: 16px;
    }


    .window-title {
        margin-bottom: 14px;

        font-size: 18px;
    }


    .stat-grid {
        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }


    .stat {
        padding: 13px;
    }


    .stat b {
        font-size: 20px;
    }


    .stat span {
        font-size: 10px;
    }


    .chart {
        height: 170px;

        padding: 12px;
    }


    .bars {
        height: 110px;
    }


    /* SECTIONS */

    .section {
        padding: 55px 0;
    }


    .section-head {
        display: block;

        margin-bottom: 20px;
    }


    .section-head p {
        margin-top: 10px;
    }


    /* GALLERY */

    .gallery {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    /* PLANS */

    .plans {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 25px;
    }


    .plan {
        padding: 21px;
    }


    /* CTA */

    .cta {
        display: block;

        margin: 25px 0 55px;

        padding: 25px;
    }


    .cta .primary-btn {
        width: 100%;

        margin-top: 18px;
    }


    /* FOOTER */

    footer {
        justify-content: center;

        text-align: center;

        padding: 22px 18px;
    }

}