/* dealflow.html page-specific styles - extracted from inline */
        /* ─── DEALFLOW PRIVATE PAGE OVERRIDES ─── */
        :root {
            --df-accent: #8b5cf6;
            --df-accent-dim: rgba(139, 92, 246, 0.12);
            --df-accent-hover: #a78bfa;
            --df-accent-glow: rgba(139, 92, 246, 0.15);
            --df-green: #22c55e;
            --df-yellow: #f59e0b;
            --df-red: #ef4444;
            --df-blue: #60a5fa;
        }

        .dealflow-nav .nav-logo { background: var(--df-accent) !important; }

        .dealflow-hero {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(0,0,0,0) 60%);
            border-bottom: 1px solid rgba(139, 92, 246, 0.15);
        }

        .dealflow-hero .hero-eyebrow { color: var(--df-accent) !important; }

        /* ─── SECTION STYLING ─── */
        .df-section {
            padding: 60px 0;
            border-bottom: 1px solid var(--border);
        }

        .df-section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 32px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .df-section-title {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .df-section-badge {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 4px 10px;
            border-radius: 4px;
            background: var(--df-accent-dim);
            color: var(--df-accent);
        }

        /* ─── SCREENER ─── */
        .screener-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
        }

        .screener-filter-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .screener-filter-group label {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
        }

        .screener-filter-group select,
        .screener-filter-group input {
            background: var(--bg-tertiary);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-family: inherit;
            font-size: 13px;
            padding: 8px 12px;
            outline: none;
            transition: border-color var(--transition);
            min-width: 160px;
        }

        .screener-filter-group select:focus,
        .screener-filter-group input:focus {
            border-color: var(--df-accent);
            box-shadow: 0 0 0 3px var(--df-accent-dim);
        }

        .screener-results {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 16px;
        }

        .screener-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
            cursor: pointer;
            transition: all var(--transition);
            position: relative;
        }

        .screener-card:hover {
            border-color: var(--df-accent);
            background: var(--bg-card-hover);
            box-shadow: 0 0 20px var(--df-accent-glow);
        }

        .screener-card-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 12px;
        }

        .screener-card-name {
            font-weight: 700;
            font-size: 16px;
            color: var(--text-primary);
        }

        .screener-card-score {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 800;
            color: var(--df-accent);
            background: var(--df-accent-dim);
            padding: 2px 10px;
            border-radius: 6px;
            line-height: 1.3;
        }

        .screener-card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 12px;
        }

        .screener-badge {
            font-size: 11px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 4px;
            background: var(--bg-elevated);
            color: var(--text-secondary);
        }

        .screener-badge.sector {
            color: var(--df-accent);
            background: var(--df-accent-dim);
        }

        .screener-card-row {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: var(--text-secondary);
            padding: 4px 0;
            border-top: 1px solid var(--border);
        }

        .screener-card-row span:last-child {
            font-weight: 600;
            color: var(--text-primary);
        }

        .screener-count {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        /* ─── KANBAN ─── */
        .kanban-controls {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .kanban-add-btn {
            background: var(--df-accent);
            color: #000;
            border: none;
            border-radius: var(--radius-sm);
            padding: 8px 16px;
            font-family: inherit;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all var(--transition);
        }

        .kanban-add-btn:hover {
            background: var(--df-accent-hover);
            transform: translateY(-1px);
        }

        .kanban-board {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding-bottom: 16px;
            min-height: 450px;
        }

        .kanban-column {
            flex: 1;
            min-width: 220px;
            max-width: 280px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            display: flex;
            flex-direction: column;
        }

        .kanban-column-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 16px;
            border-bottom: 1px solid var(--border);
        }

        .kanban-column-title {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-secondary);
        }

        .kanban-column-count {
            font-size: 11px;
            font-weight: 700;
            background: var(--bg-elevated);
            color: var(--text-muted);
            padding: 2px 8px;
            border-radius: 10px;
        }

        .kanban-column-body {
            flex: 1;
            padding: 12px;
            min-height: 350px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: background var(--transition);
        }

        .kanban-column-body.drag-over {
            background: rgba(139, 92, 246, 0.06);
            border: 1px dashed var(--df-accent);
            border-radius: var(--radius-sm);
        }

        .kanban-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 12px;
            cursor: grab;
            transition: all var(--transition);
            user-select: none;
        }

        .kanban-card:active { cursor: grabbing; }

        .kanban-card:hover {
            border-color: var(--df-accent);
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        .kanban-card.dragging {
            opacity: 0.5;
            transform: rotate(2deg);
        }

        .kanban-card-name {
            font-weight: 700;
            font-size: 13px;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .kanban-card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            margin-bottom: 6px;
        }

        .kanban-card-badge {
            font-size: 10px;
            font-weight: 600;
            padding: 1px 6px;
            border-radius: 3px;
            background: var(--bg-elevated);
            color: var(--text-muted);
        }

        .kanban-card-score {
            font-size: 12px;
            font-weight: 800;
            color: var(--df-accent);
        }

        .kanban-card-valuation {
            font-size: 11px;
            color: var(--text-muted);
        }

        .kanban-card-remove {
            position: absolute;
            top: 4px;
            right: 6px;
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            font-size: 14px;
            line-height: 1;
            opacity: 0;
            transition: opacity var(--transition);
        }

        .kanban-card:hover .kanban-card-remove { opacity: 1; }
        .kanban-card { position: relative; }

        /* Add company dropdown */
        .add-company-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 360px;
            max-height: 400px;
            overflow-y: auto;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            z-index: 100;
            margin-top: 4px;
        }

        .add-company-dropdown.active { display: block; }

        .add-company-dropdown input {
            width: 100%;
            padding: 12px 16px;
            background: var(--bg-tertiary);
            border: none;
            border-bottom: 1px solid var(--border);
            color: var(--text-primary);
            font-family: inherit;
            font-size: 14px;
            outline: none;
        }

        .add-company-list {
            max-height: 320px;
            overflow-y: auto;
        }

        .add-company-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 16px;
            cursor: pointer;
            transition: background var(--transition);
            border-bottom: 1px solid var(--border);
        }

        .add-company-item:hover { background: var(--bg-elevated); }

        .add-company-item-name {
            font-weight: 600;
            font-size: 13px;
            color: var(--text-primary);
        }

        .add-company-item-sector {
            font-size: 11px;
            color: var(--text-muted);
        }

        /* ─── DEEP DIVE MODAL ─── */
        .dd-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(8px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .dd-overlay.active {
            display: flex;
        }

        .dd-modal {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            width: 100%;
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            padding: 32px;
            position: relative;
        }

        .dd-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
        }

        .dd-close:hover {
            color: var(--text-primary);
            border-color: var(--df-accent);
        }

        .dd-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 24px;
            padding-right: 40px;
        }

        .dd-company-name {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
        }

        .dd-thesis-total {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 900;
            color: var(--df-accent);
            line-height: 1;
        }

        .dd-thesis-label {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
        }

        .dd-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 24px;
        }

        .dd-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 16px;
        }

        .dd-card-title {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        /* Radar-like hex chart via CSS */
        .dd-radar {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .dd-radar-axis {
            text-align: center;
        }

        .dd-radar-bar {
            height: 6px;
            border-radius: 3px;
            background: var(--bg-elevated);
            margin: 4px 0;
            overflow: hidden;
        }

        .dd-radar-fill {
            height: 100%;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--df-accent), var(--df-accent-hover));
            transition: width 0.6s ease;
        }

        .dd-radar-label {
            font-size: 11px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .dd-radar-value {
            font-size: 16px;
            font-weight: 800;
            color: var(--df-accent);
        }

        /* Score breakdown bars */
        .dd-score-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .dd-score-label {
            font-size: 12px;
            color: var(--text-secondary);
            min-width: 90px;
        }

        .dd-score-bar-bg {
            flex: 1;
            height: 8px;
            background: var(--bg-elevated);
            border-radius: 4px;
            overflow: hidden;
        }

        .dd-score-bar-fill {
            height: 100%;
            border-radius: 4px;
            transition: width 0.6s ease;
        }

        .dd-score-val {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-primary);
            min-width: 30px;
            text-align: right;
        }

        .dd-info-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
            font-size: 13px;
        }

        .dd-info-row span:first-child { color: var(--text-muted); }
        .dd-info-row span:last-child { color: var(--text-primary); font-weight: 600; }

        .dd-predictive-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .dd-pred-card {
            text-align: center;
            padding: 12px;
            background: var(--bg-tertiary);
            border-radius: var(--radius-sm);
        }

        .dd-pred-value {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 800;
        }

        .dd-pred-label {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .dd-notes-textarea {
            width: 100%;
            min-height: 80px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-family: inherit;
            font-size: 13px;
            padding: 10px;
            resize: vertical;
            outline: none;
            transition: border-color var(--transition);
        }

        .dd-notes-textarea:focus {
            border-color: var(--df-accent);
            box-shadow: 0 0 0 3px var(--df-accent-dim);
        }

        .dd-notes-save {
            margin-top: 8px;
            background: var(--df-accent);
            color: #000;
            border: none;
            padding: 6px 16px;
            border-radius: var(--radius-sm);
            font-family: inherit;
            font-weight: 700;
            font-size: 12px;
            cursor: pointer;
            transition: all var(--transition);
        }

        .dd-notes-save:hover { background: var(--df-accent-hover); }

        /* ─── THESIS LEADERBOARD ─── */
        .leaderboard-table {
            width: 100%;
            border-collapse: collapse;
        }

        .leaderboard-table thead th {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            background: var(--bg);
        }

        .leaderboard-table tbody tr {
            transition: background var(--transition);
            cursor: pointer;
        }

        .leaderboard-table tbody tr:hover {
            background: var(--bg-card-hover);
        }

        .leaderboard-table td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border);
            font-size: 13px;
        }

        .lb-rank {
            font-family: var(--font-display);
            font-weight: 800;
            color: var(--text-muted);
            width: 40px;
        }

        .lb-rank.top-3 { color: var(--df-accent); }

        .lb-name {
            font-weight: 700;
            color: var(--text-primary);
        }

        .lb-total {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 16px;
            color: var(--df-accent);
        }

        .lb-bar-cell {
            width: 200px;
        }

        .lb-bar-stack {
            display: flex;
            height: 10px;
            border-radius: 5px;
            overflow: hidden;
            background: var(--bg-elevated);
        }

        .lb-bar-seg {
            height: 100%;
            transition: width 0.4s ease;
        }

        .lb-bar-stage { background: #8b5cf6; }
        .lb-bar-sector { background: #60a5fa; }
        .lb-bar-innovator { background: #22c55e; }
        .lb-bar-gov { background: #f59e0b; }
        .lb-bar-founder { background: #ec4899; }
        .lb-bar-growth { background: #14b8a6; }

        .leaderboard-legend {
            display: flex;
            gap: 16px;
            margin-top: 12px;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: var(--text-muted);
        }

        .legend-dot {
            width: 8px;
            height: 8px;
            border-radius: 2px;
        }

        .leaderboard-wrapper {
            max-height: 600px;
            overflow-y: auto;
            border: 1px solid var(--border);
            border-radius: var(--radius);
        }

        /* ─── UPCOMING ROUNDS ─── */
        .rounds-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 16px;
        }

        .round-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
            transition: all var(--transition);
            cursor: pointer;
        }

        .round-card:hover {
            border-color: var(--df-accent);
            box-shadow: 0 0 16px var(--df-accent-glow);
        }

        .round-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .round-card-name {
            font-weight: 700;
            font-size: 16px;
            color: var(--text-primary);
        }

        .round-card-prob {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 18px;
            padding: 2px 8px;
            border-radius: 6px;
        }

        .round-card-prob.high { color: var(--df-green); background: rgba(34,197,94,0.12); }
        .round-card-prob.medium { color: var(--df-yellow); background: rgba(245,158,11,0.12); }
        .round-card-prob.low { color: var(--df-red); background: rgba(239,68,68,0.12); }

        .round-info {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 4px;
        }

        .round-info strong { color: var(--text-primary); }

        .round-signals {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid var(--border);
        }

        .round-signal-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 4px;
        }

        .round-signal-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--df-accent);
            flex-shrink: 0;
        }

        .round-leads {
            margin-top: 8px;
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
        }

        .round-lead-tag {
            font-size: 10px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 3px;
            background: var(--df-accent-dim);
            color: var(--df-accent);
        }

        /* ─── RISK DASHBOARD ─── */
        .risk-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
        }

        .risk-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
            cursor: pointer;
            transition: all var(--transition);
        }

        .risk-card:hover {
            background: var(--bg-card-hover);
            box-shadow: var(--shadow-md);
        }

        .risk-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .risk-card-name {
            font-weight: 700;
            font-size: 15px;
            color: var(--text-primary);
        }

        .risk-score {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 20px;
            padding: 2px 10px;
            border-radius: 6px;
        }

        .risk-score.low { color: var(--df-green); background: rgba(34,197,94,0.12); }
        .risk-score.medium { color: var(--df-yellow); background: rgba(245,158,11,0.12); }
        .risk-score.high { color: var(--df-red); background: rgba(239,68,68,0.12); }

        .risk-bar-bg {
            height: 6px;
            background: var(--bg-elevated);
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 8px;
        }

        .risk-bar-fill {
            height: 100%;
            border-radius: 3px;
            transition: width 0.6s ease;
        }

        .risk-analysis {
            font-size: 12px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .risk-runway {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 6px;
        }

        .risk-runway strong { color: var(--text-primary); }

        /* ─── PERSONAL NOTES ─── */
        .notes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 16px;
        }

        .note-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
        }

        .note-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .note-card-company {
            font-weight: 700;
            font-size: 16px;
            color: var(--text-primary);
        }

        .note-card-founder-badge {
            font-size: 10px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 4px;
            background: rgba(34,197,94,0.12);
            color: var(--df-green);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .note-quote {
            font-style: italic;
            font-size: 13px;
            color: var(--text-secondary);
            border-left: 3px solid var(--df-accent);
            padding-left: 12px;
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .note-trip {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .note-insight {
            font-size: 12px;
            color: var(--df-accent);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .note-date {
            font-size: 11px;
            color: var(--text-muted);
        }

        .note-custom {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid var(--border);
        }

        .note-custom-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .note-custom-title {
            font-size: 11px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .note-edit-btn {
            background: none;
            border: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 4px;
            cursor: pointer;
            transition: all var(--transition);
        }

        .note-edit-btn:hover {
            border-color: var(--df-accent);
            color: var(--df-accent);
        }

        /* ─── ADD NOTE FORM ─── */
        .add-note-section {
            margin-top: 24px;
            padding: 20px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
        }

        .add-note-section h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .add-note-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .add-note-row select,
        .add-note-row textarea {
            background: var(--bg-tertiary);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-family: inherit;
            font-size: 13px;
            padding: 8px 12px;
            outline: none;
        }

        .add-note-row select { min-width: 200px; }
        .add-note-row textarea { flex: 1; min-width: 300px; min-height: 60px; resize: vertical; }

        /* ─── FOOTER ─── */
        .df-footer {
            padding: 32px 0;
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid var(--border);
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 768px) {
            .kanban-board { flex-direction: column; }
            .kanban-column { max-width: 100%; }
            .dd-grid { grid-template-columns: 1fr; }
            .dd-predictive-grid { grid-template-columns: 1fr; }
            .screener-results { grid-template-columns: 1fr; }
            .lb-bar-cell { display: none; }
        }

/* ─── ROS FUND PIPELINE ─── */
.ros-pipeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.ros-pipeline-card {
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: background 0.2s;
}
.ros-pipeline-card:hover {
  background: rgba(255,255,255,0.06);
}
.ros-pipeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.ros-pipeline-conviction {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'SF Mono', monospace;
}
.ros-pipeline-type {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  text-transform: capitalize;
}
.ros-pipeline-company {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
}
.ros-pipeline-insight {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0 0 12px 0;
}
.ros-pipeline-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}
.ros-pipeline-footer span {
  color: rgba(255,255,255,0.25);
  font-family: 'SF Mono', monospace;
}
.ros-pipeline-footer a {
  color: #FF6B2C;
  text-decoration: none;
  font-weight: 600;
}
.ros-pipeline-footer a:hover {
  text-decoration: underline;
}

/* ─── MOBILE GRID OVERRIDES ─── */
@media (max-width: 768px) {
  .dd-radar { grid-template-columns: 1fr; }
  .rounds-grid { grid-template-columns: 1fr; }
  .risk-grid { grid-template-columns: 1fr; }
  .notes-grid { grid-template-columns: 1fr; }
  .ros-pipeline-grid { grid-template-columns: 1fr; }
}
