:root {
    --orange: #F15A22;
    --graphite: #1A1A1A;
    --bg: #F3F4F5;
}

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

body {
    background-color: var(--bg);
    color: var(--graphite);
    font-family: 'Manrope', system-ui, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dot {
    color: var(--orange);
}

.subtitle {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #666;
}

.badge {
    margin-top: 2rem;
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    color: #999;
    border: 1px dashed #ccc;
    border-radius: 4px;
}
