:root {
    font-family: 'Inter', system-ui, sans-serif;
    color-scheme: light;
    background: #0f172a;
    color: #f8fafc;
}

body {
    margin: 0;
    display: grid;
    min-height: 100vh;
    place-items: center;
}

.landing {
    text-align: center;
    padding: 3rem;
}

.landing img {
    width: 120px;
    margin-bottom: 1.5rem;
}

.landing h1 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1rem;
}

.landing p {
    color: rgba(248, 250, 252, 0.7);
    max-width: 420px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.links a {
    background: rgba(255, 255, 255, 0.08);
    color: #38bdf8;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.links a:hover {
    background: rgba(56, 189, 248, 0.2);
}
