/* ============================================================
 * RepeaterMock-style design — green primary, clean cards,
 * "Start Now" buttons, breadcrumb header, sticky top nav.
 * ============================================================ */

:root {
  --rm-bg: #f8fafc;
  --rm-bg-elev: #ffffff;
  --rm-primary: #16a34a;       /* RepeaterMock green */
  --rm-primary-dark: #15803d;
  --rm-primary-tint: #dcfce7;
  --rm-pro: #9333ea;            /* Pro series purple */
  --rm-pro-tint: #f3e8ff;
  --rm-sel: #0ea5e9;            /* Selection Post blue */
  --rm-sel-tint: #e0f2fe;
  --rm-text: #0f172a;
  --rm-muted: #64748b;
  --rm-border: #e2e8f0;
  --rm-border-strong: #cbd5e1;
  --rm-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --rm-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  --rm-shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
  --rm-radius: 12px;
  --rm-radius-sm: 8px;
  --rm-radius-lg: 16px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--rm-bg);
  color: var(--rm-text);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--rm-primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.rm-container { max-width: 1180px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* Header */
.rm-header {
  background: var(--rm-bg-elev);
  border-bottom: 1px solid var(--rm-border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--rm-shadow-sm);
}
.rm-header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.rm-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.rm-logo:hover { text-decoration: none; }
.rm-logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--rm-primary); color: white; font-weight: 800; font-size: 15px;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.3);
}
.rm-logo-mark-sm { width: 32px; height: 32px; font-size: 13px; }
.rm-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.rm-logo-text strong { color: var(--rm-text); font-size: 16px; font-weight: 700; }
.rm-logo-text span { color: var(--rm-primary); font-size: 13px; font-weight: 600; }
.rm-nav { display: flex; align-items: center; gap: 22px; }
.rm-nav a { color: var(--rm-text); font-weight: 500; font-size: 14px; }
.rm-nav a:hover { color: var(--rm-primary); text-decoration: none; }
.rm-lang-btn {
  padding: 6px 14px;
  border: 1px solid var(--rm-border-strong);
  border-radius: 999px;
  font-size: 13px;
  color: var(--rm-text);
  background: white;
}

/* Toast */
.rm-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--rm-text);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 100;
  box-shadow: var(--rm-shadow-lg);
}
.rm-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Loading */
.rm-loading { padding: 60px 0; text-align: center; color: var(--rm-muted); }

/* Breadcrumb (matches RepeaterMock: Home › Title) */
.rm-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 18px 0 14px;
  font-size: 14px;
  color: var(--rm-muted);
}
.rm-breadcrumb a { color: var(--rm-muted); }
.rm-breadcrumb a:hover { color: var(--rm-primary); text-decoration: none; }
.rm-breadcrumb-sep { color: var(--rm-border-strong); }

/* Series card (home page) */
.rm-series-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 18px; margin: 8px 0 30px; }
.rm-series-card {
  background: var(--rm-bg-elev);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 22px;
  box-shadow: var(--rm-shadow-sm);
  display: flex; flex-direction: column;
  transition: all 0.18s ease;
  position: relative;
  overflow: hidden;
}
.rm-series-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--card-accent, var(--rm-primary));
}
.rm-series-card:hover { transform: translateY(-3px); box-shadow: var(--rm-shadow-lg); }
.rm-series-card .tier-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--card-tint, var(--rm-primary-tint));
  color: var(--card-accent, var(--rm-primary-dark));
  margin-bottom: 12px;
}
.rm-series-card h2 { margin: 0 0 8px; font-size: 18px; color: var(--rm-text); font-weight: 700; line-height: 1.3; }
.rm-series-card .big-count {
  display: flex; align-items: baseline; gap: 8px;
  margin: 6px 0 14px;
}
.rm-series-card .big-count strong { font-size: 28px; color: var(--card-accent, var(--rm-primary)); font-weight: 800; line-height: 1; }
.rm-series-card .big-count span { font-size: 13px; color: var(--rm-muted); }
.rm-series-card .meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--rm-muted); margin-bottom: 14px; }
.rm-series-card .meta span { display: inline-flex; align-items: center; gap: 4px; }
.rm-series-card .desc { font-size: 13.5px; color: var(--rm-muted); line-height: 1.55; flex: 1; }
.rm-series-card .actions { display: flex; gap: 8px; margin-top: 16px; }

