.mapro-sdp-dashboard {
  color: #171717;
  font-family: inherit;
}

.mapro-sdp-celebration[hidden] {
  display: none;
}

.mapro-sdp-celebration {
  bottom: 24px;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 24px;
  transform: translateY(18px) scale(0.98);
  transition: opacity 260ms ease, transform 260ms ease;
  width: min(420px, calc(100vw - 32px));
  z-index: 99999;
}

.mapro-sdp-celebration.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mapro-sdp-celebration__card {
  background: #111;
  border: 1px solid #d9bd6a;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  color: #fff;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.mapro-sdp-celebration__card::before {
  background: #d9bd6a;
  content: "";
  display: block;
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.mapro-sdp-celebration__card .mapro-sdp-eyebrow {
  color: #d9bd6a;
  font-weight: 900;
}

.mapro-sdp-celebration__card h3 {
  color: #fff;
  font-size: clamp(26px, 6vw, 44px);
  line-height: 0.95;
  margin: 0 34px 10px 0;
}

.mapro-sdp-celebration__card p:last-child {
  color: #d8d8d8;
  margin: 0;
}

.mapro-sdp-celebration__close {
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 999px;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  font-size: 24px;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 34px;
}

.mapro-sdp-celebration__burst {
  inset: -18px;
  pointer-events: none;
  position: absolute;
}

.mapro-sdp-celebration__burst span {
  animation: mapro-sdp-burst 1100ms ease-out both;
  background: #d9bd6a;
  border-radius: 999px;
  height: 10px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 10px;
}

.mapro-sdp-celebration__burst span:nth-child(2) {
  animation-delay: 80ms;
  background: #fff;
}

.mapro-sdp-celebration__burst span:nth-child(3) {
  animation-delay: 140ms;
  background: #1f7a4f;
}

.mapro-sdp-celebration__burst span:nth-child(4) {
  animation-delay: 200ms;
  background: #d9bd6a;
}

.mapro-sdp-celebration__burst span:nth-child(5) {
  animation-delay: 260ms;
  background: #fff;
}

.mapro-sdp-celebration__burst span:nth-child(6) {
  animation-delay: 320ms;
  background: #1f7a4f;
}

@keyframes mapro-sdp-burst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg) translateX(0) scale(0.5);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--mapro-angle, 60deg)) translateX(210px) scale(1);
  }
}

.mapro-sdp-celebration__burst span:nth-child(1) { --mapro-angle: 35deg; }
.mapro-sdp-celebration__burst span:nth-child(2) { --mapro-angle: 95deg; }
.mapro-sdp-celebration__burst span:nth-child(3) { --mapro-angle: 155deg; }
.mapro-sdp-celebration__burst span:nth-child(4) { --mapro-angle: 215deg; }
.mapro-sdp-celebration__burst span:nth-child(5) { --mapro-angle: 275deg; }
.mapro-sdp-celebration__burst span:nth-child(6) { --mapro-angle: 335deg; }

.mapro-sdp-hero {
  align-items: center;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
}

