:root {
    --primary-bg: #25343d; /* Exact match for the logo background */
    --secondary-bg: #1e2a31;
    --accent-color: #ffffff;
    --text-main: #ffffff;
    --text-dim: #94a3b8;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

header {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
}

.logo-container {
    margin-bottom: 3rem;
    animation: fadeIn 1.2s ease-out;
}

.logo {
    width: 160px;
    height: auto;
}

.hero-content {
    max-width: 750px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-main);
}

p.subtitle {
    font-size: clamp(1rem, 4vw, 1.25rem);
    color: var(--text-dim);
    margin-bottom: 3rem;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
    background-color: #f5f5f5;
}

footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: var(--text-dim);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    h1 {
        margin-bottom: 1rem;
    }
}
