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

:root {
    --bg: #fff;
    --text: #1a1a1a;
    --text-muted: #666;
    --text-subtle: #999;
    --brand: #009249;
    --brand-muted: #34c47a;
    --issue: #e53a47;
    --ignored: #b0b0b0;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #1f1f1f;
        --text: #f3f3f3;
        --text-muted: #b0b0b0;
        --text-subtle: #777;
    }
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: var(--bg);
    color: var(--text);
}

.hero {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.logo {
    width: 80px;
    height: 80px;
    animation: spin 10s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.tagline {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.links {
    font-size: 13px;
    color: var(--text-subtle);
}

.links a {
    color: var(--text-subtle);
    text-decoration: underline;
    transition: color 0.15s;
}

.links a:hover {
    color: var(--text);
}

.sep {
    margin: 0 4px;
    color: var(--text-subtle);
}
