:root {
  --sp-ink: #0f2419;
  --sp-ink-soft: #3d5248;
  --sp-muted: #6b7f74;
  --sp-surface: #f4f8f5;
  --sp-surface-elevated: rgba(255, 255, 255, 0.78);
  --sp-border: rgba(15, 36, 25, 0.08);
  --sp-accent: #0b6e4f;
  --sp-accent-deep: #08553d;
  --sp-gold: #c9a227;
  --sp-gold-soft: #e8d48b;
  --sp-hero-start: #064e3b;
  --sp-hero-mid: #0b6e4f;
  --sp-hero-end: #146c5a;
  --sp-radius: 1.25rem;
  --sp-radius-sm: 0.85rem;
  --sp-shadow: 0 10px 30px rgba(15, 36, 25, 0.08);
  --sp-shadow-hover: 0 18px 40px rgba(15, 36, 25, 0.14);
  --sp-font-display: "Fraunces", Georgia, serif;
  --sp-font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

.system-portal {
  font-family: var(--sp-font-body);
  color: var(--sp-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(201, 162, 39, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(11, 110, 79, 0.08), transparent 50%),
    var(--sp-surface);
  min-height: 100vh;
}

.system-portal h1,
.system-portal h2,
.system-portal h3,
.system-portal .sp-display {
  font-family: var(--sp-font-display);
  letter-spacing: -0.02em;
}

/* ---------- Hero ---------- */
.sp-hero {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0 3.25rem;
  color: #fff;
  background:
    linear-gradient(135deg, var(--sp-hero-start) 0%, var(--sp-hero-mid) 48%, var(--sp-hero-end) 100%);
}

.sp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(201, 162, 39, 0.28), transparent 32%),
    radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.08), transparent 35%),
    linear-gradient(180deg, transparent 60%, rgba(4, 40, 30, 0.35) 100%);
  pointer-events: none;
}

.sp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  pointer-events: none;
  animation: sp-float 12s ease-in-out infinite;
}

.sp-hero-orb--1 {
  width: 280px;
  height: 280px;
  background: var(--sp-gold);
  top: -60px;
  right: 8%;
}

.sp-hero-orb--2 {
  width: 200px;
  height: 200px;
  background: #2dd4a8;
  bottom: 10%;
  left: 5%;
  animation-delay: -4s;
}

.sp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 90%);
  pointer-events: none;
}

.sp-hero .container {
  position: relative;
  z-index: 2;
}

.sp-breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.75rem;
}

.sp-breadcrumb .breadcrumb-item,
.sp-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.sp-breadcrumb .breadcrumb-item.active {
  color: #fff;
}

.sp-breadcrumb .breadcrumb-item a:hover {
  color: var(--sp-gold-soft);
}

.sp-hero-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.25rem;
}

