/* ==========================================
   LUMO COFFEE PRE-LAUNCH PAGE
   ========================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --dark-bg: #0a0a0a;
    --dark-bg-2: #0d0d0d;
    --dark-bg-3: #121212;
    --bg-card: rgba(15, 12, 10, 0.6);
    --gold-primary: #f2cf7b;
    --gold-secondary: #d29658;
    --brown-accent: #7d3f26;
    --brown-dark: #5a2d1a;
    --purple-primary: #a855f7;
    --purple-secondary: #e879f9;
    --green-success: #10b981;
    --red-urgent: #ef4444;
    
    /* Text colors */
    --text-primary: #E8DCC4;
    --text-secondary: #9B8B7E;
    --text-muted: rgba(155, 139, 126, 0.6);
    
    /* Spacing */
    --section-padding: 140px;
    --container-padding: 28px;
    
    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #f2cf7b 0%, #d29658 50%, #7d3f26 100%);
    --gradient-gold: linear-gradient(135deg, #f2cf7b 0%, #d29658 70%, #7d3f26 100%);
    --gradient-purple: linear-gradient(135deg, #a855f7 0%, #e879f9 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle 400px at 20% 20%, rgba(242, 207, 123, 0.08) 0%, transparent 100%),
        radial-gradient(circle 350px at 80% 80%, rgba(125, 63, 38, 0.08) 0%, transparent 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-size: 17px;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    z-index: 10000;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(242, 207, 123, 0.5);
}

/* Animated Background */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
}

body::before {
    background: radial-gradient(circle, rgba(242, 207, 123, 0.6) 0%, transparent 60%);
    top: -200px;
    right: -200px;
    animation: float-blob-1 20s ease-in-out infinite;
}

body::after {
    background: radial-gradient(circle, rgba(125, 63, 38, 0.6) 0%, transparent 60%);
    bottom: -200px;
    left: -200px;
    animation: float-blob-2 25s ease-in-out infinite;
}

@keyframes float-blob-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, 100px) scale(1.1); }
    66% { transform: translate(-50px, 150px) scale(0.9); }
}

@keyframes float-blob-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-100px, 50px) scale(0.9); }
    66% { transform: translate(50px, -100px) scale(1.1); }
}

/* Particle Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    z-index: 10;
}

.logo-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 12px rgba(242, 207, 123, 0.5));
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 20px;
}

.logo-highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 15px;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* CTAs */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: 'Quicksand', sans-serif;
}

.cta-btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    box-shadow: 0 4px 20px rgba(242, 207, 123, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(242, 207, 123, 0.5);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
}

.cta-btn-large {
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 700;
}

.cta-btn-nav {
    padding: 10px 20px;
    font-size: 14px;
}

.cta-btn .material-symbols-rounded {
    font-size: 20px;
}

/* Section Base */
section {
    position: relative;
    z-index: 2;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--section-padding) var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.section-badge-ai {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(232, 121, 249, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--purple-secondary);
    margin-bottom: 20px;
}

.section-badge-special {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--gradient-gold);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(242, 207, 123, 0.4); }
    50% { box-shadow: 0 0 40px rgba(242, 207, 123, 0.6); }
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--text-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-white {
    font-size: 52px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.section-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-subtitle-white {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
}

.hero-badge-coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green-success);
    margin-bottom: 24px;
    animation: pulse-badge 2s ease-in-out infinite;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green-success);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

