.msp-main {
  position: relative;
}

.msp-container {
  width: min(100% - 3rem, 76ch);
  margin-inline: auto;
}

.msp-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.25rem, 5.4vw, 4rem);
  line-height: 1.15;
  text-wrap: balance;
}

.msp-hero .lead {
  max-width: 66ch;
}

.msp-copy {
  color: var(--muted);
  line-height: 1.85;
  max-width: 66ch;
}

.msp-copy-strong {
  color: #dce4ed;
  font-weight: 600;
}

.msp-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.msp-grid p {
  border-top: 1px solid var(--line);
  padding-top: var(--space-2);
  color: var(--muted);
}

.msp-roi-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.msp-roi-list li {
  color: var(--muted);
  padding-left: 0.9rem;
  border-left: 1px solid var(--accent, currentColor);
  line-height: 1.65;
}

.msp-closing {
  border-top: 1px solid var(--line);
  margin-top: var(--space-7);
}

.msp-actions {
  margin-top: var(--space-2);
}

@media (max-width: 900px) {
  .msp-container {
    width: min(100% - 2rem, 76ch);
  }

  .msp-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

@media (max-width: 560px) {
  .msp-container {
    width: min(100% - 1.25rem, 76ch);
  }

  .msp-copy,
  .msp-hero .lead,
  .msp-grid p {
    overflow-wrap: anywhere;
  }

  .msp-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .msp-actions .button {
    width: 100%;
    text-align: center;
    white-space: normal;
    line-height: 1.35;
  }
}