.sp-brand-mark {
  display: inline-block;
  font-family: var(--sp-font-display);
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 0.85rem;
  background: linear-gradient(120deg, #ffffff 20%, var(--sp-gold-soft) 55%, #ffffff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sp-hero-lead {
  max-width: 40rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
}

.sp-hero-actions .btn {
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.sp-btn-gold {
  background: linear-gradient(135deg, #e8d48b, #c9a227);
  color: #1a2e22;
  border: none;
}

.sp-btn-gold:hover {
  background: linear-gradient(135deg, #f0e0a0, #d4ad2f);
  color: #0f2419;
}

.sp-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.sp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.sp-hero-kicker {
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- Overview metrics (readable, high contrast) ---------- */
.sp-overview {
  position: relative;
  z-index: 4;
  margin-top: -2.25rem;
  margin-bottom: 1.25rem;
}

.sp-overview-panel {
  background: #fff;
  border: 1px solid var(--sp-border);
  border-radius: 1.15rem;
  box-shadow: 0 16px 40px rgba(15, 36, 25, 0.1);
  overflow: hidden;
}

.sp-overview-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.35rem 1.25rem;
  min-height: 5.5rem;
  height: 100%;
  border-right: 1px solid var(--sp-border);
  border-bottom: 1px solid var(--sp-border);
}

@media (min-width: 992px) {
  .sp-overview-item {
    border-bottom: none;
  }

  .sp-overview .col-lg-3:last-child .sp-overview-item {
    border-right: none;
  }
}

@media (max-width: 991.98px) {
  .sp-overview .col-6:nth-child(2n) .sp-overview-item {
    border-right: none;
  }

  .sp-overview .col-6:nth-last-child(-n+2) .sp-overview-item {
    border-bottom: none;
  }
}

.sp-overview-icon {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 110, 79, 0.1);
  color: #0b6e4f;
  font-size: 1.2rem;
}

.sp-overview-icon--active {
  background: rgba(13, 79, 139, 0.1);
  color: #0d4f8b;
}

.sp-overview-icon--done {
  background: rgba(90, 90, 90, 0.1);
  color: #444;
}

.sp-overview-icon--latest {
  background: rgba(201, 162, 39, 0.15);
  color: #8a6508;
}

.sp-overview-value {
  font-family: var(--sp-font-display);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--sp-ink);
}

.sp-overview-value--text {
  font-size: 1rem;
  line-height: 1.35;
  max-width: 12rem;
}

.sp-overview-label {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sp-muted);
}

/* ---------- Filter bar ---------- */
.sp-toolbar {
  --sp-control-h: 3rem;
  position: relative;
  z-index: 3;
  margin-bottom: 0.5rem;
}

.sp-filter-bar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid var(--sp-border);
  border-radius: 1rem;
  box-shadow: var(--sp-shadow);
  padding: 0.75rem;
}

.sp-filter-search {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: var(--sp-control-h);
}

.sp-filter-search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sp-muted);
  pointer-events: none;
  font-size: 1rem;
  line-height: 1;
}

.sp-filter-search input {
  width: 100%;
  height: 100%;
  border: 1px solid var(--sp-border);
  border-radius: 0.8rem;
  background: var(--sp-surface);
  padding: 0 1rem 0 2.6rem;
  font-size: 0.95rem;
  color: var(--sp-ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sp-filter-search input:focus {
  background: #fff;
  border-color: var(--sp-accent);
  box-shadow: 0 0 0 3px rgba(11, 110, 79, 0.12);
}

.sp-filter-controls {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
  height: var(--sp-control-h);
}

.sp-filter-field {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  min-width: 10.5rem;
}

.sp-filter-prefix {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sp-muted);
  pointer-events: none;
  z-index: 1;
  font-size: 0.95rem;
  line-height: 1;
}

.sp-filter-field select {
  appearance: none;
  width: 100%;
  height: 100%;
  border: 1px solid var(--sp-border);
  border-radius: 0.8rem;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%236b7f74' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding: 0 2rem 0 2.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sp-ink);
  outline: none;
  cursor: pointer;
}

.sp-filter-field select:focus {
  border-color: var(--sp-accent);
  box-shadow: 0 0 0 3px rgba(11, 110, 79, 0.12);
}

.sp-filter-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 100%;
  border: 1px solid var(--sp-border);
  background: #fff;
  color: var(--sp-ink-soft);
  border-radius: 0.8rem;
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sp-filter-reset:hover {
  background: rgba(11, 110, 79, 0.06);
  color: var(--sp-accent);
  border-color: rgba(11, 110, 79, 0.25);
}

@media (max-width: 991.98px) {
  .sp-filter-bar {
    flex-wrap: wrap;
  }

  .sp-filter-search {
    flex: 1 1 100%;
  }

  .sp-filter-controls {
    width: 100%;
  }

  .sp-filter-field {
    flex: 1 1 auto;
    min-width: 0;
  }
}

@media (max-width: 575.98px) {
  .sp-filter-controls {
    flex-wrap: wrap;
    height: auto;
  }

  .sp-filter-field,
  .sp-filter-reset {
    height: var(--sp-control-h);
  }

  .sp-filter-field {
    flex: 1 1 calc(50% - 0.35rem);
  }

  .sp-filter-reset {
    flex: 1 1 100%;
  }

  .sp-overview-value--text {
    max-width: 9rem;
  }
}

.sp-hero-stats {
  margin-top: 2.75rem;
}

.sp-stat-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  border-radius: var(--sp-radius);
  padding: 1.15rem 1.35rem;
  height: 100%;
  transition: transform 0.35s ease, background 0.35s ease;
}