.rm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 18px;
  border-radius: var(--rm-radius-sm);
  background: var(--rm-primary);
  color: white;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}
.rm-btn:hover { background: var(--rm-primary-dark); text-decoration: none; }
.rm-btn-secondary { background: white; color: var(--rm-text); border: 1px solid var(--rm-border-strong); }
.rm-btn-secondary:hover { background: var(--rm-bg); }
.rm-btn-ghost { background: transparent; color: var(--rm-muted); border: 1px solid var(--rm-border); }
.rm-btn-ghost:hover { background: white; color: var(--rm-text); }
.rm-btn-block { width: 100%; }
.rm-btn-sm { padding: 6px 12px; font-size: 13px; }
.rm-btn-lg { padding: 12px 24px; font-size: 15px; }

/* Series detail page */
.rm-series-hero {
  background: var(--rm-bg-elev);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 28px;
  margin: 8px 0 24px;
  box-shadow: var(--rm-shadow-sm);
  border-top: 4px solid var(--card-accent, var(--rm-primary));
}
.rm-series-hero .tier-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--card-tint, var(--rm-primary-tint));
  color: var(--card-accent, var(--rm-primary-dark));
  margin-bottom: 10px;
}
.rm-series-hero h1 { margin: 0 0 10px; font-size: 26px; line-height: 1.25; }
.rm-series-hero .stats { display: flex; gap: 24px; flex-wrap: wrap; margin: 16px 0; }
.rm-series-hero .stat { display: flex; flex-direction: column; gap: 2px; }
.rm-series-hero .stat strong { font-size: 22px; color: var(--card-accent, var(--rm-primary)); font-weight: 800; }
.rm-series-hero .stat span { font-size: 12px; color: var(--rm-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.rm-series-hero .desc { color: var(--rm-text); font-size: 14.5px; line-height: 1.65; margin: 14px 0 0; }
.rm-series-hero .source-link { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--rm-border); font-size: 13px; color: var(--rm-muted); }

/* Section tabs (left rail on series detail) */
.rm-sections-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 24px; margin: 24px 0 40px; align-items: start; }
@media (max-width: 880px) { .rm-sections-wrap { grid-template-columns: 1fr; } }

.rm-section-tabs {
  background: var(--rm-bg-elev);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 10px;
  box-shadow: var(--rm-shadow-sm);
  position: sticky;
  top: 80px;
}
.rm-section-tab {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 14px;
  border-radius: var(--rm-radius-sm);
  cursor: pointer;
  color: var(--rm-text);
  border: none;
  background: transparent;
  text-align: left;
  width: 100%;
  transition: all 0.12s ease;
}
.rm-section-tab:hover { background: var(--rm-bg); }
.rm-section-tab.active { background: var(--card-tint, var(--rm-primary-tint)); color: var(--card-accent, var(--rm-primary-dark)); }
.rm-section-tab .name { font-weight: 600; font-size: 13.5px; }
.rm-section-tab .count { font-size: 11.5px; color: var(--rm-muted); font-weight: 500; }
.rm-section-tab.active .count { color: var(--card-accent, var(--rm-primary-dark)); }

