:root {
    --bg: #0b0f14;
    --bg2: #111823;
    --card: #111923;
    --card2: #162231;
    --line: rgba(255, 255, 255, 0.1);
    --text: #eaf1f7;
    --muted: #a8b6c7;
    --soft: #8fa3b8;
    --accent: #7dd3fc;
    --accent2: #93c5fd;
    --accent3: #86efac;
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
    --radius: 20px;
    --radius-sm: 14px;
    --max: 1200px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
    background:
        radial-gradient(circle at top,
            rgba(125, 211, 252, 0.1),
            transparent 34%),
        linear-gradient(180deg, #0a0f14 0%, #0d131b 100%);
    color: var(--text);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    max-width: var(--max);
    margin: 0 auto;
    padding: 20px 18px 56px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    margin: 0 -18px 26px;
    backdrop-filter: blur(14px);
    background: rgba(8, 12, 18, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.leftHead {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.statsBtn {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(45, 255, 0, 0.4);
    border-radius: 50%;
    background: rgba(45, 255, 0, 0.08);
    color: #2dff00;
    transition: 0.18s ease;
}

.statsBtn:hover,
.menuItem:hover,
.heroBtn:hover,
.miniLink:hover {
    transform: translateY(-1px);
    border-color: rgba(45, 255, 0, 0.7);
    background: rgba(45, 255, 0, 0.15);
    box-shadow: 0 0 12px rgba(45, 255, 0, 0.4);
}

.titleWrap {
    min-width: 0;
}

.titleWrap h1 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.sub {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.45;
    max-width: 760px;
}

.rightHead {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-shrink: 0;
}

.quickLinks {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    padding-top: 2px;
}

.quickLink {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    font-size: 0.92rem;
    white-space: nowrap;
    transition: 0.18s ease;
}

.quickLink:hover {
    color: #2dff00;
    border-color: rgba(45, 255, 0, 0.5);
    background: rgba(45, 255, 0, 0.1);
}

.burgerWrap {
    position: relative;
}

.burgerBtn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(45, 255, 0, 0.4);
    background: rgba(45, 255, 0, 0.08);
    color: #2dff00;
    border-radius: 50%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.18s ease;
    padding: 0;
}

.burgerBtn:hover {
    border-color: rgba(45, 255, 0, 0.7);
    background: rgba(45, 255, 0, 0.15);
    box-shadow: 0 0 12px rgba(45, 255, 0, 0.4);
}

.burgerBtn span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    margin: 2px 0;
    flex: 0 0 auto;
}

.burgerMenu {
    position: absolute;
    right: 0;
    top: 52px;
    min-width: 260px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(13, 19, 27, 0.98);
    box-shadow: var(--shadow);
    display: none;
    z-index: 1000;
}

.burgerMenu.is-open {
    display: block;
}

.menuSection {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--soft);
    margin: 10px 8px 8px;
}

.menuItem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 12px;
    color: var(--text);
    transition: 0.18s ease;
}

.hero {
    display: block;
    margin-bottom: 28px;
}

.heroMain,
.heroSide {
    border: 1px solid var(--line);
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.02));
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.heroMain {
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.heroMain:before {
    content: "";
    position: absolute;
    inset: auto -80px -80px auto;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle,
            rgba(125, 211, 252, 0.18),
            transparent 70%);
    pointer-events: none;
}

.heroMain h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4.2vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    max-width: 20ch;
}

.heroMain p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 840px;
}

.heroActions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.heroBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.18s ease;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.heroBtn.primary {
    background: linear-gradient(135deg,
            rgba(125, 211, 252, 0.22),
            rgba(147, 197, 253, 0.16));
    border-color: rgba(125, 211, 252, 0.3);
    color: #eefaff;
}

.heroBtn.secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.heroBtn .btnText {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.12;
}

.heroBtn .btnSub {
    font-size: 0.78rem;
    color: var(--soft);
    font-weight: 600;
    margin-top: 4px;
}

.heroSide {
    padding: 20px;
    display: grid;
    gap: 14px;
}

.miniCard {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.miniLabel {
    color: var(--soft);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.miniTitle {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.miniText {
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.95rem;
}

.miniLink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    transition: 0.18s ease;
    font-weight: 600;
    font-size: 0.92rem;
}

.footer {
    margin-top: 34px;
    padding: 18px 4px 0;
    color: var(--soft);
    font-size: 0.92rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer a {
    color: var(--text);
}

.footerLink:hover {
    color: #2dff00;
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .header {
        flex-direction: column;
        align-items: stretch;
    }

    .rightHead {
        justify-content: space-between;
    }
}

@media (max-width: 760px) {
    .quickLinks {
        display: none;
    }

    .burgerBtn {
        display: inline-flex;
        /* still visible on mobile */
    }

    .sub {
        font-size: 0.95rem;
    }

    .heroMain {
        padding: 22px 18px;
    }

    .heroMain h2 {
        max-width: none;
    }

    .heroActions {
        flex-direction: column;
    }

    .heroBtn {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .page {
        padding: 14px 14px 42px;
    }

    .header {
        margin: 0 -14px 22px;
        padding: 14px;
    }

    .titleWrap h1 {
        font-size: 1.4rem;
    }

    .statsBtn,
    .burgerBtn {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}