/* Pain Radar — dark navy + cyan, radar-aesthetic.
   Shared design system across all pages. */

:root {
    --bg:            #0a0f1c;
    --bg-elevated:   #131a2e;
    --bg-hover:      #1c2440;
    --bg-input:      #0d1424;
    --border:        #2a3454;
    --border-strong: #3b4773;
    --accent:        #22d3ee;
    --accent-dim:    #06b6d4;
    --accent-glow:   rgba(34, 211, 238, 0.18);
    --accent-soft:   rgba(34, 211, 238, 0.06);
    --text-primary:  #e2e8f0;
    --text-secondary:#94a3b8;
    --text-muted:    #64748b;
    --score-high:    #22c55e;
    --score-mid:     #f59e0b;
    --score-low:     #ef4444;
    --danger:        #ef4444;
    --success:       #22c55e;

    --radius-sm:  6px;
    --radius:    10px;
    --radius-lg: 16px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow:    0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 10px 48px rgba(0, 0, 0, 0.6);

    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body:    'Space Grotesk', system-ui, sans-serif;
    --font-mono:    'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.55;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Subtle radar-grid background — scanline feel without being noisy */
body {
    background:
        radial-gradient(ellipse 60% 40% at 20% 0%, var(--accent-soft), transparent 60%),
        radial-gradient(ellipse 50% 30% at 80% 100%, rgba(99, 102, 241, 0.08), transparent 60%),
        var(--bg);
    background-attachment: fixed;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 0.6em;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); line-height: 1.2; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--text-secondary); }

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.15s;
}
a:hover { color: var(--text-primary); }

code, .mono { font-family: var(--font-mono); font-size: 0.9em; }

/* ============================================================== layout */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================== header */

.site-header {
    border-bottom: 1px solid var(--border);
    background: rgba(10, 15, 28, 0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 24px;
}

.brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.02em;
}

.brand:hover { color: var(--text-primary); }

.brand__mark {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 0 12px var(--accent-glow);
}

.brand__mark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px var(--accent);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a, .site-nav button {
    padding: 8px 14px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    transition: background 0.15s, color 0.15s;
}

.site-nav a:hover, .site-nav button:hover {
    color: var(--text-primary);
    background: var(--bg-hover);
}

.site-nav a.active {
    color: var(--accent);
}

/* ============================================================== buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.15s;
    text-decoration: none;
    line-height: 1;
}

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

.btn-primary {
    background: var(--accent);
    color: #001018;
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-dim);
    border-color: var(--accent-dim);
    color: #001018;
    box-shadow: 0 0 24px var(--accent-glow);
}

.btn-secondary {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border-color: var(--border);
}
.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--border-strong);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border);
}
.btn-ghost:hover {
    color: var(--text-primary);
    border-color: var(--border-strong);
    background: var(--bg-elevated);
}

.btn-block { width: 100%; }

.btn-sm { padding: 6px 12px; font-size: 0.85rem; }

/* ============================================================== forms */

.form-group { margin-bottom: 18px; }

.form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-input::placeholder { color: var(--text-muted); }

.form-error {
    margin-top: 10px;
    padding: 10px 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-sm);
    color: #fca5a5;
    font-size: 0.88rem;
}

.form-success {
    margin-top: 10px;
    padding: 10px 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-sm);
    color: #86efac;
    font-size: 0.88rem;
}

.form-row {
    display: flex;
    gap: 8px;
}
.form-row .form-input { flex: 1; }

/* ============================================================== cards */

.card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    transition: border-color 0.15s, transform 0.15s;
}

.card-clickable:hover {
    border-color: var(--border-strong);
    cursor: pointer;
}

.panel {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

/* ============================================================== landing */

.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.hero__eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-glow);
    border-radius: 999px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero__title { max-width: 18ch; margin-left: auto; margin-right: auto; }
