@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Lexend:wght@700&display=swap');

:root {
    --primary-green: #00A86B;
    --secondary-green: #008F5B;
    --dark-purple: #2D1B4E;
    --accent-orange: #F59E0B;
    --bg-dark: #1A0F2E;
    --text-slate: #4A5565;
    --text-light: #F8FAFC;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    padding: 2rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at top, var(--dark-purple), var(--bg-dark));
    min-height: 50vh;
    justify-content: center;
}

.logo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

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

h1 {
    font-family: 'Lexend', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--primary-green);
    animation: fadeIn 1s ease-out 0.2s both;
}

header p {
    font-size: 1.25rem;
    color: var(--text-slate);
    max-width: 600px;
    animation: fadeIn 1s ease-out 0.4s both;
}

main {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin-bottom: 6rem;
    animation: fadeInUp 0.8s ease-out both;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-green);
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-orange);
}

.feature-card h3 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.waitlist-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.1), rgba(0, 143, 91, 0.05));
    padding: 4rem 2rem;
    border-radius: 2rem;
    border: 1px solid var(--glass-border);
}

.waitlist-form {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

input[type="email"],
input[type="text"] {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    width: 100%;
    max-width: 300px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 15px rgba(0, 168, 107, 0.3);
}

button {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 168, 107, 0.4);
}

footer {
    padding: 4rem 5% 2.5rem;
    text-align: center;
    color: var(--text-slate);
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    h2 {
        font-size: 2rem;
    }

    .waitlist-form {
        flex-direction: column;
        align-items: center;
    }
}