:root {
    --primary: #1a1a1a;
    --accent: #007aff;
    --bg: #f5f5f7;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    padding: 2rem;
    max-width: 600px;
}

h1 {
    font-size: 4rem;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
