/* landing.css */

/* General resets */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
}

.landing-body {
    background: #0f0f1f; /* dark background */
    color: #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-container {
    text-align: center;
    padding: 40px 20px;
    max-width: 500px;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00f5a0; /* accent / neon-green */
    margin-bottom: 20px;
}

.headline {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.subheadline {
    font-size: 1.125rem;
    font-weight: 400;
    color: #bbbbcc;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #00f5a0, #00c9f5);
    color: #0f0f1f;
    border: none;
    box-shadow: 0 4px 15px rgba(0,245,160,0.2), 0 0 20px rgba(0,201,245,0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: #00f5a0;
    border: 2px solid #00f5a0;
}

.btn-secondary:hover {
    background: #00f5a0;
    color: #0f0f1f;
    transform: scale(1.05);
}
