:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --accent: #f59e0b;
    --success: #10b981;
    --text-dark: #111827;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --border: #e5e7eb;
    --neon-blue: #00d4ff;
    --neon-purple: #b536ff;
    --neon-pink: #ff006e;
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .logo {
        max-width: 240px;
        margin-bottom: 1rem;
    }

    .content-card {
        padding: 1rem;
        margin: 0 0.5rem;
        border-radius: 15px;
    }

    .main-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .main-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .feature {
        padding: 1.5rem 1rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-desc {
        font-size: 0.9rem;
    }

    .feature-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

    .form-section {
        padding: 1rem;
    }

    .form-title {
        font-size: 1.25rem;
    }

    .form-subtitle {
        font-size: 0.9rem;
    }

    .vip-badge {
        padding: 0.4rem 1rem;
        margin-bottom: 0.75rem;
    }

    .vip-text {
        font-size: 0.8rem;
    }

    .form-input {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .submit-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .social-proof {
        padding: 1rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .achievement {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .achievement-icon {
        font-size: 1rem;
    }

    .success-title {
        font-size: 1.75rem;
    }

    .success-text {
        font-size: 0.95rem;
    }

    .success-btn {
        width: 180px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .success-footer {
        padding: 1rem;
    }

    .next-steps li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }

    .launch-badge {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Touch-Friendly Enhancements */
@media (max-width: 768px) {
    /* Larger touch targets */
    .form-input:focus {
        transform: none; /* Remove transform on mobile to prevent zoom issues */
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    }

    .submit-btn:hover {
        transform: none; /* Remove hover transform on mobile */
        box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    }

    /* Prevent zoom on form focus */
    .form-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Better button spacing for fingers */
    .success-btn {
        min-height: 48px; /* Minimum touch target size */
    }

    /* Improve scrolling performance */
    .content-card {
        will-change: transform;
    }
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #fff;
    overflow-x: hidden;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #141414, #1a1a1a, #0a0a0a);
    z-index: 0;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(181, 54, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 110, 0.05) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

/* Floating particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; animation-delay: 1s; }
.particle:nth-child(3) { left: 50%; animation-delay: 2s; }
.particle:nth-child(4) { left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { left: 90%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #141414;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    max-width: 600px;
    height: auto;
    margin-bottom: 2rem;
    filter: brightness(1.1);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 50%, var(--neon-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0,212,255,0.3);
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: subtitleSlide 2s ease-out 1.5s both;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

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

/* Enhanced Screenshot Container */
.screenshot-wrapper {
    position: relative;
    margin: 4rem 0;
    animation: screenshotFloat 1s ease-out 1s both;
}

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

.screenshot-image {
    max-width: 90%;
    height: auto;
    min-height: 400px;
    max-height: 700px;
    border-radius: 20px;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.3),
        0 0 40px rgba(0,212,255,0.2);
    transition: all 0.5s ease;
    animation: imageGlow 4s ease-in-out infinite;
}

@keyframes imageGlow {
    0%, 100% {
        box-shadow:
            0 30px 60px rgba(0,0,0,0.3),
            0 0 40px rgba(0,212,255,0.2);
    }
    50% {
        box-shadow:
            0 35px 70px rgba(0,0,0,0.4),
            0 0 60px rgba(181,54,255,0.3);
    }
}

.screenshot-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.4),
        0 0 80px rgba(0,212,255,0.4);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0.7;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Main Content with Excitement */
.main-content {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 30px;
    padding: 4rem;
    box-shadow:
        0 25px 50px rgba(0,0,0,0.1),
        0 0 0 1px rgba(255,255,255,0.8),
        inset 0 1px 0 rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s ease-out;
}

.content-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 0.2s;
}

.content-card.animate .main-title {
    opacity: 1;
    transform: translateY(0);
}

.main-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 0.4s;
}

.content-card.animate .main-subtitle {
    opacity: 1;
    transform: translateY(0);
}

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

.feature {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s ease-out;
}

.content-card.animate .feature:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.content-card.animate .feature:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.content-card.animate .feature:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

.content-card.animate .feature:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.2s;
}

.form-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out 1.4s;
}

/* Enhanced Visual Elements */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

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

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 items per row */
    gap: 2rem;
    margin: 3rem 0 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.content-card.animate .stat-item:nth-child(1) { transition-delay: 0.3s; }
.content-card.animate .stat-item:nth-child(2) { transition-delay: 0.4s; }
.content-card.animate .stat-item:nth-child(3) { transition-delay: 0.5s; }
.content-card.animate .stat-item:nth-child(4) { transition-delay: 0.6s; }

