/* Stock page + homepage intelligence visuals */
.wt-intel-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .wt-intel-stat-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.wt-intel-stat {
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(99, 102, 241, 0.15);
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.06), transparent);
}
.dark .wt-intel-stat {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.12), rgba(15, 23, 42, 0.5));
    border-color: rgba(99, 102, 241, 0.25);
}
.wt-intel-stat__label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #64748b;
}
.dark .wt-intel-stat__label {
    color: #94a3b8;
}
.wt-intel-stat__value {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: ui-monospace, monospace;
    margin-top: 0.25rem;
    color: #0f172a;
}
.dark .wt-intel-stat__value {
    color: #f8fafc;
}
.wt-chart-box {
    position: relative;
    height: 220px;
}
.wt-chart-box--tall {
    height: 280px;
}
.wt-chart-box--radar {
    height: 260px;
    max-width: 320px;
    margin: 0 auto;
}
.wt-spotlight {
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(245, 158, 11, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.2);
}
.dark .wt-spotlight {
    background: linear-gradient(135deg, rgba(49, 46, 129, 0.5), rgba(15, 23, 42, 0.9));
}
.wt-methodology details {
    border-radius: 0.5rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 0.65rem 0.85rem;
    margin-bottom: 0.5rem;
}
.wt-methodology summary {
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    list-style: none;
}
.wt-methodology summary::-webkit-details-marker {
    display: none;
}
.wt-narrative-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    font-size: 12px;
    line-height: 1.5;
}
.wt-narrative-list--strength li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 800;
}
.wt-narrative-list--watch li::before {
    content: '!';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: 800;
}
.wt-peer-table {
    width: 100%;
    font-size: 11px;
}
.wt-peer-table th {
    text-align: left;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    padding-bottom: 0.5rem;
}
.wt-peer-table td {
    padding: 0.5rem 0;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}
