/* ============================================
   VIBE DATA SIDEBAR STYLES
   ============================================ */

.vibe-sidebar {
    width: 100%;
    max-width: 380px;
    padding: 20px;
    background: #fafafa;
    overflow-y: auto;
    height: 100vh;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    background: #f0f0f0;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prediction-spotlight .card-badge {
    background: #ede9fe;
    color: #7c3aed;
}

.intelligence-spotlight .card-badge {
    background: #dbeafe;
    color: #2563eb;
}

.upgrade-teaser .card-badge {
    background: #fef3c7;
    color: #d97706;
}

.use-cases .card-badge {
    background: #dcfce7;
    color: #16a34a;
}

.card-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #111;
    line-height: 1.3;
}

/* Prediction Spotlight */
.prediction-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.prediction-stat {
    text-align: center;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #7c3aed;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prediction-text {
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;
    margin: 0 0 16px 0;
}

/* Intelligence Spotlight */
.insight-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.insight-item {
    display: flex;
    gap: 12px;
    align-items: start;
}

.insight-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.insight-content {
    flex: 1;
}

.insight-content strong {
    display: block;
    font-size: 14px;
    color: #111;
    margin-bottom: 2px;
}

.insight-content p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Upgrade Teaser */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
    color: #374151;
}

.features-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 18px;
}

.upgrade-cta-group {
    text-align: center;
}

.btn-upgrade {
    display: block;
    padding: 14px 24px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    margin-bottom: 8px;
}

.btn-upgrade:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.trial-text {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

/* Use Cases */
.use-case-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.use-case-item strong {
    display: block;
    font-size: 14px;
    color: #111;
    margin-bottom: 4px;
}

.use-case-item p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Newsletter */
.newsletter-description {
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;
    margin: 0 0 16px 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.newsletter-form input:focus {
    border-color: #3b82f6;
}

.newsletter-form button {
    padding: 12px;
    background: #111;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: #374151;
}

.newsletter-note {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
    text-align: center;
}

/* CTAs */
.card-cta-primary, .card-cta-secondary {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.card-cta-primary {
    color: #3b82f6;
}

.card-cta-primary:hover {
    color: #2563eb;
    text-decoration: underline;
}

.card-cta-secondary {
    color: #6b7280;
}

.card-cta-secondary:hover {
    color: #374151;
    text-decoration: underline;
}

/* Link Section */
.sidebar-link-section {
    padding: 12px 0;
}

.sidebar-link {
    display: block;
    font-size: 13px;
    color: #6b7280;
    text-decoration: none;
    padding: 12px;
    background: white;
    border-radius: 8px;
    transition: all 0.2s;
}

.sidebar-link:hover {
    background: #f9fafb;
    color: #111;
}

/* Responsive */
@media (max-width: 1200px) {
    .vibe-sidebar {
        max-width: 100%;
        height: auto;
        border-top: 1px solid #e5e7eb;
    }
}
