:root {
  --ms-forest: #0e3327;
  --ms-charcoal: #111713;
  --ms-ink: #17211d;
  --ms-muted: rgba(23, 33, 29, 0.66);
  --ms-moss: #1b6d55;
  --ms-sand: #d8c7a1;
  --ms-ivory: #f7f3ea;
  --ms-cream: #fffaf0;
  --ms-line: rgba(14, 51, 39, 0.13);
}

body {
  background: var(--ms-cream);
}

body:has(script[src="/homepage-upgrade.js"]) main:not(.ms-home) {
  visibility: hidden;
}

body:has(.ms-home) header.sticky {
  background: rgba(17, 23, 19, 0.76) !important;
  border-bottom-color: rgba(255, 250, 240, 0.1) !important;
  box-shadow: none;
}

body:has(.ms-home) header .leading-tight > span:last-child {
  display: none !important;
}

.ms-home {
  background: var(--ms-cream);
  color: var(--ms-ink);
}

.ms-wrap {
  margin: 0 auto;
  max-width: 76rem;
  padding: 0 1.25rem;
}

.ms-display {
  font-family: var(--font-display, inherit);
  letter-spacing: 0;
}

.ms-kicker {
  color: var(--ms-moss);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ms-section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.ms-hero {
  background:
    linear-gradient(90deg, rgba(17, 23, 19, 0.95), rgba(17, 23, 19, 0.76) 48%, rgba(17, 23, 19, 0.3)),
    url("/images/hero-intelligence.webp") center / cover;
  color: var(--ms-cream);
  min-height: 94svh;
  overflow: hidden;
}

.ms-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  min-height: 94svh;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

@media (min-width: 980px) {
  .ms-hero-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(24rem, 0.82fr);
  }
}

.ms-hero h1 {
  font-size: clamp(3rem, 6.6vw, 6.15rem);
  font-weight: 500;
  line-height: 0.98;
  max-width: 54rem;
}

.ms-hero-copy {
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.72;
  margin-top: 1.45rem;
  max-width: 39rem;
}

.ms-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.9rem;
}

.ms-btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.78rem 1.08rem;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.ms-btn-primary {
  background: var(--ms-sand);
  color: var(--ms-charcoal);
}

.ms-btn-secondary {
  border: 1px solid rgba(255, 250, 240, 0.24);
  color: var(--ms-cream);
}

.ms-artifact {
  background: rgba(255, 250, 240, 0.96);
  border: 1px solid rgba(255, 250, 240, 0.42);
  color: var(--ms-ink);
  padding: clamp(1rem, 2.2vw, 1.55rem);
}

