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


:root {
    --bg: #070809;
    --text: #e8e9e6;
    --muted: #70747a;
    --dim: #363a3e;
    --line: rgba(255, 255, 255, 0.09);
    --accent: #b7ff4a;
}


/* --------------------------------
   RESET
-------------------------------- */

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


html,
body {
    min-height: 100%;
}


body {
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}


/* --------------------------------
   GRID
-------------------------------- */

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;

    background-image:
        linear-gradient(
            to right,
            var(--line) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            var(--line) 1px,
            transparent 1px
        );

    background-size: 72px 72px;
    opacity: 0.35;

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

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


/* --------------------------------
   NOISE
-------------------------------- */

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.025;
    z-index: 10;

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


/* --------------------------------
   CONTAINER
-------------------------------- */

.container {
    width: min(
        calc(100% - 64px),
        1240px
    );

    min-height: 100vh;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
}


/* --------------------------------
   HEADER
-------------------------------- */

.header {
    min-height: 96px;

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

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


/* --------------------------------
   BRAND GROUP
-------------------------------- */

.brand-group {
    height: 42px;

    display: flex;
    align-items: stretch;
}


/* --------------------------------
   BRAND
-------------------------------- */

.brand {
    height: 42px;

    display: flex;
    align-items: center;

    padding-right: 24px;

    color: var(--text);
    text-decoration: none;

    font-family: "DM Mono", monospace;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;

    white-space: nowrap;
}


/* --------------------------------
   IDENTITY
-------------------------------- */

.identity {
    min-height: 42px;

    padding-left: 24px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 5px;

    border-left: 1px solid var(--line);
}


.identity-name {
    color: var(--text);

    font-family: "DM Mono", monospace;
    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.12em;
    line-height: 1.2;

    white-space: nowrap;
}


.identity-alias {
    color: var(--muted);

    font-family: "DM Mono", monospace;
    font-size: 9px;

    letter-spacing: 0.08em;
    line-height: 1.2;

    white-space: nowrap;
}


/* --------------------------------
   SYSTEM STATUS
-------------------------------- */

.system-status {
    display: flex;
    align-items: center;

    gap: 9px;

    color: var(--muted);

    font-family: "DM Mono", monospace;
    font-size: 9px;

    letter-spacing: 0.1em;

    white-space: nowrap;
}


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

    flex: 0 0 6px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 12px rgba(183, 255, 74, 0.6);

    animation: blink 2s infinite;
}


@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}


/* --------------------------------
   HERO
-------------------------------- */

.hero {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 90px 0 75px;
}


.eyebrow {
    display: flex;

    gap: 18px;

    color: var(--muted);

    font-family: "DM Mono", monospace;
    font-size: 10px;

    letter-spacing: 0.12em;
}


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


/* --------------------------------
   HERO CONTENT
-------------------------------- */

.hero-content {
    margin-top: 48px;

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

    gap: 80px;
}


.title-area {
    display: flex;
    flex-direction: column;
}


.title-wrap {
    position: relative;
}


h1 {
    font-size: clamp(
        70px,
        11vw,
        150px
    );

    line-height: 0.83;

    font-weight: 500;

    letter-spacing: -0.075em;
}


h1 span {
    color: var(--muted);
}


.cursor {
    display: inline-block;

    width: 12px;
    height: 0.65em;

    margin-left: 14px;

    background: var(--accent);

    vertical-align: bottom;

    animation:
        cursor-blink 1s steps(1) infinite;
}


@keyframes cursor-blink {
    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}


/* --------------------------------
   DESCRIPTION
-------------------------------- */

.description {
    max-width: 360px;

    padding-bottom: 7px;

    font-family: "DM Mono", monospace;
    font-size: 11px;

    line-height: 1.8;
}


.description p {
    color: var(--text);
    margin-bottom: 12px;
}


.description .muted {
    color: var(--muted);
}


/* --------------------------------
   DOMAINS
-------------------------------- */

