:root {
  --msp-bg: #06111b;
  --msp-bg-2: #0b1d2d;
  --msp-panel: rgba(10, 24, 37, 0.72);
  --msp-panel-strong: rgba(10, 24, 37, 0.92);
  --msp-line: rgba(124, 226, 255, 0.12);
  --msp-line-strong: rgba(124, 226, 255, 0.24);
  --msp-text: #edf7ff;
  --msp-muted: #98b1c4;
  --msp-accent: #39d0b6;
  --msp-accent-2: #7ce2ff;
  --msp-accent-3: #ffd166;
  --msp-danger: #ff8a8a;
  --msp-success: #8cf1b0;
  --msp-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --msp-radius-lg: 24px;
  --msp-radius-md: 18px;
  --msp-radius-sm: 12px;
  --msp-content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--msp-text);
  background:
    radial-gradient(circle at top left, rgba(57, 208, 182, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(124, 226, 255, 0.15), transparent 28%),
    radial-gradient(circle at 50% 120%, rgba(255, 209, 102, 0.10), transparent 24%),
    linear-gradient(180deg, #04101a 0%, #07111a 38%, #091827 100%);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background-image:
    linear-gradient(rgba(124, 226, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 226, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.65), transparent 90%);
}

body::after {
  inset: 16% auto auto 68%;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 208, 182, 0.20), rgba(57, 208, 182, 0.04), transparent 68%);
  filter: blur(22px);
  z-index: -1;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.msp-shell {
  width: min(calc(100% - 32px), var(--msp-content));
  margin: 0 auto;
}

.msp-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(4, 12, 19, 0.76);
  border-bottom: 1px solid rgba(124, 226, 255, 0.08);
}

.msp-site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.msp-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.msp-brand__mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(124,226,255,0.18), 0 14px 34px rgba(0,0,0,0.28);
}

.msp-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.06;
}

.msp-brand__name {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.msp-brand__tag {
  color: var(--msp-muted);
  font-size: 0.82rem;
}

.msp-nav-toggle {
  display: none;
  border: 1px solid var(--msp-line-strong);
  background: rgba(255,255,255,0.04);
  color: var(--msp-text);
  border-radius: 12px;
  padding: 10px 12px;
}

.msp-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.msp-nav a {
  color: var(--msp-muted);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
  border: 1px solid transparent;
}

.msp-nav a:hover,
.msp-nav a[aria-current="page"] {
  color: var(--msp-text);
  background: rgba(124, 226, 255, 0.07);
  border-color: rgba(124, 226, 255, 0.14);
}

.msp-page {
  padding: 36px 0 80px;
}

.msp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 26px;
  align-items: stretch;
  margin-top: 6px;
}

.msp-card,
.msp-panel {
  background: linear-gradient(180deg, rgba(10, 24, 37, 0.88), rgba(8, 20, 31, 0.86));
  border: 1px solid rgba(124, 226, 255, 0.10);
  border-radius: var(--msp-radius-lg);
  box-shadow: var(--msp-shadow);
}

.msp-card {
  padding: 28px;
}

.msp-panel {
  padding: 24px;
}

.msp-hero-copy {
  position: relative;
  overflow: hidden;
}

.msp-hero-copy::after {
  content: "";
  position: absolute;
  right: -56px;
  top: -56px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(57, 208, 182, 0.18), transparent 66%);
  border-radius: 50%;
  pointer-events: none;
}

.msp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: rgba(57, 208, 182, 0.10);
  border: 1px solid rgba(57, 208, 182, 0.20);
  border-radius: 999px;
  color: #baf8ea;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.msp-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--msp-accent);
  box-shadow: 0 0 16px rgba(57, 208, 182, 0.8);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.25rem;
}

.msp-hero-copy p,
.msp-rich-copy p,
.msp-card p,
.msp-panel p,
.msp-list li,
.msp-table td,
.msp-table th,
.msp-faq details {
  color: var(--msp-muted);
  line-height: 1.7;
}

.msp-hero-copy p.lead {
  font-size: 1.08rem;
  max-width: 60ch;
  color: #d3e4f1;
}

