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

:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --text: #1F2937;
    --text-muted: #6B7280;
    --bg: #F9FAFB;
    --white: #FFFFFF;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    text-align: center;
    max-width: 500px;
}

.logo {
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.status {
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-size: 0.9rem;
}

.feature .icon {
    font-size: 1.25rem;
}

footer {
    text-align: center;
    padding: 1.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

footer p {
    margin-bottom: 0.5rem;
}

footer nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

footer nav a {
    color: var(--text-muted);
    text-decoration: none;
}

footer nav a:hover {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .features {
        flex-direction: column;
        gap: 1rem;
    }
}
