/* Reporting Ragencia — identité graphique ragencia.com
   Palette : base #EFE6FA, encre #1A0B2E, accents #7B2CBF / #C77DFF / #C026D3
   Fonts : Instrument Serif (titres), Inter (texte), JetBrains Mono (chiffres) */

:root {
  --base: #EFE6FA;
  --surface: #FFFFFF;
  --elev: #F7F1FC;
  --fg: #1A0B2E;
  --muted: #5A4D70;
  --dim: #8A7E9E;
  --accent: #7B2CBF;
  --accent-soft: #C77DFF;
  --pink: #C026D3;
  --deep: #3A1C71;
  --border: rgba(58, 28, 113, 0.10);
  --border-strong: rgba(58, 28, 113, 0.22);
  --glow: rgba(60, 20, 140, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--base);
  background-image: radial-gradient(1100px 500px at 80% -10%, rgba(199, 125, 255, 0.18), transparent 60%),
                    radial-gradient(900px 420px at -10% 20%, rgba(192, 38, 211, 0.08), transparent 55%);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15.5px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }
main.container { flex: 1; padding-bottom: 64px; }

h1, h2, h3, .serif { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; letter-spacing: 0.01em; }
h1 { font-size: 2.6rem; margin: 0.4em 0 0.3em; }
h2 { font-size: 1.9rem; margin: 1.6em 0 0.6em; color: var(--deep); }
h3 { font-size: 1.25rem; margin: 0 0 0.5em; color: var(--deep); }
.serif-italic { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; color: var(--accent); }
.mono, code { font-family: 'JetBrains Mono', monospace; font-size: 0.92em; }
.muted { color: var(--muted); }
.lead { font-size: 1.15rem; color: var(--muted); }
.prewrap { white-space: pre-wrap; }
a { color: var(--accent); text-decoration: none; transition: color 0.32s var(--ease); }
a:hover { color: var(--pink); }

