:root {
    --primary: #ff0033; /* Red */
    --secondary: #222222; /* Dark Gray/Black */
    --accent: #ff4d4d;
    --bg-light: #ffffff; /* White Background */
    --text-dark: #1a1a1a;
    --glass: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.1);
}

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

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

h1, h2, h3, .logo-text {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 0, 51, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.02) 0%, transparent 40%);
    z-index: -1;
}

.glass-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-small {
    background: var(--primary);
    color: white !important;
    padding: 0.6rem 1.4rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 0, 51, 0.2);
}

/* Main Hero */
.hero {
    text-align: center;
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    background: rgba(255, 0, 51, 0.1);
    border: 1px solid rgba(255, 0, 51, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--primary);
}

h1 {
    font-size: clamp(2.2rem, 7vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #000;
}

.gradient-text {
    background: linear-gradient(90deg, #000, var(--primary), #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin-bottom: 3rem;
}

/* Hero Image */
.hero-image-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 1rem 0 4rem 0;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(0.8) contrast(1.1); /* Adjusting current image for light theme */
}

/* Form */
.waitlist-form {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.waitlist-form p {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #333;
}

form {
    display: flex;
    gap: 0.5rem;
}

input {
    flex: 1;
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: #000;
    outline: none;
    transition: all 0.3s;
}

input:focus {
    border-color: var(--primary);
    background: white;
}

button {
    background: var(--primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 5px 15px rgba(255, 0, 51, 0.3);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    border: 1px solid #eee;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 0, 51, 0.05);
}

.feature-card .icon-container {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 51, 0.05);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.feature-card svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #000;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 5rem 0 3rem 0;
    color: #999;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    background: #f8f9fa;
    padding: 1rem 2rem;
    border-radius: 16px;
    border: 1px solid #eee;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    form { flex-direction: column; }
    .nav-links { display: none; } /* Mobile nav solution would go here */
}