.hero__title em {
    font-style: normal;
    color: var(--accent);
}
.hero__sub {
    max-width: 60ch;
    margin: 14px auto 36px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.hero__cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.email-capture {
    display: flex;
    gap: 8px;
    max-width: 460px;
    margin: 0 auto;
}
.email-capture .form-input { flex: 1; }

.stats-strip {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin: 60px 0 80px;
    padding: 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.stats-strip__item {
    text-align: center;
}

.stats-strip__num {
    font-family: var(--font-mono);
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
    line-height: 1;
}

.stats-strip__label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}

.section { padding: 60px 0; }
.section__title {
    text-align: center;
    margin-bottom: 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step {
    text-align: center;
    padding: 24px;
}

.step__num {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-family: var(--font-mono);
    font-weight: 700;
    box-shadow: 0 0 16px var(--accent-glow);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
}

.preview-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, var(--bg) 100%);
    pointer-events: none;
}

.footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    margin-top: 80px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ============================================================== dashboard */

.controls-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin: 24px 0;
    padding: 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.controls-bar .form-input,
.controls-bar .form-select { width: auto; flex: 1; min-width: 0; max-width: 320px; }

.toggle {
    display: inline-flex;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.toggle button {
    background: transparent;
    border: none;
    padding: 10px 16px;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.88rem;
    transition: all 0.15s;
}
.toggle button.active {
    background: var(--accent);
    color: #001018;
    font-weight: 600;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .dashboard-layout { grid-template-columns: 1fr; }
}

.opp-list { display: flex; flex-direction: column; gap: 14px; }

.opp-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: border-color 0.15s, transform 0.15s;
}

.opp-card:hover {
    border-color: var(--border-strong);
}

.opp-card__head {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.score-tile {
    flex-shrink: 0;
    width: 88px;
    text-align: center;
    padding: 14px 0;
    border-radius: var(--radius-sm);
    background: var(--bg-input);
    border: 1px solid var(--border);
}

.score-tile__num {
    font-family: var(--font-mono);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}
.score-tile__label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.score-high .score-tile__num { color: var(--score-high); }
.score-high { box-shadow: 0 0 16px rgba(34, 197, 94, 0.18); }
.score-mid  .score-tile__num { color: var(--score-mid); }
.score-low  .score-tile__num { color: var(--score-low); }

.opp-card__body { flex: 1; min-width: 0; }
.opp-card__label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px;
    font-family: var(--font-display);
}

.opp-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.badge-accent {
    background: var(--accent-soft);
    border-color: var(--accent-glow);
    color: var(--accent);
}

.opp-card__expand {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    display: none;
}
.opp-card.is-expanded .opp-card__expand { display: block; }

.opp-card__summary {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.opp-card__commercial {
    background: var(--accent-soft);
    border-left: 3px solid var(--accent);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.quotes {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.quotes li {
    padding: 10px 14px;
    margin-bottom: 6px;
    background: var(--bg-input);
    border-left: 2px solid var(--border-strong);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-style: italic;
}

.factor-bars { display: flex; flex-direction: column; gap: 8px; }

.factor-bar { display: grid; grid-template-columns: 110px 1fr 40px; align-items: center; gap: 10px; }
.factor-bar__label { font-size: 0.78rem; color: var(--text-secondary); }
.factor-bar__track {
    height: 6px;
    background: var(--bg-input);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}
.factor-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-dim), var(--accent));
    border-radius: 999px;
    transition: width 0.4s;
}
.factor-bar__val {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-primary);
    text-align: right;
}

.expand-toggle {
    margin-top: 12px;
    color: var(--accent);
    background: none;
    border: none;
    padding: 4px 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
}
.expand-toggle:hover { color: var(--text-primary); }

.upgrade-inline {
    margin-top: 14px;
    padding: 14px 16px;
    background: var(--accent-soft);
    border: 1px dashed var(--accent);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.upgrade-banner {
    margin: 24px 0;
    padding: 24px;
    background: linear-gradient(135deg, var(--accent-soft), transparent);
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.upgrade-banner h3 { margin: 0 0 4px; color: var(--text-primary); }
.upgrade-banner p { margin: 0; font-size: 0.92rem; }

/* ============================================================== weight panel */

.weight-panel { position: sticky; top: 100px; align-self: start; }

.weight-panel__locked {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 28, 0.88);
    backdrop-filter: blur(2px);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px;
    z-index: 2;
}

.slider-row {
    margin-bottom: 14px;
}
.slider-row__head {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.slider-row__val {
    font-family: var(--font-mono);
    color: var(--text-primary);
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: var(--bg-input);
    border-radius: 999px;
    outline: none;
    border: 1px solid var(--border);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--bg-elevated);
    box-shadow: 0 0 10px var(--accent-glow);
}
input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--bg-elevated);
}