/* ---- Topbar ---- */
.topbar {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 12px; padding-bottom: 12px; flex-wrap: wrap; }
.brand { display: flex; align-items: baseline; gap: 12px; }
.brand img { height: 26px; width: auto; display: block; }
.brand-sub { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; color: var(--muted); font-size: 1.05rem; }
.mainnav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.mainnav a { padding: 6px 11px; border-radius: 999px; color: var(--muted); font-size: 0.92rem; }
.mainnav a.active { background: var(--fg); color: #fff; }
.mainnav a:hover:not(.active) { background: var(--glow); color: var(--fg); }
.mainnav .nav-alt { color: var(--dim); font-size: 0.85rem; }
.langswitch { margin-left: 10px; color: var(--dim); font-size: 0.85rem; }
.langswitch a { padding: 4px 6px; }
.langswitch a.active { color: var(--fg); font-weight: 600; }

/* ---- Hero / sections ---- */
.hero { padding-top: 34px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.flash {
  margin-top: 18px; padding: 12px 18px; border-radius: 12px;
  background: rgba(123, 44, 191, 0.10); border: 1px solid var(--border-strong); color: var(--deep);
}
.alert {
  margin: 14px 0; padding: 12px 16px; border-radius: 12px;
  background: rgba(222, 42, 12, 0.08); border: 1px solid rgba(222, 42, 12, 0.25); color: #9c1c06;
}

/* ---- KPI grid ---- */
.kpi-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px; margin: 22px 0;
}
.kpi {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 18px; box-shadow: 0 10px 30px -18px var(--glow);
  display: flex; flex-direction: column; gap: 4px;
}
.kpi-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dim); }
.kpi-value { font-family: 'JetBrains Mono', monospace; font-size: 1.45rem; color: var(--fg); }
.kpi-value small { font-size: 0.8rem; color: var(--muted); }
.kpi-note { font-size: 0.78rem; color: var(--dim); }
.delta { font-family: 'JetBrains Mono', monospace; font-size: 0.82rem; }
.delta-up { color: #0e7a4f; }
.delta-down { color: #c02626; }

/* ---- Cards ---- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; margin: 20px 0; }
.card {
  --brand: var(--accent);
  display: block; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; color: inherit;
  border-top: 3px solid var(--brand);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
a.card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -20px rgba(60, 20, 140, 0.42); color: inherit; }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.project-name { font-family: 'Instrument Serif', Georgia, serif; font-size: 1.3rem; color: var(--brand, var(--deep)); }
.card-tagline { color: var(--muted); min-height: 2.6em; margin: 8px 0 12px; }
.card-meta { display: flex; justify-content: space-between; gap: 8px; font-size: 0.8rem; color: var(--dim); margin-top: 8px; flex-wrap: wrap; }
.card-figures { display: flex; gap: 14px; margin-top: 12px; font-size: 0.82rem; color: var(--muted); flex-wrap: wrap; align-items: center; }
.card-figures strong { font-family: 'JetBrains Mono', monospace; color: var(--fg); display: block; }

/* ---- Badges ---- */
.badge {
  display: inline-block; padding: 2px 10px; border-radius: 999px;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--elev); border: 1px solid var(--border-strong); color: var(--muted);
  font-family: 'Inter', sans-serif; white-space: nowrap;
}
.badge-live { background: rgba(14, 122, 79, 0.10); border-color: rgba(14, 122, 79, 0.3); color: #0e7a4f; }
.badge-dev { background: rgba(123, 44, 191, 0.10); border-color: rgba(123, 44, 191, 0.3); color: var(--accent); }
.badge-soon { background: rgba(219, 39, 119, 0.08); border-color: rgba(219, 39, 119, 0.25); color: #db2777; }
.badge-estimate { background: rgba(240, 173, 30, 0.14); border-color: rgba(200, 140, 10, 0.35); color: #8a6106; }
.badge-type { background: rgba(58, 28, 113, 0.06); }
.badge-sev-low { color: #0e7a4f; }
.badge-sev-medium { color: #8a6106; }
.badge-sev-high { color: #c02626; }
.dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 3px; }
.dot-live { background: #0e7a4f; }
.dot-dev { background: var(--accent); }
.dot-soon { background: #db2777; }

/* ---- Progress ---- */
.progress { height: 7px; background: rgba(58, 28, 113, 0.10); border-radius: 999px; overflow: hidden; }
.progress-lg { height: 10px; max-width: 480px; margin-top: 14px; }
.progress-bar {
  height: 100%; border-radius: 999px;
  background: linear-gradient(120deg, var(--brand, var(--accent)), var(--accent-soft));
  transition: width 1.1s var(--ease);
}

/* ---- Tables ---- */
.table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.table th, .table td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.table th { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dim); background: var(--elev); font-weight: 600; }
.table tr:last-child td { border-bottom: none; }
.table .num { text-align: right; }
.table-wide { margin: 16px 0 28px; display: block; overflow-x: auto; }
.table-wide table, table.table-wide { min-width: 640px; }

/* ---- Panels / layout ---- */
.two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px; margin: 18px 0; align-items: start; }
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; }
.figures { display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; margin: 0; }
.figures dt { color: var(--muted); font-size: 0.88rem; }
.figures dd { margin: 0; text-align: right; font-family: 'JetBrains Mono', monospace; font-size: 0.92rem; }
.partner-list { padding-left: 18px; }
.partner-list li { margin-bottom: 6px; }
.project-hero .project-title { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.quarter-nav { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---- News ---- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 18px; margin: 20px 0; }
.news-card { padding: 0; overflow: hidden; }
.news-card video, .news-card .video-frame { width: 100%; aspect-ratio: 16 / 9; background: #0d0518; display: block; border: none; }
.video-frame { position: relative; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.news-body { padding: 16px 20px 20px; }
.news-body h3 { margin-top: 0; }

/* ---- Auth ---- */
.auth-card {
  max-width: 430px; margin: 8vh auto 0; background: var(--surface);
  border: 1px solid var(--border); border-radius: 22px; padding: 36px;
  box-shadow: 0 30px 80px -30px rgba(60, 20, 140, 0.42);
  text-align: center;
}
.auth-card h1 { font-size: 2rem; margin-top: 0; }
.auth-card form { text-align: left; margin-top: 18px; }
.auth-alt { margin-top: 20px; font-size: 0.88rem; }
.qrcode { display: flex; justify-content: center; margin: 18px 0; }
.qrcode img { border: 8px solid #fff; border-radius: 8px; }
.totp-input { font-family: 'JetBrains Mono', monospace; font-size: 1.4rem; letter-spacing: 0.4em; text-align: center; }
.totp-secret { display: inline-block; margin-top: 6px; background: var(--elev); padding: 6px 10px; border-radius: 8px; }

/* ---- Forms ---- */
label { display: block; margin-bottom: 14px; font-size: 0.88rem; color: var(--muted); }
input, select, textarea {
  display: block; width: 100%; margin-top: 5px; padding: 10px 12px;
  border: 1px solid var(--border-strong); border-radius: 10px;
  background: #fff; color: var(--fg); font: inherit; font-size: 0.95rem;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--accent-soft); border-color: var(--accent); }
input[type="color"] { height: 44px; padding: 4px; width: 90px; }
input[type="checkbox"] { display: inline-block; width: auto; margin-right: 8px; }
label.check { display: flex; align-items: center; color: var(--fg); }
.btn {
  display: inline-block; padding: 9px 18px; border-radius: 999px; cursor: pointer;
  background: var(--surface); color: var(--fg); border: 1px solid var(--border-strong);
  font: inherit; font-size: 0.9rem; transition: all 0.32s var(--ease);
}
.btn:hover { border-color: var(--accent); color: var(--accent); }
.btn-primary { background: var(--fg); color: #fff; border-color: var(--fg); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-danger { border-color: rgba(192, 38, 38, 0.4); color: #c02626; }
.btn-danger:hover { background: #c02626; border-color: #c02626; color: #fff; }
.form-grid fieldset {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 22px; margin: 0 0 18px;
}
.form-grid legend { font-family: 'Instrument Serif', Georgia, serif; font-size: 1.15rem; color: var(--deep); padding: 0 8px; }
.form-grid button[type="submit"] { margin: 6px 0 30px; }
.inline-form { display: flex; align-items: flex-end; gap: 12px; margin-top: 12px; }
.inline-form label { margin-bottom: 0; }
.fieldset-wide input { min-width: 90px; }

/* Cap table row editor */
.row-grid, .row-grid-head {
  display: grid; grid-template-columns: 1.2fr 1.4fr 0.5fr 1.2fr auto auto;
  gap: 10px; align-items: center; padding: 8px 12px;
}
.row-grid { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 8px; }
.row-grid input { margin-top: 0; }
.row-grid-head { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dim); }

/* ---- Footer ---- */
.footer { border-top: 1px solid var(--border); padding: 18px 0; margin-top: auto; }
.footer .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.82rem; color: var(--dim); }
.footer-conf { font-style: italic; }

/* ============ Vue hybride fonds × studio ============ */

/* Héro valorisation — carte sombre premium */
.valo-hero {
  margin-top: 30px;
  background: linear-gradient(135deg, #1A0B2E 0%, #3A1C71 55%, #4c1d95 100%);
  border-radius: 26px;
  padding: 38px 40px 30px;
  color: #EFE6FA;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 90px -35px rgba(60, 20, 140, 0.65);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.valo-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(700px 300px at 85% -20%, rgba(199, 125, 255, 0.35), transparent 60%),
              radial-gradient(500px 260px at -5% 110%, rgba(192, 38, 211, 0.25), transparent 55%);
  pointer-events: none;
}
.valo-main, .valo-side { position: relative; }
.valo-label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; color: #C77DFF; }
.valo-figure {
  display: block; font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(3rem, 7vw, 4.6rem); line-height: 1.05; margin: 8px 0 6px; color: #fff;
}
.valo-sub { display: block; font-size: 0.88rem; color: rgba(239, 230, 250, 0.65); max-width: 420px; }
.valo-side { display: flex; flex-direction: column; justify-content: center; gap: 14px; border-left: 1px solid rgba(199, 125, 255, 0.25); padding-left: 28px; }
.valo-side-num { font-family: 'JetBrains Mono', monospace; font-size: 1.5rem; color: #fff; display: block; }
.valo-side-label { font-size: 0.78rem; color: rgba(239, 230, 250, 0.6); }
.valo-hero .badge-estimate { vertical-align: middle; margin-left: 8px; }

/* Mosaïque de valeur proportionnelle */
.valo-mosaic {
  grid-column: 1 / -1; position: relative;
  display: flex; gap: 3px; height: 26px; border-radius: 8px; overflow: hidden; margin-top: 8px;
}
.mosaic-seg { min-width: 4px; opacity: 0.9; transition: opacity 0.3s, transform 0.3s; }
.mosaic-seg:hover { opacity: 1; transform: scaleY(1.12); }
.valo-legend {
  grid-column: 1 / -1; position: relative;
  display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 0.78rem; color: rgba(239, 230, 250, 0.75);
}
.valo-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 3px; margin-right: 5px; }
.valo-legend strong { color: #fff; font-family: 'JetBrains Mono', monospace; font-weight: 500; }

/* Chaîne studio → spin-off */
.pipeline { display: flex; gap: 10px; align-items: stretch; margin: 18px 0; flex-wrap: wrap; }
.pipeline-col {
  flex: 1; min-width: 220px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 16px;
}
.pipeline-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--deep); font-weight: 600;
}
.pipeline-step {
  width: 26px; height: 26px; flex: none; border-radius: 50%;
  background: var(--fg); color: #fff; display: grid; place-items: center;
  font-family: 'Instrument Serif', Georgia, serif; font-size: 0.95rem;
}
.pipeline-arrow { align-self: center; color: var(--dim); font-size: 1.4rem; }
.chip {
  --brand: var(--accent);
  display: flex; align-items: center; gap: 8px;
  background: var(--elev); border: 1px solid var(--border); border-radius: 999px;
  padding: 7px 14px; margin-bottom: 8px; color: var(--fg); font-size: 0.88rem;
  transition: all 0.3s var(--ease);
}
.chip:hover { border-color: var(--brand); transform: translateX(3px); color: var(--fg); }
.chip-dot { width: 9px; height: 9px; flex: none; border-radius: 50%; background: var(--brand); }
.chip-val { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; color: var(--muted); }

/* Table des participations */
.holdings-share { color: var(--accent); font-weight: 600; }
.holdings-total td { background: var(--elev); border-top: 2px solid var(--border-strong); }
.spark { display: inline-flex; align-items: flex-end; gap: 3px; height: 32px; }
.spark i { width: 8px; border-radius: 2px 2px 0 0; opacity: 0.85; }
.dept-card { max-width: 640px; }

/* Mini business plan */
.bp { margin-top: 10px; }
.bp-band { display: grid; grid-template-columns: 1.5fr 1fr; gap: 18px; margin: 16px 0; align-items: stretch; }
.traj-chart, .waterfall {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px;
}
.traj-bars { display: flex; align-items: flex-end; gap: 14px; height: 190px; padding-top: 10px; }
.traj-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 6px; }
.traj-col i { width: 100%; max-width: 74px; border-radius: 8px 8px 3px 3px; }
.traj-val { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--muted); }
.traj-year { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--dim); }
.waterfall .wf-step {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding: 9px 12px; background: var(--elev); border-radius: 10px; font-size: 0.9rem;
}
.waterfall .wf-op { padding: 5px 12px; color: var(--muted); font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; }
.waterfall .wf-final { background: var(--fg); color: #fff; }
.waterfall .wf-final strong { color: #C77DFF; }
.bp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.bp-panel { position: relative; border-top: 3px solid var(--brand, var(--accent)); margin-bottom: 0; }
.bp-num {
  position: absolute; top: 14px; right: 18px;
  font-family: 'Instrument Serif', Georgia, serif; font-style: italic;
  font-size: 1.6rem; color: var(--border-strong);
}

@media (max-width: 860px) {
  .valo-hero { grid-template-columns: 1fr; padding: 28px 24px 24px; }
  .valo-side { border-left: none; padding-left: 0; flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .bp-band { grid-template-columns: 1fr; }
  .pipeline-arrow { display: none; }
}

/* ============ Sous-onglets projets ============ */
.subnav {
  background: rgba(247, 241, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 51px; z-index: 40;
}
.subnav-inner {
  display: flex; gap: 6px; overflow-x: auto; padding-top: 8px; padding-bottom: 8px;
  scrollbar-width: thin;
}
.subnav-tab {
  --brand: var(--accent);
  flex: none; padding: 5px 13px; border-radius: 999px; font-size: 0.82rem;
  color: var(--muted); border: 1px solid transparent; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.subnav-tab::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--brand);
  opacity: 0.7;
}
.subnav-home::before { display: none; }
.subnav-tab:hover { border-color: var(--border-strong); color: var(--fg); background: #fff; }
.subnav-tab.active { background: var(--fg); color: #fff; border-color: var(--fg); }
.subnav-tab.active::before { background: var(--brand); opacity: 1; }

/* ============ Carte avancement × valorisation ============ */
.matrix {
  position: relative; height: 340px; margin: 18px 0 34px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: visible;
}
.matrix-grid-v, .matrix-grid-h { position: absolute; background: var(--border); pointer-events: none; }
.matrix-grid-v { top: 0; bottom: 0; width: 1px; }
.matrix-grid-h { left: 0; right: 0; height: 1px; }
.matrix-axis-x, .matrix-axis-y {
  position: absolute; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--dim);
}
.matrix-axis-x { bottom: 8px; right: 14px; }
.matrix-axis-y { top: 10px; left: 14px; }
.matrix-dot { position: absolute; transform: translate(-50%, 50%); z-index: 2; }
.matrix-dot i {
  display: block; width: var(--size, 30px); height: var(--size, 30px); border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, var(--accent-soft), var(--brand) 65%);
  border: 2px solid #fff; box-shadow: 0 8px 22px -8px var(--brand);
  transition: transform 0.32s var(--ease);
}
.matrix-dot:hover i { transform: scale(1.25); }
.matrix-dot span {
  position: absolute; left: 50%; top: 100%; transform: translateX(-50%);
  font-size: 0.72rem; color: var(--muted); white-space: nowrap; text-align: center;
  line-height: 1.25; padding-top: 3px;
}
.matrix-dot span em { display: block; font-style: normal; font-family: 'JetBrains Mono', monospace; color: var(--fg); }
.matrix-dot:hover { z-index: 5; }

/* Valeur pondérée dans le héro */
.valo-weighted {
  background: rgba(199, 125, 255, 0.12); border: 1px solid rgba(199, 125, 255, 0.3);
  border-radius: 14px; padding: 12px 16px;
}
.valo-weighted .valo-side-num { color: #C77DFF; font-size: 1.8rem; }
.valo-side-hint { display: block; font-size: 0.72rem; color: rgba(239, 230, 250, 0.5); margin-top: 4px; max-width: 300px; }

/* Avancement dans la table des participations */
.holdings-progress { min-width: 130px; }
.holdings-progress .progress { display: block; margin-bottom: 4px; --brand: var(--accent); }
.small { font-size: 0.76rem; }

/* ============ Polish général ============ */
main.container > section { margin-bottom: 14px; }
h2.serif {
  display: flex; align-items: center; gap: 14px;
}
h2.serif::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--border-strong), transparent);
}
.section-head h2.serif::after, .two-col h2.serif::after { display: none; }

/* ---- Admin ---- */
.admin-area .topbar { border-bottom: 2px solid var(--accent); }

@media (max-width: 720px) {
  h1 { font-size: 2rem; }
  .row-grid, .row-grid-head { grid-template-columns: 1fr 1fr; }
  .row-grid-head { display: none; }
}