.content-card.animate .stat-item {
    opacity: 1;
    transform: translateY(0);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.7s;
}

.content-card.animate .features-header {
    opacity: 1;
    transform: translateY(0);
}

.features-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.feature-visual {
    position: relative;
    margin-bottom: 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bg {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.feature-icon {
    font-size: 1.8rem;
    color: white;
}

.feature-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-ring {
    position: absolute;
    border: 3px solid var(--primary);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: pulse 2s ease-out infinite;
    opacity: 0.6;
}

.pulse-ring-2 {
    animation-delay: 1s;
    width: 100px;
    height: 100px;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.lightning-bolt {
    width: 20px;
    height: 20px;
    background: var(--accent);
    transform: rotate(45deg);
    animation: lightning 1.5s ease-in-out infinite;
}

@keyframes lightning {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; transform: rotate(45deg) scale(1.2); }
}

.trophy-shine {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

.diamond-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--neon-blue);
    border-radius: 50%;
    animation: sparkle 1.5s ease-in-out infinite;
}

.sparkle-2 {
    top: -10px;
    right: -10px;
    animation-delay: 0.5s;
}

.sparkle-3 {
    bottom: -10px;
    left: -10px;
    animation-delay: 1s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

.social-proof {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 1.3s;
}

.content-card.animate .social-proof {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-highlight {
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.testimonial-author {
    color: var(--text-light);
    font-size: 1rem;
}

.stars {
    margin-top: 0.5rem;
    font-size: 1.2rem;
}

.achievement-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-weight: 600;
    color: var(--text-dark);
}

.achievement-icon {
    font-size: 1.2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.vip-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    animation: vipGlow 2s ease-in-out infinite;
}

@keyframes vipGlow {
    0%, 100% { box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6); }
}

.form-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.urgency-bar {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    border: 2px solid #fee2e2;
    margin-bottom: 2rem;
}

.urgency-text {
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.progress-bar-container {
    background: #fee2e2;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    background: linear-gradient(90deg, #dc2626, #ef4444);
    height: 100%;
    border-radius: 4px;
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,212,255,0.1), transparent);
    animation: formShine 2s ease-in-out infinite;
}

@keyframes formShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.form-input.error {
    border-color: #ef4444;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    animation: fadeInUp 0.3s ease;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--neon-purple) 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
    animation: buttonPulse 1s ease infinite;
}

.submit-btn:hover::before {
    left: 100%;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 20px 45px rgba(99, 102, 241, 0.6); }
}

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

.privacy-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 1.4s both;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, #f97316 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    animation: badgeGlow 2s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 35px rgba(249, 115, 22, 0.5);
        transform: scale(1.02);
    }
}

/* Success State */
.success-card {
    text-align: center;
    padding: 4rem 2rem;
    animation: successZoom 0.8s ease-out;
}

@keyframes successZoom {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 3rem;
    animation: successBounce 1s ease-out;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

@keyframes successBounce {
    0% { transform: scale(0); }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--success) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-text {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Success Action Buttons */
.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.success-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.success-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--neon-purple));
    color: white;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.success-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
    color: white;
    text-decoration: none;
}

.success-btn.secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.success-btn.secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    text-decoration: none;
}

.success-btn.logout {
    background: #f8f9fa;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.success-btn.logout:hover {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
    text-decoration: none;
}

/* Success Footer */
.success-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.success-footer p {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.next-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.next-steps li:last-child {
    border-bottom: none;
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .logo {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }

    .content-card {
        padding: 1.5rem;
        margin: 0 1rem;
        border-radius: 20px;
    }

    .main-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .main-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature {
        padding: 2rem 1.5rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .feature-desc {
        font-size: 0.95rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .form-section {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .form-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .form-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .form-input {
        padding: 1rem 1.2rem;
        font-size: 1rem;
        border-radius: 12px;
    }

    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
    }

    .social-proof {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .achievement-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .achievement {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .success-btn {
        width: 200px;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }

    .success-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .success-text {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .success-footer {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

/* Custom cursor for interactive elements */
.feature, .submit-btn, .scroll-indicator {
    cursor: pointer;
}

/* Loading animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading {
    animation: spin 1s linear infinite;
}

/* MISSING FORM STYLES - ADDED TO FIX WAITLIST FORM */

/* Form Section Animation Fix */
.content-card.animate .form-section {
    opacity: 1;
    transform: translateY(0);
}

/* VIP Badge Fix */
.vip-text {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Features Header Fix */
.features-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.7s;
}

.content-card.animate .features-header {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Feature Hover */
.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

/* Feature Title and Description */
.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
