:root {
    --bg: #0a0a0a;
    --fg: #eaeaea;
    --muted: #9e9e9e;
    --maxw: 1200px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--fg);
    min-height: 100vh;
    display: grid;
    grid-template-rows: 1fr auto;
    background: #0a0a0a;
}

body.landing {
    background: #0a0a0a;
}

.hero {
    display: grid;
    place-items: center;
    padding: clamp(16px, 3vw, 48px);
}

.logo-wrap {
    margin: 0;
    width: clamp(280px, 50vw, 560px);
}

.logo-wrap a {
    display: block;
    text-decoration: none;
}

.logo {
    width: 100%;
    height: auto;
    display: block;
    animation: fadeIn 900ms ease-out both;
    -webkit-mask-image: radial-gradient(ellipse 68% 68% at 50% 50%,
        black 45%,
        rgba(0,0,0,0.98) 55%,
        rgba(0,0,0,0.85) 63%,
        rgba(0,0,0,0.5) 73%,
        rgba(0,0,0,0.15) 82%,
        transparent 90%
    );
    mask-image: radial-gradient(ellipse 68% 68% at 50% 50%,
        black 45%,
        rgba(0,0,0,0.98) 55%,
        rgba(0,0,0,0.85) 63%,
        rgba(0,0,0,0.5) 73%,
        rgba(0,0,0,0.15) 82%,
        transparent 90%
    );
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
    .logo {
        animation: none;
    }
}
