/* Pricing Hero */
.pricing-hero {
    padding: 140px 24px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--success);
    margin-bottom: 24px;
    animation: slideUp 0.6s ease-out;
}

.pricing-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    animation: slideUp 0.6s ease-out 0.1s both;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    animation: slideUp 0.6s ease-out 0.2s both;
}

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

/* Early Access Banner */
.early-access-banner {
    padding: 0 24px 40px;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.banner-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 4px;
}

.banner-text p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
}

.banner-text strong {
    color: var(--text-primary);
}

/* Pricing Section */
.pricing-section {
    padding: 40px 24px 120px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Pricing Card */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, transparent 100%);
}

.pricing-card.featured:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 60px rgba(37, 99, 235, 0.15);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card .card-header {
    margin-bottom: 24px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.card-price {
    margin-bottom: 32px;
    position: relative;
}

.card-price .price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.card-price .price-amount.coming-soon {
    color: var(--text-muted);
}

.card-price .price-period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.card-price .price-note {
    display: block;
    font-size: 0.8125rem;
    color: var(--accent);
    margin-top: 8px;
}

/* Plan Features */
.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.plan-features li.included svg {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-features li.excluded {
    color: var(--text-muted);
}

.plan-features li.excluded svg {
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-features li strong {
    color: var(--text-primary);
}

/* Plan Buttons */
.btn-plan {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.btn-plan:hover {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.btn-plan.btn-featured {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.btn-plan.btn-featured:hover {
    background: var(--accent-hover);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-plan.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-plan.disabled:hover {
    transform: none;
    background: var(--bg-tertiary);
}

/* Founding CTA */
.founding-cta-section {
    background: var(--bg-secondary);
}

.founding-cta {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.founding-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

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

.founding-cta:hover {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 80px rgba(37, 99, 235, 0.15);
}

.founding-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-1);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.founding-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.founding-cta p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Nav Active State */
.nav-link.active {
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        order: -1;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 100px 24px 30px;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .founding-cta {
        padding: 32px 24px;
    }

    .founding-cta h2 {
        font-size: 1.5rem;
    }
}