@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #0b0d0f;
    --panel: #111518;
    --panel-2: #151a1e;
    --text: #eef1ed;
    --muted: #8b9496;
    --line: #252c30;
    --accent: #b9f36b;
    --accent-dark: #1d2912;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    background-image:
        linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
    background-size: 48px 48px;
}

.topbar {
    height: 76px;
    padding: 0 clamp(24px, 6vw, 92px);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid #46504e;
    font-weight: 800;
    font-size: 15px;
}

.brand-name {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .18em;
}

.brand-sub {
    display: block;
    color: var(--muted);
    font-family: "DM Mono", monospace;
    font-size: 8px;
    letter-spacing: .12em;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 12px;
    transition: color .2s ease;
}

nav a:hover {
    color: var(--text);
}

main {
    max-width: 1280px;
    margin: auto;
    padding: 0 clamp(24px, 6vw, 92px);
}

.hero {
    min-height: 610px;
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    align-items: center;
    gap: 80px;
    border-bottom: 1px solid var(--line);
}

.eyebrow {
    display: block;
    color: var(--accent);
    font-family: "DM Mono", monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .15em;
    margin-bottom: 18px;
}

h1 {
    font-size: clamp(52px, 7vw, 92px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 700;
}

h1 span {
    color: #777f80;
}

.hero-copy > p {
    max-width: 560px;
    margin-top: 30px;
    color: var(--muted);
    font-size: 15px;
}

.hero-meta {
    display: flex;
    gap: 28px;
    margin-top: 34px;
    color: #a8b0b1;
    font-family: "DM Mono", monospace;
    font-size: 10px;
}

.dot,
.status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    margin-right: 7px;
    box-shadow: 0 0 12px rgba(185,243,107,.45);
}

.status-card {
    background: var(--panel);
    border: 1px solid var(--line);
    padding: 28px;
}

.card-label,
.date,
.archive-count {
    color: var(--muted);
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: .12em;
}

.status-main {
    margin: 22px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}

.status-line {
    height: 1px;
    background: var(--line);
    margin-bottom: 8px;
}

.status-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #9ba3a4;
    font-family: "DM Mono", monospace;
    font-size: 10px;
}

.status-row span:last-child {
    color: var(--accent);
}

.section {
    padding: 105px 0;
    border-bottom: 1px solid var(--line);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 42px;
}

h2 {
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: -.04em;
    line-height: 1.05;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.update-card {
    min-height: 245px;
    padding: 26px;
    background: var(--panel);
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 12px;
    transition: transform .2s ease, border-color .2s ease;
}

.update-card:hover {
    transform: translateY(-3px);
    border-color: #3b4548;
}

.number {
    color: var(--accent);
    font-family: "DM Mono", monospace;
    font-size: 11px;
}

.update-card h3 {
    margin: 12px 0;
    font-size: 17px;
    line-height: 1.25;
}

.update-card p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.lower {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.info-panel p {
    max-width: 500px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 13px;
}

.info-panel .muted {
    color: #596163;
    font-family: "DM Mono", monospace;
    font-size: 10px;
}

.terminal {
    border: 1px solid var(--line);
    background: #080a0b;
    font-family: "DM Mono", monospace;
    font-size: 11px;
}

.terminal-head {
    padding: 11px 15px;
    border-bottom: 1px solid var(--line);
    color: #737b7c;
    display: flex;
    justify-content: space-between;
}

.terminal-body {
    padding: 25px;
    color: #798284;
    line-height: 2;
}

.terminal-body p span {
    color: #b8c0c0;
}

.terminal-body .ok {
    color: var(--accent);
}

.cursor {
    color: var(--accent) !important;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

footer {
    max-width: 1280px;
    margin: auto;
    padding: 28px clamp(24px, 6vw, 92px);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #5f686a;
    font-family: "DM Mono", monospace;
    font-size: 9px;
}

footer strong {
    color: #a0a8a9;
    margin-right: 12px;
}

@media (max-width: 800px) {
    .topbar {
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    nav {
        display: none;
    }

    .hero,
    .lower {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero {
        padding: 90px 0;
    }

    .updates-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 75px 0;
    }

    .hero-meta {
        flex-direction: column;
        gap: 10px;
    }

    footer {
        flex-direction: column;
    }
}