.msp-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.msp-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(124, 226, 255, 0.10);
  border-radius: 18px;
  padding: 16px;
}

.msp-stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.65rem;
  color: var(--msp-text);
  margin-bottom: 6px;
}

.msp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.msp-btn,
button.msp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}

.msp-btn:hover {
  transform: translateY(-1px);
}

.msp-btn--primary {
  color: #07211d;
  background: linear-gradient(135deg, #39d0b6, #7ce2ff);
  box-shadow: 0 14px 32px rgba(57, 208, 182, 0.22);
}

.msp-btn--ghost {
  color: var(--msp-text);
  background: rgba(255,255,255,0.03);
  border-color: rgba(124, 226, 255, 0.14);
}

.msp-btn--ghost:hover {
  background: rgba(124, 226, 255, 0.08);
}

.msp-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.msp-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.msp-field span {
  color: #dcecf8;
  font-size: 0.95rem;
  font-weight: 800;
}

.msp-field input,
.msp-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  color: var(--msp-text);
  border: 1px solid rgba(124, 226, 255, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.msp-field textarea {
  min-height: 148px;
  resize: vertical;
}

.msp-field input::placeholder,
.msp-field textarea::placeholder {
  color: #7d97aa;
}

.msp-field input:focus,
.msp-field textarea:focus {
  border-color: rgba(57, 208, 182, 0.55);
  box-shadow: 0 0 0 4px rgba(57, 208, 182, 0.14);
  background: rgba(255,255,255,0.05);
}

.msp-help {
  margin-top: 12px;
  font-size: 0.92rem;
  color: #85a0b6;
}

.msp-result {
  display: none;
  margin-top: 18px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(124, 226, 255, 0.12);
  border-radius: 16px;
  color: var(--msp-muted);
  white-space: pre-wrap;
}

.msp-result.is-visible {
  display: block;
}

.msp-section {
  margin-top: 26px;
}

.msp-grid-3,
.msp-grid-4,
.msp-grid-2 {
  display: grid;
  gap: 18px;
}

.msp-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.msp-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.msp-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.msp-mini-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(124, 226, 255, 0.10);
}

.msp-mini-card strong,
.msp-mini-card h3 {
  display: block;
  color: var(--msp-text);
}

.msp-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.msp-chip {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.10);
  border: 1px solid rgba(255, 209, 102, 0.20);
  color: #ffe8a6;
  font-weight: 700;
  font-size: 0.9rem;
}

.msp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  background: rgba(124, 226, 255, 0.08);
  border: 1px solid rgba(124, 226, 255, 0.16);
  color: #ccefff;
}

.msp-badge--success { color: #dfffea; background: rgba(140, 241, 176, 0.10); border-color: rgba(140, 241, 176, 0.18); }
.msp-badge--danger { color: #ffe2e2; background: rgba(255, 138, 138, 0.10); border-color: rgba(255, 138, 138, 0.18); }
.msp-badge--warn { color: #fff0c7; background: rgba(255, 209, 102, 0.10); border-color: rgba(255, 209, 102, 0.18); }

.msp-steps {
  counter-reset: item;
  display: grid;
  gap: 16px;
}

.msp-step {
  position: relative;
  padding: 20px 20px 20px 72px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(124, 226, 255, 0.10);
}

.msp-step::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  top: 18px;
  left: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(57,208,182,0.22), rgba(124,226,255,0.22));
  border: 1px solid rgba(124, 226, 255, 0.22);
  color: var(--msp-text);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}

.msp-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(124, 226, 255, 0.10);
}

.msp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.msp-table th,
.msp-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(124, 226, 255, 0.08);
  vertical-align: top;
}

.msp-table th {
  color: #d7effc;
  font-size: 0.92rem;
  background: rgba(255,255,255,0.03);
}

.msp-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

.msp-link {
  color: var(--msp-accent-2);
  font-weight: 700;
}

.msp-link:hover {
  text-decoration: underline;
}

.msp-muted {
  color: var(--msp-muted);
}

.msp-score {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--msp-text);
}

.msp-page-title {
  margin-bottom: 10px;
}

