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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.logo-icon {
    font-size: 24px;
    margin-right: 8px;
}

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

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #1a1a1a;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: #64748b;
    margin-bottom: 48px;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.primary-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.primary-cta:hover {
    transform: translateY(-2px);
}

.secondary-cta {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #e2e8f0;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.secondary-cta:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-nodes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.node {
    width: 200px;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.node.gpt { background: linear-gradient(135deg, #10b981, #059669); color: white; }
.node.claude { background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: white; }
.node.perplexity { background: linear-gradient(135deg, #f59e0b, #d97706); color: white; }
.node.grok { background: linear-gradient(135deg, #ec4899, #be185d); color: white; }
.node.consensus { 
    background: linear-gradient(135deg, #22c55e, #16a34a); 
    color: white; 
    font-size: 24px;
    font-weight: 700;
    transform: scale(1.2);
}

/* Features */
.features {
    padding: 120px 0;
    background: white;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
}

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

.feature-card {
    padding: 48px 32px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
    text-align: center;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-color: #e2e8f0;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

/* How it Works */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    margin-top: 80px;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step p {
    color: #64748b;
    font-size: 16px;
}

/* Waitlist */
.waitlist {
    padding: 160px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
}

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

.waitlist h2 {
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 700;
    margin-bottom: 24px;
}

.waitlist-subtitle {
    font-size: 20px;
    color: #a1a1aa;
    margin-bottom: 48px;
    line-height: 1.6;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto 48px;
}

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

.form-group input {
    flex: 1;
    padding: 20px 24px;
    border: 2px solid #404040;
    border-radius: 16px;
    background: #262626;
    color: white;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-group input::placeholder {
    color: #a1a1aa;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.waitlist-cta {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.waitlist-cta:hover {
    transform: translateY(-2px);
}

.waitlist-stats {
    font-size: 18px;
    color: #a1a1aa;
}

/* Footer */
.footer {
    padding: 48px 0 24px;
    background: #0f0f0f;
    color: #a1a1aa;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.logo {
    color: white;
    font-weight: 600;
    font-size: 20px;
}

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

.footer-links a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #262626;
    color: #666;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 24px 80px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .workflow-steps {
        flex-direction: column;
        gap: 32px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

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

.hero-content,
.features-grid,
.workflow-steps {
    animation: fadeInUp 0.8s ease-out;
}
