:root {
    --background: #ffffff;
    --foreground: #0b0b0b;
    --muted: #6b7280;
    --accent: #3b82f6;
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: #0b0b0b;
        --foreground: #e5e7eb;
        --muted: #9ca3af;
        --accent: #60a5fa;
    }
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    background: var(--background);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page {
    min-height: 100dvh;
    display: grid;
    grid-template-rows: 1fr auto;
}

.hero {
    max-width: 880px;
    padding: clamp(40px, 7vw, 96px);
    margin: 0 auto;
    display: grid;
    align-content: center;
    gap: clamp(24px, 4vw, 40px);
    text-wrap: balance;
}

@media (min-width: 960px) {
    .hero {
        padding-top: 14vh;
    }
}

.wordmark {
    margin: 0;
    line-height: 0.88;
    letter-spacing: 0;
    text-transform: uppercase;
    font-family: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: clamp(56px, 10vw, 128px);
    font-weight: 800;
    display: inline-grid;
    gap: clamp(6px, 1.2vw, 14px);
    text-rendering: optimizeLegibility;
}



.wordmark .neo,
.wordmark .cognition {
    letter-spacing: -0.012em;
}

.wordmark .neo,
.wordmark .cognition {
    font-weight: 850;
}

.tagline {
    margin: 0;
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--foreground);
    opacity: 0.85;
    line-height: 1.5;
    max-width: 52ch;
}

.status {
    margin: 0;
    color: var(--muted);
    font-size: clamp(14px, 1.8vw, 16px);
}

.footer {
    max-width: 880px;
    margin: 0 auto;
    padding: 32px clamp(32px, 6vw, 80px);
    color: var(--muted);
    text-align: center;
    border-top: 1px solid color-mix(in oklab, var(--foreground) 8%, transparent);
}

/* Subtle entrance */
.hero {
    animation: fadeIn 700ms ease both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

::selection {
    background: color-mix(in oklab, var(--accent) 30%, transparent);
}