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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #000;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container */
.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

/* Animated Background */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        #1a202c 0%,
        #2d3748 25%,
        #38a169 50%,
        #48bb78 75%,
        #68d391 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

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

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(72, 187, 120, 0.1) 3px, transparent 3px);
    background-size: 50px 50px, 30px 30px, 80px 80px;
    animation: patternFloat 20s linear infinite;
}

@keyframes patternFloat {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-50px) translateY(-50px);
    }
}

/* Video background (for future use) */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: -1;
}

/* Removed parallax images - keeping clean video background only */

/* Removed old leaf animations - replaced with video background */

/* Main Content */
.content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem 2rem;
    margin: 2rem auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.logo-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    animation: pulse 2s ease-in-out infinite;
}

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

.tagline {
    font-size: 1.125rem;
    color: #718096;
    font-weight: 400;
}

/* Coming Soon Section */
.coming-soon-section {
    margin-bottom: 3rem;
}

/* Title Container */
.title-container {
    text-align: center;
    margin-bottom: 2rem;
}

/* Main Title with Animation */
.main-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: titleReveal 0.8s ease-out forwards;
    margin-right: 0.5rem;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-underline {
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #48bb78, #38a169, #2f855a);
    margin: 0 auto;
    border-radius: 2px;
    animation: underlineExpand 2s ease-out 1s forwards;
}

@keyframes underlineExpand {
    to {
        width: 200px;
    }
}

/* AI Features Preview */
.ai-features-preview {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1), rgba(56, 161, 105, 0.05));
    border: 2px solid rgba(72, 187, 120, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ai-features-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(72, 187, 120, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.ai-description {
    font-size: 1.125rem;
    color: #2d3748;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.ai-description strong {
    color: #38a169;
    font-weight: 700;
}

/* Countdown Timer */
.countdown-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.countdown-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.time-unit {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 5px 15px rgba(72, 187, 120, 0.3);
    animation: countdownPulse 2s ease-in-out infinite;
}

.time-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.time-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

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

.description {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Email Signup Form */
.signup-form {
    margin-bottom: 3rem;
}

.input-group {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.input-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.email-input::placeholder {
    color: #a0aec0;
}

.submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    transform: translateX(-2px);
}

.submit-btn:active {
    transform: translateX(0);
}

.privacy-note {
    font-size: 0.875rem;
    color: #718096;
    font-style: italic;
}

/* Features Section */
.features {
    margin-bottom: 3rem;
}

.features-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(72, 187, 120, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(72, 187, 120, 0.3);
}

.feature-ai:hover { border-color: #9f7aea; }
.feature-ar:hover { border-color: #ed8936; }
.feature-blockchain:hover { border-color: #3182ce; }
.feature-community:hover { border-color: #38a169; }
.feature-subscription:hover { border-color: #d53f8c; }
.feature-rewards:hover { border-color: #dd6b20; }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.feature p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.feature-badge-small {
    display: inline-block;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Early Access Benefits */
.early-access-section {
    background: linear-gradient(135deg, #1a202c, #2d3748);
    color: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.early-access-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(72, 187, 120, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.early-access-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.benefits-list {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1.1rem;
    line-height: 1.5;
}

.benefit-text strong {
    color: #68d391;
    font-weight: 700;
}

/* Social Section */
.social-section {
    margin-bottom: 2rem;
}

.social-text {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    color: #718096;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-link.facebook:hover {
    color: #1877f2;
}

.social-link.instagram:hover {
    color: #e4405f;
}

.social-link.email:hover {
    color: #48bb78;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 1rem;
    text-align: center;
    color: #a0aec0;
    font-size: 0.875rem;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    max-width: 400px;
    margin: 1rem;
}

.success-message.show .success-content {
    transform: scale(1);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.success-content p {
    color: #718096;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem 0.5rem;
    }
    
    .logo-image {
        max-width: 250px;
    }
    
    .main-title {
        font-size: 2rem;
    }

    .title-underline {
        animation: underlineExpand 2s ease-out 1s forwards;
    }

    @keyframes underlineExpand {
        to {
            width: 150px;
        }
    }
    
    .description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .ai-features-preview {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .countdown-container {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .countdown-timer {
        gap: 0.5rem;
    }

    .time-unit {
        min-width: 70px;
        padding: 0.75rem;
    }

    .time-number {
        font-size: 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
        max-width: 350px;
    }
    
    .submit-btn {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1.5rem 1rem;
    }

    .early-access-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .early-access-title {
        font-size: 1.5rem;
    }

    .benefit-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .benefit-item:hover {
        transform: translateY(-5px);
    }
    
    /* Background adjustments for mobile */
    .pattern-overlay {
        animation-duration: 30s; /* Slower animation on mobile for better performance */
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-width: 200px;
    }
    
    .main-title {
        font-size: 1.75rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .input-group {
        max-width: 300px;
    }
    
    .success-content {
        padding: 2rem 1.5rem;
    }
} 