/* Hero Badge AI */
.hero-badge-ai {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(232, 121, 249, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge-ai .material-symbols-rounded {
    font-size: 20px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variation-settings: 'FILL' 1;
}

.hero-badge-ai span:last-child {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-pulse {
    animation: pulse-ai 2s ease-in-out infinite;
}

@keyframes pulse-ai {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Hero Titles V3 */
.hero-title-v3 {
    font-size: 68px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.hero-subtitle-v3 {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 750px;
}

.hero-subtitle-v3 strong {
    color: var(--text-primary);
    font-weight: 700;
}

.hero-title-pre {
    font-size: 64px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
}

.gradient-text-ai {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-pre {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Waitlist Form - Hero */
.waitlist-form-hero {
    background: linear-gradient(135deg, rgba(242, 207, 123, 0.08) 0%, rgba(125, 63, 38, 0.05) 100%);
    border: 2px solid rgba(242, 207, 123, 0.3);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 32px;
    backdrop-filter: blur(12px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(242, 207, 123, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    animation: pulse-glow-form 3s ease-in-out infinite;
}

@keyframes pulse-glow-form {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            0 0 60px rgba(242, 207, 123, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            0 0 80px rgba(242, 207, 123, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

.form-header {
    margin-bottom: 32px;
}

.early-bird-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: 2px solid rgba(16, 185, 129, 0.5);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    margin-bottom: 28px;
    box-shadow: 
        0 4px 20px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 4px 20px rgba(16, 185, 129, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 
            0 6px 28px rgba(16, 185, 129, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

.early-bird-badge .material-symbols-rounded {
    font-size: 24px;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.6;
}

.benefit-item .material-symbols-rounded {
    color: var(--green-success);
    font-size: 22px;
    flex-shrink: 0;
}

.email-form {
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.email-input {
    flex: 1;
    padding: 20px 28px;
    background: rgba(15, 12, 10, 0.95);
    border: 2px solid rgba(242, 207, 123, 0.4);
    border-radius: 14px;
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 500;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

.email-input:hover {
    border-color: rgba(242, 207, 123, 0.6);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.3),
        0 0 24px rgba(242, 207, 123, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.email-input:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(15, 12, 10, 1);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(242, 207, 123, 0.4),
        0 0 0 4px rgba(242, 207, 123, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.email-input::placeholder {
    color: rgba(155, 139, 126, 0.8);
    font-weight: 400;
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 36px;
    background: linear-gradient(135deg, #f2cf7b 0%, #d29658 50%, #f2cf7b 100%);
    background-size: 200% 100%;
    border: 2px solid rgba(242, 207, 123, 0.8);
    border-radius: 14px;
    color: var(--dark-bg);
    font-size: 17px;
    font-weight: 800;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 
        0 6px 24px rgba(242, 207, 123, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 40px rgba(242, 207, 123, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: #f2cf7b;
}

.submit-btn:active {
    transform: translateY(-1px) scale(1);
}

.submit-btn .material-symbols-rounded {
    font-size: 22px;
}

.form-subtext {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-muted);
    justify-content: center;
    line-height: 1.6;
}

.form-subtext .material-symbols-rounded {
    font-size: 18px;
}

.waitlist-count {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 28px;
    margin-top: 28px;
    border-top: 1px solid var(--glass-border);
}

.waiting-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark-bg);
    border: 2px solid var(--dark-bg);
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
}

.waiting-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Hero Visual - Recipe Card Style */
.hero-visual-pre {
    position: relative;
}

.coming-soon-box {
    position: relative;
}

/* Countdown Timer / Beta Badge Container */
.launch-timer-container {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red-urgent);
    margin-bottom: 24px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.time-unit {
    text-align: center;
}

.time-number {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.time-separator {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-muted);
    line-height: 1;
}

.time-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.timer-note {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Problem Solution - Recipe Card Style */
.problem-solution-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.problem-side-compact,
.solution-side-compact {
    background: linear-gradient(135deg, rgba(15, 12, 10, 0.95) 0%, rgba(20, 16, 14, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Recipe card gradient overlays */
.problem-side-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, 
        rgba(239, 68, 68, 0.15) 0%, 
        rgba(239, 68, 68, 0.05) 50%,
        transparent 100%
    );
    border-radius: 24px 24px 0 0;
    z-index: 0;
}

.solution-side-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, 
        rgba(16, 185, 129, 0.2) 0%, 
        rgba(16, 185, 129, 0.08) 50%,
        transparent 100%
    );
    border-radius: 24px 24px 0 0;
    z-index: 0;
}

.problem-side-compact:hover,
.solution-side-compact:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(242, 207, 123, 0.4);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(242, 207, 123, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.problem-side-compact:hover::after {
    background: linear-gradient(90deg, 
        rgba(239, 68, 68, 1) 0%, 
        rgba(239, 68, 68, 0.6) 100%
    );
}

.solution-side-compact:hover::after {
    background: linear-gradient(90deg, 
        rgba(16, 185, 129, 1) 0%, 
        rgba(16, 185, 129, 0.7) 100%
    );
}

/* Accent line at top */
.problem-side-compact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(239, 68, 68, 0.8) 0%, 
        rgba(239, 68, 68, 0.4) 100%
    );
    border-radius: 24px 24px 0 0;
    z-index: 1;
    transition: all 0.4s ease;
}

.solution-side-compact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(16, 185, 129, 0.9) 0%, 
        rgba(16, 185, 129, 0.5) 100%
    );
    border-radius: 24px 24px 0 0;
    z-index: 1;
    transition: all 0.4s ease;
}

.icon-badge-compact {
    font-size: 48px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    display: inline-block;
    line-height: 1;
}

.icon-badge-compact.bad {
    color: rgba(239, 68, 68, 0.9);
    filter: drop-shadow(0 2px 8px rgba(239, 68, 68, 0.4));
}

.icon-badge-compact.good {
    color: rgba(16, 185, 129, 0.95);
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.4));
}

.ps-title-compact {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ps-list-compact {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.ps-list-compact li {
    font-size: 16px;
    color: rgba(232, 220, 196, 0.9);
    padding: 14px 0 14px 28px;
    position: relative;
    line-height: 1.6;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ps-list-compact li:last-child {
    border-bottom: none;
}

.ps-list-compact li:hover {
    color: var(--text-primary);
    padding-left: 32px;
    background: rgba(255, 255, 255, 0.02);
}

.problem-side-compact .ps-list-compact li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 14px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(239, 68, 68, 0.9);
    font-weight: 700;
    font-size: 16px;
}

.solution-side-compact .ps-list-compact li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 14px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(16, 185, 129, 0.95);
    font-weight: 700;
    font-size: 18px;
}

/* Social Proof Bar */
.social-proof-bar {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--glass-border);
    padding: 24px 0;
}

.proof-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-secondary);
}

.proof-item .material-symbols-rounded {
    color: var(--gold-primary);
    font-size: 20px;
}

.proof-divider {
    color: var(--text-muted);
    opacity: 0.3;
}

/* AI Demo Section */
.ai-demo-section {
    padding: var(--section-padding) 0;
}

.demo-header {
    text-align: center;
    margin-bottom: 80px;
}

.demo-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.demo-step {
    text-align: center;
}

.demo-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.demo-visual {
    position: relative;
    margin-bottom: 20px;
}

.demo-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.demo-icon .material-symbols-rounded {
    font-size: 40px;
    color: var(--gold-primary);
}

.demo-icon.brain .material-symbols-rounded {
    color: var(--purple-primary);
}

.demo-icon.success .material-symbols-rounded {
    color: var(--green-success);
}

.ai-spin {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.demo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
}

.demo-card-header {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text-primary);
    line-height: 1.3;
}

.demo-details,
.recipe-params {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-row,
.param {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 4px 0;
}

.ai-highlight {
    color: var(--purple-secondary);
    font-weight: 700;
    font-size: 15px;
}

.recipe-params strong,
.param strong {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 16px;
}

.processing-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.proc-bar {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.bar-fill {
    height: 4px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 2px;
    margin-top: 6px;
    position: relative;
    overflow: hidden;
}

.bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 60%;
    background: var(--gradient-purple);
    border-radius: 2px;
    animation: loading-bar 2s ease-in-out infinite;
}

@keyframes loading-bar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

.demo-label {
    font-size: 17px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.6;
}

.demo-arrow {
    color: var(--text-muted);
    font-size: 32px;
}

.demo-cta {
    text-align: center;
}

.cta-lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

/* Features Section */
.features {
    padding: var(--section-padding) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.featured-card {
    border-color: rgba(168, 85, 247, 0.3);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(232, 121, 249, 0.05));
}

.pro-card {
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, rgba(242, 207, 123, 0.05), rgba(210, 150, 88, 0.05));
}

.pro-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--gradient-gold);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark-bg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon .material-symbols-rounded {
    font-size: 32px;
    color: var(--gold-primary);
}

.ai-gradient {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(232, 121, 249, 0.1));
    border-color: rgba(168, 85, 247, 0.3);
}

.ai-gradient .material-symbols-rounded {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.feature-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 12px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--purple-secondary);
}

.feature-value {
    margin-top: 16px;
    padding: 12px;
    background: rgba(242, 207, 123, 0.1);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-primary);
    text-align: center;
}

/* Early Access Section */
.early-access-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(125, 63, 38, 0.05));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.early-access-content {
    max-width: 1200px;
    margin: 0 auto;
}

.early-access-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.regular-launch {
    opacity: 0.7;
}

.early-access-card {
    border-color: var(--gold-primary);
    box-shadow: 0 0 60px rgba(242, 207, 123, 0.2);
    transform: scale(1.05);
}

.card-header {
    margin-bottom: 24px;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.regular-badge {
    background: rgba(155, 139, 126, 0.1);
    color: var(--text-muted);
}

.early-badge {
    background: var(--gradient-gold);
    color: var(--dark-bg);
}

.card-price {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--glass-border);
}

.price-amount-old {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 12px;
}

.price-amount {
    font-size: 56px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.price-amount.highlight {
    font-size: 64px;
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
    display: block;
}

.savings-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--green-success);
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.feature-row .material-symbols-rounded {
    color: var(--green-success);
    font-size: 20px;
}

.feature-row.disabled {
    opacity: 0.4;
}

.feature-row.disabled .material-symbols-rounded {
    color: var(--text-muted);
}

.feature-row.highlighted {
    color: var(--text-primary);
    font-weight: 500;
}

.feature-row.bonus {
    color: var(--gold-primary);
    font-weight: 600;
}

.feature-row.bonus .material-symbols-rounded {
    color: var(--gold-primary);
}

.total-value {
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.value-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.value-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
}

.total-value-early {
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.total-value-early .value-amount {
    color: var(--gold-primary);
    font-size: 28px;
}

.value-savings {
    font-size: 16px;
    font-weight: 600;
    color: var(--green-success);
    margin-top: 8px;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
}

.early-access-cta {
    text-align: center;
}

.cta-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-urgency .material-symbols-rounded {
    color: var(--red-urgent);
}

.cta-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ==========================================
   FEATURES SHOWCASE / SCREENSHOTS
   ========================================== */
.screenshots {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.4) 50%, transparent 100%);
}

.features-showcase {
    margin-top: 80px;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.showcase-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    grid-auto-flow: dense;
}

.showcase-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
}

.showcase-item:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 207, 123, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.showcase-large {
    grid-column: span 2;
}

.showcase-featured {
    border: 2px solid rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(232, 121, 249, 0.03));
}

.showcase-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(242, 207, 123, 0.15);
    border: 1px solid rgba(242, 207, 123, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-primary);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.showcase-badge.ai-badge {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(232, 121, 249, 0.2));
    border-color: rgba(168, 85, 247, 0.4);
}

.showcase-badge.ai-badge .material-symbols-rounded {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.showcase-badge .material-symbols-rounded {
    font-size: 18px;
    font-variation-settings: 'FILL' 1;
}

.showcase-image {
    position: relative;
    width: 100%;
    padding-top: 65%;
    background: linear-gradient(135deg, rgba(168, 107, 62, 0.08), rgba(125, 63, 38, 0.05));
    overflow: hidden;
}

.showcase-large .showcase-image {
    padding-top: 45%;
}

.showcase-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 107, 62, 0.08), rgba(125, 63, 38, 0.05));
    transition: all 0.4s ease;
}

