/* ============================================================
   TutorX Landing Page — Persuasion & Gate Styles
   Handles: social proof bar, locked cards, results gate,
            scarcity alerts, gate modal
   ============================================================ */

/* Social Proof Bar */
.social-proof-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 0 0 48px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.016em;
}

.proof-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.proof-divider {
    width: 1px;
    height: 18px;
    background: var(--border);
}

/* Locked card (blurred, non-interactive) */
.locked-card {
    position: relative;
    overflow: hidden;
    pointer-events: none;
    user-select: none;
}

.locked-card > *:not(.card-lock-overlay) {
    filter: blur(6px);
    opacity: 0.35;
}

.card-lock-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(10, 10, 15, 0.45);
    border-radius: 20px;
    pointer-events: none;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
}

/* Results gate card */
.results-gate {
    grid-column: 1 / -1;
    background: var(--bg-card);
    border: 1px solid rgba(108, 99, 255, 0.35);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 0 48px rgba(108, 99, 255, 0.08);
}

.gate-lock-icon {
    width: 56px;
    height: 56px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
}

.gate-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.gate-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.gate-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.btn-gate-primary {
    padding: 14px 28px;
    background: var(--gradient-accent);
    color: #ffffff;
    border: none;
    border-radius: 980px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--accent-glow);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-gate-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-gate-secondary {
    padding: 14px 28px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 980px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-gate-secondary:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Scarcity notice pill (used in gate card and modal) */
.scarcity-notice {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 980px;
    color: var(--warning);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Scarcity alert in results header */
.scarcity-alert {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 980px;
    color: var(--warning);
    font-size: 13px;
    font-weight: 600;
    margin-top: 16px;
}

/* Gate modal body */
.gate-modal-body {
    padding: 40px 32px;
    text-align: center;
}

.gate-modal-icon {
    width: 64px;
    height: 64px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--accent);
}

.gate-modal-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.gate-modal-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.gate-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-gate-modal-primary {
    padding: 16px 24px;
    background: var(--gradient-accent);
    color: #ffffff;
    border: none;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--accent-glow);
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-gate-modal-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-gate-modal-secondary {
    padding: 16px 24px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-gate-modal-secondary:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.2);
}

.gate-modal-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 13px;
}

.gate-modal-divider::before,
.gate-modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
