:root {
    color-scheme: dark;
    background: #111111;
    color: #f5f5f7;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    min-height: 100%;
}

body {
    background: #111111;
    color: #f5f5f7;
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 1.5rem;
}

.hero {
    text-align: center;
}

h1 {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    line-height: 1.05;
    font-weight: 700;
}

.eyebrow {
    margin: 0.8rem 0 0;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.9rem;
    color: #9ca3af;
}

.contact {
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    margin-top: 1.3rem;
    flex-wrap: wrap;
}

.contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #d4d4d8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.contact a:hover {
    color: #f8fafc;
    transform: translateY(-1px);
}

.contact i {
    font-size: 1rem;
}

@media (max-width: 480px) {
    body {
        padding: 1rem;
    }

    h1 {
        font-size: 2.8rem;
    }
}