.showcase-item:hover .showcase-placeholder {
    background: linear-gradient(135deg, rgba(168, 107, 62, 0.12), rgba(125, 63, 38, 0.08));
}

.showcase-placeholder .material-symbols-rounded {
    font-size: 80px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.showcase-item:hover .showcase-placeholder .material-symbols-rounded {
    transform: scale(1.1);
    opacity: 0.5;
}

.showcase-content {
    padding: 28px;
}

.showcase-content h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.showcase-content p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Creator Section */
.creator-section {
    padding: var(--section-padding) 0;
}

.creator-container {
    max-width: 1000px;
    margin: 0 auto;
}

.creator-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
    position: relative;
}

.creator-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #ff6b6b;
    margin-bottom: 32px;
}

.creator-main {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.creator-card {
    text-align: center;
}

.creator-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.avatar-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: var(--gradient-gold);
    opacity: 0.3;
    animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.avatar-photo {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--dark-bg);
}

.avatar-photo .material-symbols-rounded {
    font-size: 60px;
    color: var(--dark-bg);
}

.avatar-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: 3px solid var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-badge .material-symbols-rounded {
    font-size: 20px;
    color: var(--dark-bg);
}

.creator-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.creator-roles {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.role-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-secondary);
}

.role-tag .material-symbols-rounded {
    font-size: 16px;
}

