:root {
    --primary-red: #E63946;
    --red-glow: rgba(230, 57, 70, 0.15);
    --bg-color: #FAFAFA;
    --text-main: #2B2D42;
    --text-muted: #6C757D;
    --card-bg: rgba(255, 255, 255, 0.85);
}

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

body, html {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Background Gradients to make it elegant */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
}
.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--red-glow);
    top: -150px;
    right: -150px;
}
.glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(43, 45, 66, 0.03);
    bottom: 10%;
    left: -100px;
}

/* Navigation */
.navbar {
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}
.logo span {
    color: var(--primary-red);
    font-weight: 300;
    margin-left: 4px;
}

.nav-button {
    text-decoration: none;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-button:hover {
    background: var(--text-main);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 57, 70, 0.08);
    color: var(--primary-red);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: 1px solid rgba(230, 57, 70, 0.2);
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--text-main);
}
h1 .highlight {
    color: var(--primary-red);
    font-weight: 800;
}

.manifesto {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.8;
}
.manifesto strong {
    color: var(--text-main);
    font-weight: 600;
}

/* Stats Cards (Glassmorphism) */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.stat-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.03);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(230, 57, 70, 0.06);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(230, 57, 70, 0.06);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.stat-card h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* CTA */
.cta-button {
    display: inline-block;
    background: var(--primary-red);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.35);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }
    .hero {
        padding: 30px 15px;
    }
    .stats-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    h1 {
        font-size: clamp(2rem, 9vw, 2.8rem);
        margin-bottom: 20px;
    }
    .manifesto {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    .bg-glow.glow-1 {
        width: 300px;
        height: 300px;
        top: -50px;
        right: -50px;
        filter: blur(60px);
    }
    .bg-glow.glow-2 {
        display: none; /* Hide bottom glow on mobile to prevent any overflow */
    }
}
