/* =========================================
   GLOBAL
========================================= */

:root {
    --bg: #070b14;
    --bg-soft: #0c1220;
    --card: #101827;
    --card-hover: #141f32;
    --border: #1d2a3d;

    --text: #f4f7fb;
    --muted: #8d9ab0;

    --blue: #5b8cff;
    --cyan: #22d3ee;
    --green: #32d583;
    --purple: #a78bfa;
    --orange: #fb923c;
    --pink: #f472b6;
    --red: #fb7185;

    --sidebar: 270px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(
            circle at 70% 0%,
            rgba(91, 140, 255, 0.10),
            transparent 30%
        ),
        var(--bg);

    color: var(--text);

    font-family: "Inter", sans-serif;

    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================
   SIDEBAR
========================================= */

.sidebar {
    position: fixed;

    top: 0;
    left: 0;
    bottom: 0;

    width: var(--sidebar);

    background: rgba(8, 12, 21, 0.96);

    border-right: 1px solid var(--border);

    padding: 25px 18px;

    z-index: 100;

    display: flex;
    flex-direction: column;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 0 10px 25px;

    border-bottom: 1px solid var(--border);
}

.logo-icon {
    width: 42px;
    height: 42px;

    border-radius: 11px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--purple)
        );

    font-weight: 800;
}

.logo strong {
    display: block;
    font-size: 14px;
}

.logo span {
    display: block;

    font-size: 11px;

    color: var(--muted);
}

.sidebar nav {
    margin-top: 20px;

    display: flex;
    flex-direction: column;

    gap: 3px;

    overflow-y: auto;
}

.sidebar nav a {
    padding: 9px 12px;

    border-radius: 7px;

    color: var(--muted);

    font-size: 13px;

    transition: 0.2s;
}

.sidebar nav a:hover,
.sidebar nav a.active {
    color: white;

    background: rgba(91, 140, 255, 0.10);
}

.sidebar nav a.active {
    border-left: 2px solid var(--blue);
}

.sidebar-footer {
    margin-top: auto;

    padding: 15px 12px;

    border-top: 1px solid var(--border);
}

.sidebar-footer span {
    display: block;

    color: var(--green);

    font-size: 12px;

    font-weight: 600;
}

.sidebar-footer small {
    color: var(--muted);

    font-size: 11px;
}


/* =========================================
   MAIN
========================================= */

.main {
    margin-left: var(--sidebar);

    min-height: 100vh;
}

.section {
    max-width: 1050px;

    margin: auto;

    padding: 100px 55px;

    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.section-label {
    color: var(--blue);

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 700;

    margin-bottom: 12px;
}

.section h2 {
    font-size: clamp(28px, 4vw, 42px);

    line-height: 1.2;

    margin-bottom: 18px;
}

.section h3 {
    margin: 35px 0 14px;

    font-size: 19px;
}

.section > p {
    max-width: 760px;

    color: var(--muted);

    margin-bottom: 35px;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 720px;

    padding: 130px 8% 100px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    position: relative;

    overflow: hidden;

    border-bottom: 1px solid var(--border);
}

.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(91, 140, 255, 0.12);

    filter: blur(120px);

    right: 5%;
    top: 5%;

    pointer-events: none;
}

.hero-badge {
    width: fit-content;

    padding: 7px 12px;

    border: 1px solid rgba(91,140,255,.3);

    border-radius: 50px;

    color: #9cb7ff;

    background: rgba(91,140,255,.08);

    font-size: 12px;

    margin-bottom: 22px;
}

.hero h1 {
    position: relative;

    font-size: clamp(42px, 6vw, 72px);

    line-height: 1.05;

    letter-spacing: -3px;

    max-width: 850px;
}

.hero h1 span {
    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan),
            var(--purple)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-description {
    max-width: 680px;

    color: var(--muted);

    font-size: 17px;

    margin: 25px 0 30px;
}

.hero-buttons {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 11