.msp-subtitle {
  margin-top: 0;
  color: var(--msp-muted);
  max-width: 75ch;
}

.msp-legal h2,
.msp-legal h3 {
  margin-top: 26px;
}

.msp-legal ul,
.msp-rich-copy ul {
  color: var(--msp-muted);
  padding-left: 18px;
  line-height: 1.7;
}

.msp-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
}

.msp-contact-list {
  display: grid;
  gap: 14px;
}

.msp-contact-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(124, 226, 255, 0.10);
}

.msp-contact-item strong {
  display: block;
  color: var(--msp-text);
  margin-bottom: 6px;
}

.msp-footer {
  border-top: 1px solid rgba(124, 226, 255, 0.08);
  background: rgba(3, 11, 17, 0.72);
}

.msp-footer__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 38px;
  color: var(--msp-muted);
}

.msp-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.msp-footer__links a:hover {
  color: var(--msp-text);
}

.msp-faq details {
  border: 1px solid rgba(124, 226, 255, 0.10);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  padding: 16px 18px;
}

.msp-faq details + details {
  margin-top: 14px;
}

.msp-faq summary {
  cursor: pointer;
  color: var(--msp-text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.msp-faq summary::-webkit-details-marker {
  display: none;
}

.msp-faq p {
  margin-bottom: 0;
}

.msp-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 226, 255, 0.16), transparent);
  margin: 32px 0;
}

.msp-empty {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(124, 226, 255, 0.16);
}

@media (max-width: 980px) {
  .msp-hero,
  .msp-contact-grid,
  .msp-grid-2,
  .msp-grid-3,
  .msp-grid-4 {
    grid-template-columns: 1fr;
  }

  .msp-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .msp-site-header__row {
    flex-wrap: wrap;
  }

  .msp-nav-toggle {
    display: inline-flex;
  }

  .msp-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid rgba(124, 226, 255, 0.08);
    padding-top: 14px;
  }

  .msp-nav.is-open {
    display: flex;
  }

  .msp-nav a {
    width: 100%;
  }

  .msp-card,
  .msp-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .msp-page {
    padding-top: 24px;
  }

  .msp-footer__row {
    flex-direction: column;
  }

  .msp-shell {
    width: min(calc(100% - 24px), var(--msp-content));
  }
}

/* Header and footer polish layer */
.msp-site-header {
  background:
    linear-gradient(180deg, rgba(4, 12, 19, 0.92), rgba(4, 12, 19, 0.70)),
    radial-gradient(circle at 12% 0%, rgba(57, 208, 182, 0.10), transparent 28%);
  box-shadow: 0 12px 34px rgba(0,0,0,0.18);
}

.msp-site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57, 208, 182, 0.32), rgba(124, 226, 255, 0.22), transparent);
}

.msp-site-header__row {
  min-height: 78px;
}

.msp-brand {
  position: relative;
  isolation: isolate;
  padding: 6px 10px 6px 6px;
  border-radius: 22px;
  transition: background-color .2s ease, transform .2s ease;
}

.msp-brand:hover {
  background: rgba(124, 226, 255, 0.045);
  transform: translateY(-1px);
}

.msp-brand__glow {
  position: absolute;
  inset: 2px auto auto 2px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(57, 208, 182, 0.36), transparent 70%);
  filter: blur(10px);
  z-index: -1;
}

.msp-brand__mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
}

.msp-brand__name {
  font-size: 1.34rem;
}

.msp-brand__tag {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.msp-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.msp-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 11px 15px;
  border-radius: 999px;
  color: #071c19;
  background: linear-gradient(135deg, var(--msp-accent), var(--msp-accent-2));
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(57, 208, 182, 0.18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.msp-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(57, 208, 182, 0.24);
}

.msp-nav-toggle {
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.msp-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--msp-text);
}

