/* ============================================
   Exposición — Modelo Predictivo IA · UNI-FIIS
   Tema visual personalizado
   ============================================ */

:root {
    --uni-red: #b71c1c;
    --uni-red-deep: #7a0019;
    --uni-red-light: #e53935;
    --ink: #1a1a2e;
    --ink-soft: #2c3e50;
    --paper: #ffffff;
    --paper-soft: #fafafa;
    --line: #e6e6ec;
    --muted: #6b7280;
    --accent: #f59e0b;
    --green: #22c55e;
    --yellow: #facc15;
    --red: #ef4444;
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --teal: #14b8a6;
}

.reveal {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    font-size: 28px;
    font-weight: 400;
}

.reveal h1, .reveal h2, .reveal h3, .reveal h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 0.4em;
}

.reveal pre {
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
    border-radius: 12px;
    width: 92%;
    font-size: 0.55em;
}

.reveal pre code {
    padding: 1.2em 1.4em;
    border-radius: 12px;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.5;
    max-height: 480px;
}

.reveal section { text-align: left; }
.reveal section.slide-cover { text-align: center; }

/* ============== Slide title ============== */
.slide-title {
    font-size: 1.6em;
    color: var(--uni-red);
    border-bottom: 3px solid var(--uni-red);
    padding-bottom: 0.2em;
    margin-bottom: 0.6em;
    display: inline-block;
}
.sub-h { color: var(--uni-red-deep); font-size: 1.05em; margin-top: 0.6em; margin-bottom: 0.4em; }
.sub-h.center { text-align: center; }

/* ============== Cover slide ============== */
.cover-wrapper { color: white; text-align: center; padding: 0 2em; }
.cover-badge {
    display: inline-block;
    padding: 0.4em 1.2em;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 999px;
    font-size: 0.55em;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1em;
    color: rgba(255,255,255,0.95);
}
.cover-title {
    color: white !important;
    font-size: 2.1em;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 0.4em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.cover-title .highlight {
    background: linear-gradient(90deg, #ffd54f, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cover-subtitle {
    color: rgba(255,255,255,0.92) !important;
    font-size: 0.85em;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto 1em;
    line-height: 1.4;
}
.cover-divider {
    width: 80px; height: 3px; background: white;
    margin: 1em auto;
    opacity: 0.7;
}
.cover-meta {
    color: rgba(255,255,255,0.95);
    font-size: 0.55em;
    line-height: 2;
}

/* ============== Team ============== */
.team-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 1em;
    margin: 1em 0;
}
.team-card {
    background: var(--paper-soft);
    border: 1px solid var(--line);
    border-top: 4px solid var(--uni-red-light);
    padding: 1em 0.9em;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.2s;
}
.team-card.lead {
    background: linear-gradient(135deg, var(--uni-red-deep), var(--uni-red));
    color: white;
    border: none;
    box-shadow: 0 8px 24px rgba(183,28,28,0.3);
}
.team-card.lead .team-role,
.team-card.lead .team-name,
.team-card.lead .team-tag { color: white; }
.team-role {
    font-size: 0.5em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.6em;
}
.team-name { font-size: 0.7em; font-weight: 600; line-height: 1.3; }
.team-tag {
    display: inline-block;
    margin-top: 0.5em;
    font-size: 0.45em;
    padding: 0.3em 0.7em;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 999px;
}
.team-footer {
    text-align: center;
    margin-top: 1em;
    font-size: 0.55em;
    color: var(--muted);
}

/* ============== Agenda ============== */
.agenda-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7em;
    margin-top: 0.5em;
}
.agenda-item {
    display: flex;
    align-items: center;
    gap: 0.7em;
    background: var(--paper-soft);
    border: 1px solid var(--line);
    border-left: 4px solid var(--uni-red);
    padding: 0.7em 1em;
    border-radius: 8px;
    font-size: 0.7em;
    font-weight: 500;
}
.agenda-item .num {
    font-size: 1.2em;
    font-weight: 800;
    color: var(--uni-red);
    min-width: 32px;
}
.agenda-item .time {
    margin-left: auto;
    font-size: 0.75em;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}