.creator-message {
    position: relative;
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 80px;
    color: var(--gold-primary);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.message-content {
    position: relative;
}

.message-intro {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.message-body {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight-text {
    color: var(--gold-primary);
    font-weight: 600;
}

.message-signature {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

.signature-line {
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
}

.signature-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 4px;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(242, 207, 123, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.trust-icon .material-symbols-rounded {
    font-size: 24px;
    color: var(--gold-primary);
}

.trust-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 4px;
}

.trust-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* FAQ Section */
.faq {
    padding: var(--section-padding) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold-primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 4px;
}

.faq-question:hover {
    background: rgba(242, 207, 123, 0.08);
    transform: translateX(4px);
}

.faq-item.active .faq-question {
    background: rgba(242, 207, 123, 0.05);
}

.faq-question h4 {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.faq-question:hover h4 {
    color: var(--gold-primary);
}

.faq-icon {
    color: var(--gold-primary);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.3s ease;
    font-size: 28px;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-question:hover .faq-icon {
    color: var(--gold-secondary);
    transform: scale(1.1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--gold-secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-in-out 0.15s;
}

.faq-answer p {
    padding: 8px 28px 28px 28px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 16px;
    letter-spacing: 0.01em;
    background: linear-gradient(to bottom, transparent, rgba(242, 207, 123, 0.02));
    border-left: 3px solid rgba(242, 207, 123, 0.2);
    margin-left: 24px;
    border-radius: 0 0 8px 8px;
    transform: translateY(-10px);
    transition: transform 0.3s ease-out 0.1s;
}

.faq-item.active .faq-answer p {
    transform: translateY(0);
}

/* Final Waitlist Section */
.final-waitlist-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, rgba(242, 207, 123, 0.05), rgba(125, 63, 38, 0.05));
    border-top: 1px solid var(--glass-border);
}

.final-waitlist-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.final-title {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.final-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 56px;
}

.final-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.final-benefit:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(242, 207, 123, 0.3);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon .material-symbols-rounded {
    font-size: 24px;
    color: var(--dark-bg);
}

.benefit-text {
    text-align: left;
}

.benefit-text strong {
    display: block;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.benefit-text span {
    font-size: 14px;
    color: var(--text-muted);
}

.email-form-final {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-container {
    display: flex;
    align-items: stretch;
    gap: 16px;
    max-width: 700px;
    width: 100%;
    margin: 0 auto 20px;
}

.email-input-large {
    flex: 1;
    padding: 22px 30px;
    background: rgba(15, 12, 10, 0.95);
    border: 2px solid rgba(242, 207, 123, 0.4);
    border-radius: 14px;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 500;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.email-input-large:hover {
    border-color: rgba(242, 207, 123, 0.6);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.3),
        0 0 24px rgba(242, 207, 123, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.email-input-large:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(15, 12, 10, 1);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(242, 207, 123, 0.4),
        0 0 0 4px rgba(242, 207, 123, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.submit-btn-large {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 40px;
    background: linear-gradient(135deg, #f2cf7b 0%, #d29658 50%, #f2cf7b 100%);
    background-size: 200% 100%;
    border: 2px solid rgba(242, 207, 123, 0.8);
    border-radius: 14px;
    color: var(--dark-bg);
    font-size: 18px;
    font-weight: 800;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 
        0 6px 24px rgba(242, 207, 123, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: shimmer 3s infinite;
}

.submit-btn-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 48px rgba(242, 207, 123, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: #f2cf7b;
}

.submit-btn-large:active {
    transform: translateY(-1px) scale(1);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
}

.form-note .material-symbols-rounded {
    font-size: 20px;
    color: rgba(242, 207, 123, 0.6);
    flex-shrink: 0;
}

.final-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 32px;
    background: rgba(16, 185, 129, 0.08);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 16px;
    margin: 40px auto 32px;
    max-width: 700px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

.final-guarantee .material-symbols-rounded {
    color: var(--green-success);
    font-size: 32px;
    flex-shrink: 0;
}

.final-guarantee p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-primary);
    text-align: left;
}

.final-guarantee strong {
    color: var(--green-success);
    font-weight: 700;
}

.urgency-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 32px;
    background: rgba(242, 207, 123, 0.08);
    border: 2px solid rgba(242, 207, 123, 0.3);
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(242, 207, 123, 0.15);
}

.urgency-message .material-symbols-rounded {
    color: var(--gold-primary);
    font-size: 32px;
    flex-shrink: 0;
}

.urgency-message p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-primary);
    text-align: left;
}

.urgency-message strong {
    color: var(--gold-primary);
    font-weight: 700;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-status {
    font-size: 15px;
    color: var(--green-success);
    font-weight: 600;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h5 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
    line-height: 1.6;
}

.footer-column a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 14px;
}

/* Sticky Bottom Bar */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 16px 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-bottom-bar.visible {
    transform: translateY(0);
}

.sticky-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.sticky-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sticky-bar-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-bar-offer {
    font-size: 15px;
    color: var(--text-primary);
}

.sticky-bar-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.sticky-bar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(242, 207, 123, 0.5);
}

/* ========================================
   Quick Join Modal
   ======================================== */

.quick-join-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.90);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.quick-join-modal.active {
    opacity: 1;
    pointer-events: all;
}

.quick-join-overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.quick-join-content {
    position: relative;
    background: linear-gradient(145deg, #0f0c0a 0%, #1a1410 100%);
    border: 2px solid rgba(242, 207, 123, 0.3);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 480px;
    width: 90%;
    z-index: 1;
    animation: modal-slide-up 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(242, 207, 123, 0.1) inset;
}

@keyframes modal-slide-up {
    from {
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.quick-join-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.quick-join-close:hover {
    background: rgba(242, 207, 123, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: rotate(90deg);
}

.quick-join-close .material-symbols-rounded {
    font-size: 20px;
}

.quick-join-header {
    text-align: center;
    margin-bottom: 32px;
}

.quick-join-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(242, 207, 123, 0.3);
}

.quick-join-icon .material-symbols-rounded {
    font-size: 32px;
    color: var(--dark-bg);
}

.quick-join-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quick-join-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

.quick-join-form {
    margin-bottom: 24px;
}

.quick-join-input-group {
    margin-bottom: 20px;
}

.quick-join-input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.quick-join-input-group input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.quick-join-input-group input[type="email"]::placeholder {
    color: var(--text-muted);
}

.quick-join-input-group input[type="email"]:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(242, 207, 123, 0.1);
}

.quick-join-submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 12px;
    color: var(--dark-bg);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(242, 207, 123, 0.3);
}

.quick-join-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(242, 207, 123, 0.4);
}

.quick-join-submit:active {
    transform: translateY(0);
}

.quick-join-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.quick-join-submit .material-symbols-rounded {
    font-size: 20px;
}

.quick-join-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
}

.quick-join-privacy .material-symbols-rounded {
    font-size: 16px;
}

.quick-join-benefits {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-join-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.quick-join-benefit .material-symbols-rounded {
    font-size: 20px;
    color: var(--green-success);
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .quick-join-content {
        padding: 36px 24px;
        width: 95%;
    }
    
    .quick-join-header h2 {
        font-size: 24px;
    }
    
    .quick-join-icon {
        width: 56px;
        height: 56px;
    }
    
    .quick-join-icon .material-symbols-rounded {
        font-size: 28px;
    }
}

/* ========================================
   Success Modal
   ======================================== */

/* Success Modal */
/* Enhanced Success Modal */
.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.success-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: var(--dark-bg-2);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.success-modal.active .modal-content {
    animation: modal-scale-in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modal-scale-in {
    0% {
        transform: scale(0.7) translateY(30px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Confetti Animation */
.confetti-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 24px;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold-primary);
    top: -10px;
    border-radius: 50%;
}

@keyframes confetti-fall {
    to { 
        transform: translateY(120vh) rotate(720deg);
        opacity: 0;
    }
}

.confetti {
    animation: confetti-fall 3s linear forwards;
}

/* Success Icon with Animation */
.success-icon-animated {
    margin-bottom: 24px;
}

.success-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(242, 207, 123, 0.4);
}

.success-modal.active .success-circle {
    animation: success-pulse 2s ease-in-out infinite;
}

@keyframes success-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 40px rgba(242, 207, 123, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(242, 207, 123, 0.6);
    }
}

.success-circle .material-symbols-rounded {
    font-size: 60px;
    color: var(--dark-bg);
    font-weight: 600;
}

/* Modal Typography */
.modal-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.5;
}

/* Enhanced Benefits Cards */
.success-benefits-enhanced {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.success-benefit-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(242, 207, 123, 0.05);
    border: 1px solid rgba(242, 207, 123, 0.2);
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
}

.success-benefit-card:hover {
    background: rgba(242, 207, 123, 0.1);
    transform: translateX(8px);
    border-color: rgba(242, 207, 123, 0.4);
}

.benefit-icon {
    font-size: 32px;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.success-benefit-card div {
    flex: 1;
}

.success-benefit-card strong {
    display: block;
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 600;
}

.success-benefit-card span:last-child {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Next Steps Section */
.next-steps {
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.next-steps-title {
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gold-primary);
    font-size: 16px;
}

.next-steps-list {
    margin: 0;
    padding-left: 20px;
}

.next-steps-list li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
    font-size: 15px;
}

/* Enhanced Close Button */
.close-modal-btn-enhanced {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--dark-bg);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.close-modal-btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242, 207, 123, 0.4);
}

.close-modal-btn-enhanced:active {
    transform: translateY(0);
}

.modal-footer-text {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Loading Animation */
@keyframes rotating {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rotating {
    animation: rotating 1s linear infinite;
    display: inline-block;
}

/* Mobile Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        padding: 36px 24px;
        max-width: 90%;
    }
    
    .success-circle {
        width: 80px;
        height: 80px;
    }
    
    .success-circle .material-symbols-rounded {
        font-size: 48px;
    }
    
    .modal-title {
        font-size: 26px;
    }
    
    .modal-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .success-benefit-card {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .benefit-icon {
        font-size: 28px;
    }
    
    .success-benefit-card strong {
        font-size: 15px;
    }
    
    .success-benefit-card span:last-child {
        font-size: 13px;
    }
    
    .next-steps {
        padding: 20px;
    }
    
    .next-steps-list li {
        font-size: 14px;
    }
    
    .close-modal-btn-enhanced {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .demo-flow {
        grid-template-columns: 1fr;
    }
    
    .demo-arrow {
        transform: rotate(90deg);
    }
    
    .benefits-comparison {
        grid-template-columns: 1fr;
    }
    
    .vs-divider {
        transform: rotate(90deg);
    }
    
    .early-access-card {
        transform: scale(1);
    }
    
    .creator-main {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title-pre,
    .hero-title-v3 {
        font-size: 42px;
    }
    
    .hero-subtitle-v3 {
        font-size: 18px;
        margin-bottom: 32px;
        line-height: 1.7;
    }
    
    .section-title,
    .section-title-white {
        font-size: 38px;
    }
    
    body {
        font-size: 16px;
    }
    
    .waitlist-form-hero {
        padding: 28px 24px;
    }
    
    .form-group,
    .form-container {
        flex-direction: column;
    }
    
    .benefit-item {
        font-size: 17px;
    }
    
    .submit-btn,
    .submit-btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .problem-solution-compact {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .problem-side-compact,
    .solution-side-compact {
        padding: 32px 24px;
    }
    
    .icon-badge-compact {
        font-size: 40px;
    }
    
    .ps-title-compact {
        font-size: 18px;
    }
    
    .ps-list-compact li {
        font-size: 15px;
        padding: 12px 0 12px 26px;
    }
    
    .final-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .sticky-bar-content {
        flex-direction: column;
    }
    
    .faq-question {
        padding: 20px 16px;
        margin: 0 2px;
    }
    
    .faq-question h4 {
        font-size: 17px;
        line-height: 1.4;
    }
    
    .faq-icon {
        font-size: 24px;
        margin-left: 12px;
    }
    
    .faq-answer p {
        font-size: 15px;
        padding: 8px 20px 24px 20px;
        margin-left: 16px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-title-pre {
        font-size: 32px;
    }
    
    .time-number {
        font-size: 32px;
    }
    
    .countdown-timer {
        gap: 8px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .showcase-large {
        grid-column: span 1;
    }
    
    .showcase-title {
        font-size: 28px;
    }
}

/* ========================================
   INFO MODALS (Privacy, Terms, Contact)
   ======================================== */

.info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.info-modal.active {
    opacity: 1;
    visibility: visible;
}

.info-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.info-modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 12, 10, 0.98) 0%, rgba(26, 22, 20, 0.98) 100%);
    border: 2px solid rgba(242, 207, 123, 0.3);
    border-radius: 24px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(242, 207, 123, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.info-modal.active .info-modal-content {
    transform: scale(1);
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(30px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Custom scrollbar for modal */
.info-modal-content::-webkit-scrollbar {
    width: 8px;
}

.info-modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.info-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f2cf7b 0%, #d29658 100%);
    border-radius: 10px;
}

.info-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #d29658 0%, #f2cf7b 100%);
}

/* Close Button */
.info-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(242, 207, 123, 0.3);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.info-modal-close:hover {
    background: rgba(242, 207, 123, 0.2);
    border-color: var(--gold-primary);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(242, 207, 123, 0.4);
}

.info-modal-close .material-symbols-rounded {
    font-size: 24px;
}

/* Modal Header */
.info-modal-header {
    padding: 48px 48px 32px;
    text-align: center;
    border-bottom: 2px solid rgba(242, 207, 123, 0.15);
    background: linear-gradient(to bottom, rgba(242, 207, 123, 0.05), transparent);
}

.info-modal-icon {
    font-size: 56px;
    color: var(--gold-primary);
    filter: drop-shadow(0 0 20px rgba(242, 207, 123, 0.5));
    display: block;
    margin-bottom: 16px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(242, 207, 123, 0.5));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(242, 207, 123, 0.7));
    }
}

.info-modal-header h2 {
    font-size: 36px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-modal-date {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.info-modal-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 8px 0 0;
}

/* Modal Body */
.info-modal-body {
    padding: 40px 48px 48px;
}

.info-modal-body section {
    margin-bottom: 32px;
}

.info-modal-body section:last-of-type {
    margin-bottom: 0;
}

.info-modal-body h3 {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--gold-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-modal-body h3::before {
    content: '▸';
    color: var(--gold-primary);
}

.info-modal-body p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.info-modal-body p:last-child {
    margin-bottom: 0;
}

.info-modal-body strong {
    color: var(--text-primary);
    font-weight: 700;
}

.info-modal-body ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.info-modal-body ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.info-modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 18px;
}

.info-modal-body a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-modal-body a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Contact Section */
.info-modal-contact {
    margin-top: 40px;
    padding: 24px;
    background: rgba(242, 207, 123, 0.08);
    border: 2px solid rgba(242, 207, 123, 0.2);
    border-radius: 16px;
    text-align: center;
}

.info-modal-contact p {
    margin: 0;
    font-size: 16px;
}

/* Contact Modal Specific Styles */
.contact-modal .info-modal-content {
    max-width: 900px;
}

.contact-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Single Contact Card */
.contact-card-single {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(242, 207, 123, 0.3);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card-single:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(242, 207, 123, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(242, 207, 123, 0.25);
}

.contact-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(242, 207, 123, 0.25) 0%, rgba(125, 63, 38, 0.25) 100%);
    border: 3px solid rgba(242, 207, 123, 0.5);
    border-radius: 50%;
    animation: iconPulse 2s ease-in-out infinite;
}

.contact-icon-large .material-symbols-rounded {
    font-size: 48px;
    color: var(--gold-primary);
}

.contact-card-single h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

.contact-card-single p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-email-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #f2cf7b 0%, #d29658 50%, #f2cf7b 100%);
    background-size: 200% 100%;
    border: 2px solid rgba(242, 207, 123, 0.8);
    border-radius: 14px;
    color: var(--dark-bg);
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(242, 207, 123, 0.4);
    animation: shimmer 3s infinite;
}