.msp-footer {
  position: relative;
  overflow: hidden;
  padding-top: 34px;
  background:
    radial-gradient(circle at 10% 10%, rgba(57, 208, 182, 0.13), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(124, 226, 255, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(3, 11, 17, 0.75), rgba(2, 8, 13, 0.96));
}

.msp-footer::before {
  content: "MAPSPECTOR";
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4rem, 13vw, 12rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.08em;
  color: rgba(124, 226, 255, 0.035);
  white-space: nowrap;
  pointer-events: none;
}

.msp-footer-cta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(10, 24, 37, 0.88), rgba(10, 24, 37, 0.62)),
    radial-gradient(circle at top right, rgba(57, 208, 182, 0.18), transparent 38%);
  border: 1px solid rgba(124, 226, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.msp-footer-cta__brand img {
  width: min(100%, 320px);
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.msp-footer-cta__brand p {
  margin: 0;
  max-width: 62ch;
  color: #b9ccda;
  line-height: 1.7;
}

.msp-footer-cta__action {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.msp-footer-mapline {
  position: relative;
  z-index: 1;
  height: 70px;
  margin: 14px 0 8px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(124, 226, 255, 0.08);
  background:
    linear-gradient(rgba(124, 226, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 226, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 208, 182, 0.06), rgba(124, 226, 255, 0.03));
  background-size: 36px 36px, 36px 36px, auto;
}

.msp-footer-mapline::before {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  top: 50%;
  height: 2px;
  transform: rotate(-2deg);
  background: linear-gradient(90deg, transparent, rgba(57, 208, 182, 0.65), rgba(255, 209, 102, 0.58), transparent);
  box-shadow: 0 0 18px rgba(57, 208, 182, 0.25);
}

.msp-footer-mapline span {
  position: absolute;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--msp-accent);
  box-shadow: 0 0 16px rgba(57, 208, 182, 0.9);
}

.msp-footer-mapline span:nth-child(1) { left: 12%; top: 52%; }
.msp-footer-mapline span:nth-child(2) { left: 31%; top: 42%; background: var(--msp-accent-2); }
.msp-footer-mapline span:nth-child(3) { left: 52%; top: 50%; background: var(--msp-accent-3); }
.msp-footer-mapline span:nth-child(4) { left: 70%; top: 39%; background: var(--msp-accent-2); }
.msp-footer-mapline span:nth-child(5) { left: 88%; top: 46%; }

.msp-footer__row {
  position: relative;
  z-index: 1;
  align-items: flex-start;
  padding: 24px 0 22px;
}

.msp-footer__identity {
  max-width: 380px;
}

.msp-footer__identity strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  color: var(--msp-text);
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.msp-footer__identity p {
  margin: 0;
  line-height: 1.7;
}

.msp-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 28px;
  min-width: min(100%, 520px);
}

.msp-footer__columns div {
  display: grid;
  gap: 9px;
}

.msp-footer__columns strong {
  color: var(--msp-text);
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 4px;
}

.msp-footer__columns a {
  color: var(--msp-muted);
}

.msp-footer__columns a:hover {
  color: var(--msp-accent-2);
}

.msp-footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 34px;
  border-top: 1px solid rgba(124, 226, 255, 0.08);
  color: #71889c;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .msp-header-actions {
    width: 100%;
    order: 3;
  }

  .msp-header-cta {
    display: none;
  }

  .msp-footer-cta,
  .msp-footer__row,
  .msp-footer__bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .msp-footer-cta__action {
    justify-content: flex-start;
  }

  .msp-footer__columns {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .msp-header-actions {
    display: contents;
  }

  .msp-nav {
    order: 4;
  }

  .msp-footer-cta {
    padding: 22px;
  }

  .msp-footer__columns {
    grid-template-columns: 1fr;
  }

  .msp-footer-mapline {
    height: 58px;
  }
}

.msp-dashboard-kpi span {
  display: block;
  color: var(--msp-muted);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.msp-dashboard-kpi strong {
  display: block;
  color: var(--msp-text);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 10px;
}

.msp-dashboard-kpi p {
  margin: 0;
  color: var(--msp-muted);
}

.msp-status-list {
  display: grid;
  gap: 12px;
}

.msp-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(124, 226, 255, 0.10);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.msp-status-row strong {
  color: var(--msp-text);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.25rem;
}

.msp-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}

.msp-section-heading h2 {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .msp-section-heading {
    align-items: start;
    flex-direction: column;
  }
}