.domains {
    margin-top: 95px;

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

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


.domain {
    min-height: 100px;

    padding: 20px 16px;

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

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

    color: #a5a8ac;

    font-family: "DM Mono", monospace;
    font-size: 10px;

    letter-spacing: 0.05em;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.domain:first-child {
    border-left: 1px solid var(--line);
}


.domain:hover {
    color: var(--text);

    background:
        rgba(255, 255, 255, 0.025);
}


.domain .number {
    color: var(--dim);
    font-size: 9px;
}


/* --------------------------------
   CURRENT FOCUS
-------------------------------- */

.scope {
    padding: 0 0 90px;

    display: grid;

    grid-template-columns:
        1fr 3fr;

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

    margin-top: 75px;
}


.scope-label {
    padding-top: 22px;

    display: flex;

    gap: 18px;

    color: var(--muted);

    font-family: "DM Mono", monospace;
    font-size: 10px;

    letter-spacing: 0.12em;
}


.scope-label span {
    color: var(--accent);
}


.scope-content {
    display: grid;

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


.scope-item {
    min-height: 150px;

    padding: 22px 20px;

    display: flex;
    flex-direction: column;

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

    transition:
        background 0.25s ease;
}


.scope-item:first-child {
    border-left: 1px solid var(--line);
}


.scope-item:hover {
    background:
        rgba(255, 255, 255, 0.025);
}


.scope-item > span {
    margin-bottom: auto;

    color: var(--dim);

    font-family: "DM Mono", monospace;
    font-size: 9px;
}


.scope-item strong {
    margin-bottom: 9px;

    color: var(--text);

    font-family: "DM Mono", monospace;
    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.05em;
}


.scope-item small {
    color: var(--muted);

    font-family: "DM Mono", monospace;
    font-size: 8px;

    line-height: 1.6;
}


/* --------------------------------
   FOOTER
-------------------------------- */

.footer {
    min-height: 82px;

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

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

    color: var(--muted);

    font-family: "DM Mono", monospace;
    font-size: 9px;

    letter-spacing: 0.06em;
}


.footer-links {
    display: flex;
    gap: 28px;
}


.footer a {
    color: var(--muted);

    text-decoration: none;

    transition:
        color 0.2s ease;
}


.footer a:hover {
    color: var(--accent);
}


.version {
    justify-self: end;
    color: var(--dim);
}


/* --------------------------------
   MOBILE
-------------------------------- */

@media (max-width: 800px) {

    .container {
        width: calc(100% - 40px);
    }


    .header {
        min-height: 76px;
    }


    .brand-group {
        height: 38px;
    }


    .brand {
        height: 38px;

        padding-right: 18px;

        font-size: 14px;
    }


    .identity {
        min-height: 38px;

        padding-left: 18px;

        gap: 4px;
    }


    .identity-name {
        font-size: 8px;
        letter-spacing: 0.08em;
    }


    .identity-alias {
        font-size: 8px;
    }


    .system-status {
        font-size: 8px;
    }


    .hero {
        padding: 75px 0 65px;
    }


    .hero-content {
        margin-top: 55px;

        flex-direction: column;

        align-items: flex-start;

        gap: 50px;
    }


    h1 {
        font-size: clamp(
            62px,
            18vw,
            100px
        );
    }


    .description {
        max-width: 320px;
    }


    .domains {
        margin-top: 70px;

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


    .domain:nth-child(2n) {
        border-right: 0;
    }


    .domain:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }


    /* --------------------------------
       CURRENT FOCUS
    -------------------------------- */

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

        padding-bottom: 65px;

        margin-top: 65px;
    }


    .scope-label {
        padding: 22px 0;
    }


    .scope-content {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .scope-item {
        min-height: 135px;
    }


    /* --------------------------------
       FOOTER
    -------------------------------- */

    .footer {
        grid-template-columns:
            1fr auto;

        gap: 18px;

        padding: 22px 0;
    }


    .footer-links {
        grid-row: 2;
        grid-column: 1 / -1;
    }


    .version {
        grid-column: 2;
        grid-row: 1;
    }
}


/* --------------------------------
   SMALL MOBILE
-------------------------------- */

@media (max-width: 550px) {

    .scope-content {
        grid-template-columns: 1fr;
    }


    .scope-item,
    .scope-item:first-child {
        border-left: 1px solid var(--line);
        border-right: 1px solid var(--line);
    }


    .scope-item + .scope-item {
        border-top: 1px solid var(--line);
    }
}


/* --------------------------------
   VERY SMALL MOBILE
-------------------------------- */

@media (max-width: 450px) {

    .system-status {
        display: none;
    }


    .header {
        min-height: 76px;
    }


    .brand-group {
        width: 100%;

        height: 38px;

        justify-content: flex-start;
    }


    .brand {
        font-size: 13px;

        padding-right: 15px;
    }


    .identity {
        padding-left: 15px;

        gap: 4px;
    }


    .identity-name {
        font-size: 7px;

        letter-spacing: 0.06em;
    }


    .identity-alias {
        font-size: 7px;

        letter-spacing: 0.05em;
    }


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


    .domain,
    .domain:nth-child(2n) {
        border-right: 1px solid var(--line);
    }


    .domain + .domain {
        border-top: 1px solid var(--line);
    }


    .footer {
        display: flex;

        flex-wrap: wrap;

        justify-content: space-between;
    }


    .footer-links {
        width: 100%;

        gap: 20px;

        flex-wrap: wrap;
    }
}