/* Homepage-specific styles for hybrid landing page */

/* Hero Section Updates */
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #f0f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

/* Dual CTA Section */
.dual-cta-section {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: stretch;
}

.cta-option {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-option:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-option h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-option p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-benefits {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.cta-benefits li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.divider-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

.divider-text {
    padding: 1rem 0;
    font-weight: bold;
    opacity: 0.7;
}

.creator-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.creator-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(238, 90, 36, 0.4);
    color: white;
    text-decoration: none;
}

.enterprise-button {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.enterprise-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
    color: white;
    text-decoration: none;
}

/* Value Props Section */
.value-props {
    background: white;
    padding: 80px 0;
}

.value-props h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.prop-card {
    background: linear-gradient(135deg, #f8faff 0%, #f1f5ff 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.prop-card:hover {
    transform: translateY(-5px);
}

.prop-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prop-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.prop-card p {
    color: #666;
    line-height: 1.6;
}

/* How It Works - Marketplace Flow */
.how-it-works {
    background: #f8fafc;
    padding: 80px 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.marketplace-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.flow-side {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.flow-side h3 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #333;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.flow-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.yappi-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.logo-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.yappi-logo h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.marketplace-tagline {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.connection-lines {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 1px;
    position: relative;
}

.connection-lines::before,
.connection-lines::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #667eea;
    top: -4px;
}

.connection-lines::before {
    left: -5px;
}

.connection-lines::after {
    right: -5px;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stats h2 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #f0f9ff;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.final-cta-buttons .cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 18px 30px;
}

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

.launching-note {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 968px) {
    .marketplace-flow {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .flow-center {
        order: -1;
        min-height: 150px;
    }
    
    .connection-lines {
        width: 2px;
        height: 50px;
        background: linear-gradient(180deg, #667eea, #764ba2);
    }
    
    .connection-lines::before,
    .connection-lines::after {
        left: -4px;
    }
    
    .connection-lines::before {
        top: -5px;
    }
    
    .connection-lines::after {
        bottom: -5px;
        top: auto;
    }
}

@media (max-width: 768px) {
    .dual-cta-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-divider {
        flex-direction: row;
        justify-content: center;
    }
    
    .divider-line {
        width: 60px;
        height: 1px;
    }
    
    .divider-text {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
} 