.weights-total {
    margin: 14px 0;
    padding: 10px 12px;
    background: var(--bg-input);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.weights-total.is-bad { color: var(--score-low); border: 1px solid rgba(239, 68, 68, 0.3); }
.weights-total.is-good { color: var(--score-high); }

/* ============================================================== pricing */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 40px 0;
}

@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
}

.pricing-card--featured {
    border-color: var(--accent);
    box-shadow: 0 0 32px var(--accent-glow);
    position: relative;
}

.pricing-card--featured::before {
    content: 'Most popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #001018;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 999px;
}

.pricing-card__name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.pricing-card__tagline { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 20px; }

.pricing-card__price {
    font-family: var(--font-mono);
    font-size: 2.6rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1;
}

.pricing-card__price--strike {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    margin-left: 8px;
    font-weight: 400;
}

.pricing-card__price-sub {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.feature-list .yes { color: var(--score-high); font-weight: 700; }
.feature-list .no { color: var(--text-muted); }
.feature-list .soon { color: var(--score-mid); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* Flagship feature row — highlights the headline Pro deliverable (S29). */
.feature-list li.flagship {
    align-items: flex-start;
    background: var(--accent-soft);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 6px;
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.45;
}
.feature-list li.flagship .star { color: var(--accent); font-weight: 700; font-size: 1.05rem; line-height: 1.4; }
.feature-list li.flagship strong { color: var(--accent); }

/* ============================================================== auth pages */

.auth-shell {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow);
}

.auth-toggle-text {
    text-align: center;
    margin-top: 18px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================================== utilities */

.muted { color: var(--text-muted); }
.dim   { color: var(--text-secondary); }
.center { text-align: center; }
.mono  { font-family: var(--font-mono); }

.hide  { display: none !important; }

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}

@keyframes spin { to { transform: rotate(360deg); } }

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .container, .container-narrow { padding: 0 16px; }
    .hero { padding: 50px 0 30px; }
    .stats-strip { gap: 24px; padding: 20px; }
    .steps { grid-template-columns: 1fr; }
    .preview-grid { grid-template-columns: 1fr; }
    .opp-card__head { flex-direction: column; gap: 10px; }
    .score-tile { width: 100%; }
    .site-nav a, .site-nav button { padding: 6px 10px; font-size: 0.85rem; }
}

/* S17 — Opportunity Brief (Pro feature) */
.brief-section {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed var(--border);
}
.brief-section--locked .brief-locked-cta {
    background: var(--accent-soft);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
}
.brief-content { margin-top: 14px; }
.brief-content.hide { display: none; }
.brief-card {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    color: var(--text-primary);
}
.brief-meta {
    font-size: 0.78rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-mono);
}
.brief-card h2.brief-h2,
.brief-card h3.brief-h3 {
    color: var(--accent);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 18px 0 8px;
}
.brief-card h2.brief-h2:first-child { margin-top: 0; }
.brief-card h4.brief-h4 { color: var(--text-primary); margin: 14px 0 6px; }
.brief-card p {
    color: var(--text-secondary);
    margin: 0 0 10px;
    line-height: 1.5;
    font-size: 0.92rem;
}
.brief-card ul.brief-list,
.brief-card ol.brief-list {
    margin: 6px 0 12px;
    padding-left: 22px;
    color: var(--text-secondary);
    font-size: 0.92rem;
}
.brief-card ul.brief-list li,
.brief-card ol.brief-list li { margin-bottom: 6px; line-height: 1.5; }
.brief-card .brief-quote {
    color: var(--text-primary);
    font-style: italic;
}
.brief-empty {
    padding: 12px 14px;
    background: var(--bg-input);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
}