.contact-email-large:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 40px rgba(242, 207, 123, 0.6);
    color: var(--dark-bg);
    text-decoration: none;
}

.contact-email-large .material-symbols-rounded {
    font-size: 24px;
}

.contact-info {
    grid-column: 1 / -1;
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 32px;
    border-top: 2px solid rgba(242, 207, 123, 0.15);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.contact-info .material-symbols-rounded {
    font-size: 20px;
    color: var(--gold-primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .info-modal-content {
        width: 95%;
        max-height: 90vh;
        border-radius: 20px;
    }
    
    .info-modal-header {
        padding: 40px 24px 24px;
    }
    
    .info-modal-header h2 {
        font-size: 28px;
    }
    
    .info-modal-icon {
        font-size: 48px;
    }
    
    .info-modal-body {
        padding: 32px 24px 32px;
    }
    
    .info-modal-body h3 {
        font-size: 20px;
    }
    
    .info-modal-body p,
    .info-modal-body ul li {
        font-size: 15px;
    }
    
    .info-modal-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
    
    .contact-card-single {
        padding: 32px 24px;
    }
    
    .contact-icon-large {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .contact-icon-large .material-symbols-rounded {
        font-size: 40px;
    }
    
    .contact-card-single h3 {
        font-size: 22px;
    }
    
    .contact-card-single p {
        font-size: 16px;
    }
    
    .contact-email-large {
        font-size: 16px;
        padding: 16px 28px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

