/* ============================================================
   msp-brief.css
   -------------
   Dedicated Megan / Sui Generis MSP brief page.
   Scoped to body.msp-brief-page to avoid spicy cascade nonsense.
   ============================================================ */

/* Brief pages are meeting artifacts, not an animation playground. Make
   above-the-fold content readable immediately instead of waiting on reveal
   timing/intersection quirks. */
.msp-brief-page .reveal {
  opacity: 1 !important;
  transform: none !important;
}

.msp-brief-page {
  background:
    radial-gradient(circle at 18% 4%, rgba(212, 168, 75, 0.18), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(0, 107, 94, 0.22), transparent 36%),
    var(--teal-deeper);
}

.msp-hero {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.msp-hero::before,
.msp-hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  pointer-events: none;
}

.msp-hero::before {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 120px;
  background: rgba(212, 168, 75, 0.12);
}

.msp-hero::after {
  width: 520px;
  height: 520px;
  left: -220px;
  bottom: -160px;
  background: rgba(0, 107, 94, 0.22);
}

.msp-hero__grid {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  position: relative;
  z-index: 1;
}

.msp-eyebrow {
  align-items: center;
  color: var(--gold-light);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.msp-hero__title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.92;
  max-width: 860px;
}

.msp-hero__lede {
  color: #FFFFFF;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  font-weight: 500;
  line-height: 1.72;
  margin-top: 28px;
  max-width: 760px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.34);
}

.msp-hero__lede strong,
.msp-card strong,
.msp-callout strong {
  color: #fff;
}

.msp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.msp-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  color: var(--teal-deeper);
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.06em;
  padding: 12px 18px;
  text-transform: uppercase;
  transition: transform 180ms var(--ease-out), border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.msp-button:hover {
  background: #fff;
  border-color: var(--gold-light);
  color: var(--teal-deeper);
  transform: translateY(-2px);
}

.msp-button--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--teal-deeper);
}

.msp-button--primary:hover {
  background: linear-gradient(135deg, var(--gold-light), #f3daa6);
}

.msp-brief-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  padding: clamp(24px, 4vw, 38px);
}

.msp-brief-card__topline {
  align-items: center;
  color: var(--gold-light);
  display: flex;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.msp-brief-card h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.msp-brief-card p {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 500;
  line-height: 1.7;
}

.msp-fact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.msp-fact {
  align-items: flex-start;
  background: rgba(10, 31, 28, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  display: grid;
  gap: 3px 12px;
  grid-template-columns: 34px 1fr;
  padding: 14px;
}

.msp-fact .material-symbols-outlined {
  color: var(--gold-light);
  grid-row: span 2;
}

.msp-fact strong {
  color: #fff;
  font-size: 0.92rem;
}

.msp-fact span:last-child {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  line-height: 1.5;
}

.msp-section-heading {
  margin-bottom: 42px;
  max-width: 780px;
}

.msp-section-heading h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 16px;
}

.msp-section-heading p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.72;
}

.msp-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.msp-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
  position: relative;
}

.msp-card--gold {
  background: linear-gradient(145deg, rgba(212, 168, 75, 0.18), rgba(255, 255, 255, 0.055));
  border-color: rgba(212, 168, 75, 0.34);
}

.msp-card--danger {
  background: linear-gradient(145deg, rgba(239, 83, 80, 0.16), rgba(255, 255, 255, 0.045));
  border-color: rgba(239, 83, 80, 0.28);
}

.msp-card__icon {
  align-items: center;
  background: rgba(212, 168, 75, 0.14);
  border-radius: 16px;
  color: var(--gold-light);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  margin-bottom: 18px;
  width: 46px;
}

.msp-card h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.18;
  margin-bottom: 12px;
}

.msp-card p,
.msp-card li {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.93rem;
  line-height: 1.64;
}

.msp-card ul {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.msp-status-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.msp-status {
  background: rgba(10, 31, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 18px;
}

.msp-status__label {
  color: var(--text-on-dark-subtle);
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.msp-status__value {
  color: #fff;
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1;
}

.msp-status__note {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  font-size: 0.78rem;
  line-height: 1.45;
  margin-top: 8px;
}

.msp-raci-wrap {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  overflow: auto;
  padding: clamp(16px, 3vw, 26px);
}

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

.msp-raci-table caption {
  color: var(--text-on-dark-muted);
  caption-side: bottom;
  font-size: 0.78rem;
  padding-top: 16px;
  text-align: left;
}

.msp-raci-table th,
.msp-raci-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--text-on-dark-muted);
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
}

.msp-raci-table thead th {
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.msp-raci-table tbody th {
  color: #fff;
  font-weight: 600;
  width: 42%;
}

.msp-raci-table strong {
  color: #fff;
}

.msp-callout {
  background: linear-gradient(135deg, rgba(212, 168, 75, 0.18), rgba(0, 107, 94, 0.22));
  border: 1px solid rgba(212, 168, 75, 0.36);
  border-radius: 32px;
  padding: clamp(28px, 5vw, 52px);
}

.msp-callout h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1;
  margin-bottom: 18px;
}

.msp-callout p {
  color: var(--text-on-dark-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 860px;
}

.msp-script {
  background: rgba(5, 14, 12, 0.72);
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.32;
  margin-top: 24px;
  padding: 24px;
}

.msp-footer-note {
  color: var(--text-on-dark-subtle);
  font-size: 0.78rem;
  line-height: 1.6;
  margin-top: 28px;
  max-width: 860px;
}

@media (max-width: 1407px) {
  .msp-status-grid,
  .msp-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .msp-hero__grid,
  .msp-card-grid,
  .msp-card-grid--two,
  .msp-status-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .msp-hero {
    min-height: auto;
  }

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

  .msp-button {
    justify-content: center;
    width: 100%;
  }

  .msp-raci-wrap {
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 18px;
  }
}