/* Test list (right side) */
.rm-tests-panel { min-width: 0; }
.rm-tests-panel h2 { margin: 0 0 6px; font-size: 20px; font-weight: 700; }
.rm-tests-panel .panel-meta { color: var(--rm-muted); font-size: 13px; margin-bottom: 16px; }
.rm-tests-list { display: flex; flex-direction: column; gap: 8px; }
.rm-test-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--rm-bg-elev);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius-sm);
  box-shadow: var(--rm-shadow-sm);
  transition: all 0.12s ease;
}
.rm-test-row:hover { border-color: var(--card-accent, var(--rm-primary)); transform: translateX(2px); }
.rm-test-row .info { flex: 1; min-width: 0; }
.rm-test-row .name { font-weight: 600; font-size: 14px; color: var(--rm-text); margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rm-test-row .meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 12px; color: var(--rm-muted); }
.rm-test-row .meta span { display: inline-flex; align-items: center; gap: 3px; }
.rm-test-row .start-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: var(--rm-radius-sm);
  font-size: 13px;
  font-weight: 600;
  background: var(--rm-primary);
  color: white;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.12s ease;
}
.rm-test-row .start-btn:hover { background: var(--rm-primary-dark); }
.rm-test-row .start-btn.locked { background: var(--rm-bg); color: var(--rm-muted); border: 1px solid var(--rm-border-strong); cursor: not-allowed; }
.rm-test-row .start-btn.locked:hover { background: var(--rm-bg); }
.rm-test-row .free-tag { color: var(--rm-primary); font-weight: 700; font-size: 11px; padding: 2px 6px; background: var(--rm-primary-tint); border-radius: 4px; }
.rm-test-row .lock-tag { color: #b45309; font-weight: 700; font-size: 11px; padding: 2px 6px; background: #fef3c7; border-radius: 4px; }

/* Instructions page */
.rm-instructions { background: var(--rm-bg-elev); border: 1px solid var(--rm-border); border-radius: var(--rm-radius); padding: 28px; margin: 8px 0 30px; box-shadow: var(--rm-shadow-sm); }
.rm-instructions h1 { margin: 0 0 10px; font-size: 24px; line-height: 1.3; }
.rm-instructions .meta-row { color: var(--rm-muted); font-size: 14px; margin: 8px 0 18px; display: flex; gap: 16px; flex-wrap: wrap; }
.rm-instructions .meta-row span { display: inline-flex; align-items: center; gap: 4px; }
.rm-instructions-list { counter-reset: instr; list-style: none; padding: 0; margin: 14px 0 22px; }
.rm-instructions-list li { counter-increment: instr; position: relative; padding: 10px 0 10px 38px; border-bottom: 1px dashed var(--rm-border); font-size: 14px; line-height: 1.55; }
.rm-instructions-list li::before { content: counter(instr); position: absolute; left: 0; top: 10px; width: 26px; height: 26px; background: var(--card-tint, var(--rm-primary-tint)); color: var(--card-accent, var(--rm-primary-dark)); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.rm-instructions-list li:last-child { border-bottom: none; }
.rm-agree { padding: 14px 16px; background: var(--rm-bg); border: 1px solid var(--rm-border); border-radius: var(--rm-radius-sm); margin-top: 18px; }
.rm-agree label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-size: 14px; }
.rm-agree input[type=checkbox] { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--rm-primary); }
.rm-instructions-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }

/* Test runner */
.rm-runner-shell { background: var(--rm-bg-elev); border: 1px solid var(--rm-border); border-radius: var(--rm-radius); overflow: hidden; box-shadow: var(--rm-shadow); margin: 8px 0 30px; }
.rm-runner-top { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; background: var(--rm-primary); color: white; flex-wrap: wrap; gap: 10px; }
.rm-runner-top .title { font-weight: 700; font-size: 14px; }
.rm-runner-top .timer { background: rgba(255,255,255,0.2); padding: 6px 14px; border-radius: var(--rm-radius-sm); font-variant-numeric: tabular-nums; font-weight: 700; font-size: 16px; }
.rm-runner-top .timer.warn { background: #f59e0b; }
.rm-runner-top .timer.crit { background: #dc2626; }

.rm-section-bar { display: flex; overflow-x: auto; background: var(--rm-bg); border-bottom: 1px solid var(--rm-border); }
.rm-section-bar button { padding: 12px 18px; background: transparent; border: none; cursor: pointer; font-size: 13px; color: var(--rm-muted); border-bottom: 3px solid transparent; white-space: nowrap; }
.rm-section-bar button.active { color: var(--rm-primary-dark); border-bottom-color: var(--rm-primary); font-weight: 600; background: white; }

.rm-runner-body { display: grid; grid-template-columns: 1fr 280px; gap: 0; min-height: 520px; }
@media (max-width: 880px) { .rm-runner-body { grid-template-columns: 1fr; } .rm-palette { border-left: none !important; border-top: 1px solid var(--rm-border); } }

.rm-q-area { padding: 24px 28px; }
.rm-q-meta { display: flex; justify-content: space-between; align-items: center; color: var(--rm-muted); font-size: 13px; margin-bottom: 12px; }
.rm-q-text { font-size: 16px; font-weight: 500; margin-bottom: 18px; line-height: 1.55; }
.rm-options { display: flex; flex-direction: column; gap: 8px; }
.rm-option {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px; border: 1px solid var(--rm-border); border-radius: var(--rm-radius-sm);
  cursor: pointer; font-size: 14.5px; transition: all 0.12s ease; background: white;
}
.rm-option:hover { border-color: var(--rm-primary); background: var(--rm-primary-tint); }
.rm-option.selected { border-color: var(--rm-primary); background: var(--rm-primary-tint); }
.rm-option .letter { display: inline-flex; width: 26px; height: 26px; border-radius: 50%; background: var(--rm-bg); border: 1px solid var(--rm-border); align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.rm-option.selected .letter { background: var(--rm-primary); color: white; border-color: var(--rm-primary); }

.rm-q-controls { display: flex; gap: 8px; justify-content: flex-end; margin-top: 20px; flex-wrap: wrap; }

.rm-palette { border-left: 1px solid var(--rm-border); padding: 20px; background: var(--rm-bg); }
.rm-palette h4 { margin: 0 0 10px; font-size: 12px; color: var(--rm-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.rm-palette-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(34px, 1fr)); gap: 6px; margin-bottom: 14px; }
.rm-pcell { aspect-ratio: 1; border-radius: 6px; border: 1px solid var(--rm-border); background: white; font-size: 12px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; font-weight: 600; color: var(--rm-muted); }
.rm-pcell:hover { border-color: var(--rm-primary); }
.rm-pcell.answered { background: #bbf7d0; border-color: #4ade80; color: #14532d; }
.rm-pcell.not-answered { background: #fecaca; border-color: #f87171; color: #7f1d1d; }
.rm-pcell.marked { background: #fed7aa; border-color: #fb923c; color: #7c2d12; }
.rm-pcell.answered-marked { background: linear-gradient(135deg, #bbf7d0 50%, #fed7aa 50%); border-color: #fb923c; color: #14532d; }
.rm-pcell.not-visited { background: white; }
.rm-pcell.current { outline: 2px solid var(--rm-primary); outline-offset: 1px; }
.rm-legend { display: flex; flex-direction: column; gap: 6px; font-size: 11.5px; color: var(--rm-muted); }
.rm-legend-row { display: flex; align-items: center; gap: 8px; }
.rm-legend-sw { width: 14px; height: 14px; border-radius: 4px; border: 1px solid var(--rm-border); }
.rm-palette-actions { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }

/* Result page */
.rm-result-hero { background: var(--rm-bg-elev); border: 1px solid var(--rm-border); border-radius: var(--rm-radius); padding: 28px; margin: 8px 0 24px; box-shadow: var(--rm-shadow-sm); text-align: center; }
.rm-result-hero .score-big { font-size: 52px; font-weight: 800; color: var(--rm-primary); margin: 6px 0; line-height: 1; }
.rm-result-hero .score-label { color: var(--rm-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }
.rm-result-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-top: 20px; }
.rm-result-stat { background: var(--rm-bg); border-radius: var(--rm-radius-sm); padding: 14px; text-align: center; }
.rm-result-stat .v { font-size: 22px; font-weight: 700; }
.rm-result-stat .l { font-size: 12px; color: var(--rm-muted); margin-top: 2px; }
.rm-result-stat.ok .v { color: var(--rm-primary); }
.rm-result-stat.err .v { color: #dc2626; }
.rm-result-stat.warn .v { color: #f59e0b; }

.rm-section-wise { background: var(--rm-bg-elev); border: 1px solid var(--rm-border); border-radius: var(--rm-radius); padding: 22px; margin: 18px 0; box-shadow: var(--rm-shadow-sm); }
.rm-section-wise h2 { margin: 0 0 14px; font-size: 17px; }
.rm-section-wise table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.rm-section-wise th, .rm-section-wise td { padding: 10px 12px; border-bottom: 1px solid var(--rm-border); text-align: left; }
.rm-section-wise th { background: var(--rm-bg); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rm-muted); font-weight: 700; }

.rm-solutions { background: var(--rm-bg-elev); border: 1px solid var(--rm-border); border-radius: var(--rm-radius); padding: 22px; margin: 18px 0; box-shadow: var(--rm-shadow-sm); }
.rm-solutions h2 { margin: 0 0 14px; font-size: 17px; }
.rm-solution-item { padding: 14px 0; border-bottom: 1px solid var(--rm-border); }
.rm-solution-item:last-child { border-bottom: none; }
.rm-solution-item .q { font-weight: 500; margin-bottom: 8px; font-size: 14.5px; line-height: 1.5; }
.rm-solution-item .opts { display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; font-size: 13.5px; }
.rm-solution-item .opts .opt { padding: 6px 10px; border-radius: 6px; border: 1px solid var(--rm-border); }
.rm-solution-item .opts .opt.correct { background: #dcfce7; border-color: #4ade80; color: #14532d; }
.rm-solution-item .opts .opt.wrong { background: #fee2e2; border-color: #f87171; color: #7f1d1d; text-decoration: line-through; }
.rm-solution-item .opts .opt.yours { outline: 2px solid var(--rm-primary); outline-offset: 1px; }
.rm-solution-item .ex { background: var(--rm-bg); padding: 8px 12px; border-radius: 6px; font-size: 13px; color: var(--rm-muted); }

/* Locked test modal */
.rm-modal-bg {
  position: fixed; inset: 0; background: rgba(15, 23, 42, 0.6); display: flex; align-items: center; justify-content: center; z-index: 200; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
.rm-modal-bg.show { opacity: 1; pointer-events: auto; }
.rm-modal {
  background: white; border-radius: var(--rm-radius); padding: 28px; max-width: 420px; width: 100%;
  box-shadow: var(--rm-shadow-lg); transform: scale(0.9); transition: transform 0.2s ease;
}
.rm-modal-bg.show .rm-modal { transform: scale(1); }
.rm-modal h3 { margin: 0 0 8px; font-size: 18px; }
.rm-modal p { color: var(--rm-muted); font-size: 14px; margin: 0 0 16px; }
.rm-modal-actions { display: flex; gap: 8px; justify-content: flex-end; }

/* Not found */
.rm-not-found { text-align: center; padding: 80px 20px; }
.rm-not-found h1 { font-size: 72px; margin: 0; color: var(--rm-primary); font-weight: 800; }
.rm-not-found p { color: var(--rm-muted); margin: 8px 0 22px; }

/* Footer */
.rm-footer { margin-top: auto; background: var(--rm-bg-elev); border-top: 1px solid var(--rm-border); padding: 36px 0 18px; }
.rm-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 28px; }
@media (max-width: 720px) { .rm-footer-grid { grid-template-columns: 1fr 1fr; } }
.rm-footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rm-muted); margin: 0 0 12px; font-weight: 700; }
.rm-footer a { display: block; color: var(--rm-text); font-size: 14px; padding: 4px 0; }
.rm-footer a:hover { color: var(--rm-primary); text-decoration: none; }
.rm-footer .rm-muted { color: var(--rm-muted); font-size: 13px; line-height: 1.55; margin: 12px 0 0; }
.rm-footer-bottom { border-top: 1px solid var(--rm-border); padding-top: 18px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.rm-social { display: inline-block; padding: 4px 12px; border: 1px solid var(--rm-border-strong); border-radius: 999px; font-size: 12px; color: var(--rm-text); margin-right: 6px; }
.rm-social:hover { background: var(--rm-bg); text-decoration: none; }

/* Utility */
.rm-muted { color: var(--rm-muted); }
.rm-flex { display: flex; }
.rm-gap-8 { gap: 8px; }
.rm-gap-16 { gap: 16px; }
.rm-wrap { flex-wrap: wrap; }
