@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
    --bg: #090b10;
    --surface: #0e1118;
    --surface-hover: #131822;

    --text: #f5f7fa;
    --muted: #818896;

    --border: rgba(255, 255, 255, 0.09);

    --accent: #84ff9b;
    --accent-dark: #4ada67;

    --mono: "Space Mono", monospace;
    --sans: "Inter", sans-serif;
}


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


html {
    scroll-behavior: smooth;
}


body {
    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(62, 255, 112, 0.06),
            transparent 30%
        ),
        var(--bg);

    color: var(--text);

    font-family: var(--sans);

    min-height: 100vh;
}


body::before {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );
}


.noise {
    position: fixed;
    inset: 0;

    pointer-events: none;

    opacity: .025;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.5'/%3E%3C/svg%3E");
}


.page {
    width: min(1180px, calc(100% - 48px));
    margin: auto;
}


.nav {
    height: 100px;

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

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

    font-family: var(--mono);
    font-size: 12px;
}


.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    font-weight: 700;
    letter-spacing: .08em;
}


.brand-dot {
    width: 8px;
    height: 8px;

    background: var(--accent);

    border-radius: 50%;

    box-shadow:
        0 0 20px rgba(132, 255, 155, .8);
}


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

    display: flex;
    align-items: center;

    gap: 9px;
}


.status-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--accent);

    animation: pulse 2s infinite;
}


@keyframes pulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(132,255,155,.5);
    }

    70% {
        box-shadow:
            0 0 0 8px rgba(132,255,155,0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(132,255,155,0);
    }

}


.hero {
    padding: 130px 0 120px;

    max-width: 900px;
}


.eyebrow {
    color: var(--accent);

    font-family: var(--mono);

    font-size: 12px;
    letter-spacing: .13em;

    margin-bottom: 30px;
}


h1 {
    font-size: clamp(56px, 8vw, 105px);

    line-height: .96;

    letter-spacing: -.065em;

    font-weight: 600;
}


h1 span {
    color: #555c68;
}


.lead {
    color: var(--muted);

    font-size: 18px;
    line-height: 1.7;

    max-width: 660px;

    margin-top: 40px;
}


.actions {
    display: flex;
    gap: 12px;

    margin-top: 50px;
}


.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 150px;
    height: 50px;

    padding: 0 25px;

    text-decoration: none;

    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;

    transition: .2s ease;
}


.primary {
    background: var(--accent);
    color: #071009;
}


.primary:hover {
    background: #adffbd;

    transform: translateY(-2px);
}


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

    color: var(--text);

    background: rgba(255,255,255,.02);
}


.secondary:hover {
    background: rgba(255,255,255,.06);

    border-color: rgba(255,255,255,.18);

    transform: translateY(-2px);
}


.status-grid {
    display: grid;

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

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


.card {
    min-height: 260px;

    padding: 34px;

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

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

    transition:
        background .25s ease,
        transform .25s ease;
}


.card:last-child {
    border-right: none;
}


.card:hover {
    background: var(--surface-hover);
}


.card-number {
    font-family: var(--mono);

    color: #414753;

    font-size: 11px;
}


.card small {
    color: var(--accent);

    font-family: var(--mono);
    font-size: 10px;

    letter-spacing: .12em;
}


.card h3 {
    font-size: 24px;

    font-weight: 500;

    margin:
        10px 0 15px;
}


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

    font-size: 14px;
    line-height: 1.6;

    max-width: 280px;
}


.about {
    padding: 140px 0;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;
}


.about small {
    color: var(--accent);

    font-family: var(--mono);
    font-size: 10px;

    letter-spacing: .13em;
}


.about h2 {
    margin-top: 20px;

    font-size: clamp(40px, 5vw, 60px);

    line-height: 1.08;

    letter-spacing: -.045em;

    font-weight: 500;
}


.about-text {
    padding-top: 28px;
}


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

    line-height: 1.8;

    margin-bottom: 25px;

    max-width: 480px;
}


footer {
    height: 100px;

    display: flex;
    align-items: center;

    gap: 20px;

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

    color: #525967;

    font-family: var(--mono);

    font-size: 10px;

    letter-spacing: .1em;
}


.footer-line {
    height: 1px;
    flex: 1;

    background: var(--border);
}


@media (max-width: 800px) {

    .page {
        width:
            min(100% - 30px, 1180px);
    }


    .nav {
        height: 80px;
    }


    .hero {
        padding:
            90px 0 80px;
    }


    h1 {
        font-size:
            clamp(50px, 16vw, 75px);
    }


    .lead {
        font-size: 16px;
    }


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


    .card {
        min-height: 220px;

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


    .card:last-child {
        border-bottom: none;
    }


    .about {
        padding:
            100px 0;

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .actions {
        flex-direction: column;

        align-items: flex-start;
    }


    .button {
        width: 100%;
    }

}