/* ============== Two-column ============== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5em;
    align-items: start;
}

/* ============== Lists / Features ============== */
.lead-text { font-size: 0.8em; line-height: 1.5; margin-bottom: 0.7em; }
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    padding: 0.5em 0 0.5em 1.4em;
    position: relative;
    border-bottom: 1px dashed var(--line);
    font-size: 0.7em;
    line-height: 1.4;
}
.feature-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 0.55em;
    color: var(--uni-red);
    font-weight: 700;
}
.feature-list li:last-child { border-bottom: none; }

/* ============== Visual block ============== */
.visual-block {
    background: linear-gradient(135deg, #f8f9fb, #eef2f7);
    border-radius: 16px;
    padding: 1.2em;
    text-align: center;
}
.big-icon { font-size: 3em; margin-bottom: 0.3em; }
.metric-row { display: flex; gap: 0.6em; margin-bottom: 0.6em; }
.metric {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 0.7em 0.4em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.metric-num {
    font-size: 1.4em;
    font-weight: 800;
    color: var(--uni-red);
    line-height: 1;
}
.metric-label { font-size: 0.45em; color: var(--muted); margin-top: 0.4em; text-transform: uppercase; letter-spacing: 0.05em; }

/* ============== Idea fuerza (key ideas) ============== */
.key-idea {
    background: linear-gradient(135deg, #fff8e1, #fff3c4);
    border-left: 5px solid var(--accent);
    padding: 0.9em 1.2em;
    border-radius: 8px;
    margin: 0.8em 0;
    font-size: 0.72em;
    line-height: 1.45;
}
.key-idea strong { color: var(--uni-red-deep); }
.key-label {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-size: 0.55em;
    font-weight: 700;
    padding: 0.15em 0.7em;
    border-radius: 4px;
    margin-bottom: 0.4em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============== Justificación ============== */
.law-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 10px;
    padding: 0.9em 1em;
    margin-top: 0.5em;
}
.law-num {
    font-size: 0.75em;
    font-weight: 800;
    color: var(--uni-red-deep);
    margin-bottom: 0.3em;
}
.law-text { font-size: 0.6em; line-height: 1.4; color: var(--ink-soft); }

.callout {
    background: linear-gradient(135deg, var(--uni-red-deep), var(--uni-red));
    color: white;
    border-radius: 14px;
    padding: 1.2em 1.4em;
    box-shadow: 0 12px 32px rgba(183,28,28,0.25);
}
.callout-title {
    font-size: 0.8em;
    font-weight: 700;
    margin-bottom: 0.6em;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 0.4em;
}
.callout ul { list-style: none; padding: 0; margin: 0; }
.callout li {
    padding: 0.35em 0 0.35em 1.4em;
    position: relative;
    font-size: 0.7em;
    line-height: 1.4;
}
.callout li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.35em;
    color: #ffd54f;
    font-weight: 700;
}

/* ============== Objetivos ============== */
.objective-main {
    background: linear-gradient(135deg, #fff5f5, #ffe4e1);
    border: 2px solid var(--uni-red-light);
    border-radius: 14px;
    padding: 1em 1.4em;
    margin: 0.5em 0 1.2em;
    display: flex;
    align-items: center;
    gap: 1em;
}
.objective-icon { font-size: 2.4em; }
.objective-main p { font-size: 0.8em; line-height: 1.4; margin: 0; }

.obj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7em;
}
.obj-card {
    background: var(--paper-soft);
    border: 1px solid var(--line);
    padding: 0.8em 0.9em 0.8em 2.4em;
    border-radius: 8px;
    position: relative;
    font-size: 0.62em;
    line-height: 1.35;
    min-height: 64px;
    display: flex;
    align-items: center;
}
.obj-n {
    position: absolute;
    left: 0.6em;
    top: 50%;
    transform: translateY(-50%);
    background: var(--uni-red);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1em;
}

/* ============== Estado del Arte ============== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8em;
}
.tech-card {
    background: var(--paper-soft);
    border: 1px solid var(--line);
    border-top: 3px solid var(--blue);
    border-radius: 10px;
    padding: 0.9em 1em;
}
.tech-card:nth-child(2) { border-top-color: var(--purple); }
.tech-card:nth-child(3) { border-top-color: var(--teal); }
.tech-card:nth-child(4) { border-top-color: var(--accent); }
.tech-card:nth-child(5) { border-top-color: var(--green); }
.tech-card:nth-child(6) { border-top-color: var(--uni-red); }
.tech-h { font-size: 0.7em; font-weight: 700; color: var(--ink); margin-bottom: 0.3em; }
.tech-card p { font-size: 0.55em; color: var(--muted); line-height: 1.4; margin: 0; }

/* ============== Findings ============== */
.finding-list { display: flex; flex-direction: column; gap: 0.6em; }
.finding {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1em;
    align-items: center;
    background: var(--paper-soft);
    border: 1px solid var(--line);
    border-left: 4px solid var(--uni-red);
    border-radius: 8px;
    padding: 0.7em 1em;
}
.finding-pct {
    background: linear-gradient(135deg, var(--uni-red-deep), var(--uni-red));
    color: white;
    font-weight: 800;
    font-size: 1em;
    padding: 0.4em 0.5em;
    border-radius: 8px;
    text-align: center;
}
.finding-text { font-size: 0.65em; line-height: 1.4; }

/* ============== Hipótesis ============== */
.hypothesis-block {
    color: white;
    text-align: center;
    padding: 0 2em;
}
.hypothesis-label {
    font-size: 0.55em;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1em;
    font-weight: 600;
}
.hypothesis-text {
    font-size: 1.4em;
    color: white !important;
    line-height: 1.4;
    font-weight: 300;
    max-width: 1000px;
    margin: 0 auto;
}
.hypothesis-text .hl {
    background: linear-gradient(120deg, transparent 0%, transparent 4%, rgba(229, 57, 53, 0.7) 4%, rgba(229, 57, 53, 0.7) 96%, transparent 96%);
    padding: 0 0.2em;
    color: white;
    font-weight: 600;
}

/* ============== Variables ============== */
.var-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7em;
}
.var-card {
    background: var(--paper-soft);
    border-radius: 10px;
    padding: 0.8em 0.9em;
    border-left: 4px solid;
}
.var-academic { border-left-color: var(--blue); }
.var-demo { border-left-color: var(--teal); }
.var-psy { border-left-color: var(--purple); }
.var-inst { border-left-color: var(--accent); }
.var-beh { border-left-color: var(--green); }
.var-eco { border-left-color: var(--uni-red); }

.var-icon { font-size: 1.4em; margin-bottom: 0.2em; }
.var-h { font-weight: 700; font-size: 0.7em; margin-bottom: 0.4em; }
.var-card ul { padding-left: 1em; margin: 0; }
.var-card li { font-size: 0.5em; line-height: 1.4; color: var(--ink-soft); }

/* ============== Pipeline ============== */
.pipeline {
    display: flex;
    align-items: stretch;
    gap: 0.4em;
    margin: 1em 0;
}
.pipe-step {
    flex: 1;
    background: linear-gradient(135deg, #fff5f5, #ffe4e1);
    border: 2px solid var(--uni-red-light);
    border-radius: 10px;
    padding: 0.7em 0.5em;
    text-align: center;
}
.pipe-n {
    background: var(--uni-red);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin: 0 auto 0.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8em;
}
.pipe-h { font-weight: 700; font-size: 0.6em; color: var(--uni-red-deep); margin-bottom: 0.3em; }
.pipe-t { font-size: 0.45em; color: var(--ink-soft); line-height: 1.3; }
.pipe-arrow {
    display: flex;
    align-items: center;
    color: var(--uni-red);
    font-size: 1.4em;
    font-weight: 700;
}
.balance-note {
    background: #fef3c7;
    border-left: 4px solid var(--accent);
    padding: 0.6em 1em;
    border-radius: 6px;
    font-size: 0.65em;
    margin-top: 0.5em;
}

/* ============== Protocolo ============== */
.slide-intro { font-size: 0.7em; color: var(--muted); margin-bottom: 0.8em; line-height: 1.4; }
.protocol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7em;
}
.protocol-card {
    background: var(--paper-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.8em 0.9em;
    transition: all 0.2s;
}
.protocol-card:hover { transform: translateY(-2px); }
.proto-h {
    font-weight: 700;
    color: var(--uni-red);
    font-size: 0.65em;
    margin-bottom: 0.3em;
}
.protocol-card p { font-size: 0.55em; color: var(--ink-soft); line-height: 1.4; margin: 0; }

/* ============== Warning callout ============== */
.warn-callout {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid var(--accent);
    border-radius: 14px;
    padding: 1.2em 1.4em;
}
.warn-h {
    font-size: 0.85em;
    font-weight: 800;
    color: #9a3412;
    margin-bottom: 0.5em;
}
.warn-callout p { font-size: 0.7em; line-height: 1.4; }
.impact-row { margin-top: 1em; }
.impact-bar {
    display: flex;
    height: 28px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.4em;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}
.impact-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.6em;
    font-weight: 700;
}
.seg-1 { background: var(--purple); }
.seg-2 { background: var(--blue); }
.seg-3 { background: #d1d5db; color: var(--ink-soft); }
.impact-legend { font-size: 0.55em; display: flex; gap: 1em; margin: 0.4em 0; }
.lg-1 { color: var(--purple); }
.lg-2 { color: var(--blue); }
.lg-3 { color: var(--ink-soft); }
.impact-total {
    background: var(--uni-red);
    color: white;
    padding: 0.5em 1em;
    border-radius: 6px;
    font-size: 0.7em;
    text-align: center;
    margin-top: 0.5em;
}

/* ============== Phases ============== */
.phase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
    margin-top: 0.5em;
}
.phase-card {
    background: var(--paper-soft);
    border: 1px solid var(--line);
    border-top: 5px solid var(--uni-red);
    border-radius: 12px;
    padding: 1em 1em 0.8em;
}
.phase-card:nth-child(2) { border-top-color: var(--accent); }
.phase-card:nth-child(3) { border-top-color: var(--green); }

.phase-num {
    display: inline-block;
    background: var(--uni-red);
    color: white;
    padding: 0.2em 0.7em;
    border-radius: 4px;
    font-size: 0.55em;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 0.4em;
}
.phase-card:nth-child(2) .phase-num { background: var(--accent); }
.phase-card:nth-child(3) .phase-num { background: var(--green); }

.phase-h { font-size: 0.85em; font-weight: 700; margin-bottom: 0.5em; }
.phase-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.55em;
    color: var(--muted);
    border-bottom: 1px dashed var(--line);
    padding-bottom: 0.4em;
    margin-bottom: 0.5em;
    font-weight: 600;
}
.phase-card ul { padding-left: 1em; margin: 0; }
.phase-card li { font-size: 0.55em; line-height: 1.5; }

