:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 600px;
    text-align: center;
    animation: fadeIn 1.2s ease-out;
}

/* Typographic Logo Styling */
.brand {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
}

.brand-num {
    color: var(--text-primary);
}

.brand-text {
    color: var(--text-secondary);
    font-weight: 400;
}

/* Paragraph Styling */
.cta-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.cta-text a {
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--text-secondary);
    transition: all 0.2s ease;
}

.cta-text a:hover {
    border-bottom-color: var(--text-primary);
    opacity: 0.8;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .brand { font-size: 2.5rem; }
    .cta-text { font-size: 1.1rem; }
}