.sp-stat-pill:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
}

.sp-stat-pill .sp-stat-value {
  font-family: var(--sp-font-display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.sp-stat-pill .sp-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* ---------- Legacy toolbar (kept for safety) ---------- */
.sp-toolbar-card {
  background: var(--sp-surface-elevated);
  backdrop-filter: blur(18px);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  box-shadow: var(--sp-shadow);
  padding: 1.25rem;
}

.sp-toolbar .form-control,
.sp-toolbar .form-select {
  border-radius: var(--sp-radius-sm);
  border-color: var(--sp-border);
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  background: #fff;
}

.sp-toolbar .form-control:focus,
.sp-toolbar .form-select:focus {
  border-color: var(--sp-accent);
  box-shadow: 0 0 0 0.2rem rgba(11, 110, 79, 0.15);
}

.sp-toolbar .input-group-text {
  background: #fff;
  border-color: var(--sp-border);
  border-radius: var(--sp-radius-sm) 0 0 var(--sp-radius-sm);
  color: var(--sp-muted);
}

/* ---------- Metrics strip ---------- */
.sp-metrics {
  padding: 2.5rem 0 1rem;
}

.sp-metric-card {
  border-radius: var(--sp-radius);
  background: #fff;
  border: 1px solid var(--sp-border);
  box-shadow: var(--sp-shadow);
  padding: 1.35rem 1.4rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-metric-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sp-shadow-hover);
}

.sp-metric-card--hero {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  color: #fff;
}

.sp-metric-card--hero:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.sp-metric-card--hero .sp-metric-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.sp-metric-card--hero .sp-metric-value {
  color: #fff;
}

.sp-metric-card--hero .sp-metric-label {
  color: rgba(255, 255, 255, 0.75);
}

.sp-metric-card .sp-metric-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 110, 79, 0.1);
  color: var(--sp-accent);
  margin-bottom: 0.85rem;
  font-size: 1.15rem;
}

.sp-metric-card .sp-metric-value {
  font-family: var(--sp-font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--sp-ink);
  margin-bottom: 0.15rem;
}

.sp-metric-card .sp-metric-label {
  color: var(--sp-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---------- Project cards ---------- */
.sp-capabilities {
  padding: 0.25rem 0 0.5rem;
}

.sp-capability-card {
  height: 100%;
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  background: #fff;
  box-shadow: var(--sp-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.sp-capability-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--sp-accent) 14%, #fff);
  color: var(--sp-accent);
  font-size: 1.2rem;
}

.sp-capability-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sp-ink);
  line-height: 1.3;
}

.sp-capability-card p {
  margin: 0;
  color: var(--sp-ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.sp-projects {
  padding: 1.5rem 0 4.5rem;
}

.sp-section-head {
  margin-bottom: 1.75rem;
}

.sp-section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.sp-section-head p {
  color: var(--sp-muted);
  margin: 0;
  max-width: 36rem;
}

.sp-project-card {
  height: 100%;
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--sp-shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.sp-project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sp-shadow-hover);
  border-color: rgba(11, 110, 79, 0.22);
}

.sp-project-card .sp-card-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.sp-project-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
  color: var(--sp-ink);
}

.sp-project-card .sp-card-desc {
  color: var(--sp-ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sp-meta-row {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.sp-meta-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: var(--sp-ink-soft);
  margin: 0;
}

.sp-meta-item dt {
  display: inline-flex;
  margin: 0;
}

.sp-meta-item dd {
  margin: 0;
  color: var(--sp-ink);
  font-weight: 600;
}

.sp-meta-item i {
  color: var(--sp-accent);
  font-size: 1rem;
}

.sp-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}

.sp-status::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: currentColor;
}