/* ============== Tables ============== */
.metric-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.65em;
    background: var(--paper-soft);
    border-radius: 8px;
    overflow: hidden;
}
.metric-table thead {
    background: linear-gradient(135deg, var(--uni-red-deep), var(--uni-red));
    color: white;
}
.metric-table th { padding: 0.55em 0.8em; text-align: left; font-weight: 600; }
.metric-table td { padding: 0.5em 0.8em; border-bottom: 1px solid var(--line); }
.metric-table tbody tr:hover { background: #fff5f5; }
.metric-table tbody tr:last-child td { border-bottom: none; }
.muted { color: var(--muted); font-size: 0.65em; }

/* ============== Code note ============== */
.code-note {
    background: #f0fdf4;
    border-left: 4px solid var(--green);
    padding: 0.5em 1em;
    border-radius: 6px;
    font-size: 0.6em;
    margin-top: 0.6em;
}

/* ============== Risk traffic ============== */
.risk-traffic {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    background: var(--ink);
    padding: 1.2em;
    border-radius: 16px;
}
.light {
    display: flex;
    align-items: center;
    gap: 0.7em;
    color: white;
    font-size: 0.75em;
    font-weight: 600;
}
.light .dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 0 12px currentColor;
}
.light-green .dot { background: var(--green); color: var(--green); }
.light-yellow .dot { background: var(--yellow); color: var(--yellow); }
.light-red .dot { background: var(--red); color: var(--red); }

