/* Basic Reset & Globals */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

:root {
    /* Bright, psychological luxury & vacation colors */
    --bg-color: #f9fafb; /* Soft clean white */
    --bg-secondary: #ffffff;
    --text-primary: #111827; /* Rich dark text for readability */
    --text-secondary: #6b7280; /* Neutral gray */
    
    /* Sunsets and Oceans */
    --accent-1: #ff5e62; /* Coral sunset (Stimulates excitement/action) */
    --accent-2: #02aab0; /* Crystal water teal */
    --accent-3: #ff9966; /* Warm sand/gold */
    
    /* Light Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85); /* Frosty white glass */
    --glass-border: rgba(255, 255, 255, 1);
    --glass-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Blobs for Glassmorphism depth - modified to feel bright and sunny */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.3; /* Lighter opacity for day theme */
    border-radius: 50%;
}

.blob-1 {
    top: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: var(--accent-1);
}

.blob-2 {
    top: 30%;
    right: -10%;
    width: 300px;
    height: 500px;
    background: var(--accent-2);
}

.blob-3 {
    bottom: -10%;
    left: 20%;
    width: 500px;
    height: 300px;
    background: var(--accent-3);
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

/* Typography */
.gradient-text {
    background: linear-gradient(to right, var(--accent-1), var(--accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.icon-gradient {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 94, 98, 0.4);
}

.glow {
    box-shadow: 0 0 20px rgba(255, 94, 98, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 15px rgba(255, 94, 98, 0.3); }
    50% { box-shadow: 0 0 25px rgba(255, 94, 98, 0.6); }
    100% { box-shadow: 0 0 15px rgba(255, 94, 98, 0.3); }
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover:not(.disabled) {
    background: var(--bg-color);
    border-color: var(--accent-2);
    color: var(--accent-2);
    transform: translateY(-2px);
}

.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #e5e7eb;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    padding-top: 80px; 
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
}

/* AI Input */
.ai-input-box {
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 24px;
    border-radius: 60px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    background: white;
}

.ai-input-box:focus-within {
    box-shadow: 0 0 0 3px rgba(255, 94, 98, 0.3), var(--glass-shadow);
}

.ai-input-box i {
    color: var(--accent-1);
    font-size: 1.4rem;
}

.ai-input-box input {
    flex: 1;
    background: none;
    border: none;
    padding: 16px 20px;
    color: var(--text-primary);
    font-size: 1.15rem;
    outline: none;
}

.ai-input-box input::placeholder {
    color: #9ca3af;
}

.waitlist-msg {
    color: var(--accent-1) !important;
    font-size: 1rem !important;
    font-weight: 700;
    animation: fadeIn 0.5s ease;
}

.hidden {
    display: none;
}

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

/* Container Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
    font-size: 1.2rem;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.glass-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    background: white;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 94, 98, 0.1), rgba(255, 153, 102, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.icon-wrapper i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: 800;
}

.glass-card p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1rem;
}

/* How It Works */
.how-it-works {
    margin-bottom: 100px;
    padding: 60px;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(2, 170, 176, 0.3);
}

/* Connect line between steps */
.steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, rgba(2,170,176,0.2), rgba(255,153,102,0.2));
    z-index: 1;
}

.step h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

.step p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 40px 0;
    text-align: center;
    background: white;
}

.footer .container {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent-1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .ai-input-box {
        flex-direction: column;
        border-radius: 20px;
        padding: 16px;
        gap: 16px;
    }
    
    .ai-input-box input {
        width: 100%;
        padding: 8px;
    }
    
    .ai-input-box button {
        width: 100%;
        justify-content: center;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .steps::before {
        display: none;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 20px;
    }
}