.status-active {
  background: rgba(11, 110, 79, 0.12);
  color: #0b6e4f;
}

.status-ongoing {
  background: rgba(13, 79, 139, 0.12);
  color: #0d4f8b;
}

.status-completed {
  background: rgba(90, 90, 90, 0.12);
  color: #444;
}

.status-pending {
  background: rgba(184, 134, 11, 0.15);
  color: #8a6508;
}

.status-hold {
  background: rgba(180, 60, 60, 0.12);
  color: #a33;
}

.sp-card-actions .btn {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

.sp-btn-primary {
  background: var(--sp-accent);
  border-color: var(--sp-accent);
  color: #fff;
}

.sp-btn-primary:hover {
  background: var(--sp-accent-deep);
  border-color: var(--sp-accent-deep);
  color: #fff;
}

/* ---------- Empty state ---------- */
.sp-empty {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: #fff;
  border: 1px dashed rgba(11, 110, 79, 0.25);
  border-radius: var(--sp-radius);
}

.sp-empty-illustration {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(201, 162, 39, 0.25), transparent 50%),
    linear-gradient(145deg, rgba(11, 110, 79, 0.12), rgba(11, 110, 79, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--sp-accent);
}

.sp-empty h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.sp-empty p {
  color: var(--sp-muted);
  max-width: 28rem;
  margin: 0 auto;
}

/* ---------- Related ---------- */
.sp-related {
  padding: 0 0 4rem;
}

.sp-related-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: #fff;
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-sm);
  text-decoration: none;
  color: var(--sp-ink);
  box-shadow: var(--sp-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.sp-related-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--sp-shadow-hover);
  color: var(--sp-accent);
}

.sp-related-chip i {
  font-size: 1.25rem;
  color: var(--sp-accent);
}

/* ---------- Modal ---------- */
.sp-modal .modal-content {
  border: none;
  border-radius: var(--sp-radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 36, 25, 0.2);
}

.sp-modal .modal-header {
  background: linear-gradient(135deg, var(--sp-hero-start), var(--sp-hero-mid));
  color: #fff;
  border: none;
  padding: 1.35rem 1.5rem;
}

.sp-modal .modal-header .btn-close {
  filter: invert(1);
  opacity: 0.85;
}

.sp-modal .modal-body {
  padding: 1.5rem;
}

.sp-modal-meta {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sp-border);
}

/* ---------- Pagination ---------- */
.sp-projects .pagination {
  gap: 0.35rem;
}

.sp-projects .page-link {
  border-radius: 0.65rem !important;
  border: 1px solid var(--sp-border);
  color: var(--sp-ink);
  font-weight: 600;
  padding: 0.5rem 0.85rem;
}

.sp-projects .page-item.active .page-link {
  background: var(--sp-accent);
  border-color: var(--sp-accent);
}

.sp-projects .page-link:hover {
  background: rgba(11, 110, 79, 0.08);
  color: var(--sp-accent);
}

/* ---------- Header overrides on portal ---------- */
.system-portal .header .topbar {
  background: linear-gradient(135deg, #0b6e4f 0%, #08553d 100%) !important;
}

@keyframes sp-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(24px) scale(1.05); }
}

@media (max-width: 767.98px) {
  .sp-hero {
    padding: 6rem 0 3.25rem;
  }

  .sp-brand-mark {
    font-size: 2.35rem;
  }

  .sp-hero-stats {
    margin-top: 2rem;
  }

  .sp-toolbar {
    margin-top: -1.5rem;
  }

  .sp-toolbar-card .row > [class*="col-"] {
    margin-bottom: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sp-hero-orb,
  .sp-project-card,
  .sp-stat-pill,
  .sp-metric-card,
  .sp-related-chip {
    animation: none !important;
    transition: none !important;
  }
}
