/* --- LOGIC SECTION (STATS) --- */
.logic-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.logic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.stat-context {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
}

/* --- FAQ SECTION (Glass Accordion) --- */
.faq-section-waitlist {
    padding: 4rem 0 8rem;
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 700px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.glass-accordion {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glass-accordion:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.glass-accordion[open] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(13, 148, 136, 0.3);
    /* Teal accent active */
}

.glass-accordion summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.glass-accordion summary::-webkit-details-marker {
    display: none;
}

.glass-accordion summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.glass-accordion[open] summary::after {
    transform: rotate(45deg);
    color: #0d9488;
}

.accordion-content {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .logic-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}