:root {
    --primary-color: #3b82f6;
    --bg-color: #0f172a;
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --card-bg: #1e293b;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 8px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}


.features {
    text-align: left;
    margin-bottom: 3rem;
}

.features h2,
.services h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-item {
    margin-bottom: 1rem;
}

.feature-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.intro-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-section {
    margin: 3rem 0;
}

.cta-text {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}


.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.5);
}

.cta-button:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

footer {
    margin-top: 4rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

    .container {
        padding: 1rem;
    }
}