.ms-system-card {
  background:
    radial-gradient(circle at 50% 48%, rgba(27, 109, 85, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(247, 243, 234, 0.88));
  min-height: 31rem;
}

.ms-system-head,
.ms-system-footer {
  align-items: center;
  display: flex;
  gap: 0.7rem;
  justify-content: space-between;
}

.ms-system-head span,
.ms-system-footer span {
  color: rgba(23, 33, 29, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ms-system-diagram {
  aspect-ratio: 1.6 / 1;
  margin: clamp(1.5rem, 4vw, 2.8rem) 0;
  position: relative;
}

.ms-system-diagram svg {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.ms-system-diagram path,
.ms-flow path {
  fill: none;
  stroke: rgba(14, 51, 39, 0.28);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.ms-node {
  align-items: center;
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(14, 51, 39, 0.12);
  color: var(--ms-forest);
  display: flex;
  font-size: 0.8rem;
  font-weight: 800;
  justify-content: center;
  min-height: 3.7rem;
  padding: 0.7rem;
  position: absolute;
  text-align: center;
  z-index: 1;
}

.ms-node-source {
  left: 0;
  width: 7.2rem;
}

.ms-node-source:nth-child(1) {
  top: 8%;
}

.ms-node-source:nth-child(2) {
  bottom: 8%;
}

.ms-node-core {
  border-color: rgba(27, 109, 85, 0.28);
  box-shadow: 0 18px 48px rgba(14, 51, 39, 0.12);
  flex-direction: column;
  gap: 0.45rem;
  left: 50%;
  min-height: 8.5rem;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 9.6rem;
}

.ms-node-core img {
  height: 3.1rem;
  width: auto;
}

.ms-node-output {
  right: 0;
  width: 7.2rem;
}

.ms-node-output:nth-child(4) {
  top: 8%;
}

.ms-node-output:nth-child(5) {
  bottom: 8%;
}

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

.ms-visual-card {
  background: var(--ms-cream);
  border: 1px solid var(--ms-line);
  min-height: 13rem;
  padding: 1.2rem;
}

.ms-card-icon {
  display: block;
  height: 7.2rem;
  margin-bottom: 1.1rem;
  position: relative;
}

.ms-icon-records {
  background:
    linear-gradient(#0e3327, #0e3327) 12% 30% / 64% 2px no-repeat,
    linear-gradient(#0e3327, #0e3327) 12% 50% / 78% 2px no-repeat,
    linear-gradient(#0e3327, #0e3327) 12% 70% / 46% 2px no-repeat,
    linear-gradient(135deg, rgba(14, 51, 39, 0.06), rgba(27, 109, 85, 0.1));
}

.ms-icon-season {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 32%, rgba(14, 51, 39, 0.22) 33% 35%, transparent 36%),
    conic-gradient(from 120deg, rgba(27, 109, 85, 0.78), rgba(216, 199, 161, 0.88), rgba(14, 51, 39, 0.22), rgba(27, 109, 85, 0.78));
}

.ms-icon-portfolio {
  background:
    linear-gradient(180deg, transparent 0 42%, rgba(14, 51, 39, 0.16) 42% 45%, transparent 45%),
    linear-gradient(90deg, transparent 0 30%, rgba(14, 51, 39, 0.16) 30% 33%, transparent 33% 63%, rgba(14, 51, 39, 0.16) 63% 66%, transparent 66%),
    linear-gradient(135deg, rgba(14, 51, 39, 0.06), rgba(27, 109, 85, 0.1));
}

.ms-visual-card h3 {
  color: var(--ms-forest);
  font-family: var(--font-display, inherit);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
}

.ms-flow {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 0.5fr 1fr 0.5fr 1fr 0.5fr 1fr;
  margin-top: 2rem;
}

.ms-flow div {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: var(--ms-ivory);
  border: 1px solid var(--ms-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ms-flow span {
  color: var(--ms-moss);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ms-flow strong {
  color: var(--ms-forest);
  font-family: var(--font-display, inherit);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 500;
  margin-top: 0.25rem;
}

.ms-output-layout,
.ms-governance-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 900px) {
  .ms-output-layout,
  .ms-governance-layout {
    grid-template-columns: 0.72fr 1.28fr;
  }
}

.ms-output-diagram {
  display: grid;
  gap: 1px;
}

.ms-output-card {
  align-items: center;
  background: var(--ms-cream);
  border: 1px solid var(--ms-line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 4.2rem 1fr;
  padding: 1rem;
}

.ms-output-card span {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(27, 109, 85, 0.86) 0 12%, transparent 13%),
    linear-gradient(90deg, transparent 0 48%, rgba(14, 51, 39, 0.22) 48% 52%, transparent 52%),
    linear-gradient(180deg, transparent 0 48%, rgba(14, 51, 39, 0.22) 48% 52%, transparent 52%),
    rgba(27, 109, 85, 0.08);
  display: block;
}

.ms-output-card h3 {
  color: var(--ms-forest);
  font-family: var(--font-display, inherit);
  font-size: 1.3rem;
  font-weight: 500;
}

.ms-output-card p {
  color: var(--ms-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-top: 0.25rem;
}

@media (max-width: 760px) {
  .ms-system-card {
    min-height: auto;
  }

  .ms-system-diagram {
    aspect-ratio: auto;
    display: grid;
    gap: 0.75rem;
    margin: 1.5rem 0;
  }

  .ms-system-diagram svg {
    display: none;
  }

  .ms-node,
  .ms-node-core,
  .ms-node-output,
  .ms-node-source {
    left: auto;
    min-height: 3.2rem;
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
  }

  .ms-node-core {
    min-height: 5rem;
  }

  .ms-visual-grid,
  .ms-flow {
    grid-template-columns: 1fr;
  }

  .ms-flow svg {
    height: 1.4rem;
    justify-self: center;
    transform: rotate(90deg);
    width: 4rem;
  }

  .ms-visual-card {
    min-height: 10rem;
  }

  .ms-card-icon {
    height: 5.6rem;
  }
}

.ms-artifact-head {
  align-items: flex-start;
  border-bottom: 1px solid var(--ms-line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-bottom: 0.95rem;
}

.ms-artifact h2 {
  color: var(--ms-forest);
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.14;
  margin-top: 0.42rem;
}

.ms-artifact-sub {
  color: rgba(23, 33, 29, 0.58);
  font-size: 0.78rem;
  line-height: 1.5;
  margin-top: 0.42rem;
}

.ms-score {
  border: 1px solid var(--ms-line);
  color: var(--ms-forest);
  min-width: 5rem;
  padding: 0.82rem 0.9rem;
  text-align: center;
}

.ms-score strong {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.ms-score span {
  color: var(--ms-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ms-facts {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.95rem;
}

.ms-fact,
.ms-reason {
  background: rgba(247, 243, 234, 0.75);
  border: 1px solid rgba(14, 51, 39, 0.08);
  padding: 0.82rem;
}

.ms-note {
  color: rgba(23, 33, 29, 0.48);
  font-size: 0.72rem;
  line-height: 1.5;
  margin-top: 0.75rem;
}

.ms-label {
  color: rgba(23, 33, 29, 0.56);
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin-bottom: 0.28rem;
  text-transform: uppercase;
}

.ms-fact strong {
  color: var(--ms-forest);
  display: block;
  font-size: 0.92rem;
}

.ms-reason {
  color: var(--ms-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-top: 0.72rem;
}

.ms-proof {
  background: var(--ms-charcoal);
  color: var(--ms-cream);
  padding: 2.2rem 0;
}

.ms-proof-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 760px) {
  .ms-proof-grid {
    align-items: end;
    grid-template-columns: 1fr 1fr 1fr 1.25fr;
  }
}

.ms-metric strong {
  color: var(--ms-sand);
  display: block;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  font-weight: 500;
  line-height: 1;
}

.ms-metric p,
.ms-proof-note {
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-top: 0.48rem;
}

.ms-proof-definitions {
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
}

@media (min-width: 820px) {
  .ms-proof-definitions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ms-proof-definitions p {
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.76rem;
  line-height: 1.55;
}

.ms-proof-definitions strong {
  color: rgba(255, 250, 240, 0.82);
}

.ms-heading {
  color: var(--ms-forest);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 500;
  line-height: 1.04;
  max-width: 54rem;
}

.ms-lede {
  color: var(--ms-muted);
  font-size: 0.98rem;
  line-height: 1.78;
  margin-top: 1rem;
  max-width: 44rem;
}

.ms-light {
  background: var(--ms-ivory);
}

.ms-white {
  background: var(--ms-cream);
}

.ms-dark {
  background: var(--ms-charcoal);
  color: var(--ms-cream);
}

.ms-dark .ms-heading {
  color: var(--ms-cream);
}

.ms-dark .ms-lede {
  color: rgba(255, 250, 240, 0.68);
}

.ms-split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 940px) {
  .ms-split {
    grid-template-columns: 0.82fr 1.18fr;
  }
}

.ms-compact-list {
  border-top: 1px solid var(--ms-line);
  display: grid;
  gap: 0;
}

.ms-row {
  border-bottom: 1px solid var(--ms-line);
  display: grid;
  gap: 0.8rem;
  padding: 1.15rem 0;
}

@media (min-width: 760px) {
  .ms-row {
    grid-template-columns: 10rem 1fr;
  }
}

.ms-row h3 {
  color: var(--ms-forest);
  font-family: var(--font-display, inherit);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.12;
}

.ms-row p,
.ms-row li {
  color: var(--ms-muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.ms-row ul {
  display: grid;
  gap: 0.38rem 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.ms-product-panel {
  border: 1px solid var(--ms-line);
  display: grid;
  gap: 1px;
  margin-top: 2rem;
}

@media (min-width: 820px) {
  .ms-product-panel {
    grid-template-columns: 0.92fr 1.08fr;
  }
}

.ms-panel-cell {
  background: var(--ms-cream);
  padding: clamp(1.15rem, 2.6vw, 1.8rem);
}

.ms-panel-cell h3 {
  color: var(--ms-forest);
  font-family: var(--font-display, inherit);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.12;
}

.ms-panel-cell p,
.ms-panel-cell li {
  color: var(--ms-muted);
  font-size: 0.94rem;
  line-height: 1.68;
  margin-top: 0.75rem;
}

.ms-panel-cell ul {
  display: grid;
  gap: 0.5rem 1rem;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.ms-case {
  border-top: 1px solid rgba(255, 250, 240, 0.16);
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.ms-trust-list {
  border-top: 1px solid rgba(255, 250, 240, 0.16);
  display: grid;
  gap: 0;
  margin-top: 2rem;
}

.ms-trust-row {
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
  display: grid;
  gap: 0.85rem;
  padding: 1.05rem 0;
}

@media (min-width: 780px) {
  .ms-trust-row {
    grid-template-columns: 11rem 1fr;
  }
}

.ms-trust-row h3 {
  color: var(--ms-sand);
  font-family: var(--font-display, inherit);
  font-size: 1.24rem;
  font-weight: 500;
  line-height: 1.14;
}

.ms-trust-row p,
.ms-trust-row li {
  color: rgba(255, 250, 240, 0.7);
  font-size: 0.92rem;
  line-height: 1.65;
}

.ms-trust-row ul {
  display: grid;
  gap: 0.35rem 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 900px) {
  .ms-case {
    grid-template-columns: 0.75fr 1.25fr;
  }
}

.ms-case h3 {
  color: var(--ms-sand);
  font-family: var(--font-display, inherit);
  font-size: 1.35rem;
  font-weight: 500;
}

.ms-case p {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-top: 0.75rem;
}

.ms-perspective-grid {
  border-top: 1px solid var(--ms-line);
  display: grid;
  gap: 0;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .ms-perspective-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ms-perspective-card {
  border-bottom: 1px solid var(--ms-line);
  padding: 1.25rem 0;
}

@media (min-width: 900px) {
  .ms-perspective-card {
    border-right: 1px solid var(--ms-line);
    padding: 1.35rem;
  }

  .ms-perspective-card:last-child {
    border-right: 0;
  }
}

.ms-perspective-card h3 {
  color: var(--ms-forest);
  font-family: var(--font-display, inherit);
  font-size: 1.34rem;
  font-weight: 500;
  line-height: 1.12;
  margin-top: 0.55rem;
}

.ms-perspective-card p {
  color: var(--ms-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-top: 0.82rem;
}

.ms-perspective-meta {
  color: rgba(23, 33, 29, 0.52);
  font-size: 0.78rem;
  line-height: 1.5;
  margin-top: 1rem;
}

.ms-perspective-footer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1.35rem;
}

.ms-pathways {
  border-top: 1px solid var(--ms-line);
  margin-top: 2rem;
}

.ms-path {
  border-bottom: 1px solid var(--ms-line);
  display: grid;
  gap: 0.85rem;
  padding: 1.1rem 0;
}

@media (min-width: 840px) {
  .ms-path {
    grid-template-columns: 0.72fr 1fr auto;
  }
}

.ms-path h3 {
  color: var(--ms-forest);
  font-family: var(--font-display, inherit);
  font-size: 1.24rem;
  font-weight: 500;
}

.ms-path p {
  color: var(--ms-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.ms-link {
  align-self: center;
  color: var(--ms-forest);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.ms-final {
  background:
    linear-gradient(90deg, rgba(17, 23, 19, 0.95), rgba(17, 23, 19, 0.78)),
    url("/images/hero-partnerships.webp") center / cover;
  color: var(--ms-cream);
}

.ms-final .ms-heading {
  color: var(--ms-cream);
}

/* Premium homepage direction */
.ms-premium-home {
  background: #fffaf0;
}

.ms-premium-hero {
  background:
    linear-gradient(90deg, rgba(17, 23, 19, 0.92), rgba(17, 23, 19, 0.68) 48%, rgba(17, 23, 19, 0.22)),
    linear-gradient(0deg, rgba(17, 23, 19, 0.28), rgba(17, 23, 19, 0.28)),
    url("/images/hero-intelligence.webp") center / cover;
  min-height: 92svh;
}

.ms-premium-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92svh;
  padding-bottom: 4rem;
  padding-top: 8rem;
}

.ms-hero-mark {
  align-items: center;
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(255, 250, 240, 0.42);
  display: flex;
  height: 4.5rem;
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  width: 6rem;
}

.ms-hero-mark img {
  height: 3.3rem;
  width: auto;
}

.ms-premium-hero h1 {
  font-size: clamp(4.25rem, 9.2vw, 8.9rem);
  font-weight: 500;
  line-height: 0.9;
  max-width: 58rem;
}

.ms-premium-hero .ms-hero-copy {
  color: rgba(255, 250, 240, 0.74);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
  max-width: 35rem;
}

.ms-premium-proof {
  background: #0b1713;
  border-bottom: 1px solid rgba(255, 250, 240, 0.08);
  border-top: 1px solid rgba(255, 250, 240, 0.08);
  padding: clamp(1.8rem, 3vw, 2.7rem) 0;
}

.ms-premium-proof-grid {
  display: grid;
  gap: 1px;
}

@media (min-width: 740px) {
  .ms-premium-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ms-premium-proof .ms-metric {
  border-left: 1px solid rgba(255, 250, 240, 0.1);
  padding: 0.4rem clamp(1rem, 2vw, 1.6rem);
}

.ms-premium-proof .ms-metric:first-child {
  border-left: 0;
  padding-left: 0;
}

.ms-premium-proof .ms-metric strong {
  color: #f0dfb5;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
}

.ms-premium-proof .ms-metric p {
  color: rgba(255, 250, 240, 0.56);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ms-premium-proof .ms-proof-note {
  border-top: 1px solid rgba(255, 250, 240, 0.1);
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-top: 1.35rem;
  padding-top: 1rem;
}

.ms-premium-image-section {
  background: #fffaf0;
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.ms-premium-split {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
}

@media (min-width: 960px) {
  .ms-premium-split {
    grid-template-columns: 0.78fr 1.22fr;
    align-items: end;
  }
}

.ms-premium-image {
  min-height: clamp(23rem, 44vw, 38rem);
  overflow: hidden;
  position: relative;
}

.ms-premium-image::after {
  background: linear-gradient(180deg, transparent, rgba(17, 23, 19, 0.28));
  content: "";
  inset: 0;
  position: absolute;
}

.ms-premium-image img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.ms-image-labels {
  bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  left: 1rem;
  position: absolute;
  z-index: 1;
}

.ms-image-labels span {
  background: rgba(255, 250, 240, 0.9);
  color: #111713;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.62rem 0.78rem;
  text-transform: uppercase;
}

.ms-premium-evidence {
  background: #111713;
  color: #fffaf0;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.ms-premium-evidence .ms-heading {
  color: #fffaf0;
}

.ms-premium-evidence-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 900px) {
  .ms-premium-evidence-grid {
    grid-template-columns: 0.82fr 1.18fr;
  }
}

.ms-evidence-lines {
  border-top: 1px solid rgba(255, 250, 240, 0.18);
}

.ms-evidence-lines p {
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
  color: rgba(255, 250, 240, 0.7);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.65;
  padding: 1.15rem 0;
}

.ms-link-light {
  color: #f0dfb5 !important;
  display: inline-flex;
  margin-top: 1.25rem;
}

.ms-premium-perspectives {
  background: #fffaf0;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.ms-premium-perspectives .ms-perspective-grid {
  margin-top: 2.5rem;
}

.ms-premium-perspectives .ms-perspective-card {
  min-height: 14rem;
}

.ms-premium-final {
  background:
    linear-gradient(90deg, rgba(17, 23, 19, 0.94), rgba(17, 23, 19, 0.72)),
    url("/images/hero-partnerships.webp") center / cover;
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.ms-premium-final .ms-heading {
  max-width: 48rem;
}

@media (max-width: 700px) {
  .ms-premium-hero h1 {
    font-size: clamp(3.4rem, 17vw, 5.2rem);
  }

  .ms-premium-proof .ms-metric {
    border-left: 0;
    border-top: 1px solid rgba(255, 250, 240, 0.1);
    padding: 1rem 0;
  }

  .ms-premium-proof .ms-metric:first-child {
    border-top: 0;
  }

  .ms-image-labels {
    flex-wrap: wrap;
  }
}

/* Restrained institutional scale */
.ms-premium-home .ms-section {
  padding: clamp(3.75rem, 6vw, 6rem) 0;
}

.ms-premium-hero {
  height: 75vh;
  max-height: 780px;
  min-height: 620px;
}

.ms-premium-hero-inner {
  min-height: 620px;
  height: 75vh;
  max-height: 780px;
  padding-top: 6.5rem;
  padding-bottom: 3.25rem;
}

.ms-premium-hero h1.ms-display {
  font-size: clamp(42px, 4.2vw, 64px) !important;
  line-height: 1.06;
  max-width: 700px;
}

.ms-premium-home .ms-heading {
  font-size: clamp(36px, 3vw, 44px);
  line-height: 1.08;
  max-width: 720px;
}

.ms-premium-hero .ms-hero-copy {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  max-width: 620px;
}

.ms-premium-home .ms-kicker {
  font-size: clamp(12px, 0.9vw, 13px);
  letter-spacing: 0.14em;
}

.ms-premium-home .ms-btn,
.ms-premium-home .ms-link {
  font-size: clamp(14px, 1vw, 15px);
}

.ms-premium-proof .ms-metric strong {
  font-size: clamp(32px, 3.1vw, 48px);
}

.ms-premium-proof .ms-metric p,
.ms-image-labels span {
  font-size: 12px;
}

.ms-evidence-lines p {
  font-size: clamp(17px, 1.35vw, 20px);
}

.ms-perspective-card h3 {
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.16;
}

.ms-premium-image-section,
.ms-premium-evidence,
.ms-premium-perspectives {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.ms-decision-showcase {
  background: #f7f3ea;
}

.ms-decision-card {
  box-shadow: 0 22px 70px rgba(14, 51, 39, 0.11);
}

.ms-flow-section {
  background: #fffaf0;
}

.ms-flow-steps {
  border-top: 1px solid var(--ms-line);
  display: grid;
  gap: 0;
  margin-top: 2.2rem;
}

@media (min-width: 860px) {
  .ms-flow-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ms-flow-steps article {
  border-bottom: 1px solid var(--ms-line);
  padding: 1.25rem 0;
}

@media (min-width: 860px) {
  .ms-flow-steps article {
    border-right: 1px solid var(--ms-line);
    padding: 1.4rem;
  }

  .ms-flow-steps article:last-child {
    border-right: 0;
  }
}

.ms-flow-steps span {
  color: var(--ms-moss);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.ms-flow-steps h3,
.ms-domain-list h3 {
  color: var(--ms-forest);
  font-family: var(--font-display, inherit);
  font-size: clamp(20px, 1.55vw, 24px);
  font-weight: 500;
  line-height: 1.16;
}

.ms-flow-steps p,
.ms-domain-list p {
  color: var(--ms-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-top: 0.75rem;
}

.ms-domain-list {
  border-top: 1px solid rgba(255, 250, 240, 0.16);
  display: grid;
  gap: 0;
}

.ms-domain-list article {
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
  padding: 1.2rem 0;
}

.ms-domain-list h3 {
  color: #fffaf0;
}

.ms-domain-list p {
  color: rgba(255, 250, 240, 0.68);
}

.ms-pathway-section {
  background: #fffaf0;
}

.ms-access-strip {
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.98), rgba(247, 243, 234, 0.78)),
    url("/images/hero-solutions.webp") center / cover;
}

.ms-responsible-section {
  background: #111713;
  color: #fffaf0;
}

.ms-responsible-section .ms-heading {
  color: #fffaf0;
}

.ms-responsible-section .ms-trust-list {
  border-top-color: rgba(255, 250, 240, 0.14);
  margin-top: 0;
}

.ms-premium-final {
  padding: clamp(5rem, 8vw, 8rem) 0;
}

@media (max-width: 700px) {
  .ms-premium-hero,
  .ms-premium-hero-inner {
    height: auto;
    max-height: none;
    min-height: 620px;
  }

  .ms-premium-hero h1.ms-display {
    font-size: clamp(42px, 12vw, 58px) !important;
  }
}

/* Major overhaul: conviction sequence */
.ms-overhaul-home {
  background: #fffaf0;
}

.ms-overhaul-hero {
  background:
    linear-gradient(90deg, rgba(17, 23, 19, 0.94), rgba(17, 23, 19, 0.72) 48%, rgba(17, 23, 19, 0.4)),
    url("/images/hero-intelligence.webp") center / cover;
  color: #fffaf0;
  min-height: 720px;
}

.ms-overhaul-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  min-height: 720px;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(7rem, 12vw, 9rem);
}

@media (min-width: 980px) {
  .ms-overhaul-hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  }
}

.ms-overhaul-copy h1 {
  font-size: clamp(42px, 4.2vw, 64px);
  font-weight: 500;
  line-height: 1.06;
  max-width: 700px;
}

.ms-overhaul-copy .ms-kicker {
  color: #d8c7a1;
}

.ms-plain-line {
  border-left: 2px solid #d8c7a1;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.5;
  margin-top: 1.1rem;
  padding-left: 1rem;
}

.ms-hero-product {
  align-self: center;
}

.ms-profile-card,
.ms-evidence-system,
.ms-portfolio-panel,
.ms-case-card {
  background: rgba(255, 250, 240, 0.96);
  border: 1px solid rgba(14, 51, 39, 0.13);
  color: #17211d;
  padding: clamp(1rem, 2.2vw, 1.45rem);
}

.ms-hero-product .ms-profile-card,
.ms-hero-product .ms-evidence-system {
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
}

.ms-evidence-system {
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.ms-system-title {
  position: relative;
  z-index: 2;
}

.ms-system-title h2 {
  color: #0e3327;
  font-family: var(--font-display, inherit);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 500;
  line-height: 1.12;
  margin: 0.45rem 0 0;
  max-width: 20rem;
}

.ms-signal-map {
  background:
    linear-gradient(rgba(14, 51, 39, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 51, 39, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 52% 54%, rgba(183, 212, 199, 0.48), transparent 34%);
  background-size: 34px 34px, 34px 34px, auto;
  border: 1px solid rgba(14, 51, 39, 0.1);
  height: 210px;
  margin-top: 1.5rem;
  position: relative;
}

.ms-signal-map::before,
.ms-signal-map::after {
  border: 1px solid rgba(14, 51, 39, 0.18);
  content: "";
  inset: 22% 18%;
  position: absolute;
  transform: skew(-12deg);
}

.ms-signal-map::after {
  border-color: rgba(183, 100, 63, 0.28);
  inset: 34% 28%;
  transform: skew(14deg);
}

.ms-signal-map span {
  background: #fffaf0;
  border: 1px solid rgba(14, 51, 39, 0.14);
  color: #17211d;
  font-size: 0.68rem;
  font-weight: 800;
  left: var(--x);
  letter-spacing: 0.1em;
  padding: 0.58rem 0.68rem;
  position: absolute;
  text-transform: uppercase;
  top: var(--y);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.ms-system-flow {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.ms-system-flow span {
  background: rgba(247, 243, 234, 0.82);
  color: rgba(23, 33, 29, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.9rem;
  text-align: center;
  text-transform: uppercase;
}

.ms-profile-top {
  align-items: flex-start;
  border-bottom: 1px solid rgba(14, 51, 39, 0.14);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-bottom: 1rem;
}

.ms-profile-top h2 {
  color: #0e3327;
  font-family: var(--font-display, inherit);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 500;
  line-height: 1.1;
  margin: 0.4rem 0 0;
}

.ms-profile-top p:not(.ms-kicker) {
  color: rgba(23, 33, 29, 0.56);
  font-size: 0.78rem;
  line-height: 1.45;
  margin-top: 0.35rem;
}

.ms-profile-score {
  border: 1px solid rgba(14, 51, 39, 0.14);
  min-width: 5.2rem;
  padding: 0.8rem;
  text-align: center;
}

.ms-profile-score strong {
  color: #0e3327;
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.ms-profile-score span,
.ms-profile-grid span,
.ms-profile-reason span,
.ms-panel-head span,
.ms-portfolio-list span {
  color: rgba(23, 33, 29, 0.56);
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.26rem;
  text-transform: uppercase;
}

.ms-profile-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.ms-profile-grid div,
.ms-profile-reason {
  background: rgba(247, 243, 234, 0.82);
  border: 1px solid rgba(14, 51, 39, 0.08);
  padding: 0.82rem;
}

.ms-profile-grid strong {
  color: #0e3327;
  font-size: 0.94rem;
}

.ms-profile-reason {
  color: rgba(23, 33, 29, 0.66);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-top: 0.75rem;
}

.ms-overhaul-split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 940px) {
  .ms-overhaul-split {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
  }
}

.ms-problem-section,
.ms-lifecycle-section,
.ms-pathway-section {
  background: #fffaf0;
}

.ms-profile-section,
.ms-case-section {
  background: #f7f3ea;
}

.ms-portfolio-section {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.98), rgba(255, 250, 240, 0.82)),
    url("/images/hero-platform.webp") center / cover;
}

.ms-different-section {
  background: #111713;
  color: #fffaf0;
}

.ms-different-section .ms-heading {
  color: #fffaf0;
}

.ms-lifecycle-grid,
.ms-different-grid {
  border-top: 1px solid var(--ms-line);
  display: grid;
  gap: 0;
  margin-top: 2.25rem;
}

@media (min-width: 880px) {
  .ms-lifecycle-grid,
  .ms-different-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ms-lifecycle-grid article,
.ms-different-grid article {
  border-bottom: 1px solid var(--ms-line);
  padding: 1.25rem 0;
}

@media (min-width: 880px) {
  .ms-lifecycle-grid article,
  .ms-different-grid article {
    border-right: 1px solid var(--ms-line);
    padding: 1.35rem;
  }

  .ms-lifecycle-grid article:last-child,
  .ms-different-grid article:last-child {
    border-right: 0;
  }
}

.ms-lifecycle-grid span {
  color: #1b6d55;
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}

.ms-lifecycle-grid h3,
.ms-different-grid h3 {
  color: #0e3327;
  font-family: var(--font-display, inherit);
  font-size: clamp(20px, 1.55vw, 24px);
  font-weight: 500;
  line-height: 1.16;
}

.ms-lifecycle-grid p,
.ms-different-grid p {
  color: rgba(23, 33, 29, 0.66);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-top: 0.72rem;
}

.ms-different-grid {
  border-top-color: rgba(255, 250, 240, 0.16);
}

.ms-different-grid article {
  border-bottom-color: rgba(255, 250, 240, 0.14);
}

@media (min-width: 880px) {
  .ms-different-grid article {
    border-right-color: rgba(255, 250, 240, 0.14);
  }
}

.ms-different-grid h3 {
  color: #fffaf0;
}

.ms-different-grid p {
  color: rgba(255, 250, 240, 0.68);
}

.ms-panel-head {
  border-bottom: 1px solid rgba(14, 51, 39, 0.12);
  padding-bottom: 1rem;
}

.ms-panel-head strong {
  color: #0e3327;
  display: block;
  font-family: var(--font-display, inherit);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.12;
}

.ms-bars {
  align-items: end;
  border-bottom: 1px solid rgba(14, 51, 39, 0.12);
  display: flex;
  gap: 0.8rem;
  height: 11rem;
  margin: 1.1rem 0;
  padding: 1rem 0 0;
}

.ms-bars i {
  background: linear-gradient(180deg, #1b6d55, #d8c7a1);
  display: block;
  flex: 1;
  min-height: 2rem;
}

.ms-portfolio-list {
  display: grid;
  gap: 1px;
}

.ms-portfolio-list p {
  background: rgba(247, 243, 234, 0.78);
  color: rgba(23, 33, 29, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
  padding: 0.85rem;
}

.ms-portfolio-list strong {
  color: #0e3327;
}

.ms-case-card {
  display: grid;
  gap: 1px;
}

.ms-case-card p {
  background: rgba(247, 243, 234, 0.78);
  color: rgba(23, 33, 29, 0.68);
  font-size: 0.94rem;
  line-height: 1.62;
  margin: 0;
  padding: 1rem;
}

.ms-case-card strong {
  color: #0e3327;
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.ms-case-card .ms-link {
  padding: 1rem;
}

.ms-principles {
  border-top: 1px solid rgba(255, 250, 240, 0.14);
  display: grid;
  gap: 0;
}

@media (min-width: 760px) {
  .ms-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

.ms-principles span {
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 1rem 0;
}

@media (min-width: 760px) {
  .ms-principles span {
    border-right: 1px solid rgba(255, 250, 240, 0.14);
    padding: 1rem;
  }
}

@media (max-width: 760px) {
  .ms-overhaul-hero,
  .ms-overhaul-hero-grid {
    min-height: auto;
  }

  .ms-overhaul-hero-grid {
    padding-top: 6.5rem;
  }

  .ms-profile-top {
    align-items: stretch;
    flex-direction: column;
  }

  .ms-profile-score {
    width: 100%;
  }
}

/* Exceptional visual pass */
:root {
  --ms-steel: #2f4c5a;
  --ms-copper: #b7643f;
  --ms-mint: #b7d4c7;
}

body:has(.ms-overhaul-home) header.sticky {
  background: rgba(255, 250, 240, 0.84) !important;
  border-bottom-color: rgba(14, 51, 39, 0.12) !important;
  color: #17211d !important;
}

body:has(.ms-overhaul-home) header a,
body:has(.ms-overhaul-home) header .display-type {
  color: #17211d !important;
}

body:has(.ms-overhaul-home) header a[href="/contact/"] {
  background: #111713 !important;
  color: #fffaf0 !important;
}

.ms-hero-studio {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.98), rgba(255, 250, 240, 0.9) 55%, rgba(247, 243, 234, 0.76)),
    linear-gradient(135deg, rgba(183, 212, 199, 0.34), transparent 42%),
    #fffaf0;
  color: #17211d;
  min-height: clamp(650px, 86vh, 780px);
  overflow: hidden;
  position: relative;
}

.ms-hero-studio::before {
  background:
    linear-gradient(rgba(14, 51, 39, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 51, 39, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, black, transparent 75%);
  position: absolute;
}

.ms-hero-studio .ms-overhaul-hero-grid {
  min-height: clamp(650px, 86vh, 780px);
  position: relative;
  z-index: 1;
}

.ms-hero-studio .ms-kicker {
  color: #1b6d55;
}

.ms-hero-studio .ms-overhaul-copy h1 {
  color: #17211d;
  max-width: 650px;
}

.ms-hero-studio .ms-hero-copy {
  color: rgba(23, 33, 29, 0.72);
  max-width: 580px;
}

.ms-hero-studio .ms-plain-line {
  border-left-color: #b7643f;
  color: rgba(23, 33, 29, 0.74);
}

.ms-hero-studio .ms-btn-primary {
  background: #111713;
  color: #fffaf0;
}

.ms-hero-studio .ms-btn-secondary {
  border-color: rgba(14, 51, 39, 0.2);
  color: #17211d;
}

.ms-hero-composition {
  min-height: clamp(460px, 54vw, 620px);
  position: relative;
}

.ms-hero-image-plane {
  background: #111713;
  border: 1px solid rgba(14, 51, 39, 0.14);
  height: clamp(330px, 44vw, 540px);
  margin: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(86%, 520px);
}

.ms-hero-image-plane img {
  display: block;
  filter: saturate(0.82) contrast(1.06);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ms-hero-image-plane::after {
  background: linear-gradient(180deg, transparent 42%, rgba(17, 23, 19, 0.38));
  content: "";
  inset: 0;
  position: absolute;
}

.ms-hero-image-plane figcaption {
  bottom: 1rem;
  color: #fffaf0;
  font-size: 0.72rem;
  font-weight: 800;
  left: 1rem;
  letter-spacing: 0.14em;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.ms-floating-profile {
  left: 0;
  max-width: 430px;
  position: absolute;
  top: 52%;
  transform: translateY(-38%);
  width: 78%;
}

.ms-floating-profile .ms-profile-card,
.ms-floating-profile .ms-evidence-system {
  box-shadow: 0 26px 80px rgba(23, 33, 29, 0.18);
}

.ms-evidence-strip {
  background: #111713;
  bottom: 2.2rem;
  color: rgba(255, 250, 240, 0.82);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: 10%;
  max-width: 520px;
  position: absolute;
  width: 82%;
}

.ms-evidence-strip span {
  background: rgba(255, 250, 240, 0.05);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.82rem;
  text-align: center;
  text-transform: uppercase;
}

.ms-profile-card,
.ms-portfolio-panel,
.ms-case-card {
  backdrop-filter: blur(14px);
  border-color: rgba(14, 51, 39, 0.16);
}

.ms-profile-score {
  background: #f7f3ea;
}

.ms-profile-grid div:nth-child(2),
.ms-profile-grid div:nth-child(4),
.ms-profile-grid div:nth-child(6) {
  background: rgba(183, 212, 199, 0.25);
}

.ms-premium-proof {
  background: #17211d;
}

.ms-premium-proof .ms-metric strong {
  color: #f2d99e;
}

.ms-problem-section {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.98), rgba(247, 243, 234, 0.92)),
    url("/images/hero-intelligence.avif") center / cover;
}

.ms-profile-section {
  background: #eef3ed;
}

.ms-lifecycle-section {
  background: #fffaf0;
}

.ms-lifecycle-grid article {
  min-height: 230px;
}

.ms-lifecycle-grid article:nth-child(2) {
  background: rgba(183, 212, 199, 0.18);
}

.ms-lifecycle-grid article:nth-child(3) {
  background: rgba(183, 100, 63, 0.08);
}

.ms-portfolio-section {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.96), rgba(255, 250, 240, 0.72) 52%, rgba(47, 76, 90, 0.2)),
    url("/images/mkulimascore-credit-engine.webp") center right / cover;
}

.ms-portfolio-panel {
  border-color: rgba(255, 250, 240, 0.42);
  box-shadow: 0 28px 70px rgba(17, 23, 19, 0.16);
}

.ms-bars i:nth-child(2),
.ms-bars i:nth-child(4) {
  background: linear-gradient(180deg, #2f4c5a, #b7d4c7);
}

.ms-different-section {
  background:
    linear-gradient(90deg, rgba(17, 23, 19, 0.98), rgba(17, 23, 19, 0.88)),
    url("/images/hero-about.webp") center / cover;
}

.ms-case-section {
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.98), rgba(247, 243, 234, 0.86)),
    url("/images/hero-solutions.webp") center / cover;
}

.ms-pathway-section {
  background: #fffaf0;
}

.ms-path {
  transition: background 160ms ease, box-shadow 160ms ease;
}

.ms-path:hover {
  background: rgba(183, 212, 199, 0.16);
  box-shadow: inset 3px 0 0 #b7643f;
}

.ms-responsible-section {
  background:
    linear-gradient(90deg, rgba(17, 23, 19, 0.96), rgba(47, 76, 90, 0.88)),
    url("/images/hero-partnerships.webp") center / cover;
}

.ms-premium-perspectives {
  background: #f7f3ea;
}

.ms-premium-final {
  background:
    linear-gradient(90deg, rgba(17, 23, 19, 0.9), rgba(47, 76, 90, 0.74)),
    url("/images/hero-contact.webp") center / cover;
}

@media (max-width: 860px) {
  .ms-hero-studio,
  .ms-hero-studio .ms-overhaul-hero-grid {
    min-height: auto;
  }

  .ms-hero-composition {
    min-height: auto;
  }

  .ms-hero-image-plane,
  .ms-floating-profile,
  .ms-evidence-strip {
    position: relative;
    inset: auto;
    transform: none;
    width: 100%;
  }

  .ms-floating-profile {
    margin-top: -4rem;
    max-width: none;
    padding: 0 1rem;
  }

  .ms-evidence-strip {
    bottom: auto;
    left: auto;
    margin-top: 1rem;
    max-width: none;
  }
}

/* MkulimaScore disciplined visual system */
:root {
  --ms-ink-950: #07130f;
  --ms-forest-900: #0d2018;
  --ms-forest-800: #14372a;
  --ms-moss-600: #2e6b52;
  --ms-ivory-50: #f7f4ea;
  --ms-parchment-100: #ece6d8;
  --ms-sand-300: #d9c79f;
  --ms-gold-500: #c69a4b;
  --ms-slate-600: #52645b;
  --ms-sage-300: #aeb8b2;
  --ms-line-200: #d8d4c8;
}

html,
body {
  background: var(--ms-ivory-50);
  color: var(--ms-ink-950);
}

body:has(.ms-design-home) header.sticky {
  background: rgba(247, 244, 234, 0.94) !important;
  border-bottom: 1px solid rgba(7, 19, 15, 0.1) !important;
  box-shadow: none !important;
  color: var(--ms-ink-950) !important;
  margin-bottom: 0 !important;
  min-height: 72px;
}

body:has(.ms-design-home) header nav {
  min-height: 72px;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

body:has(.ms-design-home) header a,
body:has(.ms-design-home) header .display-type {
  color: var(--ms-ink-950) !important;
}

body:has(.ms-design-home) header .leading-tight > span:first-child {
  font-size: 1.18rem !important;
  letter-spacing: 0 !important;
}

body:has(.ms-design-home) header .leading-tight > span:last-child {
  display: none !important;
}

body:has(.ms-design-home) header.sticky > nav > a[href="/work-with-us/"] {
  align-items: center;
  background: var(--ms-ink-950) !important;
  border: 0 !important;
  border-radius: 10px !important;
  color: var(--ms-ivory-50) !important;
  display: inline-flex;
  min-height: 44px;
  padding: 0 1.25rem !important;
}

body:has(.ms-design-home) header button {
  border-color: rgba(7, 19, 15, 0.14) !important;
  background: rgba(7, 19, 15, 0.04) !important;
}

body:has(.ms-design-home) header button span {
  background: var(--ms-ink-950) !important;
}

.ms-design-home {
  background: var(--ms-ivory-50);
  color: var(--ms-ink-950);
  font-family: "Geist", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ms-design-home h1,
.ms-design-home h2,
.ms-design-home h3,
.ms-design-home p {
  margin: 0;
}

.ms-design-home h1,
.ms-design-home h2,
.ms-design-home h3 {
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

.ms-design-home p {
  text-wrap: pretty;
}

.ms-wrap {
  margin-inline: auto;
  max-width: 90rem;
  padding-inline: 1.25rem;
  width: 100%;
}

.ms-section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem) !important;
}

.ms-kicker {
  color: var(--ms-gold-500);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.ms-heading {
  color: var(--ms-ink-950);
  font-size: clamp(2rem, 3.2vw, 3rem) !important;
  line-height: 1.1 !important;
  max-width: 48rem;
}

.ms-lede {
  color: var(--ms-slate-600);
  font-size: clamp(1.0625rem, 1.25vw, 1.25rem);
  line-height: 1.55;
  margin-top: 1.5rem;
  max-width: 42.5rem;
}

.ms-hero-evidence {
  background: var(--ms-ink-950);
  color: var(--ms-ivory-50);
  isolation: isolate;
  min-height: clamp(38rem, 76svh, 47rem);
  overflow: hidden;
  position: relative;
}

.ms-hero-image {
  filter: saturate(0.82) contrast(1.03) brightness(0.88);
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: -2;
}

.ms-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 19, 15, 0.94) 0%, rgba(7, 19, 15, 0.78) 38%, rgba(7, 19, 15, 0.34) 70%, rgba(7, 19, 15, 0.15) 100%),
    linear-gradient(0deg, rgba(7, 19, 15, 0.44) 0%, rgba(7, 19, 15, 0) 42%);
  inset: 0;
  position: absolute;
  z-index: -1;
}

.ms-hero-evidence-inner {
  align-items: center;
  display: flex;
  min-height: inherit;
  padding-block: 5rem;
}

.ms-hero-copy-block {
  max-width: 45rem;
}

.ms-hero-evidence h1 {
  color: var(--ms-ivory-50);
  font-size: clamp(2.5rem, 4.6vw, 4rem) !important;
  line-height: 1.04 !important;
  margin-top: 1.5rem;
  max-width: 45rem;
}

.ms-hero-copy {
  color: var(--ms-sage-300);
  font-size: clamp(1.0625rem, 1.25vw, 1.25rem);
  line-height: 1.55;
  margin-top: 1.75rem;
  max-width: 39rem;
}

.ms-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.ms-btn {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-size: 0.9375rem;
  font-weight: 600;
  justify-content: center;
  line-height: 1;
  min-height: 3rem;
  padding-inline: 1.5rem;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.ms-btn-primary {
  background: var(--ms-sand-300);
  color: var(--ms-ink-950);
}

.ms-btn-primary:hover {
  background: #e2d3b2;
}

.ms-btn-secondary {
  background: rgba(247, 244, 234, 0.04);
  border: 1px solid rgba(247, 244, 234, 0.3);
  color: var(--ms-ivory-50);
}

.ms-proof-light {
  background: var(--ms-ivory-50);
  border-bottom: 1px solid var(--ms-line-200);
  color: var(--ms-ink-950);
  padding-block: 2.5rem;
}

.ms-proof-light-grid {
  display: grid;
  gap: 1.5rem;
}

.ms-proof-light .ms-metric strong {
  color: var(--ms-ink-950);
  display: block;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.ms-proof-light .ms-metric p {
  color: var(--ms-slate-600);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 0.75rem;
  max-width: 16rem;
}

.ms-partners-section {
  background: #ffffff;
  border-bottom: 1px solid var(--ms-line-200);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.ms-partners-head {
  align-items: end;
  display: grid;
  gap: 1.5rem;
}

.ms-partners-head h2 {
  color: var(--ms-ink-950);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.18;
  max-width: 46rem;
}

.ms-partner-grid {
  border: 1px solid rgba(7, 19, 15, 0.1);
  border-radius: 16px;
  display: grid;
  gap: 1px;
  margin-top: 2rem;
  overflow: hidden;
  background: var(--ms-line-200);
}

.ms-partner-logo {
  align-items: center;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  min-height: 9.5rem;
  padding: 1.5rem;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.ms-partner-logo img {
  filter: grayscale(1) saturate(0) contrast(1.05) !important;
  max-height: 4rem;
  max-width: min(13rem, 82%);
  object-fit: contain;
  opacity: 0.84;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.ms-partner-logo:hover,
.ms-partner-logo:focus-within {
  background: #fffdf8;
  box-shadow: inset 0 0 0 1px rgba(198, 154, 75, 0.24);
}

.ms-partner-logo:hover img,
.ms-partner-logo:focus-within img {
  filter: grayscale(0) saturate(1.04) contrast(1.02) !important;
  opacity: 1 !important;
  transform: translateY(-1px);
}

.ms-partner-logo span {
  color: var(--ms-slate-600);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
}

.ms-gap-section,
.ms-output-section,
.ms-pathway-section {
  background: #ffffff;
}

.ms-output-section {
  scroll-margin-top: 6rem;
}

.ms-two-column {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.ms-product-output {
  background: #ffffff;
  border: 1px solid rgba(7, 19, 15, 0.1);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(7, 19, 15, 0.04), 0 20px 60px rgba(7, 19, 15, 0.08);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.ms-decision-layer {
  background: #ffffff;
  border: 1px solid rgba(7, 19, 15, 0.1);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(7, 19, 15, 0.04), 0 18px 48px rgba(7, 19, 15, 0.07);
  overflow: hidden;
}

.ms-decision-frame {
  align-items: center;
  border-bottom: 1px solid var(--ms-line-200);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: clamp(1.15rem, 2.4vw, 1.6rem);
}

.ms-decision-frame h3 {
  color: var(--ms-ink-950);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  line-height: 1.2;
  margin-top: 0.5rem;
}

.ms-status-pill {
  background: rgba(216, 199, 161, 0.26);
  border: 1px solid rgba(198, 154, 75, 0.26);
  border-radius: 10px;
  color: var(--ms-forest-900);
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.55rem 0.75rem;
  text-transform: uppercase;
}

.ms-controlled-preview {
  background:
    linear-gradient(120deg, rgba(247, 244, 234, 0.75), rgba(255, 255, 255, 0.98)),
    #ffffff;
  display: grid;
  gap: 0;
  padding: clamp(1rem, 2.4vw, 1.4rem);
}

.ms-controlled-preview div {
  border-bottom: 1px solid rgba(7, 19, 15, 0.08);
  display: grid;
  gap: 0.25rem 1rem;
  grid-template-columns: 2.4rem 1fr;
  padding: 0.95rem 0;
}

.ms-controlled-preview div:first-child {
  padding-top: 0;
}

.ms-controlled-preview div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ms-controlled-preview span {
  align-items: center;
  background: rgba(14, 51, 39, 0.08);
  border-radius: 10px;
  color: var(--ms-forest-900);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  height: 2.1rem;
  justify-content: center;
  width: 2.1rem;
}

.ms-controlled-preview strong {
  color: var(--ms-ink-950);
  display: block;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.25;
}

.ms-controlled-preview p {
  color: var(--ms-slate-600);
  font-size: 0.92rem;
  grid-column: 2;
  line-height: 1.5;
}

.ms-capability-grid {
  display: grid;
  gap: 1px;
  background: var(--ms-line-200);
  border-top: 1px solid var(--ms-line-200);
}

.ms-capability-grid div {
  background: #ffffff;
  padding: 1.25rem;
}

.ms-capability-grid strong {
  color: var(--ms-ink-950);
  display: block;
  font-weight: 600;
}

.ms-capability-grid p {
  color: var(--ms-slate-600);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-top: 0.5rem;
}

.ms-product-head {
  align-items: flex-start;
  border-bottom: 1px solid var(--ms-line-200);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  padding-bottom: 1.5rem;
}

.ms-product-head h3 {
  color: var(--ms-ink-950);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
  margin-top: 0.75rem;
}

.ms-score-block {
  border: 1px solid var(--ms-line-200);
  min-width: 5.5rem;
  padding: 0.9rem;
  text-align: center;
}

.ms-score-block strong {
  color: var(--ms-ink-950);
  display: block;
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 2rem;
  line-height: 1;
}

.ms-score-block span,
.ms-output-grid span {
  color: var(--ms-slate-600);
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ms-risk-row {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr;
  padding-block: 1.25rem;
}

.ms-risk-dot {
  background: #6a8f63;
  border-radius: 999px;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.72);
  display: block;
  height: 2rem;
  width: 2rem;
}

.ms-risk-row strong,
.ms-output-grid strong {
  color: var(--ms-ink-950);
  display: block;
  font-weight: 600;
}

.ms-risk-row p,
.ms-output-note {
  color: var(--ms-slate-600);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-top: 0.25rem;
}

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

.ms-output-grid div {
  background: var(--ms-ivory-50);
  border: 1px solid rgba(7, 19, 15, 0.08);
  padding: 1rem;
}

.ms-output-grid strong {
  margin-top: 0.35rem;
}

.ms-output-note {
  border-top: 1px solid var(--ms-line-200);
  margin-top: 1.25rem;
  padding-top: 1rem;
}

.ms-lifecycle-dark,
.ms-responsible-section {
  background: var(--ms-forest-900);
  color: var(--ms-ivory-50);
}

.ms-lifecycle-dark .ms-heading,
.ms-responsible-section .ms-heading,
.ms-final .ms-heading {
  color: var(--ms-ivory-50);
}

.ms-card-row {
  border-top: 1px solid rgba(247, 244, 234, 0.16);
  display: grid;
  gap: 0;
  margin-top: 2.5rem;
}

.ms-card-row article {
  border-bottom: 1px solid rgba(247, 244, 234, 0.14);
  padding: 1.5rem 0;
}

.ms-card-row span {
  color: var(--ms-gold-500);
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ms-card-row h3 {
  color: var(--ms-ivory-50);
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
  line-height: 1.25;
}

.ms-card-row p {
  color: var(--ms-sage-300);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-top: 0.75rem;
}

.ms-deployment-section {
  background: var(--ms-ivory-50);
}

.ms-evidence-lines {
  border-top: 1px solid var(--ms-line-200);
}

.ms-evidence-lines p {
  border-bottom: 1px solid var(--ms-line-200);
  color: var(--ms-slate-600);
  font-size: clamp(1.0625rem, 1.25vw, 1.2rem);
  line-height: 1.6;
  padding: 1.25rem 0;
}

.ms-evidence-lines strong {
  color: var(--ms-ink-950);
}

.ms-pathways {
  border-top: 1px solid var(--ms-line-200);
  margin-top: 2.5rem;
}

.ms-path {
  border-bottom: 1px solid var(--ms-line-200);
  display: grid;
  gap: 1rem;
  padding: 1.25rem 0;
}

.ms-path h3,
.ms-perspective-card h3 {
  color: var(--ms-ink-950);
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
  line-height: 1.25;
}

.ms-path p,
.ms-perspective-card p {
  color: var(--ms-slate-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.ms-link {
  align-self: center;
  color: var(--ms-moss-600);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.ms-principles {
  border-top: 1px solid rgba(247, 244, 234, 0.16);
  display: grid;
}

.ms-principles span {
  border-bottom: 1px solid rgba(247, 244, 234, 0.14);
  color: var(--ms-sage-300);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1rem 0;
}

.ms-perspectives-section {
  background: var(--ms-parchment-100);
}

.ms-perspective-grid {
  border-top: 1px solid rgba(7, 19, 15, 0.12);
  display: grid;
  gap: 0;
  margin-top: 2.5rem;
}

.ms-perspective-card {
  border-bottom: 1px solid rgba(7, 19, 15, 0.12);
  padding: 1.5rem 0;
}

.ms-perspective-card .ms-kicker {
  color: var(--ms-moss-600);
  margin-bottom: 1rem;
}

.ms-perspective-card .ms-link {
  display: inline-flex;
  margin-top: 1.25rem;
}

.ms-final {
  background:
    linear-gradient(90deg, rgba(7, 19, 15, 0.96), rgba(7, 19, 15, 0.78)),
    url("/images/hero-contact.webp") center / cover;
  color: var(--ms-ivory-50);
}

@media (min-width: 48rem) {
  .ms-wrap {
    padding-inline: 2.5rem;
  }

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

  .ms-partners-head {
    grid-template-columns: 0.36fr 0.64fr;
  }

  .ms-partner-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .ms-principles span {
    padding: 1rem;
  }
}

@media (min-width: 60rem) {
  .ms-two-column {
    align-items: start;
    grid-template-columns: 0.82fr 1.18fr;
  }

  .ms-card-row,
  .ms-perspective-grid {
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  }

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

  .ms-card-row article,
  .ms-perspective-card {
    border-right: 1px solid rgba(247, 244, 234, 0.14);
    padding: 1.5rem;
  }

  .ms-perspective-card {
    border-right-color: rgba(7, 19, 15, 0.12);
  }

  .ms-card-row article:last-child,
  .ms-perspective-card:last-child {
    border-right: 0;
  }

  .ms-path {
    align-items: center;
    grid-template-columns: 0.72fr 1fr auto;
  }
}

@media (max-width: 48rem) {
  .ms-hero-evidence {
    min-height: 88svh;
  }

  .ms-hero-evidence-inner {
    padding-bottom: 3.5rem;
    padding-top: 6.5rem;
  }

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

  .ms-actions .ms-btn {
    justify-content: center;
    width: 100%;
  }

  .ms-decision-frame {
    align-items: flex-start;
    flex-direction: column;
  }

  .ms-status-pill {
    width: fit-content;
  }

  .ms-controlled-preview div {
    grid-template-columns: 2.15rem 1fr;
  }

  .ms-capability-grid {
    grid-template-columns: 1fr !important;
  }

  .ms-partner-grid,
  .ms-pathways,
  .ms-perspective-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 80rem) {
  .ms-wrap {
    padding-inline: 4rem;
  }
}

@media (max-width: 48rem) {
  body:has(.ms-design-home) header.sticky {
    min-height: 64px;
  }

  body:has(.ms-design-home) header nav {
    min-height: 64px;
  }

  body:has(.ms-design-home) header.sticky > nav > a[href="/work-with-us/"] {
    display: none;
  }

  .ms-hero-evidence {
    min-height: 40rem;
  }

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

  .ms-btn {
    width: 100%;
  }

  .ms-product-head {
    flex-direction: column;
  }

  .ms-score-block {
    width: 100%;
  }

  .ms-output-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ms-design-home *,
  .ms-design-home *::before,
  .ms-design-home *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final homepage discipline pass */
.ms-design-home {
  background: var(--ms-ivory-50) !important;
}

.ms-hero-evidence {
  min-height: clamp(38rem, 76svh, 47rem) !important;
}

.ms-hero-image {
  filter: saturate(0.82) contrast(1.03) brightness(0.94) !important;
  object-position: 58% 48%;
}

.ms-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 19, 15, 0.94) 0%, rgba(7, 19, 15, 0.78) 38%, rgba(7, 19, 15, 0.34) 70%, rgba(7, 19, 15, 0.15) 100%),
    linear-gradient(0deg, rgba(7, 19, 15, 0.44) 0%, rgba(7, 19, 15, 0) 42%) !important;
}

.ms-hero-evidence-inner {
  padding-block: clamp(5rem, 9vw, 7rem) !important;
}

.ms-hero-evidence h1 {
  font-size: clamp(2.5rem, 4.6vw, 4rem) !important;
  line-height: 1.04 !important;
  max-width: 45rem !important;
}

.ms-hero-copy {
  color: var(--ms-sage-300) !important;
  line-height: 1.55 !important;
  max-width: 39rem !important;
}

.ms-section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem) !important;
}

.ms-heading {
  font-size: clamp(2rem, 3.2vw, 3rem) !important;
  line-height: 1.1 !important;
}

.ms-btn {
  border-radius: 10px !important;
  box-shadow: none !important;
  min-height: 3rem !important;
}

.ms-product-output,
.ms-path,
.ms-perspective-card {
  border-radius: 16px;
}

.ms-proof-light {
  padding-block: 2.5rem !important;
}

@media (max-width: 48rem) {
  .ms-hero-evidence {
    min-height: 40rem !important;
  }

  .ms-hero-image {
    object-position: 66% 50%;
  }
}