.mapro-sdp-eyebrow {
  color: #666;
  font-size: 13px;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.mapro-sdp-hero h2 {
  margin: 0;
}

.mapro-sdp-status {
  border-radius: 6px;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 10px;
}

.mapro-sdp-status.is-ready {
  background: #e7f7ed;
  color: #137333;
}

.mapro-sdp-phone-required {
  align-items: center;
  background: linear-gradient(135deg, #b31925, #ea3342);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(179, 25, 37, 0.22);
  color: #fff;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  margin: 0 0 20px;
  overflow: hidden;
  padding: clamp(20px, 4vw, 34px);
  position: relative;
}

.mapro-sdp-phone-required::before {
  background: rgba(255, 255, 255, 0.16);
  content: "";
  height: 220px;
  position: absolute;
  right: -74px;
  top: -116px;
  transform: rotate(28deg);
  width: 170px;
}

.mapro-sdp-phone-required.is-success {
  background: linear-gradient(135deg, #126b40, #1f8f5d);
  box-shadow: 0 18px 48px rgba(18, 107, 64, 0.18);
}

.mapro-sdp-phone-required .mapro-sdp-eyebrow {
  color: #ffe8a3;
  font-weight: 900;
}

.mapro-sdp-phone-required h3 {
  color: #fff;
  font-size: clamp(28px, 5vw, 54px);
  line-height: 0.95;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.mapro-sdp-phone-required p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin: 0;
  max-width: 760px;
}

.mapro-sdp-phone-required__form {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 18px;
  position: relative;
  z-index: 1;
}

.mapro-sdp-phone-required__form label {
  color: #fff;
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.mapro-sdp-phone-required__form div {
  display: flex;
  gap: 10px;
}

.mapro-sdp-phone-required__form input {
  background: #fff;
  border: 0;
  border-radius: 6px;
  color: #111;
  flex: 1;
  font: inherit;
  font-weight: 800;
  min-width: 0;
  padding: 15px 14px;
}

.mapro-sdp-phone-required__form button {
  background: #111;
  border: 0;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 14px 18px;
  text-transform: uppercase;
  white-space: nowrap;
}

.mapro-sdp-status.is-missing {
  background: #fdeaea;
  color: #a50e0e;
}

.mapro-sdp-link-row {
  margin-bottom: 20px;
}

.mapro-sdp-link-row label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

.mapro-sdp-link-row div {
  display: flex;
  gap: 8px;
}

.mapro-sdp-link-row input,
.mapro-sdp-copy-source {
  min-width: 260px;
  width: 100%;
}

.mapro-sdp-qr-card {
  align-items: center;
  background: #111;
  border: 1px solid #242424;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  color: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 180px;
  margin: 0 0 20px;
  padding: 22px;
}

.mapro-sdp-qr-card h3 {
  color: #fff;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 0.95;
  margin: 0 0 10px;
}

.mapro-sdp-qr-card p {
  color: #d8d8d8;
  margin: 0 0 16px;
}

.mapro-sdp-qr-card .mapro-sdp-eyebrow {
  color: #d9bd6a;
  font-weight: 900;
  letter-spacing: 0;
}

.mapro-sdp-qr-card__actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.mapro-sdp-qr-card__actions input {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #111;
  min-width: 0;
  padding: 10px 12px;
  width: 100%;
}

.mapro-sdp-qr-card__actions button,
.mapro-sdp-qr-card__actions a {
  background: #d9bd6a;
  border: 0;
  border-radius: 6px;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  padding: 13px 14px;
  text-decoration: none;
  text-transform: uppercase;
}

.mapro-sdp-qr-card__actions a {
  background: #fff;
}

.mapro-sdp-qr-card__code {
  background: #fff;
  border-radius: 8px;
  padding: 12px;
}

.mapro-sdp-qr-card__code img {
  display: block;
  height: auto;
  width: 100%;
}

.mapro-sdp-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 20px;
}

.mapro-sdp-stats div,
.mapro-sdp-panel {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
}

.mapro-sdp-stats span {
  color: #666;
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}

.mapro-sdp-stats strong {
  display: block;
  font-size: 24px;
}

.mapro-sdp-stat-highlight {
  background: #111;
  color: #fff;
}

.mapro-sdp-stat-highlight span {
  color: #d9bd6a;
}

.mapro-sdp-stat-team {
  background: #d9bd6a;
  color: #111;
}

.mapro-sdp-stat-team span {
  color: #111;
}

.mapro-sdp-achievements {
  background: #111;
  border: 1px solid #d9bd6a;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  color: #fff;
  display: grid;
  gap: 18px;
  margin-bottom: 20px;
  padding: 22px;
}

.mapro-sdp-achievements__intro {
  align-items: end;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
}

.mapro-sdp-achievements__intro .mapro-sdp-eyebrow {
  color: #d9bd6a;
  font-weight: 900;
}

.mapro-sdp-achievements__intro h3 {
  color: #fff;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
}

.mapro-sdp-achievements__intro p:last-child {
  color: #d8d8d8;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.mapro-sdp-achievements__summary {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mapro-sdp-achievements__summary div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 16px;
}

.mapro-sdp-achievements__summary span,
.mapro-sdp-achievement__content span {
  color: #d9bd6a;
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.mapro-sdp-achievements__summary strong {
  color: #fff;
  display: block;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.mapro-sdp-achievement-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mapro-sdp-achievement {
  background: #fff;
  border: 1px solid rgba(217, 189, 106, 0.35);
  border-radius: 8px;
  color: #111;
  display: grid;
  gap: 14px;
  grid-template-columns: 58px minmax(0, 1fr);
  min-width: 0;
  padding: 14px;
}

.mapro-sdp-achievement.is-locked {
  background: #f6f6f6;
  border-color: #e2e2e2;
  opacity: 0.78;
}

.mapro-sdp-achievement__badge {
  align-items: center;
  background: #111;
  border: 1px solid #d9bd6a;
  border-radius: 999px;
  color: #d9bd6a;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  line-height: 1;
  width: 58px;
}

.mapro-sdp-achievement.is-locked .mapro-sdp-achievement__badge {
  background: #e7e7e7;
  border-color: #d0d0d0;
  color: #777;
}

.mapro-sdp-achievement__content {
  min-width: 0;
}

.mapro-sdp-achievement__content h4 {
  color: #111;
  font-size: 18px;
  line-height: 1.05;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.mapro-sdp-achievement__content p {
  color: #555;
  font-size: 13px;
  line-height: 1.35;
  margin: 0 0 12px;
}

.mapro-sdp-achievement__bar {
  background: #e9e9e9;
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.mapro-sdp-achievement__bar i {
  background: linear-gradient(90deg, #d9bd6a, #f3dc89);
  border-radius: inherit;
  display: block;
  height: 100%;
}

.mapro-sdp-achievement__content small {
  color: #666;
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-top: 8px;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.mapro-sdp-bonus-tracker {
  background: linear-gradient(135deg, #f7f3e8, #fff 48%, #f2e6bf);
  border: 1px solid #d9bd6a;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding: 20px;
}

.mapro-sdp-bonus-tracker__head {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.28fr);
  margin-bottom: 16px;
}

.mapro-sdp-bonus-tracker__head .mapro-sdp-eyebrow {
  color: #9b7925;
  font-weight: 900;
}

.mapro-sdp-bonus-tracker__head h3 {
  color: #111;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.92;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.mapro-sdp-bonus-tracker__head p {
  color: #555;
  font-size: 16px;
  margin: 0;
}

.mapro-sdp-bonus-tracker__head > div:last-child {
  background: #111;
  border-radius: 8px;
  color: #fff;
  padding: 16px;
}

.mapro-sdp-bonus-tracker__head > div:last-child span,
.mapro-sdp-bonus-card__top span,
.mapro-sdp-bonus-card__numbers span {
  color: #d9bd6a;
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.mapro-sdp-bonus-tracker__head > div:last-child strong {
  color: #fff;
  display: block;
  font-size: 28px;
  line-height: 1;
}

.mapro-sdp-bonus-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mapro-sdp-bonus-card {
  background: #111;
  border: 1px solid #d9bd6a;
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.mapro-sdp-bonus-card::before {
  background: radial-gradient(circle at top right, rgba(217, 189, 106, 0.35), transparent 34%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.mapro-sdp-bonus-card > * {
  position: relative;
}

.mapro-sdp-bonus-card.is-qualified {
  background: #0f271a;
  border-color: #39b36e;
}

.mapro-sdp-bonus-card__top {
  align-items: start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mapro-sdp-bonus-card__top strong {
  color: #fff;
  display: block;
  flex: 0 0 auto;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.9;
  text-align: right;
}

.mapro-sdp-bonus-card__meter {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  height: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.mapro-sdp-bonus-card__meter i {
  background: linear-gradient(90deg, #d9bd6a, #fff2a8);
  border-radius: inherit;
  display: block;
  height: 100%;
}

.mapro-sdp-bonus-card.is-qualified .mapro-sdp-bonus-card__meter i {
  background: linear-gradient(90deg, #39b36e, #baf7d2);
}

.mapro-sdp-bonus-card__numbers {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}

.mapro-sdp-bonus-card__numbers div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  min-width: 0;
  padding: 12px;
}

.mapro-sdp-bonus-card__numbers strong {
  color: #fff;
  display: block;
  font-size: 18px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.mapro-sdp-bonus-card p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.mapro-sdp-volume-panel {
  align-items: stretch;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  margin-bottom: 20px;
  padding: 18px;
}

.mapro-sdp-volume-panel h3 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.95;
  margin: 0 0 10px;
}

.mapro-sdp-volume-panel p {
  color: #666;
  margin: 0;
}

.mapro-sdp-volume-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mapro-sdp-volume-grid div {
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 16px;
}

.mapro-sdp-volume-grid span {
  color: #666;
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.mapro-sdp-volume-grid strong {
  display: block;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.mapro-sdp-team-panel {
  margin-bottom: 20px;
}

.mapro-sdp-team-hero {
  background: linear-gradient(135deg, #0d0d0d, #1f2026 52%, #3b321d);
  border: 1px solid #d9bd6a;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  color: #fff;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(180px, 0.85fr) minmax(260px, 1fr) minmax(220px, 0.85fr);
  padding: 22px;
}

.mapro-sdp-team-brand {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(217, 189, 106, 0.38);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: center;
  min-height: 180px;
  padding: 14px;
}

.mapro-sdp-team-brand img {
  display: block;
  height: auto;
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
}

.mapro-sdp-team-copy h3 {
  color: #fff;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.92;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.mapro-sdp-team-copy p:last-child {
  color: #d8d8d8;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.mapro-sdp-team-metrics {
  display: grid;
  gap: 10px;
}

.mapro-sdp-team-metrics div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 14px;
}

.mapro-sdp-team-metrics span {
  color: #d9bd6a;
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.mapro-sdp-team-metrics strong {
  color: #fff;
  display: block;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.mapro-sdp-team-board {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 16px;
  overflow: hidden;
}

.mapro-sdp-team-board__head {
  align-items: center;
  background: #f7f7f7;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  padding: 18px;
}

.mapro-sdp-team-board__head h4 {
  font-size: 28px;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.mapro-sdp-team-board__head > span {
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 9px 12px;
  text-transform: uppercase;
}

.mapro-sdp-team-table td strong {
  color: #111;
  display: block;
  font-size: 16px;
}

.mapro-sdp-team-table td {
  color: #111;
  font-size: 15px;
  padding: 18px 14px;
}

.mapro-sdp-team-table th {
  background: #1f2026;
  color: #fff;
  font-size: 14px;
  padding: 16px 14px;
}

.mapro-sdp-team-email span,
.mapro-sdp-team-phone span {
  color: #d0ad50;
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.mapro-sdp-team-email strong,
.mapro-sdp-team-phone strong {
  color: #111;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.mapro-sdp-team-phone strong {
  color: #303030;
}

.mapro-sdp-team-phone.is-missing strong {
  color: #b31925;
}

.mapro-sdp-team-phone.is-missing span {
  color: #b31925;
}

.mapro-sdp-team-table td small {
  color: #777;
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-top: 5px;
  text-transform: uppercase;
}

.mapro-sdp-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mapro-sdp-grid > * {
  min-width: 0;
}

.mapro-sdp-grid--payouts-only {
  grid-template-columns: 1fr;
}

.mapro-sdp-payouts-panel {
  width: 100%;
}

.mapro-sdp-panel h3 {
  margin-top: 0;
}

.mapro-sdp-table-wrap {
  overflow-x: auto;
  width: 100%;
}

.mapro-sdp-panel table,
.mapro-sdp-table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.mapro-sdp-panel th,
.mapro-sdp-panel td {
  border-bottom: 1px solid #eee;
  padding: 8px 6px;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
}

.mapro-sdp-panel th {
  background: #1f2026;
  color: #fff;
  font-weight: 800;
}

.mapro-sdp-panel td {
  color: #666;
}


.mapro-sdp-referral-banner {
  background: #111;
  border: 1px solid #262626;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  color: #fff;
  font-family: inherit;
  margin: 18px 0;
  overflow: hidden;
  padding: 24px;
}

.mapro-sdp-referral-banner__status {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.mapro-sdp-referral-banner__status span {
  background: #888;
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.06);
  display: inline-block;
  flex: 0 0 auto;
  height: 14px;
  width: 14px;
}

.mapro-sdp-referral-banner__status strong {
  display: block;
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.mapro-sdp-referral-banner p {
  color: #d7d7d7;
  font-size: 16px;
  margin: 0;
}

.mapro-sdp-referral-banner__details {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px 0 0;
}

.mapro-sdp-referral-banner__details div {
  background: #f7f7f7;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  color: #111;
  min-width: 0;
  padding: 16px;
}

.mapro-sdp-referral-banner__details dt {
  color: #707070;
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.mapro-sdp-referral-banner__details dd {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
  overflow-wrap: anywhere;
}

.mapro-sdp-referral-banner.is-detected {
  border-color: #1f7a4f;
}

.mapro-sdp-referral-banner.is-detected .mapro-sdp-referral-banner__status span {
  background: #1f7a4f;
}

.mapro-sdp-referral-banner.is-empty {
  border-color: #b63a3a;
}

.mapro-sdp-referral-banner.is-empty .mapro-sdp-referral-banner__status span {
  background: #d73838;
}

.mapro-sdp-referral-banner.is-warning {
  border-color: #d9b96e;
}

.mapro-sdp-referral-banner.is-warning .mapro-sdp-referral-banner__status span {
  background: #d9b96e;
}

.mapro-sdp-leaderboard {
  background: #0d0d0d;
  border: 1px solid #d9bd6a;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  color: #fff;
  overflow: hidden;
}

.mapro-sdp-leaderboard__hero {
  align-items: end;
  background:
    radial-gradient(circle at 82% 12%, rgba(217, 189, 106, 0.24), transparent 32%),
    linear-gradient(135deg, #111 0%, #202126 55%, #3b321d 100%);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.28fr);
  padding: clamp(24px, 5vw, 54px);
}

.mapro-sdp-leaderboard__hero .mapro-sdp-eyebrow {
  color: #d9bd6a;
  font-weight: 900;
}

.mapro-sdp-leaderboard__hero h2 {
  color: #fff;
  font-size: clamp(44px, 9vw, 112px);
  line-height: 0.85;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.mapro-sdp-leaderboard__hero p:last-child {
  color: #d8d8d8;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.35;
  margin: 0;
  max-width: 820px;
}

.mapro-sdp-leaderboard__period {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(217, 189, 106, 0.42);
  border-radius: 8px;
  padding: 18px;
}

.mapro-sdp-leaderboard__period span,
.mapro-sdp-podium-card__content span,
.mapro-sdp-podium-card__split span,
.mapro-sdp-leaderboard-row span {
  color: #d9bd6a;
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.mapro-sdp-leaderboard__period strong {
  color: #fff;
  display: block;
  font-size: 28px;
  line-height: 1;
}

.mapro-sdp-leaderboard__empty {
  background: #fff;
  color: #111;
  font-size: 18px;
  font-weight: 900;
  padding: 28px;
}

.mapro-sdp-leaderboard__podium {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  padding: 18px;
}

.mapro-sdp-podium-card {
  background: #fff;
  border: 1px solid rgba(217, 189, 106, 0.45);
  border-radius: 8px;
  color: #111;
  min-width: 0;
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.mapro-sdp-podium-card.rank-1 {
  background: linear-gradient(135deg, #f8e6a4, #fff 48%, #d9bd6a);
  box-shadow: 0 18px 45px rgba(217, 189, 106, 0.2);
}

.mapro-sdp-podium-card__rank {
  background: #111;
  border-radius: 999px;
  color: #d9bd6a;
  font-size: 14px;
  font-weight: 900;
  padding: 8px 11px;
  position: absolute;
  right: 16px;
  top: 16px;
}

.mapro-sdp-podium-card__avatar {
  align-items: center;
  background: #111;
  border: 2px solid #d9bd6a;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 22px;
  font-weight: 900;
  height: 70px;
  justify-content: center;
  margin-bottom: 18px;
  width: 70px;
}

.mapro-sdp-podium-card__content h3 {
  color: #111;
  font-size: clamp(24px, 4vw, 46px);
  line-height: 0.95;
  margin: 0 70px 14px 0;
  text-transform: uppercase;
}

.mapro-sdp-podium-card__content > strong {
  color: #111;
  display: block;
  font-size: clamp(28px, 5vw, 58px);
  line-height: 0.9;
  margin-bottom: 18px;
}

.mapro-sdp-podium-card__split {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mapro-sdp-podium-card__split div {
  background: rgba(17, 17, 17, 0.06);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  padding: 12px;
}

.mapro-sdp-podium-card__split strong {
  color: #111;
  display: block;
  font-size: 18px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.mapro-sdp-leaderboard__board {
  background: #fff;
  color: #111;
  padding: 0 18px 18px;
}

.mapro-sdp-leaderboard__board-head,
.mapro-sdp-leaderboard-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 78px minmax(220px, 1.2fr) repeat(3, minmax(140px, 0.8fr));
}

.mapro-sdp-leaderboard__board-head {
  background: #1f2026;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 16px;
  text-transform: uppercase;
}

.mapro-sdp-leaderboard-row {
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 16px;
}

.mapro-sdp-leaderboard-row:nth-child(odd) {
  background: #f7f6f3;
}

.mapro-sdp-leaderboard-row__rank {
  color: #111;
  font-size: 24px;
  font-weight: 900;
}

.mapro-sdp-leaderboard-row__seller {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.mapro-sdp-leaderboard-row__seller span {
  align-items: center;
  background: #111;
  border-radius: 999px;
  color: #d9bd6a;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 13px;
  height: 42px;
  justify-content: center;
  margin: 0;
  width: 42px;
}

.mapro-sdp-leaderboard-row__seller strong,
.mapro-sdp-leaderboard-row div > strong {
  color: #111;
  display: block;
  font-size: 18px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.mapro-sdp-leaderboard-row__total strong {
  font-size: 22px;
}

@media (max-width: 760px) {
  .mapro-sdp-celebration {
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: auto;
  }

  .mapro-sdp-hero,
  .mapro-sdp-link-row div {
    align-items: stretch;
    flex-direction: column;
  }

  .mapro-sdp-phone-required {
    grid-template-columns: 1fr;
  }

  .mapro-sdp-phone-required__form div {
    flex-direction: column;
  }

  .mapro-sdp-stats,
  .mapro-sdp-grid,
  .mapro-sdp-achievements__intro,
  .mapro-sdp-achievements__summary,
  .mapro-sdp-achievement-grid,
  .mapro-sdp-bonus-tracker__head,
  .mapro-sdp-bonus-grid,
  .mapro-sdp-bonus-card__numbers,
  .mapro-sdp-volume-panel,
  .mapro-sdp-volume-grid,
  .mapro-sdp-team-hero {
    grid-template-columns: 1fr;
  }

  .mapro-sdp-team-board__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .mapro-sdp-qr-card {
    grid-template-columns: 1fr;
  }

  .mapro-sdp-qr-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .mapro-sdp-qr-card__code {
    max-width: 260px;
  }

  .mapro-sdp-referral-banner {
    padding: 20px;
  }

  .mapro-sdp-referral-banner__details {
    grid-template-columns: 1fr;
  }

  .mapro-sdp-leaderboard__hero,
  .mapro-sdp-leaderboard__podium,
  .mapro-sdp-leaderboard__board-head,
  .mapro-sdp-leaderboard-row {
    grid-template-columns: 1fr;
  }

  .mapro-sdp-leaderboard__board-head {
    display: none;
  }

  .mapro-sdp-leaderboard-row {
    gap: 14px;
  }

  .mapro-sdp-leaderboard-row > div {
    background: #f7f7f7;
    border-radius: 8px;
    padding: 12px;
  }

  .mapro-sdp-leaderboard-row__seller {
    background: transparent !important;
    padding: 0 !important;
  }
}
