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

:root {
    --primary-purple: #8B5CF6;
    --primary-pink: #EC4899;
    --accent-orange: #F59E0B;
    --accent-yellow: #FCD34D;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #FAFBFC;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --gradient-secondary: linear-gradient(135deg, #EC4899 0%, #F59E0B 100%);
    --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
    --shadow-sm: 0 2px 8px rgba(139, 92, 246, 0.1);
    --shadow-md: 0 4px 20px rgba(139, 92, 246, 0.15);
    --shadow-lg: 0 8px 40px rgba(139, 92, 246, 0.2);
    --shadow-glow: 0 0 40px rgba(236, 72, 153, 0.3);
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Space Grotesk', monospace;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-accent);
}

.dot-com {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #FAFBFC 0%, #FFFFFF 100%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.creative-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-accent);
    color: var(--text-dark);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 24px);
    color: var(--text-light);
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.6;
}

.flow-text {
    display: block;
    margin-top: 12px;
    font-weight: 500;
    color: var(--text-dark);
    font-family: var(--font-accent);
}

.live-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Demo Preview */
.demo-preview {
    margin: 48px auto;
    max-width: 600px;
}

.creative-browser {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.creative-browser::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
    opacity: 0.5;
}

.browser-bar {
    background: var(--bg-light);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.3s;
}

.browser-dots span:first-child { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #28CA42; }

.creative-browser:hover .browser-dots span {
    transform: scale(1.2);
}

.browser-url {
    flex: 1;
    text-align: center;
    font-size: 14px;
    color: var(--primary-purple);
    font-family: var(--font-accent);
    font-weight: 500;
}

.browser-content {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FAFBFC 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.demo-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.demo-animation {
    font-size: 24px;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    padding: 12px 24px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--primary-purple);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* CTA Section */
.cta-section {
    margin-top: 48px;
}

.launch-date {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.date-highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-text {
    color: var(--text-light);
    margin-bottom: 32px;
}

.early-access-form {
    display: flex;
    max-width: 450px;
    margin: 0 auto 16px;
    gap: 12px;
}

.early-access-form input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
    background: rgba(139, 92, 246, 0.02);
}

.early-access-form input:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(139, 92, 246, 0.05);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.cta-button {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.arrow-icon {
    transition: transform 0.3s;
}

.cta-button:hover .arrow-icon {
    transform: translateX(4px);
}

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

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.8;
}

.creative-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 2px, transparent 2px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: blob-move 25s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    top: -200px;
    right: -100px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: var(--gradient-secondary);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes blob-move {
    0%, 100% { 
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg) scale(1);
    }
    33% { 
        border-radius: 70% 40% 30% 60% / 50% 30% 70% 40%;
        transform: rotate(120deg) scale(1.1);
    }
    66% { 
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(240deg) scale(0.9);
    }
}

.creative-icon {
    position: absolute;
    font-size: 32px;
    animation: float-icon 20s infinite ease-in-out;
    opacity: 0.6;
}

.icon-1 { top: 20%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 15%; right: 15%; animation-delay: -4s; }
.icon-3 { bottom: 25%; left: 20%; animation-delay: -8s; }
.icon-4 { bottom: 20%; right: 10%; animation-delay: -12s; }
.icon-5 { top: 50%; right: 25%; animation-delay: -16s; }

@keyframes float-icon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(10px) rotate(180deg); }
    75% { transform: translateY(-15px) rotate(270deg); }
}

/* Creator Types Section */
.creator-types {
    padding: 100px 0;
    background: var(--bg-light);
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.creator-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.creator-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.creator-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: var(--shadow-lg);
}

.creator-card:hover::before {
    opacity: 0.05;
}

.creator-emoji {
    font-size: 64px;
    margin-bottom: 24px;
    display: inline-block;
    animation: emoji-bounce 3s infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

.creator-card:nth-child(1) .creator-emoji { --i: 0; }
.creator-card:nth-child(2) .creator-emoji { --i: 1; }
.creator-card:nth-child(3) .creator-emoji { --i: 2; }
.creator-card:nth-child(4) .creator-emoji { --i: 3; }
.creator-card:nth-child(5) .creator-emoji { --i: 4; }
.creator-card:nth-child(6) .creator-emoji { --i: 5; }

@keyframes emoji-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.creator-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.creator-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -0.02em;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: inline-block;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.2);
}

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

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-light) 100%);
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 32px;
    position: relative;
}

.step-visual {
    position: relative;
    margin-bottom: 32px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.step-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 32px;
    animation: rotate 10s linear infinite;
}

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

.step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-light);
}

.step-arrow {
    font-size: 32px;
    color: var(--primary-purple);
    flex-shrink: 0;
}

/* Monetization Section */
.monetization {
    padding: 100px 0;
    background: var(--white);
}

.monetization-content {
    text-align: center;
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 64px auto 0;
}

.revenue-card {
    padding: 32px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(252, 211, 77, 0.05) 100%);
    border: 2px solid rgba(245, 158, 11, 0.1);
    transition: all 0.3s;
}

.revenue-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(245, 158, 11, 0.3);
}

.revenue-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.revenue-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.revenue-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Launch Section */
.launch-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.launch-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.launch-content {
    position: relative;
    z-index: 2;
}

.launch-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    min-width: 100px;
}

.countdown-value {
    display: block;
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-accent);
}

.countdown-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    margin-top: 8px;
}

.launch-cta {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 64px 0 32px;
    background: var(--text-dark);
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand .brand-text {
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .early-access-form {
        flex-direction: column;
    }
    
    .early-access-form input,
    .cta-button {
        width: 100%;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .countdown {
        gap: 16px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 16px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .creative-icon {
        font-size: 24px;
    }
}