/* ============== Bot grid ============== */
.bot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8em;
}
.bot-card {
    background: linear-gradient(135deg, #f8f9fb, #eef2f7);
    border-radius: 12px;
    padding: 0.9em 1em;
    text-align: center;
}
.bot-icon { font-size: 1.7em; margin-bottom: 0.2em; }
.bot-h { font-weight: 700; color: var(--uni-red); font-size: 0.75em; margin-bottom: 0.3em; }
.bot-card p { font-size: 0.55em; color: var(--ink-soft); line-height: 1.4; margin: 0; }

/* ============== Alert system ============== */
.alert-system {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8em;
}
.alert-block {
    background: var(--paper-soft);
    border: 1px solid var(--line);
    border-left: 5px solid var(--uni-red);
    padding: 0.8em 1em;
    border-radius: 10px;
}
.alert-h { font-size: 0.8em; font-weight: 700; margin-bottom: 0.3em; color: var(--uni-red-deep); }
.alert-block p { font-size: 0.6em; line-height: 1.4; margin: 0; color: var(--ink-soft); }

/* ============== Conclusiones ============== */
.concl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8em;
}
.concl-card {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 0.8em;
    background: var(--paper-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.9em 1em;
    align-items: center;
    font-size: 0.65em;
    line-height: 1.45;
}
.concl-n {
    background: linear-gradient(135deg, var(--uni-red-deep), var(--uni-red));
    color: white;
    font-size: 1.5em;
    font-weight: 800;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============== References ============== */
.refs {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 1.5em;
    font-size: 0.55em;
    line-height: 1.5;
}
.refs li {
    padding: 0.3em 0;
    border-bottom: 1px dashed var(--line);
    break-inside: avoid;
}

/* ============== Thanks ============== */
.thanks-block { color: white; padding: 0 2em; text-align: center; }
.thanks-h {
    font-size: 4em;
    color: white !important;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.2em;
}
.thanks-divider {
    width: 80px;
    height: 4px;
    background: white;
    margin: 0.5em auto 1em;
    opacity: 0.7;
}
.thanks-sub { color: white; font-size: 0.85em; font-weight: 600; }
.thanks-team { color: rgba(255,255,255,0.85); font-size: 0.55em; }
.thanks-meta {
    color: rgba(255,255,255,0.7);
    font-size: 0.5em;
    margin-top: 0.5em;
    letter-spacing: 0.1em;
}
.thanks-question {
    margin-top: 1.5em;
    font-size: 0.7em;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 999px;
    padding: 0.6em 1.5em;
    display: inline-block;
}

/* ============== Charts ============== */
.chart-wrap {
    background: var(--paper-soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.8em;
    height: 100%;
}
.chart-title {
    font-size: 0.65em;
    font-weight: 700;
    color: var(--uni-red-deep);
    margin-bottom: 0.4em;
    text-align: center;
}
.chart-canvas-wrapper {
    position: relative;
    height: 320px;
}

/* ============== Cronograma ============== */
.cron-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.6em;
    background: white;
}
.cron-table thead {
    background: linear-gradient(135deg, var(--uni-red-deep), var(--uni-red));
    color: white;
}
.cron-table th, .cron-table td { padding: 0.5em 0.8em; text-align: left; }
.cron-table th { font-weight: 700; }
.cron-table tbody tr:nth-child(odd) { background: var(--paper-soft); }
.cron-table tbody tr:hover { background: #fff5f5; }
.cron-time { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--uni-red); }
.cron-tot td { background: var(--ink); color: white; font-weight: 700; }

/* ============== Utilities ============== */
.center { text-align: center; }
strong { color: var(--ink); }
.reveal em { color: var(--uni-red-deep); font-style: italic; }

/* Acción por trayectoria */
.trajectory-action {
    margin-top: 0.7em;
    padding: 0.5em 0.7em;
    background: var(--uni-red);
    color: white;
    border-radius: 6px;
    font-size: 0.55em;
    font-weight: 600;
    text-align: center;
}

/* MVP grid */
.mvp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9em;
}
.mvp-card {
    background: linear-gradient(135deg, #fff5f5, #ffe4e1);
    border-radius: 12px;
    padding: 0.9em 1.1em;
    border-left: 5px solid var(--uni-red);
}
.mvp-icon { font-size: 1.8em; margin-bottom: 0.2em; }
.mvp-h {
    font-weight: 800;
    color: var(--uni-red-deep);
    margin-bottom: 0.3em;
    font-size: 0.85em;
}
.mvp-card p {
    font-size: 0.62em;
    color: var(--ink-soft);
    line-height: 1.45;
    margin: 0;
}
