/* Shared commercial product components.
   The component roots own their palette so they render consistently in both
   the public landing layout and the authenticated Style Guide. */
.mp-product-card,
.mp-capability,
.mp-flow-step,
.mp-story,
.mp-proof,
.mp-faq,
.mp-workspace-hub {
  --mp-accent: #32d5ff;
  --mp-accent-ink: #0a7797;
  --mp-brand: #8b6cff;
  --mp-bg: var(--ai-panel, #fff);
  --mp-surface: var(--ai-soft, #f3f4fa);
  --mp-surface-2: #f8f9fc;
  --mp-line: var(--ai-line, rgba(16, 19, 28, .1));
  --mp-text: var(--ai-ink, #10131c);
  --mp-muted: var(--ai-muted, rgba(16, 19, 28, .64));
  --mp-shadow: 0 26px 64px rgba(13, 24, 87, .14);
  box-sizing: border-box;
  color: var(--mp-text);
  font-family: "Jost", system-ui, sans-serif;
}

.mp-product-card--knowledge-vault,
.mp-capability--knowledge-vault,
.mp-flow-step--knowledge-vault,
.mp-story--knowledge-vault,
.mp-proof--knowledge-vault,
.mp-faq--knowledge-vault {
  --mp-accent: #34d399;
  --mp-accent-ink: #047857;
  --mp-brand: #0d8b63;
}

html[data-ai-theme="dark"] .mp-product-card,
html[data-ai-theme="dark"] .mp-capability,
html[data-ai-theme="dark"] .mp-flow-step,
html[data-ai-theme="dark"] .mp-story,
html[data-ai-theme="dark"] .mp-proof,
html[data-ai-theme="dark"] .mp-faq,
body.dark-theme .mp-product-card,
body.dark-theme .mp-capability,
body.dark-theme .mp-flow-step,
body.dark-theme .mp-story,
body.dark-theme .mp-proof,
body.dark-theme .mp-faq,
html[data-ai-theme="dark"] .mp-workspace-hub,
body.dark-theme .mp-workspace-hub {
  --mp-bg: #0b1226;
  --mp-surface: rgba(255, 255, 255, .055);
  --mp-surface-2: rgba(255, 255, 255, .035);
  --mp-line: rgba(255, 255, 255, .12);
  --mp-text: #eef1f8;
  --mp-muted: rgba(238, 241, 248, .68);
  --mp-accent-ink: var(--mp-accent);
  --mp-shadow: 0 28px 70px rgba(0, 0, 0, .36);
}

.mp-product-card *,
.mp-capability *,
.mp-flow-step *,
.mp-story *,
.mp-proof *,
.mp-faq * {
  box-sizing: border-box;
}

/* Kicker copies the mockup's .cx-kicker: monospace, 13px, uppercase. */
.mp-kicker {
  color: var(--mp-accent-ink);
  font-family: ui-monospace, Menlo, monospace;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Eyebrow pill copies the mockup's .cx-eyebrow: 13px, normal case. */
.mp-eyebrow {
  align-items: center;
  background: color-mix(in srgb, var(--mp-accent) 15%, transparent);
  border-radius: 999px;
  color: var(--mp-accent-ink);
  display: inline-flex;
  font-size: .8125rem;
  font-weight: 700;
  gap: .5rem;
  margin-bottom: 1rem;
  padding: .375rem .8125rem;
}

.mp-product-card {
  background:
    radial-gradient(circle at 87% 10%, color-mix(in srgb, var(--mp-accent) 18%, transparent), transparent 42%),
    linear-gradient(145deg, var(--mp-bg), var(--mp-surface-2));
  border: 1px solid var(--mp-line);
  border-radius: 1.5rem;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.25rem);
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, .98fr);
  overflow: hidden;
  padding: clamp(1.4rem, 4vw, 3rem);
  position: relative;
}

.mp-product-card__copy {
  align-self: center;
  min-width: 0;
}

.mp-product-card h1,
.mp-product-card h3,
.mp-proof h2,
.mp-proof h3 {
  color: var(--mp-text);
  font-size: clamp(1.8rem, 3.3vw, 2.8rem);
  letter-spacing: -.025em;
  line-height: 1.08;
  margin: .9rem 0 .75rem;
  text-wrap: balance;
}

.mp-product-card__copy > p,
.mp-proof__copy > p {
  color: var(--mp-muted);
  font-size: 1.04rem;
  line-height: 1.65;
  margin: 0;
}

.mp-feature-list {
  display: grid;
  gap: .65rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.mp-feature-list li {
  align-items: flex-start;
  color: var(--mp-muted);
  display: flex;
  gap: .65rem;
}

.mp-feature-list i {
  color: var(--mp-accent-ink);
  flex: none;
  margin-top: .18rem;
}

.mp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

/* Buttons copy the mockup's .cx-btn metrics: 15px, 13x22 padding, radius 12. */
.mp-action.ai-btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: .75rem;
  cursor: pointer;
  display: inline-flex;
  font-size: .9375rem;
  font-weight: 700;
  gap: .5rem;
  justify-content: center;
  min-height: 44px;
  padding: .8125rem 1.375rem;
  text-decoration: none;
  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

.mp-action--primary.ai-btn {
  background: linear-gradient(135deg, var(--mp-brand), var(--mp-accent));
  background-clip: padding-box;
  border-color: transparent;
  box-shadow: 0 10px 26px color-mix(in srgb, var(--mp-accent) 30%, transparent);
  color: #fff;
}

.mp-action--secondary.ai-btn {
  background: var(--mp-surface);
  border-color: var(--mp-line);
  color: var(--mp-text);
}

.mp-action.ai-btn:hover {
  border-color: var(--mp-accent);
  transform: translateY(-2px);
}

.mp-action--primary.ai-btn:hover {
  border-color: transparent;
}

.mp-action.ai-btn:focus-visible,
.mp-story__step:focus-visible,
.mp-faq summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--mp-accent) 48%, transparent);
  outline-offset: 3px;
}

.mp-product-card__visual {
  align-self: stretch;
  min-height: 390px;
  position: relative;
}

.mp-product-card__photo {
  border: 1px solid var(--mp-line);
  border-radius: 1.15rem;
  box-shadow: var(--mp-shadow);
  display: block;
  height: 100%;
  min-height: 390px;
  overflow: hidden;
  position: relative;
}

.mp-product-card__photo::after {
  background: linear-gradient(180deg, rgba(4, 8, 20, .1), transparent 34%, rgba(4, 8, 20, .52));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.mp-product-card__photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  width: 100%;
}

.mp-product-card--knowledge-vault .mp-product-card__photo img {
  object-position: 50% 35%;
}

.mp-product-card__visual-label {
  align-items: center;
  background: var(--mp-accent);
  border-radius: 999px;
  box-shadow: 0 8px 22px color-mix(in srgb, var(--mp-accent) 42%, transparent);
  color: #04121c;
  display: inline-flex;
  font-size: .7rem;
  font-weight: 850;
  gap: .4rem;
  left: .9rem;
  letter-spacing: .055em;
  padding: .38rem .7rem;
  position: absolute;
  text-transform: uppercase;
  top: .9rem;
  z-index: 2;
}

.mp-preview-card {
  backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--mp-bg) 90%, transparent);
  border: 1px solid var(--mp-line);
  border-radius: 1rem;
  bottom: 1rem;
  box-shadow: var(--mp-shadow);
  display: flex;
  flex-direction: column;
  left: 12%;
  padding: 1rem;
  position: absolute;
  right: 1rem;
}

.mp-preview-card__head {
  align-items: center;
  display: flex;
  gap: .75rem;
  justify-content: space-between;
  margin-bottom: .7rem;
}

.mp-preview-card__name {
  color: var(--mp-text);
  font-size: 1rem;
  line-height: 1.25;
}

.mp-preview-card__role {
  color: var(--mp-accent-ink);
  font-size: .76rem;
  font-weight: 750;
  margin: .15rem 0 .55rem;
}

.mp-preview-card__line {
  background: color-mix(in srgb, var(--mp-accent) 10%, transparent);
  border-left: 3px solid var(--mp-accent);
  border-radius: .4rem;
  color: var(--mp-text);
  font-size: .72rem;
  font-weight: 650;
  margin-top: .35rem;
  padding: .38rem .52rem;
}

.mp-preview-card__status {
  align-items: center;
  color: var(--mp-muted);
  display: inline-flex;
  font-size: .7rem;
  font-weight: 650;
  gap: .35rem;
  margin-top: .4rem;
}

.mp-preview-card__status i {
  color: var(--mp-accent);
}

.mp-preview-card__question {
  background: color-mix(in srgb, var(--mp-accent) 14%, transparent);
  border-radius: .75rem .75rem .25rem .75rem;
  color: var(--mp-text);
  font-size: .78rem;
  line-height: 1.4;
  padding: .55rem .7rem;
}

.mp-preview-card__answer {
  color: var(--mp-muted);
  font-size: .74rem;
  line-height: 1.5;
  margin: .65rem 0;
}

.mp-preview-card__sources {
  color: var(--mp-muted);
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mp-muted {
  color: var(--mp-muted);
  font-size: .72rem;
  font-weight: 600;
}

.mp-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .55rem;
}

.mp-chip {
  background: var(--mp-surface);
  border: 1px solid var(--mp-line);
  border-radius: 999px;
  color: var(--mp-text);
  display: inline-flex;
  font-size: .66rem;
  font-weight: 800;
  gap: .28rem;
  padding: .22rem .52rem;
}

.mp-chip--solid {
  background: var(--mp-accent);
  border-color: transparent;
  color: #06121b;
}

.mp-chip--accent {
  background: color-mix(in srgb, var(--mp-accent) 16%, transparent);
  border-color: transparent;
  color: var(--mp-accent-ink);
}

.mp-preview-card--career-forge .mp-chip-row .mp-chip {
  background: color-mix(in srgb, var(--mp-accent) 16%, transparent);
  border-color: transparent;
  color: var(--mp-accent-ink);
}

.mp-preview-card--career-forge .mp-chip-row .mp-chip:first-child {
  background: var(--mp-accent);
  color: #04121c;
}

.mp-product-card--surface-landing .mp-product-card__visual,
.mp-product-card--surface-landing .mp-product-card__photo {
  min-height: 500px;
}

.mp-product-card--surface-landing .mp-preview-card {
  left: 1rem;
}

.mp-product-card--surface-landing {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 1001px) {
  .mp-product-card--surface-landing.mp-product-card--knowledge-vault .mp-product-card__copy {
    order: 2;
  }

  .mp-product-card--surface-landing.mp-product-card--knowledge-vault .mp-product-card__visual {
    order: 1;
  }
}

.mp-product-card--surface-landing .mp-eyebrow {
  background: color-mix(in srgb, var(--mp-accent) 14%, transparent);
  color: var(--mp-accent);
  font-size: 13px;
  gap: 8px;
  letter-spacing: 0;
  margin-bottom: 16px;
  padding: 6px 13px;
}

.mp-product-card--surface-landing h3 {
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 14px;
}

.mp-product-card--surface-landing .mp-product-card__copy > p {
  color: var(--mp-text);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px;
  opacity: .72;
}

.mp-product-card--surface-landing .mp-feature-list {
  display: block;
  margin: 0 0 24px;
}

.mp-product-card--surface-landing .mp-feature-list li {
  align-items: center;
  color: var(--mp-text);
  font-size: 15px;
  gap: 10px;
  margin-bottom: 11px;
}

.mp-product-card--surface-landing .mp-feature-list li:last-child {
  margin-bottom: 0;
}

.mp-product-card--surface-landing .mp-feature-list i {
  color: var(--mp-accent);
  font-size: 17px;
  margin-top: 0;
}

.mp-product-card--surface-landing .mp-actions {
  margin-top: 0;
}

.mp-product-card--surface-landing .mp-action--primary.ai-btn {
  background: #09aff4;
  border: 2px solid #09aff4;
  border-radius: .25rem;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 1rem;
  box-shadow: 0 3px 10px -5px rgba(6, 17, 42, .15);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  min-height: auto;
  padding: .75rem 2.25rem;
  text-transform: none;
}

.mp-product-card--surface-landing .mp-action--primary.ai-btn:hover {
  background: transparent;
  border-color: #09aff4;
  color: #09aff4;
  transform: none;
}

.mp-preview-card[data-marketing-surface="landing"] {
  backdrop-filter: none;
  background:
    linear-gradient(#0a1330, #0a1330) padding-box,
    linear-gradient(135deg, color-mix(in srgb, var(--mp-accent) 50%, transparent), rgba(72, 32, 167, .4)) border-box;
  border: 2px solid transparent;
  border-radius: 20px;
  color: #eef1f8;
  padding: 20px;
}

.mp-preview-card[data-marketing-surface="landing"] .mp-preview-card__head {
  margin-bottom: 12px;
}

.mp-preview-card__section-label {
  color: rgba(238, 241, 248, .6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mp-preview-card__resume,
.mp-preview-card__vault-tree,
.mp-preview-card__response {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
}

.mp-preview-card__resume {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  padding: 16px;
}

.mp-preview-card[data-marketing-surface="landing"] .mp-preview-card__name,
.mp-preview-card[data-marketing-surface="landing"] .mp-preview-card__job {
  color: #f5f7ff;
}

.mp-preview-card[data-marketing-surface="landing"] .mp-preview-card__name {
  font-size: 18px;
  font-weight: 800;
}

.mp-preview-card[data-marketing-surface="landing"] .mp-preview-card__role {
  color: var(--mp-accent);
  font-size: 12.5px;
  font-weight: 700;
  margin: 0 0 10px;
}

.mp-preview-card__job {
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
}

.mp-preview-card__period {
  opacity: .55;
  font-weight: 500;
}

.mp-preview-card__description {
  color: rgba(238, 241, 248, .7);
  font-size: 11px;
  line-height: 1.5;
  margin: 0 0 12px;
}

.mp-preview-card[data-marketing-surface="landing"] .mp-preview-card__status {
  color: rgba(238, 241, 248, .76);
}

.mp-preview-card[data-marketing-surface="landing"] .mp-chip-row {
  gap: 6px;
  margin-top: 0;
}

.mp-preview-card--career-forge[data-marketing-surface="landing"] .mp-chip {
  background: rgba(50, 213, 255, .16);
  border: 0;
  color: #32d5ff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
}

.mp-preview-card--career-forge[data-marketing-surface="landing"] .mp-chip:first-child {
  background: #32d5ff;
  color: #04121c;
}

.mp-preview-card--career-forge[data-marketing-surface="landing"] .mp-chip:nth-child(3) {
  background: rgba(255, 255, 255, .08);
  color: #eef1f8;
  opacity: .7;
}

.mp-preview-card[data-marketing-surface="landing"] .mp-preview-card__head > .mp-chip {
  background: color-mix(in srgb, var(--mp-accent) 16%, transparent);
  color: var(--mp-accent);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 9px;
}

.mp-preview-card__versions {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}

.mp-preview-card__version {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  color: rgba(238, 241, 248, .75);
  display: flex;
  font-size: 11.5px;
  gap: 8px;
  min-width: 0;
  padding: 10px 12px;
}

.mp-preview-card__version i {
  color: currentColor;
  flex: none;
  opacity: .5;
}

.mp-preview-card__version.is-active i {
  color: var(--mp-accent);
  opacity: 1;
}

.mp-preview-card--knowledge-vault[data-marketing-surface="landing"] {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
}

.mp-preview-card__vault-tree {
  border-radius: 12px;
  min-width: 0;
  padding: 13px;
}

.mp-preview-card__tree-items,
.mp-preview-card__vault-answer {
  display: flex;
  flex-direction: column;
}

.mp-preview-card__tree-items {
  gap: 8px;
  margin-top: 10px;
}

.mp-preview-card__tree-item {
  align-items: center;
  color: rgba(238, 241, 248, .76);
  display: flex;
  font-size: 12px;
  gap: 7px;
  min-width: 0;
}

.mp-preview-card__tree-item--level-0 {
  color: #f5f7ff;
  font-weight: 700;
}

.mp-preview-card__tree-item--level-1 {
  opacity: .72;
  padding-left: 15px;
}

.mp-preview-card__tree-item--level-2 {
  padding-left: 30px;
}

.mp-preview-card__tree-item i {
  color: var(--mp-accent);
  flex: none;
}

.mp-preview-card__tree-item--level-1 i {
  color: #32d5ff;
}

.mp-preview-card__vault-answer {
  gap: 10px;
  justify-content: center;
  min-width: 0;
}

.mp-preview-card[data-marketing-surface="landing"] .mp-preview-card__question {
  align-self: flex-end;
  background: rgba(52, 211, 153, .16);
  border-radius: 13px 13px 4px 13px;
  color: #f5f7ff;
  font-size: 12px;
  font-weight: 500;
  max-width: 92%;
  padding: 9px 13px;
}

.mp-preview-card__response {
  border-radius: 13px 13px 13px 4px;
  display: flex;
  flex-direction: column;
  padding: 12px;
}

.mp-preview-card[data-marketing-surface="landing"] .mp-preview-card__answer {
  color: rgba(238, 241, 248, .82);
  display: block;
  font-size: 11.5px;
  line-height: 1.5;
  margin: 0 0 10px;
}

.mp-preview-card[data-marketing-surface="landing"] .mp-preview-card__sources {
  color: rgba(238, 241, 248, .5);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: 7px;
}

.mp-preview-card--knowledge-vault[data-marketing-surface="landing"] .mp-chip {
  background: rgba(52, 211, 153, .16);
  border: 0;
  color: #34d399;
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 9px;
}

/* Capability and flow cards copy the mockup's .cx-cap / .cx-how metrics. */
.mp-capability-grid,
.mp-flow-grid {
  display: grid;
}

.mp-capability-grid {
  gap: 1.375rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mp-flow-grid {
  gap: 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mp-capability {
  background: var(--mp-surface);
  border: 1px solid var(--mp-line);
  border-radius: 1rem;
  min-width: 0;
  padding: 1.625rem 1.5rem;
  position: relative;
}

.mp-flow-step {
  background: var(--mp-surface);
  border: 1px solid var(--mp-line);
  border-radius: 1rem;
  min-width: 0;
  padding: 1.625rem 1.375rem;
  position: relative;
}

.mp-capability h4 {
  color: var(--mp-text);
  font-size: 1.125rem;
  line-height: 1.25;
  margin: 1rem 0 .75rem;
}

.mp-flow-step h4 {
  color: var(--mp-text);
  font-size: 1.03rem;
  line-height: 1.25;
  margin: .875rem 0 .375rem;
}

.mp-icon-tile {
  align-items: center;
  background: color-mix(in srgb, var(--mp-accent) 15%, transparent);
  border-radius: .75rem;
  color: var(--mp-accent-ink);
  display: inline-flex;
  font-size: 1.375rem;
  height: 2.875rem;
  justify-content: center;
  width: 2.875rem;
}

.mp-flow-step .mp-icon-tile {
  font-size: 1.25rem;
  height: 2.75rem;
  width: 2.75rem;
}

.mp-capability ul {
  display: grid;
  gap: .625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mp-capability li {
  color: var(--mp-muted);
  font-size: .9375rem;
  padding-left: 1.5rem;
  position: relative;
}

.mp-capability li::before {
  background: var(--mp-accent);
  border-radius: 50%;
  content: "";
  height: .5rem;
  left: 0;
  position: absolute;
  top: .5625rem;
  width: .5rem;
}

/* "Also:" footnote under the capability grid, copied from .cx-capmore. */
.mp-capability-more.mp-capability-more--bare {
  align-items: baseline;
  background: none;
  border: 0;
  border-radius: 0;
  color: var(--mp-muted);
  display: flex;
  font-size: .90625rem;
  gap: .5rem;
  margin-top: 1.375rem;
  padding: 0;
}

.mp-capability-more.mp-capability-more--bare i {
  color: var(--mp-accent-ink);
}

.mp-capability-more.mp-capability-more--bare b {
  color: var(--mp-text);
  font-weight: 700;
}

.mp-flow-step__number {
  color: var(--mp-accent-ink);
  font-family: ui-monospace, monospace;
  font-size: .8125rem;
  font-weight: 800;
  opacity: .7;
  position: absolute;
  right: 1.25rem;
  top: 1.125rem;
}

.mp-flow-step p {
  color: var(--mp-muted);
  font-size: .90625rem;
  line-height: 1.55;
  margin: 0;
}

/* Product pages use the mockup's 1160px content width instead of the site-wide
   container, so every section lines up with the approved design. */
.mp-page .container {
  max-width: 1160px;
}

.mp-story {
  align-items: start;
  display: grid;
  gap: clamp(1.25rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
}

.mp-story__intro {
  grid-column: 1 / -1;
  max-width: 60ch;
}

.mp-story__intro h2,
.mp-story__intro h3 {
  color: var(--mp-text);
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: .55rem 0 .7rem;
  /* Balance the heading across its lines so it breaks like the approved
     mockup instead of leaving a single orphan word on the last line. */
  max-width: 24ch;
  text-wrap: balance;
}

.mp-story__intro p {
  color: var(--mp-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.mp-story__stage {
  background:
    radial-gradient(circle at 28% 18%, color-mix(in srgb, var(--mp-accent) 14%, transparent), transparent 58%),
    linear-gradient(155deg, var(--mp-bg), var(--mp-surface-2));
  border: 1px solid var(--mp-line);
  border-radius: 1.25rem;
  box-shadow: var(--mp-shadow);
  height: min(74vh, 560px);
  min-height: 410px;
  overflow: hidden;
  position: sticky;
  top: 6rem;
}

.mp-story__progress {
  align-items: center;
  color: var(--mp-accent-ink);
  display: flex;
  font-family: ui-monospace, monospace;
  font-size: .75rem;
  font-weight: 850;
  gap: .35rem;
  left: 1.15rem;
  position: absolute;
  right: 1.15rem;
  top: 1rem;
  z-index: 4;
}

.mp-story__track {
  background: var(--mp-line);
  border-radius: 999px;
  flex: 1;
  height: 3px;
  margin-left: .4rem;
  overflow: hidden;
}

.mp-story__track i {
  background: linear-gradient(90deg, var(--mp-brand), var(--mp-accent));
  display: block;
  height: 100%;
  transition: width .45s cubic-bezier(.2, .7, .2, 1);
  width: 33.333%;
}

.mp-story__scene {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 1.625rem;
  position: absolute;
  transform: translateY(1.25rem) scale(.985);
  transition:
    opacity .5s cubic-bezier(.2, .7, .2, 1),
    transform .5s cubic-bezier(.2, .7, .2, 1);
}

.mp-story__scene.is-active {
  opacity: 1;
  transform: none;
  z-index: 2;
}

/* Inner panel that holds the scene's name, role and lines, matching the
   framed card used by the approved design. Chips stay outside, below it. */
.mp-story__card {
  background: var(--mp-surface);
  border: 1px solid var(--mp-line);
  border-radius: 1rem;
  box-shadow: 0 1.5rem 3.75rem rgba(0, 0, 0, .28);
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 1.15rem;
}

/* Inside the story card the lines read as plain rows — no pill background and
   no accent bar — exactly like the mockup. The highlighted treatment stays on
   the hero preview card, which is where the design uses it. */
.mp-story__card .mp-preview-card__line {
  background: none;
  border-left: 0;
  border-radius: 0;
  font-size: .75rem;
  font-weight: 600;
  margin-top: 0;
  padding: .19rem 0;
}

/* Scene styles copied from the mockup (.cx-hl, .cx-mname sizes, requirements
   label, focused-resume description, match note, version rows, chip variants). */
.mp-story__card .mp-preview-card__name {
  font-size: 1.0625rem;
  font-weight: 800;
}

.mp-story__card .mp-preview-card__name--sm {
  font-size: .9375rem;
}

.mp-story__card .mp-preview-card__line--hl {
  background: color-mix(in srgb, var(--mp-accent) 15%, transparent);
  border-left: 3px solid var(--mp-accent);
  border-radius: 6px;
  font-weight: 700;
  padding: 6px 9px;
}

.mp-story__label {
  color: var(--mp-muted);
  font-size: .625rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin: 8px 0 4px;
  text-transform: uppercase;
}

.mp-story__desc {
  color: var(--mp-muted);
  font-size: .6875rem;
  font-weight: 500;
  line-height: 1.45;
  margin-top: 6px;
}

.mp-story__note {
  align-items: center;
  color: var(--mp-muted);
  display: inline-flex;
  font-size: .6875rem;
  font-weight: 500;
  gap: .35rem;
  margin-top: 6px;
}

.mp-story__note i {
  color: var(--mp-accent);
}

.mp-story__row {
  align-items: center;
  background: var(--mp-surface);
  border: 1px solid var(--mp-line);
  border-radius: 10px;
  color: var(--mp-text);
  display: flex;
  font-size: .75rem;
  font-weight: 600;
  gap: 9px;
  margin-bottom: 8px;
  padding: 10px 12px;
}

.mp-story__row i {
  color: var(--mp-accent);
}

.mp-story__row .mp-muted {
  margin-left: auto;
}

.mp-story__row--muted,
.mp-story__row--muted i {
  color: var(--mp-muted);
}

.mp-chip--solid {
  background: var(--mp-accent);
  border-color: transparent;
  color: #04121c;
}

.mp-chip--tint {
  background: color-mix(in srgb, var(--mp-accent) 18%, transparent);
  border-color: transparent;
  color: var(--mp-accent-ink);
}

/* Ask Vault chat bubble, copied from the mockup's .cx-bubble. */
.mp-story__bubble {
  align-self: flex-end;
  background: color-mix(in srgb, var(--mp-accent) 16%, transparent);
  border-radius: 13px 13px 4px 13px;
  color: var(--mp-text);
  font-size: .78rem;
  font-weight: 600;
  padding: 9px 13px;
}

/* Tree/file line variants copied from the mockup's vault scenes. */
.mp-preview-card__line--muted {
  color: var(--mp-muted);
  font-weight: 500;
}

.mp-preview-card__line--indent,
/* Must also win over the story-card line reset (same 16px as the mockup). */
.mp-story__card .mp-preview-card__line--indent {
  padding-left: 1rem;
}

/* Vault tree scenes copy the mockup's .cx-tree: 6px row gap, 12.5px lines. */
.mp-story__scene--tree .mp-story__card,
.mp-story__scene--query .mp-story__card {
  gap: 6px;
}

.mp-story__scene--tree .mp-story__card .mp-preview-card__line,
.mp-story__scene--query .mp-story__card .mp-preview-card__line {
  font-size: .78rem;
}

.mp-preview-card__line--bold {
  font-weight: 700;
}

.mp-story__card .mp-preview-card__line i {
  color: #32d5ff;
}

.mp-story__card .mp-preview-card__line i.mp-preview-card__line-icon--folder {
  color: var(--mp-accent);
}

.mp-story__card .mp-chip-row {
  margin-top: .375rem;
}

.mp-story__card .mp-chip-row .mp-chip i {
  font-size: .8em;
}

/* "Antes" scatter scene: loose tilted file rows, like the mockup. */
.mp-story__scene--scatter {
  align-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: .625rem;
  justify-content: center;
}

.mp-story__scene--scatter .mp-preview-card__head {
  width: 100%;
}

.mp-story__scene--scatter .mp-story__row {
  margin-bottom: 0;
  width: auto;
}

.mp-story__scene--scatter .mp-story__row:nth-of-type(1) { transform: rotate(-4deg); }
.mp-story__scene--scatter .mp-story__row:nth-of-type(2) { transform: rotate(3deg); }
.mp-story__scene--scatter .mp-story__row:nth-of-type(3) { transform: rotate(-2deg); }
.mp-story__scene--scatter .mp-story__row:nth-of-type(4) { transform: rotate(5deg); }

.mp-story__scene--answer .mp-preview-card__role {
  color: var(--mp-muted);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.5;
}

.mp-story__scan {
  animation: mp-scan 5.5s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, var(--mp-accent), transparent);
  border-radius: 2px;
  height: 2px;
  left: 6%;
  opacity: .5;
  position: absolute;
  right: 6%;
  z-index: 3;
}

@keyframes mp-scan {
  0%,
  100% { top: 14%; }
  50% { top: 84%; }
}

.mp-story__steps {
  display: grid;
}

.mp-story__step {
  appearance: none;
  background: transparent;
  border: 0;
  border-left: 2px solid var(--mp-line);
  color: var(--mp-muted);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 64vh;
  opacity: .32;
  padding: 1.2rem 1.35rem;
  text-align: left;
  transform: translateY(.65rem);
  transition:
    border-color .35s ease,
    color .35s ease,
    opacity .5s ease,
    transform .5s ease;
  width: 100%;
}

.mp-story__step.is-active {
  border-left-color: var(--mp-accent);
  color: var(--mp-text);
  opacity: 1;
  transform: none;
}

.mp-story__count {
  color: var(--mp-accent-ink);
  font-family: ui-monospace, monospace;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  margin-bottom: .55rem;
}

.mp-story__step strong {
  color: inherit;
  font-size: 1.15rem;
  line-height: 1.25;
}

.mp-story__step-description {
  color: var(--mp-muted);
  font-size: .92rem;
  line-height: 1.5;
  margin-top: .45rem;
}

/* Proof panel copies the mockup's .cx-proof: .9/1.1 grid, 44px gap+padding,
   radius 22, flat panel gradient. */
.mp-proof {
  align-items: center;
  background: linear-gradient(160deg, var(--mp-surface), var(--mp-surface-2));
  border: 1px solid var(--mp-line);
  border-radius: 1.375rem;
  display: grid;
  gap: 2.75rem;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  padding: 2.75rem;
}

.mp-proof__note {
  align-items: center;
  color: var(--mp-muted);
  display: flex;
  font-size: .78rem;
  gap: .45rem;
  margin-top: 1rem;
}

.mp-proof__note i {
  color: var(--mp-accent-ink);
}

.mp-proof__visual {
  min-width: 0;
}

.mp-proof__visual > .mp-preview-card {
  bottom: auto;
  left: auto;
  position: relative;
  right: auto;
}

.mp-proof-demo {
  min-height: 330px;
  overflow: hidden;
  position: relative;
}

.mp-proof-demo__photo {
  border: 1px solid var(--mp-line);
  border-radius: 1rem;
  display: block;
  height: 330px;
  overflow: hidden;
}

.mp-proof-demo__photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  width: 100%;
}

/* Both products ship purpose-shot landscape proof photos (subject left,
   clear right side), so no portrait-style crop offset is needed. */
.mp-proof--career-forge .mp-proof-demo__photo img,
.mp-proof--knowledge-vault .mp-proof-demo__photo img {
  object-position: 50% 50%;
}

.mp-proof-demo > .mp-preview-card {
  bottom: .75rem;
  left: 18%;
  right: .75rem;
}

.mp-proof-demo--career-outcome {
  align-items: center;
  background: var(--mp-surface);
  border: 1px solid var(--mp-line);
  border-radius: 1rem;
  display: flex;
  min-height: 0;
  padding: .75rem;
}

.mp-proof-demo--career-outcome img {
  border-radius: .65rem;
  display: block;
  height: auto;
  width: 100%;
}

/* FAQ copies the mockup's .cx-faq metrics: radius 14, 18x22 summary. */
.mp-faq {
  display: grid;
  gap: .75rem;
}

.mp-faq__item {
  background: var(--mp-surface);
  border: 1px solid var(--mp-line);
  border-radius: .875rem;
  overflow: hidden;
}

.mp-faq summary {
  align-items: center;
  color: var(--mp-text);
  cursor: pointer;
  display: flex;
  font-size: 1.03rem;
  font-weight: 700;
  gap: 1rem;
  justify-content: space-between;
  list-style: none;
  padding: 1.125rem 1.375rem;
}

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

.mp-faq summary i {
  color: var(--mp-accent-ink);
  flex: none;
  transition: transform .25s ease;
}

.mp-faq__item[open] summary i {
  transform: rotate(45deg);
}

.mp-faq__answer {
  color: var(--mp-muted);
  font-size: .97rem;
  line-height: 1.6;
  padding: 0 1.375rem 1.25rem;
}

.mp-styleguide-demo {
  background: var(--ai-soft, #f3f4fa);
  border: 1px solid var(--ai-line, rgba(16, 19, 28, .1));
  border-radius: 1.25rem;
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
  overflow: visible;
  padding: clamp(1rem, 3vw, 2rem);
}

/* The workspace-hub auroras bleed past the organism on purpose; the landing
   body clips them (main-LTR.css overflow-x: hidden) but the backoffice style
   guide has no page-level clip, so the demo card contains its own bleed to
   keep the page free of horizontal overflow on mobile. */
.mp-styleguide-demo--contained {
  overflow: clip;
}

.mp-styleguide-demo__header {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.mp-styleguide-demo__header h3 {
  color: var(--ai-ink);
  margin: 0;
}

.mp-styleguide-demo__label {
  color: var(--ai-muted);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .08em;
}

.mp-styleguide-demo__location {
  color: var(--ai-muted);
  display: block;
  font-size: .74rem;
  margin-top: .25rem;
}

.mp-styleguide-demo__identifier {
  color: var(--ai-muted);
  display: block;
  font-size: .72rem;
  margin-top: .35rem;
}

.mp-styleguide-demo__identifier code {
  background: color-mix(in srgb, var(--ai-main, #09aff4) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--ai-main, #09aff4) 25%, transparent);
  border-radius: .35rem;
  color: var(--ai-main, #09aff4);
  font-size: .7rem;
  padding: .12rem .35rem;
}

.mp-styleguide-demo__surface-heading {
  display: grid;
  gap: .18rem;
  margin-bottom: .75rem;
}

.mp-styleguide-demo__surface-heading strong {
  color: var(--ai-ink);
  font-size: 1rem;
}

.mp-landing-products {
  scroll-margin-top: 110px;
}

.mp-landing-products .mp-workspace-hub {
  margin-bottom: 0;
}

.mp-landing-products .mp-workspace-modules {
  margin-inline: auto;
  max-width: 74rem;
  padding-top: clamp(.75rem, 2vw, 1.25rem);
}

.mp-landing-products .title,
.mp-landing-products .subtitle,
.mp-landing-products h3 {
  text-transform: none;
}

.mp-landing-products .pre-title {
  text-transform: uppercase;
}

.mp-landing-products__list {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.25rem);
}

/* Product hub — approved design (B): commercial hero that names AI Workspace
   as the product the module cards belong to. Auroras, gradient headline and a
   glass window that cycles real captures of the modules and tilts with the
   pointer. The cards below are introduced by .mp-landing-products__modules. */
.mp-workspace-hub {
  align-items: center;
  color: var(--mp-text);
  display: grid;
  font-family: "Jost", system-ui, sans-serif;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1.05fr .95fr;
  margin-bottom: clamp(2rem, 5vw, 3.75rem);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  position: relative;
}

.mp-workspace-hub * {
  box-sizing: border-box;
}

.mp-workspace-hub__aurora {
  background: radial-gradient(circle, var(--mp-accent), transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  height: 520px;
  opacity: .32;
  pointer-events: none;
  position: absolute;
  right: -80px;
  top: -220px;
  width: 520px;
}

.mp-workspace-hub__aurora--violet {
  background: radial-gradient(circle, var(--mp-brand), transparent 70%);
  filter: blur(90px);
  height: 460px;
  left: -160px;
  opacity: .22;
  right: auto;
  top: 40%;
  width: 460px;
}

.mp-workspace-hub__body,
.mp-workspace-hub__stage {
  position: relative;
}

.mp-workspace-hub__kicker {
  display: block;
  margin-bottom: .75rem;
}

.mp-workspace-hub__title {
  font-size: clamp(2.125rem, 4.2vw, 3.25rem);
  letter-spacing: -.01em;
  line-height: 1.08;
  margin: 0 0 .75rem;
  text-transform: none;
}

.mp-workspace-hub__highlight {
  background: linear-gradient(92deg, var(--mp-accent), var(--mp-brand));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.mp-workspace-hub__text {
  color: var(--mp-muted);
  margin: 0;
  max-width: 46ch;
}

.mp-workspace-hub__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.mp-workspace-hub__chips .mp-chip {
  align-items: center;
  background: none;
  border: 0;
  color: var(--mp-muted);
  font-size: .84rem;
  font-weight: 700;
  padding: .2rem 0;
}

.mp-workspace-hub__chips .mp-chip i {
  color: var(--mp-accent-ink);
}

.mp-workspace-hub__actions {
  margin-top: 1.75rem;
}

.mp-workspace-hub__stage {
  perspective: 1000px;
}

.mp-workspace-hub__window {
  animation: mp-hub-float 5.5s ease-in-out infinite alternate;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--mp-bg) 82%, transparent);
  border: 1px solid var(--mp-line);
  border-radius: 1.25rem;
  box-shadow: var(--mp-shadow);
  overflow: hidden;
  position: relative;
  transform: rotate(-1.4deg);
  transition: transform .35s ease, box-shadow .35s ease;
  will-change: transform;
}

/* Idle float keeps the window alive before the pointer reaches it. */
@keyframes mp-hub-float {
  from { translate: 0 0; }
  to { translate: 0 -8px; }
}

.mp-workspace-hub__window.is-tilting {
  animation: none;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .4);
}

.mp-workspace-hub__window-bar {
  align-items: center;
  border-bottom: 1px solid var(--mp-line);
  display: flex;
  gap: .4rem;
  padding: .7rem .9rem;
}

.mp-workspace-hub__dot {
  background: var(--mp-line);
  border-radius: 50%;
  height: .55rem;
  width: .55rem;
}

.mp-workspace-hub__dot:first-child {
  background: color-mix(in srgb, var(--mp-accent) 65%, var(--mp-line));
}

.mp-workspace-hub__window-title {
  color: var(--mp-muted);
  font-family: ui-monospace, Menlo, monospace;
  font-size: .68rem;
  letter-spacing: .06em;
  margin-left: .35rem;
  text-transform: uppercase;
}

.mp-workspace-hub__tabs {
  display: flex;
  gap: .4rem;
  padding: .7rem .9rem 0;
}

.mp-workspace-hub__tab {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--mp-muted);
  display: inline-flex;
  font-size: .72rem;
  font-weight: 800;
  gap: .35rem;
  padding: .3rem .7rem;
  transition: background .3s ease, color .3s ease;
}

.mp-workspace-hub__tab.is-active {
  background: color-mix(in srgb, var(--mp-accent) 16%, transparent);
  color: var(--mp-accent-ink);
}

.mp-workspace-hub__screens {
  display: grid;
  padding: .9rem;
}

.mp-workspace-hub__screen {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(.4rem) scale(.985);
  transition: opacity .55s ease, transform .55s ease;
}

.mp-workspace-hub__screen.is-active {
  opacity: 1;
  transform: none;
}

.mp-workspace-hub__shot {
  border: 1px solid var(--mp-line);
  border-radius: .625rem;
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

/* Style Guide compositions: parent Workspace → two included modules.
   These classes are not wired into the production landing surface. */
.mp-styleguide-workspace-modules {
  display: grid;
  gap: 1.5rem;
  margin: 0 0 3rem;
  overflow-anchor: none;
}

.mp-styleguide-workspace-modules__item {
  background: color-mix(in srgb, var(--mp-surface) 72%, transparent);
  border: 1px solid var(--mp-line);
  border-radius: 1rem;
  overflow: hidden;
  overflow-anchor: none;
}

.mp-styleguide-workspace-modules__heading {
  align-items: center;
  border-bottom: 1px solid var(--mp-line);
  color: var(--mp-muted);
  display: flex;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: .75rem 1rem;
  text-transform: uppercase;
}

.mp-styleguide-workspace-modules__identifier {
  color: var(--mp-muted);
  font-size: .8rem;
  margin: 0;
  padding: .75rem 1rem 0;
  text-align: left;
}

.mp-styleguide-workspace-modules__identifier code {
  color: var(--mp-accent-ink);
  font-size: .7rem;
}

.mp-workspace-modules {
  color: #f0f4ff;
  font-family: "Jost", system-ui, sans-serif;
  line-height: normal;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  position: relative;
}

.mp-workspace-modules * {
  box-sizing: border-box;
}

.mp-workspace-modules__parent {
  background:
    radial-gradient(circle at 92% 10%, color-mix(in srgb, var(--mp-accent) 22%, transparent), transparent 34%),
    color-mix(in srgb, var(--mp-bg) 88%, transparent);
  border: 1px solid var(--mp-line);
  border-radius: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  position: relative;
}

.mp-workspace-modules__title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
  margin: .45rem 0 .55rem;
}

.mp-workspace-modules__description {
  color: var(--mp-muted);
  margin: 0;
  max-width: 62ch;
}

.mp-workspace-modules__included {
  align-items: center;
  background: color-mix(in srgb, var(--mp-accent) 14%, var(--mp-surface));
  border: 1px solid color-mix(in srgb, var(--mp-accent) 38%, var(--mp-line));
  border-radius: 999px;
  bottom: -1rem;
  color: var(--mp-accent-ink);
  display: inline-flex;
  font-size: .75rem;
  font-weight: 900;
  gap: .45rem;
  left: 50%;
  letter-spacing: .04em;
  padding: .45rem .85rem;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 2;
}

.mp-workspace-modules__connector {
  height: 3rem;
  margin: 0 auto;
  position: relative;
  width: 50%;
}

.mp-workspace-modules__connector::before {
  background: linear-gradient(var(--mp-accent), var(--mp-brand));
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  width: 2px;
}

.mp-workspace-modules__connector span {
  border-left: 2px solid var(--mp-accent);
  border-right: 2px solid var(--mp-brand);
  border-top: 2px solid color-mix(in srgb, var(--mp-accent) 70%, var(--mp-brand));
  bottom: 0;
  height: 1rem;
  left: 0;
  position: absolute;
  width: 100%;
}

.mp-workspace-modules__modules {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mp-workspace-modules__module {
  background: color-mix(in srgb, var(--mp-surface) 92%, transparent);
  border: 1px solid var(--mp-line);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  min-height: 15rem;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  position: relative;
}

.mp-workspace-modules__module--career-forge {
  box-shadow: inset 0 3px 0 #32d5ff;
}

.mp-workspace-modules__module--knowledge-vault {
  box-shadow: inset 0 3px 0 #34d399;
}

.mp-workspace-modules__module-head {
  align-items: center;
  display: flex;
  gap: .65rem;
  margin-bottom: 1rem;
}

.mp-workspace-modules__icon {
  align-items: center;
  background: color-mix(in srgb, var(--mp-accent) 16%, transparent);
  border: 1px solid var(--mp-line);
  border-radius: .7rem;
  color: var(--mp-accent-ink);
  display: inline-flex;
  font-size: 1.1rem;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}

.mp-workspace-modules__module--knowledge-vault .mp-workspace-modules__icon {
  background: rgba(52, 211, 153, .14);
  color: #16a76d;
}

.mp-workspace-modules__module--career-forge .mp-workspace-modules__icon {
  background: rgba(50, 213, 255, .14);
  border-color: rgba(50, 213, 255, .24);
  color: #32d5ff;
}

.mp-workspace-modules__module-label {
  color: var(--mp-muted);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.mp-workspace-modules__module h4 {
  font-size: 1.35rem;
  margin: 0 0 .5rem;
}

.mp-workspace-modules__module p {
  color: var(--mp-muted);
  margin: 0 0 1.25rem;
}

.mp-workspace-modules__cta {
  align-self: flex-start;
  margin-top: auto;
}

.mp-workspace-modules--rail {
  background: linear-gradient(135deg, color-mix(in srgb, var(--mp-brand) 8%, transparent), transparent 55%);
}

.mp-workspace-modules--rail .mp-workspace-modules__parent {
  border-left: 4px solid var(--mp-accent);
}

.mp-workspace-modules--rail .mp-workspace-modules__connector span {
  border-radius: .75rem .75rem 0 0;
}

.mp-workspace-modules--constellation .mp-workspace-modules__parent {
  margin: 0 auto;
  max-width: 48rem;
  text-align: center;
}

.mp-workspace-modules--constellation .mp-workspace-modules__description {
  margin-inline: auto;
}

.mp-workspace-modules--constellation .mp-workspace-modules__module {
  border-radius: 1.5rem;
}

.mp-workspace-modules--constellation .mp-workspace-modules__module:first-child {
  transform: translateY(.4rem) rotate(-.35deg);
}

.mp-workspace-modules--constellation .mp-workspace-modules__module:last-child {
  transform: translateY(.4rem) rotate(.35deg);
}

/* Workspace module compositions — approval-gate alternatives */
.mp-workspace-modules {
  isolation: isolate;
  min-height: 31rem;
  overflow: hidden;
}

.mp-workspace-modules__ambient {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.mp-workspace-modules__parent-mark,
.mp-workspace-modules__module-index {
  display: none;
}

.mp-workspace-modules__parent-copy {
  position: relative;
  z-index: 1;
}

.mp-workspace-modules__module {
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}

.mp-workspace-modules__module::after {
  content: "";
  inset: auto -15% -55% 35%;
  pointer-events: none;
  position: absolute;
}

.mp-workspace-modules__module--career-forge::after {
  background: radial-gradient(circle, rgba(50, 213, 255, .18), transparent 66%);
}

.mp-workspace-modules__module--knowledge-vault::after {
  background: radial-gradient(circle, rgba(52, 211, 153, .18), transparent 66%);
}

.mp-workspace-modules__preview {
  background: #081024;
  border: 1px solid var(--mp-line);
  border-radius: .8rem;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.mp-workspace-modules__preview img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  width: 100%;
}

/* A — branching product architecture */
.mp-workspace-modules--bridge {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--mp-accent) 5%, transparent) 1px, transparent 1px),
    linear-gradient(color-mix(in srgb, var(--mp-accent) 5%, transparent) 1px, transparent 1px);
  background-size: 36px 36px;
  display: grid;
  gap: 0 4rem;
  grid-template-columns: minmax(16rem, .8fr) minmax(24rem, 1.5fr);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.mp-workspace-modules--bridge .mp-workspace-modules__ambient {
  background: linear-gradient(90deg, color-mix(in srgb, var(--mp-bg) 98%, transparent), transparent 70%);
}

.mp-workspace-modules--bridge .mp-workspace-modules__parent {
  align-self: center;
  background:
    radial-gradient(circle at 10% 0, rgba(50, 213, 255, .2), transparent 36%),
    linear-gradient(145deg, color-mix(in srgb, var(--mp-surface) 96%, transparent), color-mix(in srgb, var(--mp-bg) 88%, transparent));
  border-color: color-mix(in srgb, var(--mp-accent) 38%, var(--mp-line));
  border-radius: 1.5rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
  grid-column: 1;
  grid-row: 1;
  padding: 2rem;
}

.mp-workspace-modules--bridge .mp-workspace-modules__parent::after {
  background: linear-gradient(90deg, var(--mp-accent), var(--mp-brand));
  content: "";
  height: 2px;
  position: absolute;
  right: -4rem;
  top: 50%;
  width: 4rem;
}

.mp-workspace-modules--bridge .mp-workspace-modules__parent-mark {
  align-items: center;
  background: linear-gradient(135deg, rgba(50, 213, 255, .2), rgba(107, 92, 255, .18));
  border: 1px solid color-mix(in srgb, var(--mp-accent) 40%, var(--mp-line));
  border-radius: 1rem;
  color: var(--mp-accent-ink);
  display: flex;
  font-size: 1.4rem;
  height: 3.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 3.5rem;
}

.mp-workspace-modules--bridge .mp-workspace-modules__included {
  bottom: auto;
  left: 2rem;
  margin-top: 1.5rem;
  position: relative;
  transform: none;
}

.mp-workspace-modules--bridge .mp-workspace-modules__connector {
  grid-column: 2;
  grid-row: 1;
  height: 100%;
  left: -4rem;
  margin: 0;
  position: absolute;
  width: 4rem;
}

.mp-workspace-modules--bridge .mp-workspace-modules__connector::before {
  height: 50%;
  left: 0;
  top: 25%;
}

.mp-workspace-modules--bridge .mp-workspace-modules__connector span {
  border: 0;
}

.mp-workspace-modules--bridge .mp-workspace-modules__modules {
  align-self: center;
  gap: 1rem;
  grid-column: 2;
  grid-row: 1;
  grid-template-columns: 1fr;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module {
  align-items: center;
  background: color-mix(in srgb, var(--mp-surface) 96%, transparent);
  border-left-width: 3px;
  border-radius: 1rem;
  display: grid;
  gap: .75rem 1rem;
  grid-template-columns: auto minmax(10rem, .8fr) minmax(12rem, 1fr);
  min-height: 0;
  padding: 1.35rem;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module::before {
  background: currentColor;
  content: "";
  height: 2px;
  left: -4rem;
  opacity: .55;
  position: absolute;
  top: 50%;
  width: 4rem;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module-head {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
}

.mp-workspace-modules--bridge .mp-workspace-modules__preview {
  aspect-ratio: 16 / 9;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module-label {
  display: none;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module-copy {
  grid-column: 3;
  grid-row: 1;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module-copy p {
  margin: 0;
}

.mp-workspace-modules--bridge .mp-workspace-modules__cta {
  grid-column: 3;
  grid-row: 2;
  margin: 0;
}

/* B — horizontal workspace console */
.mp-workspace-modules--rail {
  background:
    radial-gradient(circle at 12% 10%, rgba(107, 92, 255, .22), transparent 30%),
    linear-gradient(145deg, #070d20, #0d1731);
  border-radius: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.mp-workspace-modules--rail .mp-workspace-modules__parent {
  align-items: flex-end;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  border-radius: 0;
  display: grid;
  gap: 1rem 2rem;
  grid-template-columns: auto 1fr auto;
  padding: 0 0 2rem;
}

.mp-workspace-modules--rail .mp-workspace-modules__parent-mark {
  align-items: center;
  background: linear-gradient(145deg, #6b5cff, #32d5ff);
  border-radius: 1.2rem;
  box-shadow: 0 12px 35px rgba(50, 213, 255, .18);
  color: #fff;
  display: flex;
  font-size: 1.5rem;
  height: 4rem;
  justify-content: center;
  width: 4rem;
}

.mp-workspace-modules--rail .mp-workspace-modules__title {
  color: #fff;
}

.mp-workspace-modules--rail .mp-workspace-modules__description {
  color: #aeb9d4;
}

.mp-workspace-modules--rail .mp-workspace-modules__included {
  background: rgba(50, 213, 255, .1);
  border-color: rgba(50, 213, 255, .3);
  bottom: auto;
  color: #84e7ff;
  left: auto;
  position: relative;
  transform: none;
}

.mp-workspace-modules--rail .mp-workspace-modules__connector {
  height: 2px;
  margin: 0;
  width: 100%;
}

.mp-workspace-modules--rail .mp-workspace-modules__connector::before,
.mp-workspace-modules--rail .mp-workspace-modules__connector span {
  background: linear-gradient(90deg, #6b5cff, #32d5ff 48%, #34d399);
  border: 0;
  height: 2px;
  inset: 0;
  width: 100%;
}

.mp-workspace-modules--rail .mp-workspace-modules__modules {
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
}

.mp-workspace-modules--rail .mp-workspace-modules__module {
  background: rgba(255, 255, 255, .045);
  border-color: rgba(255, 255, 255, .12);
  border-radius: 0;
  box-shadow: none;
  min-height: 18rem;
  padding: 2rem;
}

.mp-workspace-modules--rail .mp-workspace-modules__module:first-child {
  border-radius: 0 0 0 1.5rem;
}

.mp-workspace-modules--rail .mp-workspace-modules__module:last-child {
  border-left: 0;
  border-radius: 0 0 1.5rem 0;
}

.mp-workspace-modules--rail .mp-workspace-modules__module-index {
  color: rgba(255, 255, 255, .08);
  display: block;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  right: 1.5rem;
  top: 1rem;
}

.mp-workspace-modules--rail .mp-workspace-modules__preview {
  aspect-ratio: 16 / 7;
  border-color: rgba(255, 255, 255, .16);
  margin: .25rem 0 1.4rem;
}

.mp-workspace-modules--rail .mp-workspace-modules__module h4 {
  color: #fff;
  font-size: 1.6rem;
}

.mp-workspace-modules--rail .mp-workspace-modules__module p {
  color: #aeb9d4;
  max-width: 38ch;
}

.mp-workspace-modules--rail .mp-workspace-modules__module-label {
  color: #aeb9d4;
}

/* C — central AI Workspace core with orbiting modules */
.mp-workspace-modules--constellation {
  align-items: center;
  background:
    radial-gradient(circle at center, color-mix(in srgb, var(--mp-accent) 12%, transparent), transparent 42%),
    color-mix(in srgb, var(--mp-bg) 94%, transparent);
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(13rem, 1fr) minmax(16rem, .82fr) minmax(13rem, 1fr);
  min-height: 34rem;
  padding: clamp(2rem, 5vw, 4rem);
}

.mp-workspace-modules--constellation .mp-workspace-modules__ambient {
  background-image: radial-gradient(circle, color-mix(in srgb, var(--mp-accent) 35%, transparent) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.mp-workspace-modules--constellation .mp-workspace-modules__parent {
  align-items: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 35% 28%, rgba(50, 213, 255, .24), transparent 28%),
    linear-gradient(145deg, color-mix(in srgb, var(--mp-surface) 98%, transparent), color-mix(in srgb, var(--mp-bg) 90%, transparent));
  border-color: color-mix(in srgb, var(--mp-accent) 52%, var(--mp-line));
  border-radius: 50%;
  box-shadow:
    0 0 0 12px color-mix(in srgb, var(--mp-accent) 5%, transparent),
    0 0 0 13px color-mix(in srgb, var(--mp-accent) 15%, transparent),
    0 28px 70px rgba(0, 0, 0, .22);
  display: flex;
  flex-direction: column;
  grid-column: 2;
  grid-row: 1;
  justify-content: center;
  margin: 0;
  max-width: none;
  padding: 2rem;
  text-align: center;
  z-index: 2;
}

.mp-workspace-modules--constellation .mp-workspace-modules__parent-mark {
  color: var(--mp-accent-ink);
  display: block;
  font-size: 1.6rem;
  margin-bottom: .75rem;
}

.mp-workspace-modules--constellation .mp-workspace-modules__title {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.mp-workspace-modules--constellation .mp-workspace-modules__description {
  font-size: .88rem;
}

.mp-workspace-modules--constellation .mp-workspace-modules__included {
  bottom: auto;
  left: auto;
  margin-top: 1.2rem;
  position: relative;
  transform: none;
}

.mp-workspace-modules--constellation .mp-workspace-modules__connector {
  border: 1px solid color-mix(in srgb, var(--mp-accent) 24%, transparent);
  border-radius: 50%;
  grid-column: 1 / -1;
  grid-row: 1;
  height: 72%;
  margin: 0 8%;
  pointer-events: none;
  width: 84%;
}

.mp-workspace-modules--constellation .mp-workspace-modules__connector::before,
.mp-workspace-modules--constellation .mp-workspace-modules__connector span {
  display: none;
}

.mp-workspace-modules--constellation .mp-workspace-modules__modules {
  display: contents;
}

.mp-workspace-modules--constellation .mp-workspace-modules__module {
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--mp-surface) 90%, transparent);
  border-radius: 1.25rem;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .18);
  min-height: 18rem;
  padding: 1.5rem;
  z-index: 3;
}

.mp-workspace-modules--constellation .mp-workspace-modules__module:first-child {
  grid-column: 1;
  grid-row: 1;
  transform: translateY(-2rem);
}

.mp-workspace-modules--constellation .mp-workspace-modules__module:last-child {
  grid-column: 3;
  grid-row: 1;
  transform: translateY(2rem);
}

.mp-workspace-modules--constellation .mp-workspace-modules__module-index {
  color: color-mix(in srgb, var(--mp-accent) 40%, var(--mp-line));
  display: block;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
}

.mp-workspace-modules--constellation .mp-workspace-modules__preview {
  aspect-ratio: 16 / 9;
  margin-bottom: 1.2rem;
}

@media (prefers-reduced-motion: reduce) {
  .mp-workspace-hub__window {
    animation: none;
    transform: none;
  }

  .mp-workspace-hub__screen {
    transition: none;
  }
}
.mp-landing-products__modules {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  text-align: center;
}

.mp-landing-products__modules .mp-kicker {
  color: var(--mp-accent-ink, #0a7797);
  display: block;
}

body.marketing-product-page .page-header {
  background: #fff;
  box-shadow: 0 8px 24px rgba(11, 18, 38, .1);
}

body.marketing-product-page.dark-theme .page-header {
  background: #071a33;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
}

body.marketing-product-page.light-theme .content-always-light.header-basic .menu-link,
body.marketing-product-page.light-theme .content-always-light.header-basic .controls-box .header-search-btn {
  color: #10131c !important;
}

body.marketing-product-page.light-theme .header-basic .header-logo .brand-word {
  color: #10131c;
  text-shadow: none;
}

body.marketing-product-page.light-theme .content-always-light.header-basic .menu-link.active,
body.marketing-product-page.light-theme .content-always-light.header-basic .menu-link:hover {
  color: var(--clr-main) !important;
}

.mp-page {
  --mp-page-accent: #32d5ff;
  --mp-page-bg: #fff;
  --mp-page-line: rgba(16, 19, 28, .1);
  --mp-page-muted: rgba(16, 19, 28, .68);
  --mp-page-soft: #f4f6fb;
  --mp-page-text: #10131c;
  background: var(--mp-page-bg);
  color: var(--mp-page-text);
  overflow: clip;
}

.mp-page--knowledge-vault {
  --mp-page-accent: #34d399;
}

body.dark-theme .mp-page {
  --mp-page-bg: #070b18;
  --mp-page-line: rgba(255, 255, 255, .12);
  --mp-page-muted: rgba(238, 241, 248, .66);
  --mp-page-soft: #0b1226;
  --mp-page-text: #eef1f8;
}

/* Sections copy the mockup: 96px vertical rhythm, hero 132/92. */
.mp-page__hero {
  overflow: hidden;
  padding: 8.25rem 0 5.75rem;
  position: relative;
}

/* Product-page hero copies the mockup's .cx-hero: an open two-column layout
   (no card box) with aurora glows, oversized heading, 42ch lead, monospace
   kicker under the eyebrow and no feature checklist. The boxed card look
   stays on the home landing section, which the mockup does render as cards. */
.mp-page__hero::before,
.mp-page__hero::after {
  border-radius: 50%;
  content: "";
  filter: blur(80px);
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.mp-page__hero::before {
  background: radial-gradient(circle, var(--mp-page-accent), transparent 70%);
  height: 520px;
  opacity: .5;
  right: -120px;
  top: -160px;
  width: 520px;
}

.mp-page__hero::after {
  background: radial-gradient(circle, #8b6cff, transparent 70%);
  bottom: -200px;
  height: 460px;
  left: -160px;
  opacity: .4;
  width: 460px;
}

.mp-page__hero .container {
  position: relative;
  z-index: 1;
}

.mp-page__hero .mp-product-card {
  background: none;
  border: 0;
  border-radius: 0;
  gap: 3.25rem;
  grid-template-columns: 1.05fr .95fr;
  overflow: visible;
  padding: 0;
}

.mp-page__hero .mp-product-card h1 {
  font-size: clamp(2.375rem, 6vw, 4.125rem);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: .875rem 0 1.125rem;
}

.mp-page__hero .mp-product-card__copy > p {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  max-width: 42ch;
}

.mp-page__hero .mp-feature-list {
  display: none;
}

.mp-page__hero .mp-actions {
  gap: .875rem;
  margin-top: 1.625rem;
}

.mp-product-card__tertiary {
  align-items: center;
  color: var(--mp-page-muted);
  display: inline-flex;
  flex-basis: 100%;
  font-size: .9375rem;
  font-weight: 700;
  gap: .55rem;
  margin-top: .15rem;
  text-decoration: none;
  text-underline-offset: .28rem;
  width: fit-content;
}

.mp-product-card__tertiary:hover {
  color: var(--mp-page-text);
  text-decoration: underline;
}

.mp-product-card__tertiary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--mp-page-accent) 48%, transparent);
  outline-offset: 3px;
}

.mp-product-card__kicker {
  display: block;
  margin: 0 0 .25rem;
}

.mp-page__hero .mp-product-card__photo {
  border-radius: 1.125rem;
}

.mp-page__hero .mp-preview-card {
  transform: rotate(-1.4deg);
}

.mp-page__section {
  padding: 6rem 0;
  scroll-margin-top: 100px;
}

.mp-page__section--faq {
  padding-bottom: 2.75rem;
}

.mp-page__section--final {
  padding-bottom: 2.5rem;
  padding-top: 1.75rem;
}

.mp-page__return {
  padding: 0 0 4rem;
}

.mp-page__section--soft {
  background: var(--mp-page-soft);
}

/* Every kicker on a product page uses the accent color, exactly like the
   mockup's .cx-kicker (color: var(--acc-tx)). Outside the component roots the
   --mp-accent-ink variable does not exist, so bind it to the page accent. */
.mp-page .mp-kicker {
  color: var(--mp-page-accent);
}

/* Section heading copies the mockup's .cx-sechead: 60ch, 44px below,
   h2 clamp(28..42), description 18px. */
.mp-section-heading {
  margin-bottom: 2.75rem;
  max-width: 60ch;
}

.mp-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.mp-section-heading h2,
.mp-final-card h2 {
  color: var(--mp-page-text);
  font-size: clamp(1.75rem, 3.4vw, 2.625rem);
  letter-spacing: -.01em;
  line-height: 1.12;
  margin: .75rem 0 .875rem;
  text-transform: none;
  text-wrap: balance;
}

.mp-section-heading p,
.mp-final-card p {
  color: var(--mp-page-muted);
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
}

.mp-problem-list {
  display: grid;
  gap: .75rem;
  list-style: none;
  margin: -1.375rem 0 0;
  max-width: 60ch;
  padding: 0;
}

.mp-problem-list li {
  align-items: flex-start;
  color: var(--mp-page-muted);
  display: flex;
  font-size: 1.03rem;
  gap: .75rem;
  line-height: 1.55;
}

.mp-problem-list i {
  color: var(--mp-page-accent);
  flex: none;
  margin-top: .3rem;
}

.mp-faq-wrap {
  max-width: 51.25rem;
}

.mp-faq-wrap .mp-faq {
  margin-top: 2rem;
}

/* Final card copies the mockup's .cx-finalcard: brand-tinted gradient,
   64x40 padding, radius 24. It also provides the component palette vars the
   shared buttons consume, since it lives outside the component roots. */
.mp-final-card {
  --mp-final-fallback-accent: #32d5ff;
  --mp-accent: var(--mp-page-accent, var(--mp-final-fallback-accent));
  --mp-accent-ink: var(--mp-page-accent, var(--mp-final-fallback-accent));
  --mp-brand: #8b6cff;
  --mp-line: var(--mp-page-line, rgba(255, 255, 255, .12));
  --mp-muted: var(--mp-page-muted, rgba(238, 241, 248, .66));
  --mp-surface: color-mix(in srgb, var(--mp-page-text, #eef1f8) 6%, transparent);
  --mp-text: var(--mp-page-text, #eef1f8);
  background: linear-gradient(150deg, color-mix(in srgb, #8b6cff 22%, var(--mp-page-soft, #10162c)), var(--mp-page-soft, #10162c));
  border: 1px solid var(--mp-page-line, rgba(255, 255, 255, .12));
  border-radius: 1.5rem;
  display: grid;
  isolation: isolate;
  min-height: clamp(22rem, 42vw, 28rem);
  overflow: hidden;
  padding: 4rem 2.5rem;
  place-items: center;
  position: relative;
  text-align: center;
}

.mp-final-card--knowledge-vault {
  --mp-final-fallback-accent: #34d399;
}

/* Decorative glow: absolute positioning prevents it from creating a blank
   520px head above the CTA content. */
.mp-final-card__aurora {
  background: radial-gradient(circle, var(--mp-page-accent, var(--mp-final-fallback-accent)), transparent 70%);
  border-radius: 50%;
  display: block;
  filter: blur(80px);
  height: 520px;
  left: 50%;
  opacity: .28;
  pointer-events: none;
  position: absolute;
  top: 44%;
  transform: translate(-50%, -50%);
  width: 520px;
  z-index: -1;
}

.mp-final-card__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 58rem;
  position: relative;
  width: 100%;
  z-index: 1;
}

.mp-product-return {
  --mp-return-accent: var(--mp-page-accent, #32d5ff);
  align-items: center;
  background:
    linear-gradient(115deg, color-mix(in srgb, var(--mp-return-accent) 10%, transparent), transparent 48%),
    color-mix(in srgb, var(--mp-page-soft, #10162c) 90%, transparent);
  border: 1px solid color-mix(in srgb, var(--mp-return-accent) 24%, var(--mp-page-line, rgba(255, 255, 255, .12)));
  border-radius: 1.25rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 1.25rem 1.4rem;
}

.mp-product-return__icon {
  align-items: center;
  background: color-mix(in srgb, var(--mp-return-accent) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--mp-return-accent) 34%, transparent);
  border-radius: 1rem;
  color: var(--mp-return-accent);
  display: flex;
  font-size: 1.35rem;
  height: 3.2rem;
  justify-content: center;
  width: 3.2rem;
}

.mp-product-return__copy h2 {
  color: var(--mp-page-text);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.2;
  margin: .25rem 0 .25rem;
}

.mp-product-return__copy p {
  color: var(--mp-page-muted);
  line-height: 1.5;
  margin: 0;
}

.mp-product-return__link {
  align-items: center;
  background: color-mix(in srgb, var(--mp-return-accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--mp-return-accent) 30%, transparent);
  border-radius: .9rem;
  color: var(--mp-page-text);
  display: inline-flex;
  font-weight: 800;
  gap: .65rem;
  min-height: 3rem;
  padding: .75rem 1rem;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  white-space: nowrap;
}

.mp-product-return__link:hover {
  background: color-mix(in srgb, var(--mp-return-accent) 20%, transparent);
  border-color: color-mix(in srgb, var(--mp-return-accent) 56%, transparent);
  transform: translateX(.2rem);
}

.mp-product-return__link:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--mp-return-accent) 48%, transparent);
  outline-offset: 3px;
}

/* Knowledge Vault commercial organisms. These components are intentionally
   code-native: motion, hierarchy and focus remain crisp at every viewport. */
.mp-knowledge-hero,
.mp-knowledge-transform,
.mp-knowledge-contexts,
.mp-knowledge-process,
.mp-knowledge-trust {
  --kv-accent: #34d399;
  --kv-cyan: #32d5ff;
  --kv-violet: #9f7aea;
  color: var(--mp-page-text, #eef1f8);
}

.mp-knowledge-hero {
  --mp-accent: #34d399;
  --mp-brand: #8b6cff;
  align-items: center;
  background:
    linear-gradient(145deg, rgba(10, 24, 45, .96), rgba(8, 13, 31, .99)),
    radial-gradient(circle at 75% 20%, rgba(52, 211, 153, .2), transparent 44%);
  border: 1px solid rgba(132, 255, 216, .18);
  border-radius: 2rem;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, .9fr) minmax(25rem, 1.1fr);
  isolation: isolate;
  min-height: 42rem;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 5rem);
  position: relative;
}

.mp-knowledge-hero__copy {
  position: relative;
  z-index: 3;
}

.mp-knowledge-hero__copy > * {
  animation: kv-hero-rise .75s cubic-bezier(.2, .75, .2, 1) both;
}

.mp-knowledge-hero__copy > h2 { animation-delay: .08s; }
.mp-knowledge-hero__copy > p { animation-delay: .16s; }
.mp-knowledge-hero__features { animation-delay: .24s !important; }
.mp-knowledge-hero__copy > .mp-actions { animation-delay: .32s; }

.mp-knowledge-hero h2 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  letter-spacing: -.055em;
  line-height: .98;
  margin: 1rem 0 1.25rem;
  max-width: 11ch;
  text-wrap: balance;
}

.mp-knowledge-hero__copy > p {
  color: var(--mp-page-muted, rgba(238, 241, 248, .68));
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
  max-width: 58ch;
}

.mp-knowledge-hero__features {
  display: grid;
  gap: .65rem;
  list-style: none;
  margin: 1.5rem 0 1.75rem;
  padding: 0;
}

.mp-knowledge-hero__features li {
  align-items: center;
  color: rgba(239, 253, 248, .88);
  display: flex;
  gap: .65rem;
}

.mp-knowledge-hero__features i { color: var(--kv-accent); }

.mp-knowledge-hero__actions {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  margin-top: 1.75rem;
}

.mp-knowledge-hero__actions .mp-action.ai-btn {
  justify-content: center;
  min-height: 3.35rem;
  width: 100%;
}

.mp-knowledge-hero__open.ai-btn {
  box-shadow: 0 .85rem 2.2rem rgba(52, 211, 153, .22);
}

.mp-knowledge-hero__journey {
  align-items: center;
  color: rgba(226, 252, 243, .82);
  display: inline-flex;
  font-size: .94rem;
  font-weight: 700;
  gap: .55rem;
  grid-column: 1 / -1;
  justify-self: start;
  padding: .25rem .15rem;
  text-decoration: none;
  text-underline-offset: .28rem;
  transition: color .2s ease, transform .2s ease;
}

.mp-knowledge-hero__journey i {
  color: var(--kv-accent);
  font-size: 1.05rem;
  transition: transform .2s ease;
}

.mp-knowledge-hero__journey:hover,
.mp-knowledge-hero__journey:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.mp-knowledge-hero__journey:hover i,
.mp-knowledge-hero__journey:focus-visible i {
  transform: translateY(.18rem);
}

.mp-knowledge-hero__journey:focus-visible {
  border-radius: .35rem;
  outline: 2px solid var(--kv-accent);
  outline-offset: .25rem;
}

.mp-knowledge-hero__visual {
  min-height: 33rem;
  perspective: 1200px;
  position: relative;
  z-index: 2;
}

.mp-knowledge-hero__frame {
  border: 1px solid rgba(132, 255, 216, .32);
  border-radius: 1.5rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, .42);
  height: 29rem;
  overflow: hidden;
  position: absolute;
  right: 2%;
  top: 6%;
  transform: rotateY(-4deg) rotateZ(1deg);
  transition: transform .2s ease-out;
  width: 88%;
}

.mp-knowledge-hero__frame::after {
  background: linear-gradient(135deg, transparent 45%, rgba(9, 18, 37, .68));
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.mp-knowledge-hero__frame img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.mp-knowledge-hero__document,
.mp-knowledge-hero__answer {
  backdrop-filter: blur(18px);
  background: rgba(11, 28, 48, .88);
  border: 1px solid rgba(132, 255, 216, .3);
  box-shadow: 0 1rem 2.75rem rgba(0, 0, 0, .4);
  position: absolute;
  transition: transform .2s ease-out;
}

.mp-knowledge-hero__document {
  align-items: center;
  animation: kv-float 6s ease-in-out infinite;
  border-radius: 1rem;
  display: flex;
  gap: .55rem;
  padding: .75rem 1rem;
}

.mp-knowledge-hero__document i { color: var(--kv-cyan); }
.mp-knowledge-hero__document--pdf { left: 0; top: 20%; }
.mp-knowledge-hero__document--note { animation-delay: -2.4s; right: 0; top: 0; }

.mp-knowledge-hero__answer {
  animation: kv-answer-breathe 7s ease-in-out infinite;
  border-radius: 1.25rem;
  bottom: 2%;
  display: grid;
  gap: .65rem;
  left: 7%;
  max-width: 22rem;
  padding: 1.15rem 1.25rem;
}

.mp-knowledge-hero__answer > span { color: var(--kv-accent); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.mp-knowledge-hero__answer > b { line-height: 1.4; }
.mp-knowledge-hero__answer > small { color: var(--mp-page-muted, rgba(238, 241, 248, .64)); }

.mp-knowledge-hero__glow {
  border-radius: 50%;
  filter: blur(4.5rem);
  height: 24rem;
  opacity: .2;
  pointer-events: none;
  position: absolute;
  width: 24rem;
  z-index: -1;
}

.mp-knowledge-hero__glow--one { animation: kv-glow-drift 13s ease-in-out infinite alternate; background: var(--kv-accent); right: -6rem; top: -8rem; }
.mp-knowledge-hero__glow--two { animation: kv-glow-drift 17s ease-in-out -5s infinite alternate-reverse; background: var(--kv-violet); bottom: -10rem; left: 36%; }

.mp-knowledge-transform {
  padding-block: 2rem;
}

.mp-knowledge-transform__stage {
  align-items: center;
  background: linear-gradient(145deg, rgba(15, 28, 53, .9), rgba(7, 14, 31, .98));
  border: 1px solid rgba(132, 255, 216, .16);
  border-radius: 1.75rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(15rem, .8fr) 7rem minmax(20rem, 1.2fr);
  margin-top: 2.25rem;
  min-height: 28rem;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  position: relative;
}

.mp-knowledge-transform__files {
  height: 18rem;
  position: relative;
}

.mp-knowledge-transform__file {
  align-items: center;
  animation: kv-file-gather 9s cubic-bezier(.55, .05, .35, 1) calc(var(--file-index) * -.8s) infinite;
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: .9rem;
  display: flex;
  gap: .55rem;
  left: calc(8% + (var(--file-index) * 9%));
  padding: .8rem 1rem;
  position: absolute;
  top: calc(8% + (var(--file-index) * 17%));
  transform: rotate(calc((var(--file-index) - 2) * 3deg));
}

.mp-knowledge-transform__file i { color: var(--kv-cyan); }

.mp-knowledge-transform__flow {
  align-items: center;
  display: flex;
  gap: .7rem;
}

.mp-knowledge-transform__flow span {
  background: linear-gradient(90deg, transparent, var(--kv-cyan));
  height: 2px;
  overflow: hidden;
  position: relative;
  width: 4.5rem;
}

.mp-knowledge-transform__flow span::after {
  animation: kv-flow-pulse 2s linear infinite;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 1rem var(--kv-cyan);
  content: '';
  height: .45rem;
  left: 0;
  position: absolute;
  top: -.18rem;
  width: .45rem;
}

.mp-knowledge-transform__flow i { color: var(--kv-cyan); }

.mp-knowledge-transform__memory {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(9rem, .62fr) minmax(12rem, 1fr);
}

.mp-knowledge-transform__tree,
.mp-knowledge-transform__answer {
  background: rgba(3, 13, 29, .72);
  border: 1px solid rgba(132, 255, 216, .18);
  border-radius: 1.25rem;
  padding: 1.15rem;
}

.mp-knowledge-transform__tree { display: grid; gap: .8rem; }
.mp-knowledge-transform__tree div { animation: kv-tree-reveal 9s ease calc(var(--folder-index) * .18s) infinite; align-items: center; display: flex; gap: .55rem; padding-left: calc(var(--folder-index) * .75rem); }
.mp-knowledge-transform__tree i { color: var(--kv-accent); }
.mp-knowledge-transform__answer { animation: kv-answer-breathe 7s ease-in-out infinite; display: grid; gap: .8rem; }
.mp-knowledge-transform__answer small { color: var(--kv-cyan); }
.mp-knowledge-transform__answer strong { line-height: 1.45; }
.mp-knowledge-transform__answer span { color: var(--kv-accent); font-size: .8rem; }

.mp-knowledge-contexts { padding-block: 2rem; }
.mp-knowledge-contexts__tabs { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; margin: 2rem auto 1rem; }
.mp-knowledge-contexts__tab { align-items: center; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: var(--mp-page-muted, rgba(238,241,248,.68)); cursor: pointer; display: flex; gap: .55rem; padding: .75rem 1rem; transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease; }
.mp-knowledge-contexts__tab:hover,
.mp-knowledge-contexts__tab:focus-visible { transform: translateY(-2px); }
.mp-knowledge-contexts__tab.is-active { background: rgba(52,211,153,.13); border-color: rgba(52,211,153,.5); color: #effdf8; }
.mp-knowledge-contexts__tab i { color: var(--kv-accent); }
.mp-knowledge-contexts__panels { min-height: 25rem; position: relative; }
.mp-knowledge-contexts__panel { align-items: center; background: linear-gradient(145deg, rgba(15,28,53,.92), rgba(7,14,31,.98)); border: 1px solid rgba(132,255,216,.16); border-radius: 1.75rem; display: grid; gap: 3rem; grid-template-columns: .85fr 1.15fr; inset: 0; opacity: 0; padding: clamp(1.5rem,4vw,3rem); pointer-events: none; position: absolute; transform: translateX(1.5rem) scale(.985); transition: opacity .45s ease, transform .45s cubic-bezier(.2,.75,.2,1); }
.mp-knowledge-contexts__panel.is-active { opacity: 1; pointer-events: auto; transform: none; }
.mp-knowledge-contexts__copy > span { color: var(--kv-accent); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.mp-knowledge-contexts__copy h3 { font-size: clamp(1.6rem,3vw,2.5rem); margin: .65rem 0 .75rem; }
.mp-knowledge-contexts__copy p { color: var(--mp-page-muted, rgba(238,241,248,.68)); line-height: 1.65; }
.mp-knowledge-contexts__demo { display: grid; gap: 1rem; grid-template-columns: .75fr 1.25fr; }
.mp-knowledge-contexts__tree,
.mp-knowledge-contexts__response { background: rgba(3,13,29,.72); border: 1px solid rgba(132,255,216,.18); border-radius: 1.2rem; padding: 1.1rem; }
.mp-knowledge-contexts__tree { display: grid; gap: .75rem; }
.mp-knowledge-contexts__tree span { animation: kv-context-folder .5s ease calc(var(--folder-index) * .09s) both; align-items: center; display: flex; gap: .55rem; padding-left: calc(var(--folder-index) * .7rem); }
.mp-knowledge-contexts__tree i { color: var(--kv-accent); }
.mp-knowledge-contexts__response { align-content: center; display: grid; gap: .8rem; line-height: 1.5; }
.mp-knowledge-contexts__response i { color: var(--kv-cyan); font-size: 1.5rem; }

.mp-knowledge-process { background: rgba(12,23,44,.72); border: 1px solid rgba(132,255,216,.14); border-radius: 1.75rem; padding: clamp(1.5rem,4vw,3rem); }
.mp-knowledge-process__heading { align-items: end; display: flex; gap: 2rem; justify-content: space-between; }
.mp-knowledge-process__heading h2 { font-size: clamp(1.7rem,3vw,2.7rem); margin: .4rem 0 0; }
.mp-knowledge-process__track { display: grid; gap: 1.2rem; grid-template-columns: repeat(4,1fr); margin-top: 2.25rem; position: relative; }
.mp-knowledge-process__line { background: rgba(255,255,255,.1); height: 2px; left: 8%; overflow: hidden; position: absolute; right: 8%; top: 1.65rem; }
.mp-knowledge-process__line span { background: linear-gradient(90deg,var(--kv-accent),var(--kv-cyan)); display: block; height: 100%; transform: scaleX(0); transform-origin: left; }
.mp-knowledge-process.is-visible .mp-knowledge-process__line span { animation: kv-process-line 2.4s .25s ease forwards; }
.mp-knowledge-process__step { opacity: .38; position: relative; transition: opacity .35s ease, transform .35s ease; }
.mp-knowledge-process.is-visible .mp-knowledge-process__step { animation: kv-process-step .55s ease calc(.4s + (var(--step-index) * .38s)) forwards; }
.mp-knowledge-process__icon { align-items: center; background: #0b1a31; border: 1px solid rgba(52,211,153,.4); border-radius: 50%; box-shadow: 0 0 0 .45rem rgba(52,211,153,.04); color: var(--kv-accent); display: flex; height: 3.3rem; justify-content: center; margin-bottom: 1rem; position: relative; width: 3.3rem; z-index: 1; }
.mp-knowledge-process__number { color: var(--kv-cyan); font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.mp-knowledge-process__step h3 { font-size: 1.1rem; margin: .35rem 0 .45rem; }
.mp-knowledge-process__step p { color: var(--mp-page-muted,rgba(238,241,248,.68)); font-size: .9rem; line-height: 1.55; margin: 0; }

.mp-knowledge-trust { padding-block: 2rem; }
.mp-knowledge-trust__rail { display: grid; gap: 1.25rem; grid-template-columns: repeat(3,1fr); margin-top: 2.25rem; }
.mp-knowledge-trust__card { background: rgba(12,23,44,.76); border: 1px solid rgba(255,255,255,.1); border-radius: 1.4rem; overflow: hidden; transform: translateY(0); transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease; }
.mp-knowledge-trust__card:hover { border-color: rgba(52,211,153,.38); box-shadow: 0 1.5rem 3rem rgba(0,0,0,.26); transform: translateY(-.45rem); }
.mp-knowledge-trust__visual { aspect-ratio: 16/10; background: #07101f; overflow: hidden; position: relative; }
.mp-knowledge-trust__visual::after { background: linear-gradient(180deg,transparent 45%,rgba(3,10,21,.86)); content: ''; inset: 0; position: absolute; }
.mp-knowledge-trust__visual img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); width: 100%; }
.mp-knowledge-trust__card:hover img { transform: scale(1.035); }
.mp-knowledge-trust__visual > span { align-items: center; bottom: .9rem; color: var(--kv-accent); display: flex; font-size: .75rem; font-weight: 800; gap: .45rem; left: 1rem; letter-spacing: .08em; position: absolute; text-transform: uppercase; z-index: 1; }
.mp-knowledge-trust__copy { padding: 1.25rem; }
.mp-knowledge-trust__copy > span { color: var(--kv-cyan); font-size: .72rem; font-weight: 800; }
.mp-knowledge-trust__copy h3 { font-size: 1.18rem; margin: .45rem 0 .6rem; }
.mp-knowledge-trust__copy p { color: var(--mp-page-muted,rgba(238,241,248,.68)); line-height: 1.6; margin: 0; }

.mp-faq--knowledge-dynamic .mp-faq__item { background: linear-gradient(120deg,rgba(52,211,153,.025),rgba(50,213,255,.02)); transition: background .3s ease, border-color .3s ease, transform .3s ease; }
.mp-faq--knowledge-dynamic .mp-faq__item[open] { background: linear-gradient(120deg,rgba(52,211,153,.09),rgba(50,213,255,.045)); border-color: rgba(52,211,153,.34); transform: translateX(.3rem); }
.mp-faq--knowledge-dynamic .mp-faq__item[open] summary i { color: var(--kv-accent); transform: rotate(45deg); }

.mp-final-card--knowledge-waves {
  background: linear-gradient(160deg,#071426 0%,#081226 48%,#11102a 100%);
  border-color: rgba(126,255,216,.23);
  min-height: 32rem;
}

.mp-final-card--knowledge-waves .mp-final-card__aurora {
  animation: kv-cta-aurora 8s ease-in-out infinite alternate;
  background: radial-gradient(circle,rgba(52,211,153,.65),rgba(50,213,255,.2) 35%,transparent 70%);
  opacity: .34;
}

.mp-final-card__wave-field { inset: 0; overflow: hidden; pointer-events: none; position: absolute; z-index: 0; }
.mp-final-card__wave { bottom: -9%; height: 88%; left: -10%; position: absolute; transform-origin: 50% 100%; width: 120%; }
.mp-final-card__wave path { fill: currentColor; }
.mp-final-card__wave--back { animation: kv-wave-back 18s ease-in-out infinite alternate; color: rgba(159,122,234,.18); filter: blur(12px); }
.mp-final-card__wave--middle { animation: kv-wave-middle 14s ease-in-out -4s infinite alternate-reverse; color: rgba(50,213,255,.17); filter: blur(5px); }
.mp-final-card__wave--front { animation: kv-wave-front 11s ease-in-out -2s infinite alternate; color: rgba(52,211,153,.2); }
.mp-final-card__particle { animation: kv-particle-rise 8s linear infinite; background: rgba(211,255,241,.72); border-radius: 50%; box-shadow: 0 0 .8rem rgba(52,211,153,.8); height: .28rem; left: calc(8% + (var(--particle-x, 1) * 10%)); opacity: 0; position: absolute; top: 75%; width: .28rem; }
.mp-final-card__particle--1 { --particle-x: 1; animation-delay: -1s; }
.mp-final-card__particle--2 { --particle-x: 2; animation-delay: -5s; }
.mp-final-card__particle--3 { --particle-x: 3; animation-delay: -3s; }
.mp-final-card__particle--4 { --particle-x: 4; animation-delay: -7s; }
.mp-final-card__particle--5 { --particle-x: 5; animation-delay: -2s; }
.mp-final-card__particle--6 { --particle-x: 6; animation-delay: -6s; }
.mp-final-card__particle--7 { --particle-x: 7; animation-delay: -4s; }
.mp-final-card__particle--8 { --particle-x: 8; animation-delay: -8s; }
.mp-final-card--knowledge-waves .mp-final-card__content { text-shadow: 0 .2rem 1.5rem rgba(0,0,0,.42); z-index: 2; }
.mp-final-card--knowledge-waves .mp-eyebrow { color: #83fbd4; }

@keyframes kv-hero-rise { from { opacity: 0; transform: translateY(1.5rem); } to { opacity: 1; transform: none; } }
@keyframes kv-float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-.75rem) rotate(1deg); } }
@keyframes kv-answer-breathe { 0%,100% { box-shadow: 0 1rem 2.75rem rgba(0,0,0,.4); transform: translateY(0); } 50% { box-shadow: 0 1.4rem 3.3rem rgba(16,185,129,.16); transform: translateY(-.4rem); } }
@keyframes kv-glow-drift { from { transform: translate3d(-8%,-4%,0) scale(.9); } to { transform: translate3d(10%,8%,0) scale(1.15); } }
@keyframes kv-file-gather { 0%,18%,100% { opacity: .9; } 45% { opacity: 1; transform: translate(1rem,-.35rem) rotate(0); } 70% { opacity: .7; } }
@keyframes kv-flow-pulse { from { transform: translateX(-.4rem); } to { transform: translateX(4.5rem); } }
@keyframes kv-tree-reveal { 0%,15% { opacity: .35; transform: translateX(.5rem); } 35%,100% { opacity: 1; transform: none; } }
@keyframes kv-context-folder { from { opacity: 0; transform: translateX(.65rem); } to { opacity: 1; transform: none; } }
@keyframes kv-process-line { to { transform: scaleX(1); } }
@keyframes kv-process-step { to { opacity: 1; transform: translateY(-.15rem); } }
@keyframes kv-cta-aurora { from { transform: translate(-58%,-55%) scale(.86); } to { transform: translate(-42%,-43%) scale(1.18); } }
@keyframes kv-wave-back { from { transform: translate3d(-3%,4%,0) scaleX(1.03); } to { transform: translate3d(4%,-3%,0) scaleX(1.11); } }
@keyframes kv-wave-middle { from { transform: translate3d(4%,2%,0) scale(1.03,.96); } to { transform: translate3d(-4%,-4%,0) scale(1.1,1.06); } }
@keyframes kv-wave-front { from { transform: translate3d(-2%,5%,0) scaleX(1.02); } to { transform: translate3d(3%,-1%,0) scaleX(1.08); } }
@keyframes kv-particle-rise { 0% { opacity: 0; transform: translateY(2rem) scale(.6); } 18% { opacity: .75; } 80% { opacity: .25; } 100% { opacity: 0; transform: translateY(-16rem) translateX(2rem) scale(1.2); } }

.mp-final-card h2 {
  /* The mockup's final heading uses tighter margins (8px auto 10px). */
  color: var(--mp-page-text, #eef1f8);
  margin: .5rem auto .625rem;
  max-width: 20ch;
}

.mp-final-card p {
  color: var(--mp-page-muted, rgba(238, 241, 248, .66));
  margin-inline: auto;
  max-width: 52ch;
}

.mp-actions--center {
  justify-content: center;
}

[data-marketing-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity .55s cubic-bezier(.2, .7, .2, 1),
    transform .55s cubic-bezier(.2, .7, .2, 1);
}

[data-marketing-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1000px) {
  .mp-knowledge-hero {
    grid-template-columns: 1fr;
  }

  .mp-knowledge-transform__stage {
    grid-template-columns: 1fr;
  }

  .mp-knowledge-transform__files {
    height: 13rem;
  }

  .mp-knowledge-transform__flow {
    justify-content: center;
    transform: rotate(90deg);
  }

  .mp-knowledge-contexts__panel {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .mp-knowledge-contexts__panels {
    min-height: 34rem;
  }

  .mp-knowledge-trust__rail {
    grid-template-columns: 1fr;
  }

  .mp-product-card,
  .mp-story,
  .mp-proof,
  .mp-workspace-hub {
    grid-template-columns: 1fr;
  }

  .mp-capability-grid {
    grid-template-columns: 1fr;
  }

  .mp-workspace-hub__window {
    transform: none;
  }

  .mp-workspace-modules--constellation .mp-workspace-modules__module {
    transform: none;
  }

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

  .mp-story__stage {
    height: auto;
    min-height: 0;
    position: relative;
    top: auto;
  }

  .mp-story__progress,
  .mp-story__scan {
    display: none;
  }

  .mp-story__scene {
    border-bottom: 1px solid var(--mp-line);
    opacity: 1;
    padding: 1.25rem;
    position: relative;
    transform: none;
  }

  .mp-story__scene:last-of-type {
    border-bottom: 0;
  }

  .mp-story__steps {
    display: none;
  }
}

@media (max-width: 700px) {
  .mp-styleguide-workspace-modules__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: .3rem;
  }

  .mp-workspace-modules__modules {
    grid-template-columns: 1fr;
  }

  .mp-workspace-modules__connector {
    height: 2.75rem;
    width: 2px;
  }

  .mp-workspace-modules__connector span {
    border: 0;
    border-left: 2px solid var(--mp-accent);
    height: 100%;
  }

  .mp-workspace-modules__module {
    min-height: 13rem;
  }
}

@media (max-width: 640px) {
  .mp-knowledge-hero {
    border-radius: 1.4rem;
    min-height: 0;
    padding: 1.35rem;
  }

  .mp-knowledge-hero h2 {
    font-size: clamp(2.35rem, 13vw, 3.45rem);
  }

  .mp-knowledge-hero__visual {
    min-height: 26rem;
  }

  .mp-knowledge-hero__frame {
    height: 21rem;
    right: 0;
    width: 94%;
  }

  .mp-knowledge-hero__answer {
    left: 0;
    max-width: 90%;
  }

  .mp-knowledge-transform__memory,
  .mp-knowledge-contexts__demo {
    grid-template-columns: 1fr;
  }

  .mp-knowledge-contexts__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mp-knowledge-contexts__tab {
    border-radius: .9rem;
    justify-content: center;
  }

  .mp-knowledge-contexts__panels {
    min-height: 44rem;
  }

  .mp-knowledge-process__track {
    grid-template-columns: 1fr;
  }

  .mp-knowledge-process__line {
    bottom: 5%;
    height: auto;
    left: 1.62rem;
    right: auto;
    top: 5%;
    width: 2px;
  }

  .mp-knowledge-process__line span {
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
    width: 100%;
  }

  .mp-knowledge-process.is-visible .mp-knowledge-process__line span {
    animation-name: kv-process-line-mobile;
  }

  .mp-knowledge-process__step {
    min-height: 5rem;
    padding-left: 4.4rem;
  }

  .mp-knowledge-process__icon {
    left: 0;
    position: absolute;
    top: 0;
  }

  .mp-final-card--knowledge-waves {
    min-height: 25rem;
    padding: 2.25rem 1.25rem;
  }

  .mp-page__section--faq {
    padding-bottom: 2rem;
  }

  .mp-page__section--final {
    padding-bottom: 1.75rem;
    padding-top: 1rem;
  }

  .mp-page__return {
    padding-bottom: 2.5rem;
  }

  .mp-product-return {
    align-items: start;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 1.1rem;
  }

  .mp-product-return__link {
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
  }

  @keyframes kv-process-line-mobile { to { transform: scaleY(1); } }

  .mp-product-card {
    padding: 1.1rem;
  }

  .mp-product-card__visual,
  .mp-product-card__photo {
    min-height: 330px;
  }

  .mp-product-card--surface-landing .mp-product-card__visual,
  .mp-product-card--surface-landing .mp-product-card__photo {
    min-height: 620px;
  }

  .mp-preview-card {
    bottom: .65rem;
    left: .65rem;
    right: .65rem;
  }

  .mp-preview-card--knowledge-vault[data-marketing-surface="landing"] {
    grid-template-columns: 1fr;
  }

  .mp-flow-grid {
    grid-template-columns: 1fr;
  }

  .mp-proof {
    padding: 1.1rem;
  }

  .mp-actions,
  .mp-action.ai-btn {
    width: 100%;
  }

  .mp-knowledge-hero__actions {
    grid-template-columns: 1fr;
  }

  .mp-knowledge-hero__journey {
    grid-column: 1;
    justify-self: center;
  }

  .mp-styleguide-demo {
    border-radius: 1rem;
    padding: .75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mp-knowledge-hero__copy > *,
  .mp-knowledge-hero__document,
  .mp-knowledge-hero__answer,
  .mp-knowledge-hero__glow,
  .mp-knowledge-transform__file,
  .mp-knowledge-transform__flow span::after,
  .mp-knowledge-transform__tree div,
  .mp-knowledge-contexts__tree span,
  .mp-knowledge-process__line span,
  .mp-knowledge-process__step,
  .mp-final-card--knowledge-waves .mp-final-card__aurora,
  .mp-final-card__wave,
  .mp-final-card__particle {
    animation: none !important;
  }

  .mp-knowledge-process__line span {
    transform: none;
  }

  .mp-knowledge-process__step {
    opacity: 1;
  }

  .mp-action.ai-btn,
  .mp-story__scene,
  .mp-story__step,
  .mp-faq summary i,
  [data-marketing-reveal] {
    transition: none;
  }

  [data-marketing-reveal] {
    opacity: 1;
    transform: none;
  }

  .mp-story__stage {
    height: auto;
    min-height: 0;
    position: relative;
    top: auto;
  }

  .mp-story__step {
    opacity: 1;
    transform: none;
  }

  .mp-story__progress {
    display: none;
  }

  .mp-story__scene {
    border-bottom: 1px solid var(--mp-line);
    opacity: 1;
    padding: 1.25rem;
    position: relative;
    transform: none;
  }

  .mp-story__scene:last-of-type {
    border-bottom: 0;
  }

  .mp-story__scan {
    display: none;
  }
}

/*
 * Reduced motion keeps the approved stage layout on desktop: one scene at a
 * time inside the framed stage, with the 01/07 progress bar, exactly like the
 * design mockup. Motion itself stays disabled (no transitions, no scroll-driven
 * advance) — the step buttons remain the accessible way to move between scenes.
 * Below 1001px the stacked fallback still applies, so nothing is hidden on
 * small screens.
 */
@media (prefers-reduced-motion: reduce) and (min-width: 1001px) {
  .mp-story__stage {
    height: min(74vh, 560px);
    min-height: 410px;
    position: sticky;
    top: 6rem;
  }

  .mp-story__progress {
    display: flex;
  }

  .mp-story__scene {
    border-bottom: 0;
    opacity: 0;
    padding: 1.625rem;
    position: absolute;
    transform: none;
  }

  .mp-story__scene.is-active {
    opacity: 1;
  }
}

/* Final approval-gate compositions: visual continuation from the approved
   Workspace Hub. Product membership is communicated by structure, not labels. */
.mp-workspace-modules {
  min-height: 0;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.mp-workspace-modules__handoff {
  align-items: center;
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr auto 1fr;
  margin: 0 auto clamp(1.5rem, 4vw, 2.75rem);
  max-width: 54rem;
}

.mp-workspace-modules__handoff span {
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--mp-accent) 62%, var(--mp-brand)));
  height: 1px;
}

.mp-workspace-modules__handoff span:last-child {
  background: linear-gradient(90deg, color-mix(in srgb, var(--mp-accent) 62%, #34d399), transparent);
}

.mp-workspace-modules__handoff i {
  background: var(--mp-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--mp-accent) 10%, transparent), 0 0 24px var(--mp-accent);
  height: .5rem;
  width: .5rem;
}

.mp-workspace-modules .mp-workspace-modules__modules {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.mp-workspace-modules .mp-workspace-modules__module {
  background: color-mix(in srgb, var(--mp-surface) 94%, transparent);
  border: 1px solid var(--mp-line);
  border-radius: 1.35rem;
  box-shadow: none;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  transform: none;
}

.mp-workspace-modules .mp-workspace-modules__module-head {
  align-items: center;
  display: flex;
  gap: .85rem;
  margin: 0;
}

.mp-workspace-modules .mp-workspace-modules__module-head h4 {
  color: #f0f4ff;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.mp-workspace-modules .mp-workspace-modules__module-copy p {
  color: #f0f4ff;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  max-width: 43ch;
}

.mp-workspace-modules .mp-workspace-modules__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.mp-workspace-modules .mp-workspace-modules__actions--dual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mp-workspace-modules .mp-workspace-modules__actions--dual .mp-workspace-modules__cta {
  justify-content: center;
  white-space: nowrap;
  width: 100%;
}

.mp-workspace-modules .mp-workspace-modules__cta {
  align-items: center;
  background: #141b45;
  border: 1px solid rgba(107, 92, 255, .35);
  border-radius: .55rem;
  color: #eef1f8;
  display: inline-flex;
  font-weight: 800;
  gap: .5rem;
  line-height: normal;
  min-height: 3rem;
  margin: 0;
  padding: .7rem 1rem;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
  width: fit-content;
}

.mp-workspace-modules .mp-workspace-modules__cta--open {
  background: linear-gradient(135deg, #6255ed, #3478ef);
  border-color: rgba(120, 206, 255, .62);
  box-shadow: 0 .55rem 1.4rem rgba(42, 89, 220, .24);
  color: #fff;
}

.mp-workspace-modules .mp-workspace-modules__cta:hover,
.mp-workspace-modules .mp-workspace-modules__cta:focus-visible {
  background: #1b255a;
  border-color: rgba(50, 213, 255, .58);
  color: #eef1f8;
  transform: translateY(-1px);
}

.mp-workspace-modules .mp-workspace-modules__cta--open:hover,
.mp-workspace-modules .mp-workspace-modules__cta--open:focus-visible {
  background: linear-gradient(135deg, #7165f5, #3d8bff);
  border-color: rgba(132, 221, 255, .88);
  box-shadow: 0 .7rem 1.7rem rgba(42, 89, 220, .34);
}

@media (max-width: 640px) {
  .mp-workspace-modules .mp-workspace-modules__actions--dual {
    grid-template-columns: 1fr;
  }
}

.mp-workspace-modules .mp-workspace-modules__preview {
  aspect-ratio: 16 / 10;
  background: #040a1b;
  border: 0;
  border-radius: 1rem;
  margin: 0;
  overflow: hidden;
}

.mp-workspace-modules .mp-workspace-modules__preview img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* Student Knowledge Vault motion studies. The source images establish the
   approved art direction; these overlays provide actual continuously visible
   motion and intentionally differ from the Workspace Hub's floating tilt. */
.mp-workspace-modules__preview--animated {
  isolation: isolate;
  position: relative;
}

.mp-workspace-modules__preview--animated img {
  transition: filter .45s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}

.mp-workspace-modules__motion {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.mp-workspace-modules__career-motion {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.mp-workspace-modules__career-chip {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(8, 15, 37, .88);
  border: 1px solid rgba(117, 231, 255, .76);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(17, 24, 62, .45), 0 0 16px rgba(50, 213, 255, .32);
  color: #d9f9ff;
  display: inline-flex;
  font-size: clamp(.48rem, .9vw, .68rem);
  gap: .34rem;
  letter-spacing: .08em;
  padding: .34rem .55rem;
  position: absolute;
}

.mp-workspace-modules__career-chip i {
  color: #74e7ff;
  font-size: 1.15em;
}

.mp-workspace-modules__resume-sheet {
  background:
    linear-gradient(rgba(106, 230, 255, .8), rgba(106, 230, 255, .8)) 22% 27% / 36% 4% no-repeat,
    linear-gradient(rgba(134, 112, 255, .72), rgba(134, 112, 255, .72)) 22% 39% / 58% 3% no-repeat,
    linear-gradient(rgba(106, 230, 255, .48), rgba(106, 230, 255, .48)) 22% 50% / 48% 3% no-repeat,
    linear-gradient(rgba(134, 112, 255, .46), rgba(134, 112, 255, .46)) 22% 61% / 61% 3% no-repeat,
    rgba(8, 16, 39, .86);
  border: 1px solid rgba(113, 225, 255, .72);
  border-radius: .38rem;
  box-shadow: 0 0 20px rgba(50, 213, 255, .28);
  display: none;
  height: clamp(4.5rem, 12vw, 7.4rem);
  position: absolute;
  width: clamp(3.4rem, 9vw, 5.5rem);
}

.mp-workspace-modules__career-scan,
.mp-workspace-modules__match-meter {
  display: none;
  position: absolute;
}

.mp-workspace-modules__career-source,
.mp-workspace-modules__career-target,
.mp-workspace-modules__career-focused,
.mp-workspace-modules__language-switch,
.mp-workspace-modules__career-splash {
  display: none;
  position: absolute;
}

.mp-workspace-modules__career-source {
  height: 5.9rem;
  width: 4.5rem;
}

.mp-workspace-modules__career-source i {
  background:
    linear-gradient(rgba(105, 228, 255, .66), rgba(105, 228, 255, .66)) 22% 25% / 44% 3% no-repeat,
    linear-gradient(rgba(139, 108, 255, .5), rgba(139, 108, 255, .5)) 22% 36% / 58% 2px no-repeat,
    linear-gradient(rgba(105, 228, 255, .38), rgba(105, 228, 255, .38)) 22% 47% / 52% 2px no-repeat,
    rgba(8, 16, 39, .92);
  border: 1px solid rgba(110, 226, 255, .55);
  border-radius: .3rem;
  box-shadow: 0 6px 18px rgba(2, 8, 28, .42);
  height: 4.8rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 3.55rem;
}

.mp-workspace-modules__career-source i:nth-child(2) { transform: translate(.28rem, .2rem) rotate(2deg); }
.mp-workspace-modules__career-source i:nth-child(3) { transform: translate(.56rem, .4rem) rotate(4deg); }
.mp-workspace-modules__career-source i:nth-child(4) { transform: translate(.84rem, .6rem) rotate(6deg); }

.mp-workspace-modules__career-source b,
.mp-workspace-modules__career-focused b {
  background: rgba(7, 15, 37, .94);
  border: 1px solid rgba(113, 229, 255, .64);
  border-radius: 999px;
  bottom: 0;
  color: #d9f9ff;
  font-size: clamp(.48rem, .85vw, .65rem);
  left: 50%;
  letter-spacing: .06em;
  padding: .25rem .42rem;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
}

.mp-workspace-modules__career-target {
  align-items: center;
  backdrop-filter: blur(9px);
  background: rgba(7, 15, 38, .9);
  border: 1px solid rgba(139, 108, 255, .75);
  border-radius: .62rem;
  box-shadow: 0 0 22px rgba(139, 108, 255, .38);
  color: #fff;
  flex-direction: column;
  height: 3.2rem;
  justify-content: center;
  overflow: hidden;
  width: 6.3rem;
}

.mp-workspace-modules__career-target small {
  color: #b5a8ff;
  font-size: .48rem;
  letter-spacing: .18em;
}

.mp-workspace-modules__career-target b {
  height: 1rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.mp-workspace-modules__career-target em {
  animation: mp-cf-role-cycle 6s cubic-bezier(.45, 0, .2, 1) infinite;
  font-size: .64rem;
  font-style: normal;
  left: 0;
  letter-spacing: .08em;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}

.mp-workspace-modules__career-target em:nth-child(2) { animation-delay: -4s; }
.mp-workspace-modules__career-target em:nth-child(3) { animation-delay: -2s; }

.mp-workspace-modules__career-focused {
  align-items: center;
  background: linear-gradient(145deg, rgba(9, 22, 47, .95), rgba(21, 21, 61, .9));
  border: 1px solid rgba(82, 242, 184, .82);
  border-radius: .42rem;
  box-shadow: 0 0 26px rgba(82, 242, 184, .35);
  color: #6af3c3;
  height: 5.1rem;
  justify-content: center;
  width: 3.8rem;
}

.mp-workspace-modules__career-focused > i {
  font-size: 1.2rem;
}

.mp-workspace-modules__career-focused b {
  border-color: rgba(82, 242, 184, .72);
  color: #a8ffe0;
}

.mp-workspace-modules__language-switch {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(6, 14, 36, .9);
  border: 1px solid rgba(105, 229, 255, .7);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(50, 213, 255, .3);
  color: #d8f8ff;
  gap: .45rem;
  height: 2rem;
  justify-content: center;
  overflow: hidden;
  width: 6.2rem;
}

.mp-workspace-modules__language-switch b,
.mp-workspace-modules__language-switch i {
  font-size: .63rem;
  position: relative;
  z-index: 2;
}

.mp-workspace-modules__language-switch span {
  animation: mp-cf-language-toggle 3.6s cubic-bezier(.45, 0, .2, 1) infinite;
  background: linear-gradient(135deg, rgba(50, 213, 255, .46), rgba(139, 108, 255, .5));
  border-radius: 999px;
  height: 1.45rem;
  left: .26rem;
  position: absolute;
  top: .24rem;
  width: 2rem;
}

.mp-workspace-modules__career-splash {
  animation: mp-cf-transform-splash 5.8s ease-out infinite;
  background: radial-gradient(circle, rgba(255, 255, 255, .9) 0 3%, rgba(50, 213, 255, .45) 8%, rgba(139, 108, 255, .2) 36%, transparent 68%);
  border-radius: 50%;
  height: 8rem;
  width: 8rem;
}

.mp-workspace-modules__particle,
.mp-workspace-modules__pulse,
.mp-workspace-modules__answer-scan {
  display: none;
  position: absolute;
}

.mp-workspace-modules__particle {
  align-items: center;
  background: rgba(5, 13, 34, .88);
  border: 1px solid rgba(88, 216, 255, .75);
  border-radius: .48rem;
  box-shadow: 0 0 18px rgba(50, 213, 255, .56);
  color: #bff4ff;
  font-size: clamp(.72rem, 1.4vw, 1rem);
  height: clamp(1.65rem, 3vw, 2.15rem);
  justify-content: center;
  width: clamp(1.65rem, 3vw, 2.15rem);
}

.mp-workspace-modules__preview--animated:hover *,
.mp-workspace-modules__module:focus-within .mp-workspace-modules__motion *,
.mp-workspace-modules__module:focus-within .mp-workspace-modules__career-motion * {
  animation-play-state: paused !important;
}

/* A: documents travel on separate curved paths and converge on the Vault. */
.mp-workspace-modules--bridge .mp-workspace-modules__module--knowledge-vault .mp-workspace-modules__preview::after {
  background:
    radial-gradient(ellipse at 76% 49%, rgba(50, 213, 255, .22), transparent 18%),
    linear-gradient(90deg, transparent 10%, rgba(107, 92, 255, .08) 48%, rgba(50, 213, 255, .16) 76%, transparent 90%);
  content: "";
  inset: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.mp-workspace-modules--bridge .mp-workspace-modules__particle {
  animation: mp-material-stream 6.4s linear infinite;
  display: inline-flex;
  offset-path: path("M -34 256 C 118 240 132 56 292 104 C 424 143 414 244 650 164");
  offset-rotate: auto 8deg;
}

.mp-workspace-modules--bridge .mp-workspace-modules__particle--two {
  animation-delay: -1.6s;
  offset-path: path("M -36 86 C 125 41 210 198 338 142 C 449 94 510 130 656 146");
}

.mp-workspace-modules--bridge .mp-workspace-modules__particle--three {
  animation-delay: -3.2s;
  offset-path: path("M -42 190 C 92 114 211 279 350 207 C 462 149 508 191 660 151");
}

.mp-workspace-modules--bridge .mp-workspace-modules__particle--four {
  animation-delay: -4.8s;
  offset-path: path("M -40 286 C 154 300 203 121 336 173 C 456 219 519 153 660 151");
}

.mp-workspace-modules--bridge .mp-workspace-modules__pulse {
  animation: mp-vault-arrival 1.65s ease-out infinite;
  border: 2px solid #32d5ff;
  border-radius: 50%;
  display: block;
  height: 3.5rem;
  left: 76%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 3.5rem;
}

/* B: papers rise from the desk, cross the frame and activate course groups. */
.mp-workspace-modules--rail .mp-workspace-modules__module--knowledge-vault .mp-workspace-modules__particle {
  animation: mp-study-paper 5.4s cubic-bezier(.45, 0, .3, 1) infinite;
  display: inline-flex;
  left: 13%;
  top: 69%;
}

.mp-workspace-modules--rail .mp-workspace-modules__particle--two {
  animation-delay: -1.35s;
  left: 29%;
  top: 76%;
}

.mp-workspace-modules--rail .mp-workspace-modules__particle--three {
  animation-delay: -2.7s;
  left: 19%;
  top: 57%;
}

.mp-workspace-modules--rail .mp-workspace-modules__particle--four {
  animation-delay: -4.05s;
  left: 36%;
  top: 66%;
}

.mp-workspace-modules--rail .mp-workspace-modules__pulse {
  animation: mp-course-activate 4.05s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(50, 213, 255, .26), transparent);
  display: block;
  height: 22%;
  left: 55%;
  top: 17%;
  width: 40%;
}

.mp-workspace-modules--rail .mp-workspace-modules__answer-scan {
  animation: mp-answer-unfold 5.4s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, .35), transparent);
  bottom: 12%;
  display: block;
  height: 3px;
  left: 57%;
  transform-origin: left;
  width: 36%;
}

/* C: orbiting files feed a pulsing core before the answer scan unfolds. */
.mp-workspace-modules--constellation .mp-workspace-modules__module--knowledge-vault .mp-workspace-modules__motion::before,
.mp-workspace-modules--constellation .mp-workspace-modules__module--knowledge-vault .mp-workspace-modules__motion::after {
  animation: mp-orbit-ring 7s linear infinite;
  border: 1px solid rgba(50, 213, 255, .65);
  border-radius: 50%;
  content: "";
  height: 44%;
  left: 50%;
  position: absolute;
  top: 47%;
  transform: translate(-50%, -50%) rotate(18deg);
  width: 52%;
}

.mp-workspace-modules--constellation .mp-workspace-modules__module--knowledge-vault .mp-workspace-modules__motion::after {
  animation-direction: reverse;
  animation-duration: 9s;
  border-color: rgba(139, 108, 255, .56);
  height: 61%;
  transform: translate(-50%, -50%) rotate(-24deg);
  width: 68%;
}

.mp-workspace-modules--constellation .mp-workspace-modules__particle {
  animation: mp-file-orbit 8s linear infinite;
  display: inline-flex;
  left: 50%;
  top: 47%;
}

.mp-workspace-modules--constellation .mp-workspace-modules__particle--two {
  animation-delay: -2s;
}

.mp-workspace-modules--constellation .mp-workspace-modules__particle--three {
  animation-delay: -4s;
}

.mp-workspace-modules--constellation .mp-workspace-modules__particle--four {
  animation-delay: -6s;
}

.mp-workspace-modules--constellation .mp-workspace-modules__pulse {
  animation: mp-knowledge-core 2.2s ease-in-out infinite;
  background: rgba(50, 213, 255, .18);
  border: 2px solid rgba(50, 213, 255, .88);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(50, 213, 255, .68);
  display: block;
  height: 4rem;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  width: 4rem;
}

.mp-workspace-modules--constellation .mp-workspace-modules__answer-scan {
  animation: mp-answer-scan 6.6s cubic-bezier(.2, .7, .2, 1) infinite;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, .7), transparent);
  bottom: 9%;
  display: block;
  height: 45%;
  left: 43%;
  mix-blend-mode: screen;
  transform-origin: left;
  width: 53%;
}

/* Career Forge A: experience signals enter from three directions and assemble
   into a focused resume. This is a build sequence, not the Vault's file flow. */
.mp-workspace-modules--bridge .mp-workspace-modules__module--career-forge .mp-workspace-modules__career-chip {
  animation: mp-cf-keyword-flow 5.8s cubic-bezier(.45, 0, .2, 1) infinite;
  left: 8%;
  top: 20%;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module--career-forge .mp-workspace-modules__career-chip--two {
  animation-delay: -1.9s;
  left: 12%;
  top: 72%;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module--career-forge .mp-workspace-modules__career-chip--three {
  animation-delay: -3.8s;
  left: 38%;
  top: 10%;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module--career-forge .mp-workspace-modules__resume-sheet--one {
  display: none;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module--career-forge .mp-workspace-modules__career-source {
  animation: mp-cf-source-enter 5.8s cubic-bezier(.45, 0, .2, 1) infinite;
  display: block;
  left: 7%;
  top: 43%;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module--career-forge .mp-workspace-modules__career-target {
  animation: mp-cf-role-lock 5.8s ease-in-out infinite;
  display: flex;
  left: 43%;
  top: 39%;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module--career-forge .mp-workspace-modules__career-focused {
  animation: mp-cf-focused-reveal 5.8s cubic-bezier(.2, .75, .2, 1) infinite;
  display: flex;
  left: 77%;
  top: 38%;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module--career-forge .mp-workspace-modules__language-switch {
  animation: mp-cf-language-float 3.6s ease-in-out infinite;
  display: flex;
  left: 72%;
  top: 11%;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module--career-forge .mp-workspace-modules__career-splash {
  display: block;
  left: 64%;
  top: 27%;
}

/* Career Forge B: a recruiting scan reads the profile and resolves a fit
   score. The motion is deliberately linear and diagnostic. */
.mp-workspace-modules--rail .mp-workspace-modules__module--career-forge .mp-workspace-modules__career-scan {
  animation: mp-cf-profile-scan 4.8s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(88, 230, 255, .94), transparent);
  box-shadow: 0 0 18px rgba(50, 213, 255, .76);
  display: block;
  height: 2px;
  left: 7%;
  top: 18%;
  width: 86%;
}

.mp-workspace-modules--rail .mp-workspace-modules__module--career-forge .mp-workspace-modules__career-chip {
  animation: mp-cf-skill-match 4.8s ease-in-out infinite;
  left: 62%;
  top: 24%;
}

.mp-workspace-modules--rail .mp-workspace-modules__module--career-forge .mp-workspace-modules__career-chip--two {
  animation-delay: -1.6s;
  left: 68%;
  top: 47%;
}

.mp-workspace-modules--rail .mp-workspace-modules__module--career-forge .mp-workspace-modules__career-chip--three {
  animation-delay: -3.2s;
  left: 58%;
  top: 70%;
}

.mp-workspace-modules--rail .mp-workspace-modules__module--career-forge .mp-workspace-modules__match-meter {
  background: rgba(5, 14, 35, .78);
  border: 1px solid rgba(109, 231, 255, .52);
  border-radius: 999px;
  bottom: 8%;
  display: block;
  height: .48rem;
  left: 54%;
  overflow: hidden;
  width: 39%;
}

.mp-workspace-modules--rail .mp-workspace-modules__module--career-forge .mp-workspace-modules__career-source {
  animation: mp-cf-source-breathe 4.8s ease-in-out infinite;
  display: block;
  left: 10%;
  top: 34%;
}

.mp-workspace-modules--rail .mp-workspace-modules__module--career-forge .mp-workspace-modules__career-target {
  animation: mp-cf-target-scan 4.8s ease-in-out infinite;
  display: flex;
  left: 67%;
  top: 18%;
}

.mp-workspace-modules--rail .mp-workspace-modules__module--career-forge .mp-workspace-modules__career-focused {
  animation: mp-cf-focused-scan 4.8s cubic-bezier(.2, .7, .2, 1) infinite;
  display: flex;
  left: 72%;
  top: 57%;
}

.mp-workspace-modules--rail .mp-workspace-modules__module--career-forge .mp-workspace-modules__language-switch {
  animation: mp-cf-language-float 3.6s ease-in-out infinite;
  display: flex;
  left: 8%;
  top: 10%;
}

.mp-workspace-modules--rail .mp-workspace-modules__module--career-forge .mp-workspace-modules__career-splash {
  animation-duration: 4.8s;
  display: block;
  left: 57%;
  top: 39%;
}

.mp-workspace-modules--rail .mp-workspace-modules__match-meter i {
  animation: mp-cf-match-fill 4.8s cubic-bezier(.2, .7, .2, 1) infinite;
  background: linear-gradient(90deg, #32d5ff, #8b6cff 72%, #52f2b8);
  border-radius: inherit;
  display: block;
  height: 100%;
  transform-origin: left;
}

/* Career Forge C: alternate resume versions orbit, converge and leave one
   selected edition in focus. */
.mp-workspace-modules--constellation .mp-workspace-modules__module--career-forge .mp-workspace-modules__resume-sheet {
  display: block;
  left: 62%;
  top: 48%;
}

.mp-workspace-modules--constellation .mp-workspace-modules__module--career-forge .mp-workspace-modules__resume-sheet--one {
  animation: mp-cf-version-orbit 7.2s linear infinite;
}

.mp-workspace-modules--constellation .mp-workspace-modules__module--career-forge .mp-workspace-modules__resume-sheet--two {
  animation: mp-cf-version-orbit 7.2s -2.4s linear infinite;
  border-color: rgba(139, 108, 255, .72);
}

.mp-workspace-modules--constellation .mp-workspace-modules__module--career-forge .mp-workspace-modules__resume-sheet--three {
  animation: mp-cf-version-orbit 7.2s -4.8s linear infinite;
  border-color: rgba(82, 242, 184, .7);
}

.mp-workspace-modules--constellation .mp-workspace-modules__module--career-forge .mp-workspace-modules__match-meter {
  animation: mp-cf-selection-ring 2.4s ease-in-out infinite;
  border: 1px solid rgba(82, 242, 184, .8);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(82, 242, 184, .42);
  display: block;
  height: clamp(6.2rem, 17vw, 10rem);
  left: 62%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: clamp(6.2rem, 17vw, 10rem);
}

.mp-workspace-modules--constellation .mp-workspace-modules__module--career-forge .mp-workspace-modules__career-source {
  animation: mp-cf-source-collapse 7.2s cubic-bezier(.45, 0, .2, 1) infinite;
  display: block;
  left: 62%;
  top: 36%;
}

.mp-workspace-modules--constellation .mp-workspace-modules__module--career-forge .mp-workspace-modules__career-focused {
  animation: mp-cf-focus-converge 7.2s cubic-bezier(.2, .75, .2, 1) infinite;
  display: flex;
  left: 62%;
  top: 38%;
}

.mp-workspace-modules--constellation .mp-workspace-modules__module--career-forge .mp-workspace-modules__career-target {
  animation: mp-cf-role-orbit 7.2s linear infinite;
  display: flex;
  left: 62%;
  top: 48%;
}

.mp-workspace-modules--constellation .mp-workspace-modules__module--career-forge .mp-workspace-modules__language-switch {
  animation: mp-cf-language-orbit 7.2s linear infinite;
  display: flex;
  left: 62%;
  top: 48%;
}

@keyframes mp-material-stream {
  0% { opacity: 0; offset-distance: 0%; transform: scale(.65); }
  10% { opacity: 1; }
  76% { opacity: 1; transform: scale(1); }
  92%, 100% { opacity: 0; offset-distance: 100%; transform: scale(.55); }
}

@keyframes mp-vault-arrival {
  0% { opacity: .9; transform: translate(-50%, -50%) scale(.35); }
  85%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.8); }
}

@keyframes mp-study-paper {
  0%, 8% { opacity: 0; transform: translate3d(0, 1.5rem, 0) rotate(-12deg) scale(.72); }
  16% { opacity: 1; }
  68% { opacity: 1; transform: translate3d(16vw, -8vw, 0) rotate(8deg) scale(1); }
  82%, 100% { opacity: 0; transform: translate3d(24vw, -10vw, 0) rotate(0) scale(.5); }
}

@keyframes mp-course-activate {
  0%, 18% { opacity: 0; transform: translateY(-12%); }
  28%, 48% { opacity: 1; transform: translateY(0); }
  68%, 100% { opacity: 0; transform: translateY(170%); }
}

@keyframes mp-answer-unfold {
  0%, 58% { opacity: 0; transform: scaleX(0); }
  72%, 88% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); }
}

@keyframes mp-orbit-ring {
  to { transform: translate(-50%, -50%) rotate(378deg); }
}

@keyframes mp-file-orbit {
  0% { opacity: .25; transform: translate(-50%, -50%) rotate(0) translateX(clamp(4.75rem, 13vw, 9rem)) rotate(0) scale(.72); }
  18% { opacity: 1; }
  72% { opacity: 1; }
  90%, 100% { opacity: 0; transform: translate(-50%, -50%) rotate(360deg) translateX(1.25rem) rotate(-360deg) scale(.45); }
}

@keyframes mp-knowledge-core {
  0%, 100% { opacity: .5; transform: translate(-50%, -50%) scale(.72); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
}

@keyframes mp-answer-scan {
  0%, 58% { opacity: 0; transform: translateX(-18%) scaleX(.08); }
  72% { opacity: .8; transform: translateX(0) scaleX(1); }
  88%, 100% { opacity: 0; transform: translateX(0) scaleX(1); }
}

@keyframes mp-cf-role-cycle {
  0%, 7% { opacity: 0; transform: translateY(115%); }
  14%, 28% { opacity: 1; transform: translateY(0); }
  36%, 100% { opacity: 0; transform: translateY(-115%); }
}

@keyframes mp-cf-language-toggle {
  0%, 38%, 100% { transform: translateX(0); }
  50%, 88% { transform: translateX(3.68rem); }
}

@keyframes mp-cf-language-float {
  0%, 100% { filter: brightness(.92); transform: translateY(0); }
  50% { filter: brightness(1.2); transform: translateY(-.35rem); }
}

@keyframes mp-cf-transform-splash {
  0%, 54% { opacity: 0; transform: scale(.12); }
  62% { opacity: 1; transform: scale(.38); }
  82%, 100% { opacity: 0; transform: scale(1.45); }
}

@keyframes mp-cf-source-enter {
  0%, 8% { filter: blur(3px); opacity: 0; transform: translateX(-3rem) rotate(-8deg) scale(.78); }
  18%, 50% { filter: none; opacity: 1; transform: none; }
  64%, 100% { filter: blur(1px); opacity: 0; transform: translateX(32vw) scale(.35); }
}

@keyframes mp-cf-role-lock {
  0%, 20% { opacity: 0; transform: translateY(-1rem) scale(.78); }
  31%, 66% { opacity: 1; transform: none; }
  78%, 100% { opacity: 0; transform: translateX(12vw) scale(.7); }
}

@keyframes mp-cf-focused-reveal {
  0%, 58% { filter: blur(6px); opacity: 0; transform: translateX(2rem) scale(.35) rotate(8deg); }
  68% { filter: none; opacity: 1; transform: translateX(0) scale(1.18) rotate(0); }
  82%, 94% { filter: none; opacity: 1; transform: none; }
  100% { opacity: 0; transform: scale(.9); }
}

@keyframes mp-cf-source-breathe {
  0%, 100% { filter: brightness(.78); transform: rotate(-2deg) scale(.94); }
  50% { filter: brightness(1.15); transform: rotate(1deg) scale(1.04); }
}

@keyframes mp-cf-target-scan {
  0%, 12%, 100% { opacity: .4; transform: translateX(.8rem); }
  28%, 66% { opacity: 1; transform: none; }
}

@keyframes mp-cf-focused-scan {
  0%, 42% { filter: blur(4px); opacity: 0; transform: translateY(1rem) scale(.58); }
  60%, 88% { filter: none; opacity: 1; transform: none; }
  100% { opacity: 0; transform: scale(.9); }
}

@keyframes mp-cf-source-collapse {
  0%, 38% { filter: none; opacity: 1; transform: translate(-50%, -50%) rotate(-4deg) scale(1); }
  55%, 100% { filter: blur(4px); opacity: 0; transform: translate(-50%, -50%) scale(.24); }
}

@keyframes mp-cf-focus-converge {
  0%, 54% { filter: blur(8px); opacity: 0; transform: translate(-50%, -50%) scale(.25); }
  70%, 92% { filter: none; opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(.92); }
}

@keyframes mp-cf-role-orbit {
  0% { opacity: .5; transform: translate(-50%, -50%) rotate(0) translateX(clamp(5.2rem, 16vw, 10rem)) rotate(0) scale(.72); }
  45% { opacity: 1; }
  82%, 100% { opacity: .2; transform: translate(-50%, -50%) rotate(360deg) translateX(2rem) rotate(-360deg) scale(.48); }
}

@keyframes mp-cf-language-orbit {
  0% { opacity: .65; transform: translate(-50%, -50%) rotate(180deg) translateX(clamp(4.8rem, 14vw, 8.5rem)) rotate(-180deg) scale(.82); }
  48% { opacity: 1; }
  100% { opacity: .65; transform: translate(-50%, -50%) rotate(540deg) translateX(clamp(4.8rem, 14vw, 8.5rem)) rotate(-540deg) scale(.82); }
}

@keyframes mp-cf-keyword-flow {
  0%, 8% { opacity: 0; transform: translate3d(-1.5rem, .75rem, 0) scale(.72); }
  18%, 58% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  76%, 100% { opacity: 0; transform: translate3d(48vw, 4vw, 0) scale(.55); }
}

@keyframes mp-cf-resume-assemble {
  0%, 16% { filter: brightness(.65); opacity: .46; transform: translate(-50%, -50%) scale(.84) rotate(2deg); }
  48%, 72% { filter: brightness(1.3); opacity: 1; transform: translate(-50%, -50%) scale(1.05) rotate(0); }
  100% { filter: brightness(.8); opacity: .62; transform: translate(-50%, -50%) scale(.92) rotate(-1deg); }
}

@keyframes mp-cf-profile-scan {
  0%, 8% { opacity: 0; transform: translateY(0); }
  18% { opacity: 1; }
  72% { opacity: 1; transform: translateY(clamp(7rem, 22vw, 13rem)); }
  84%, 100% { opacity: 0; transform: translateY(clamp(7rem, 22vw, 13rem)); }
}

@keyframes mp-cf-skill-match {
  0%, 16%, 100% { border-color: rgba(117, 231, 255, .24); opacity: .28; transform: translateX(.6rem) scale(.94); }
  34%, 62% { border-color: rgba(82, 242, 184, .9); box-shadow: 0 0 22px rgba(82, 242, 184, .52); opacity: 1; transform: none; }
}

@keyframes mp-cf-match-fill {
  0%, 18% { opacity: .4; transform: scaleX(.08); }
  72%, 88% { opacity: 1; transform: scaleX(.88); }
  100% { opacity: .3; transform: scaleX(.08); }
}

@keyframes mp-cf-version-orbit {
  0% { opacity: .28; transform: translate(-50%, -50%) rotate(0) translateX(clamp(4.5rem, 13vw, 8.5rem)) rotate(0) scale(.66); }
  42% { opacity: .92; }
  72% { opacity: 1; transform: translate(-50%, -50%) rotate(260deg) translateX(clamp(4.5rem, 13vw, 8.5rem)) rotate(-260deg) scale(.82); }
  88%, 100% { opacity: .96; transform: translate(-50%, -50%) rotate(360deg) translateX(0) rotate(-360deg) scale(1.04); }
}

@keyframes mp-cf-selection-ring {
  0%, 100% { opacity: .24; transform: translate(-50%, -50%) scale(.82); }
  50% { opacity: .92; transform: translate(-50%, -50%) scale(1.08); }
}

/* A — Ecosystem: two connected extensions with an intentional stepped flow. */
.mp-workspace-modules--bridge {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--mp-accent) 4%, transparent) 1px, transparent 1px),
    linear-gradient(color-mix(in srgb, var(--mp-accent) 4%, transparent) 1px, transparent 1px),
    radial-gradient(circle at 50% 0, color-mix(in srgb, var(--mp-accent) 12%, transparent), transparent 42%);
  background-size: 38px 38px, 38px 38px, auto;
  display: block;
}

.mp-workspace-modules--bridge .mp-workspace-modules__modules {
  grid-column: auto;
  grid-row: auto;
  grid-template-columns: 1fr;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module {
  align-items: center;
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  grid-template-columns: minmax(15rem, .78fr) minmax(22rem, 1.22fr);
  padding: clamp(1.25rem, 3vw, 2rem);
  position: relative;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module:first-child {
  border-color: color-mix(in srgb, #32d5ff 40%, var(--mp-line));
  margin-right: 7%;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module:last-child {
  border-color: color-mix(in srgb, #34d399 40%, var(--mp-line));
  margin-left: 7%;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module:first-child::before,
.mp-workspace-modules--bridge .mp-workspace-modules__module:last-child::before {
  background: linear-gradient(180deg, #32d5ff, #6b5cff);
  content: "";
  inset: 1.25rem auto 1.25rem 0;
  position: absolute;
  width: 3px;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module:last-child::before {
  background: linear-gradient(180deg, #34d399, #32d5ff);
}

.mp-workspace-modules--bridge .mp-workspace-modules__module-head,
.mp-workspace-modules--bridge .mp-workspace-modules__module-copy {
  grid-column: 1;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module-head {
  align-self: end;
  grid-row: 1;
}

.mp-workspace-modules--bridge .mp-workspace-modules__module-copy {
  align-self: start;
  grid-row: 2;
}

.mp-workspace-modules--bridge .mp-workspace-modules__preview {
  grid-column: 2;
  grid-row: 1 / span 2;
}

/* B — Product suite: editorial pair with equal commercial weight. */
.mp-workspace-modules--rail {
  background:
    radial-gradient(circle at 15% 0, rgba(107, 92, 255, .2), transparent 34%),
    linear-gradient(145deg, #070d20, #0c1630);
}

.mp-workspace-modules--rail .mp-workspace-modules__modules {
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mp-workspace-modules--rail .mp-workspace-modules__module {
  background: rgba(255, 255, 255, .045);
  border-color: rgba(255, 255, 255, .13);
  border-radius: 1.5rem;
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.mp-workspace-modules--rail .mp-workspace-modules__module-head {
  margin-bottom: 1rem;
}

.mp-workspace-modules--rail .mp-workspace-modules__module-head h4 {
  color: #fff;
}

.mp-workspace-modules--rail .mp-workspace-modules__module-copy {
  margin-bottom: 1.5rem;
}

.mp-workspace-modules--rail .mp-workspace-modules__module-copy p {
  color: #aeb9d4;
  min-height: 3.1rem;
}

.mp-workspace-modules--rail .mp-workspace-modules__preview {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, .12);
}

/* C — Launchpad: two high-impact destinations inside one shared field. */
.mp-workspace-modules--constellation {
  background:
    radial-gradient(circle at 50% 36%, color-mix(in srgb, var(--mp-accent) 14%, transparent), transparent 38%),
    color-mix(in srgb, var(--mp-bg) 96%, transparent);
  display: block;
  min-height: 0;
}

.mp-workspace-modules--constellation .mp-workspace-modules__ambient {
  background-image: radial-gradient(circle, color-mix(in srgb, var(--mp-accent) 32%, transparent) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle, black, transparent 78%);
}

.mp-workspace-modules--constellation .mp-workspace-modules__modules {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
}

.mp-workspace-modules--constellation .mp-workspace-modules__modules::before {
  background: linear-gradient(180deg, #32d5ff, #6b5cff 50%, #34d399);
  border-radius: 999px;
  box-shadow: 0 0 28px color-mix(in srgb, var(--mp-accent) 50%, transparent);
  content: "";
  height: 66%;
  left: 50%;
  position: absolute;
  top: 17%;
  transform: translateX(-50%);
  width: 2px;
}

.mp-workspace-modules--constellation .mp-workspace-modules__module {
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--mp-surface) 84%, transparent);
  border-radius: 1.5rem;
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
  position: relative;
  z-index: 1;
}

.mp-workspace-modules--constellation .mp-workspace-modules__module:first-child {
  border-color: color-mix(in srgb, #32d5ff 42%, var(--mp-line));
  grid-column: 1;
  grid-row: 1;
  transform: translateY(-1.2rem);
}

.mp-workspace-modules--constellation .mp-workspace-modules__module:last-child {
  border-color: color-mix(in srgb, #34d399 42%, var(--mp-line));
  grid-column: 2;
  grid-row: 1;
  transform: translateY(1.2rem);
}

.mp-workspace-modules--constellation .mp-workspace-modules__module-copy {
  margin: 1rem 0 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .mp-workspace-modules:not([data-marketing-motion-preview="true"]):not([data-marketing-motion-enabled="true"]) .mp-workspace-modules__preview--animated img {
    transition: none;
  }

  .mp-workspace-modules:not([data-marketing-motion-preview="true"]):not([data-marketing-motion-enabled="true"]) .mp-workspace-modules__motion,
  .mp-workspace-modules:not([data-marketing-motion-preview="true"]):not([data-marketing-motion-enabled="true"]) .mp-workspace-modules__motion::before,
  .mp-workspace-modules:not([data-marketing-motion-preview="true"]):not([data-marketing-motion-enabled="true"]) .mp-workspace-modules__motion::after,
  .mp-workspace-modules:not([data-marketing-motion-preview="true"]):not([data-marketing-motion-enabled="true"]) .mp-workspace-modules__motion *,
  .mp-workspace-modules:not([data-marketing-motion-preview="true"]):not([data-marketing-motion-enabled="true"]) .mp-workspace-modules__career-motion,
  .mp-workspace-modules:not([data-marketing-motion-preview="true"]):not([data-marketing-motion-enabled="true"]) .mp-workspace-modules__career-motion * {
    animation: none !important;
  }

  .mp-workspace-modules:not([data-marketing-motion-preview="true"]):not([data-marketing-motion-enabled="true"]) .mp-workspace-modules__particle,
  .mp-workspace-modules:not([data-marketing-motion-preview="true"]):not([data-marketing-motion-enabled="true"]) .mp-workspace-modules__pulse,
  .mp-workspace-modules:not([data-marketing-motion-preview="true"]):not([data-marketing-motion-enabled="true"]) .mp-workspace-modules__answer-scan,
  .mp-workspace-modules:not([data-marketing-motion-preview="true"]):not([data-marketing-motion-enabled="true"]) .mp-workspace-modules__motion::before,
  .mp-workspace-modules:not([data-marketing-motion-preview="true"]):not([data-marketing-motion-enabled="true"]) .mp-workspace-modules__motion::after,
  .mp-workspace-modules:not([data-marketing-motion-preview="true"]):not([data-marketing-motion-enabled="true"]) .mp-workspace-modules__career-motion {
    display: none !important;
  }
}

@media (max-width: 800px) {
  .mp-workspace-modules {
    padding: 1.1rem;
  }

  .mp-workspace-modules__handoff {
    margin-bottom: 1.4rem;
  }

  .mp-workspace-modules--bridge .mp-workspace-modules__module,
  .mp-workspace-modules--rail .mp-workspace-modules__modules,
  .mp-workspace-modules--constellation .mp-workspace-modules__modules {
    grid-template-columns: 1fr;
  }

  .mp-workspace-modules--bridge .mp-workspace-modules__module:first-child,
  .mp-workspace-modules--bridge .mp-workspace-modules__module:last-child {
    margin: 0;
  }

  .mp-workspace-modules--bridge .mp-workspace-modules__module-head,
  .mp-workspace-modules--bridge .mp-workspace-modules__module-copy,
  .mp-workspace-modules--bridge .mp-workspace-modules__preview {
    grid-column: 1;
    grid-row: auto;
  }

  .mp-workspace-modules--bridge .mp-workspace-modules__preview {
    margin-top: .25rem;
  }

  .mp-workspace-modules--rail .mp-workspace-modules__module-copy p {
    min-height: 0;
  }

  .mp-workspace-modules--constellation .mp-workspace-modules__modules::before {
    height: 2px;
    left: 16%;
    top: 50%;
    transform: none;
    width: 68%;
  }

  .mp-workspace-modules--constellation .mp-workspace-modules__module:first-child,
  .mp-workspace-modules--constellation .mp-workspace-modules__module:last-child {
    grid-column: 1;
    grid-row: auto;
    transform: none;
  }
}

/* Media-led product journeys share one organism and one normalized image
   coordinate system. Product-specific copy and assets remain configuration. */
.mp-story--media-journey {
  --cf-cyan: #32d5ff;
  --cf-blue: #2586ff;
  --cf-violet: #8b6cff;
  --cf-stage: #071126;
  --cf-panel: rgba(13, 27, 58, .88);
  --cf-line: rgba(127, 213, 255, .2);
  grid-template-columns: minmax(0, 1.34fr) minmax(16rem, .66fr);
}

.mp-story--media-journey .mp-story__stage {
  background:
    radial-gradient(circle at 18% 12%, rgba(50, 213, 255, .17), transparent 42%),
    radial-gradient(circle at 88% 88%, rgba(139, 108, 255, .16), transparent 38%),
    var(--cf-stage);
  border-color: rgba(127, 213, 255, .18);
  height: min(68vh, 520px);
  min-height: 460px;
}

.mp-story--media-journey .mp-story__scene {
  color: #eef6ff;
  justify-content: stretch;
  overflow: hidden;
  padding: 3.1rem 1.15rem 1.15rem;
  transform: translateX(1.4rem) scale(.985);
}

.mp-story--media-journey .mp-story__scene.is-active {
  transform: none;
}

.mp-story--media-journey .mp-story__step {
  min-height: clamp(17rem, 34vh, 22rem);
}

.cf-story-step-guide {
  background:
    radial-gradient(circle at 100% 0, rgba(50, 213, 255, .12), transparent 44%),
    linear-gradient(155deg, rgba(12, 31, 66, .96), rgba(8, 20, 46, .94));
  border: 1px solid rgba(127, 213, 255, .2);
  border-radius: .9rem;
  box-shadow: 0 .9rem 2rem rgba(0, 0, 0, .24);
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-top: .9rem;
  padding: .8rem;
  width: 100%;
}

.cf-story-step-guide__action {
  align-items: center;
  display: grid;
  gap: .05rem .55rem;
  grid-template-columns: 2.35rem minmax(0, 1fr);
}

.cf-story-step-guide__action > i {
  align-items: center;
  background: linear-gradient(145deg, rgba(37, 134, 255, .28), rgba(50, 213, 255, .1));
  border: 1px solid rgba(50, 213, 255, .3);
  border-radius: .65rem;
  color: var(--cf-cyan);
  display: flex;
  font-size: 1rem;
  grid-row: 1 / 3;
  height: 2.35rem;
  justify-content: center;
}

.cf-story-step-guide__action > span {
  display: flex;
  flex-direction: column;
}

.cf-story-step-guide__action small {
  color: var(--cf-cyan);
  font: 800 .57rem/1.25 ui-monospace, monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cf-story-step-guide__action b {
  color: #f4f9ff;
  font-size: .78rem;
  line-height: 1.25;
  margin-top: .12rem;
}

.cf-story-step-guide__action em {
  color: rgba(238, 246, 255, .5);
  font-size: .62rem;
  font-style: normal;
  grid-column: 2;
}

.cf-story-step-guide__row {
  align-items: flex-start;
  color: rgba(238, 246, 255, .68);
  display: flex;
  font-size: .68rem;
  gap: .4rem;
  line-height: 1.35;
}

.cf-story-step-guide__row i {
  color: #6ee7b7;
  flex: 0 0 auto;
  margin-top: .08rem;
}

.cf-story-step-sequence {
  display: grid;
  min-height: 12.75rem;
  position: relative;
  width: 100%;
}

.cf-story-step-sequence__item {
  animation: none;
  background:
    radial-gradient(circle at 100% 0, rgba(50, 213, 255, .14), transparent 46%),
    linear-gradient(155deg, rgba(12, 31, 66, .98), rgba(8, 20, 46, .96));
  border: 1px solid rgba(127, 213, 255, .22);
  border-radius: .9rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  inset: 0;
  opacity: 0;
  padding: .9rem;
  position: absolute;
  transform: translateX(4%);
}

.mp-story__step.is-active .cf-story-step-sequence__item {
  animation: cf-storyboard-five-copy-cycle 20s ease-in-out infinite both;
  animation-delay: calc(var(--cf-storyboard-index) * 4s);
}

.cf-story-step-sequence__item > small {
  color: var(--cf-cyan);
  font: 800 .62rem/1.25 ui-monospace, monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.cf-story-step-sequence__item > b {
  color: #f4f9ff;
  font-size: 1rem;
  line-height: 1.25;
}

.cf-story-step-sequence__item > span:not(.cf-story-step-sequence__points) {
  color: rgba(238, 246, 255, .7);
  font-size: .76rem;
  line-height: 1.45;
}

.cf-story-step-sequence__points {
  border-top: 1px solid rgba(127, 213, 255, .15);
  display: flex;
  flex-direction: column;
  gap: .36rem;
  margin-top: .2rem;
  padding-top: .58rem;
}

.cf-story-step-sequence__points > span {
  align-items: flex-start;
  color: rgba(238, 246, 255, .66);
  display: flex;
  font-size: .67rem;
  gap: .4rem;
  line-height: 1.35;
}

.cf-story-step-sequence__points i {
  color: #6ee7b7;
  flex: 0 0 auto;
  margin-top: .08rem;
}

.mp-story--media-journey .mp-story__scan {
  animation-duration: 6.8s;
  background: linear-gradient(90deg, transparent, rgba(50, 213, 255, .72), transparent);
  opacity: .22;
}

.cf-journey {
  height: 100%;
  min-height: 0;
  position: relative;
}

.cf-storyboard-scene {
  align-items: center;
  background: #030918;
  border: 1px solid rgba(127, 213, 255, .24);
  border-radius: 1rem;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 2.35rem;
}

.cf-storyboard-scene__image {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

/* The SVG and bitmap share the same 1600x900 preserve/contain geometry. This
   keeps the focus rectangle and arrow locked to the real interface at every
   responsive size instead of relying on viewport offsets. */
.mp-storyboard-overlay {
  display: block;
  height: 100%;
  inset: 0;
  overflow: visible;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 5;
}

.mp-storyboard-overlay__focus {
  fill: rgba(3, 9, 24, .04);
  filter:
    drop-shadow(0 0 7px rgba(50, 213, 255, .96))
    drop-shadow(0 0 18px rgba(50, 213, 255, .5));
  stroke: #32d5ff;
  stroke-width: 5;
  vector-effect: non-scaling-stroke;
}

.mp-storyboard-overlay__arrow {
  fill: none;
  filter:
    drop-shadow(0 0 5px rgba(255, 58, 88, .95))
    drop-shadow(0 0 14px rgba(255, 58, 88, .55));
  stroke: #ff3a58;
  stroke-linecap: round;
  stroke-width: 7;
  vector-effect: non-scaling-stroke;
}

.mp-storyboard-overlay__arrowhead {
  fill: #ff3a58;
  filter: drop-shadow(0 0 5px rgba(255, 58, 88, .9));
}

.mp-storyboard-overlay__arrow-tail {
  fill: #ff3a58;
  stroke: rgba(255, 255, 255, .92);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.mp-storyboard-overlay__number-disc {
  fill: rgba(3, 9, 24, .94);
  filter: drop-shadow(0 0 8px rgba(50, 213, 255, .72));
  stroke: #32d5ff;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.mp-storyboard-overlay__number {
  fill: #f7fbff;
  font: 800 18px/1 ui-monospace, Menlo, monospace;
}

.cf-storyboard-scene__image--alternate {
  inset: 0;
  opacity: 0;
  position: absolute;
}

.cf-storyboard-scene__image--sequence {
  animation: none;
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: translateX(1.5%) scale(1.008);
}

.mp-storyboard-overlay--alternate,
.mp-storyboard-overlay--sequence {
  opacity: 0;
}

.is-active .cf-storyboard-scene__image--sequence {
  animation: cf-storyboard-five-state-cycle 20s ease-in-out infinite both;
  animation-delay: calc(var(--cf-storyboard-index) * 4s);
}

.is-active .cf-storyboard-scene--sequence .mp-storyboard-overlay--sequence {
  animation: cf-storyboard-five-state-cycle 20s ease-in-out infinite both;
  animation-delay: calc(var(--cf-storyboard-index) * 4s);
}

.is-active .cf-storyboard-scene--sequence-3 .cf-storyboard-scene__image--sequence,
.is-active .cf-storyboard-scene--sequence-3 .mp-storyboard-overlay--sequence {
  animation-duration: 12s;
  animation-name: mp-storyboard-three-state-cycle;
}

.cf-storyboard-scene__sequence-count {
  align-items: center;
  background: rgba(3, 9, 24, .76);
  border: 1px solid rgba(127, 213, 255, .24);
  border-radius: 999px;
  bottom: .7rem;
  display: flex;
  gap: .32rem;
  padding: .38rem .5rem;
  position: absolute;
  right: .7rem;
  z-index: 3;
}

.cf-storyboard-scene__sequence-count i {
  background: rgba(238, 246, 255, .34);
  border-radius: 999px;
  height: .35rem;
  width: .35rem;
}

.is-active .cf-storyboard-scene__sequence-count i {
  animation: cf-storyboard-five-state-dot 20s ease-in-out infinite both;
  animation-delay: calc(var(--cf-storyboard-index) * 4s);
}

.is-active .cf-storyboard-scene--sequence-3 .cf-storyboard-scene__sequence-count i {
  animation-duration: 12s;
  animation-name: mp-storyboard-three-state-dot;
}

.is-active .cf-storyboard-scene--transition .cf-storyboard-scene__image--primary {
  animation: cf-storyboard-primary-state 6s ease-in-out infinite;
}

.is-active .cf-storyboard-scene--transition .cf-storyboard-scene__image--alternate {
  animation: cf-storyboard-alternate-state 6s ease-in-out infinite;
}

.is-active .cf-storyboard-scene--transition .mp-storyboard-overlay--primary {
  animation: cf-storyboard-primary-state 6s ease-in-out infinite;
}

.is-active .cf-storyboard-scene--transition .mp-storyboard-overlay--alternate {
  animation: cf-storyboard-alternate-state 6s ease-in-out infinite;
}

@keyframes cf-storyboard-primary-state {
  0%, 42% { opacity: 1; }
  52%, 90% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes cf-storyboard-alternate-state {
  0%, 42% { opacity: 0; }
  52%, 90% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes cf-storyboard-five-state-cycle {
  0% {
    opacity: 0;
    transform: translateX(1.5%) scale(1.008);
  }
  2%, 16% {
    opacity: 1;
    transform: none;
  }
  20%, 100% {
    opacity: 0;
    transform: translateX(-1.5%) scale(1.008);
  }
}

@keyframes mp-storyboard-three-state-cycle {
  0% {
    opacity: 0;
    transform: translateX(1.5%) scale(1.008);
  }
  3%, 29% {
    opacity: 1;
    transform: none;
  }
  33.333%, 100% {
    opacity: 0;
    transform: translateX(-1.5%) scale(1.008);
  }
}

@keyframes cf-storyboard-five-state-dot {
  0%, 20%, 100% {
    background: rgba(238, 246, 255, .34);
    box-shadow: none;
    transform: scale(1);
  }
  2%, 16% {
    background: var(--cf-cyan);
    box-shadow: 0 0 .65rem rgba(50, 213, 255, .7);
    transform: scale(1.35);
  }
}

@keyframes mp-storyboard-three-state-dot {
  0%, 33.333%, 100% {
    background: rgba(238, 246, 255, .34);
    box-shadow: none;
    transform: scale(1);
  }
  3%, 29% {
    background: var(--cf-cyan);
    box-shadow: 0 0 .65rem rgba(50, 213, 255, .7);
    transform: scale(1.35);
  }
}

@keyframes cf-storyboard-five-copy-cycle {
  0% {
    opacity: 0;
    transform: translateX(4%);
  }
  2%, 16% {
    opacity: 1;
    transform: none;
  }
  20%, 100% {
    opacity: 0;
    transform: translateX(-4%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-active .cf-storyboard-scene--transition .cf-storyboard-scene__image--primary {
    animation: none;
  }

  .is-active .cf-storyboard-scene--transition .cf-storyboard-scene__image--alternate {
    animation: none;
    opacity: 1;
  }

  .is-active .cf-storyboard-scene--transition .mp-storyboard-overlay--primary {
    animation: none;
    opacity: 0;
  }

  .is-active .cf-storyboard-scene--transition .mp-storyboard-overlay--alternate {
    animation: none;
    opacity: 1;
  }

  .is-active .cf-storyboard-scene__image--sequence,
  .is-active .mp-storyboard-overlay--sequence,
  .is-active .cf-storyboard-scene__sequence-count i,
  .mp-story__step.is-active .cf-story-step-sequence__item {
    animation: none;
  }

  .is-active .cf-storyboard-scene__image--sequence:first-of-type {
    opacity: 1;
    transform: none;
  }

  .is-active .mp-storyboard-overlay--sequence:first-of-type {
    opacity: 1;
    transform: none;
  }

  .mp-story__step.is-active .cf-story-step-sequence__item:first-child {
    opacity: 1;
    transform: none;
  }
}

.cf-journey__topline {
  align-items: center;
  color: rgba(238, 246, 255, .62);
  display: flex;
  font: 700 .68rem/1.2 ui-monospace, Menlo, monospace;
  justify-content: space-between;
  left: 0;
  letter-spacing: .07em;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  top: 0;
  z-index: 8;
}

.cf-journey__badge {
  background: rgba(50, 213, 255, .1);
  border: 1px solid rgba(50, 213, 255, .24);
  border-radius: 999px;
  color: var(--cf-cyan);
  padding: .34rem .65rem;
}

.mp-story__mobile-controls {
  display: none;
}

@media (max-width: 1000px) {
  .mp-story--media-journey {
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr);
  }

  .mp-story--media-journey .mp-story__intro,
  .mp-story--media-journey .mp-story__stage,
  .mp-story--media-journey .mp-story__steps,
  .mp-story--media-journey .mp-story__mobile-controls {
    grid-column: 1;
    min-width: 0;
    width: 100%;
  }

  .mp-story--media-journey .mp-story__intro {
    order: 1;
  }

  .mp-story--media-journey .mp-story__mobile-controls {
    order: 2;
  }

  .mp-story--media-journey .mp-story__stage {
    order: 3;
  }

  .mp-story--media-journey .mp-story__steps {
    order: 4;
  }

  .mp-story--media-journey .mp-story__stage {
    height: clamp(22rem, 60vw, 32rem);
    min-height: 22rem;
    position: relative;
    top: auto;
  }

  .mp-story--media-journey .mp-story__progress {
    display: flex;
  }

  .mp-story--media-journey .mp-story__scan {
    display: block;
  }

  .mp-story--media-journey .mp-story__scene {
    border-bottom: 0;
    inset: 0;
    opacity: 0;
    padding: 3.1rem 1rem 1rem;
    position: absolute;
    transform: translateX(1rem) scale(.985);
  }

  .mp-story--media-journey .mp-story__scene.is-active {
    opacity: 1;
    transform: none;
  }

  .mp-story--media-journey .mp-story__steps {
    display: block;
  }

  .mp-story--media-journey .mp-story__step {
    background:
      radial-gradient(circle at 100% 0, rgba(50, 213, 255, .1), transparent 42%),
      rgba(8, 20, 46, .88);
    border: 1px solid rgba(127, 213, 255, .2);
    border-left: 3px solid var(--cf-cyan);
    border-radius: .9rem;
    display: none;
    min-height: 0;
    opacity: 1;
    padding: 1rem;
    transform: none;
  }

  .mp-story--media-journey .mp-story__step.is-active {
    display: flex;
  }

  .mp-story--media-journey .mp-story__step strong {
    font-size: 1rem;
  }

  .mp-story--media-journey .mp-story__step-description {
    font-size: .84rem;
    line-height: 1.5;
  }

  .mp-story--media-journey .mp-story__mobile-controls {
    align-items: center;
    background: rgba(8, 20, 46, .9);
    border: 1px solid rgba(127, 213, 255, .2);
    border-radius: .9rem;
    display: grid;
    gap: .65rem;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    padding: .55rem;
  }

  .mp-story__mobile-controls button {
    align-items: center;
    appearance: none;
    background: rgba(50, 213, 255, .1);
    border: 1px solid rgba(50, 213, 255, .24);
    border-radius: .65rem;
    color: #eef6ff;
    cursor: pointer;
    display: inline-flex;
    font: 750 .76rem/1.2 inherit;
    gap: .4rem;
    justify-content: center;
    min-height: 2.65rem;
    padding: .6rem .75rem;
  }

  .mp-story__mobile-controls button:last-child {
    justify-self: stretch;
  }

  .mp-story__mobile-controls button:disabled {
    cursor: default;
    opacity: .34;
  }

  .mp-story__mobile-count {
    color: rgba(238, 246, 255, .66);
    font: 800 .7rem/1 ui-monospace, Menlo, monospace;
    white-space: nowrap;
  }

  .mp-story__mobile-count b {
    color: var(--cf-cyan);
  }
}

@media (max-width: 560px) {
  .mp-story--career-forge-transformation .mp-story__stage {
    height: 21rem;
    min-height: 21rem;
  }

  .mp-story--knowledge-vault-journey .mp-story__stage {
    height: 20rem;
    min-height: 20rem;
  }

  .mp-story--knowledge-vault-journey .cf-journey__topline > span:last-child {
    display: none;
  }

  .mp-story__mobile-controls button span {
    font-size: .7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mp-story--media-journey *,
  .mp-story--media-journey *::before,
  .mp-story--media-journey *::after {
    animation: none !important;
    scroll-behavior: auto !important;
  }

  .mp-story--media-journey .mp-story__scene {
    transition: none;
  }
}

@media (max-width: 1050px) {
  .mp-workspace-modules--bridge {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .mp-workspace-modules--bridge .mp-workspace-modules__parent,
  .mp-workspace-modules--bridge .mp-workspace-modules__connector,
  .mp-workspace-modules--bridge .mp-workspace-modules__modules {
    grid-column: 1;
  }

  .mp-workspace-modules--bridge .mp-workspace-modules__parent {
    grid-row: 1;
  }

  .mp-workspace-modules--bridge .mp-workspace-modules__parent::after {
    bottom: -2.5rem;
    height: 2.5rem;
    left: 50%;
    right: auto;
    top: auto;
    width: 2px;
  }

  .mp-workspace-modules--bridge .mp-workspace-modules__connector {
    display: none;
  }

  .mp-workspace-modules--bridge .mp-workspace-modules__modules {
    grid-row: 2;
  }

  .mp-workspace-modules--constellation {
    grid-template-columns: 1fr 1fr;
  }

  .mp-workspace-modules--constellation .mp-workspace-modules__parent {
    aspect-ratio: auto;
    border-radius: 2rem;
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: 38rem;
    padding: 2.25rem;
  }

  .mp-workspace-modules--constellation .mp-workspace-modules__connector {
    display: none;
  }

  .mp-workspace-modules--constellation .mp-workspace-modules__module:first-child,
  .mp-workspace-modules--constellation .mp-workspace-modules__module:last-child {
    grid-row: 2;
    transform: none;
  }

  .mp-workspace-modules--constellation .mp-workspace-modules__module:first-child {
    grid-column: 1;
  }

  .mp-workspace-modules--constellation .mp-workspace-modules__module:last-child {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  .mp-workspace-modules {
    min-height: 0;
    padding: 1.15rem;
  }

  .mp-workspace-modules__included {
    font-size: .62rem;
    justify-content: center;
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }

  .mp-workspace-modules--bridge .mp-workspace-modules__module {
    align-items: start;
    grid-template-columns: auto 1fr;
  }

  .mp-workspace-modules--bridge .mp-workspace-modules__module-head {
    grid-column: 1;
    grid-row: 1;
  }

  .mp-workspace-modules--bridge .mp-workspace-modules__preview {
    grid-column: 2;
    grid-row: 1;
  }

  .mp-workspace-modules--bridge .mp-workspace-modules__module-copy {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .mp-workspace-modules--bridge .mp-workspace-modules__cta {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .mp-workspace-modules--rail .mp-workspace-modules__parent {
    align-items: start;
    grid-template-columns: auto 1fr;
  }

  .mp-workspace-modules--rail .mp-workspace-modules__included {
    grid-column: 1 / -1;
  }

  .mp-workspace-modules--rail .mp-workspace-modules__modules {
    grid-template-columns: 1fr;
  }

  .mp-workspace-modules--rail .mp-workspace-modules__module {
    min-height: 0;
    padding: 1.35rem;
  }

  .mp-workspace-modules--rail .mp-workspace-modules__module:first-child {
    border-radius: 0;
  }

  .mp-workspace-modules--rail .mp-workspace-modules__module:last-child {
    border-left: 1px solid rgba(255, 255, 255, .12);
    border-radius: 0 0 1.25rem 1.25rem;
    border-top: 0;
  }

  .mp-workspace-modules--constellation {
    display: block;
  }

  .mp-workspace-modules--constellation .mp-workspace-modules__parent {
    margin-bottom: 1.5rem;
  }

  .mp-workspace-modules--constellation .mp-workspace-modules__module {
    min-height: 0;
    transform: none;
  }

  .mp-workspace-modules--constellation .mp-workspace-modules__module + .mp-workspace-modules__module {
    margin-top: 1rem;
  }
}

/*
 * The Style Guide can explicitly preview the approved scroll interaction even
 * when the validation browser is emulating reduced motion. Product pages never
 * receive this attribute and continue to honor the user's system preference.
 */
@media (prefers-reduced-motion: reduce) and (min-width: 1001px) {
  .mp-story[data-marketing-motion-preview="true"] .mp-story__stage {
    height: min(74vh, 560px);
    min-height: 410px;
    position: sticky;
    top: 6rem;
  }

  .mp-story[data-marketing-motion-preview="true"] .mp-story__progress {
    display: flex;
  }

  .mp-story[data-marketing-motion-preview="true"] .mp-story__scene {
    border-bottom: 0;
    opacity: 0;
    padding: 1.625rem;
    position: absolute;
    transform: translateY(1.25rem) scale(.985);
    transition:
      opacity .5s cubic-bezier(.2, .7, .2, 1),
      transform .5s cubic-bezier(.2, .7, .2, 1);
  }

  .mp-story[data-marketing-motion-preview="true"] .mp-story__scene.is-active {
    opacity: 1;
    transform: none;
  }

  .mp-story[data-marketing-motion-preview="true"] .mp-story__step {
    opacity: .32;
    transform: translateY(.65rem);
    transition:
      border-color .35s ease,
      color .35s ease,
      opacity .5s ease,
      transform .5s ease;
  }

  .mp-story[data-marketing-motion-preview="true"] .mp-story__step.is-active {
    opacity: 1;
    transform: none;
  }

  .mp-story[data-marketing-motion-preview="true"] .mp-story__scan {
    animation: mp-scan 5.5s ease-in-out infinite;
    display: block;
  }
}

/* Keep the approval-gate compositions single-column after all legacy
   responsive rules have been evaluated. */
@media (max-width: 800px) {
  .mp-workspace-modules--bridge .mp-workspace-modules__module,
  .mp-workspace-modules--rail .mp-workspace-modules__modules,
  .mp-workspace-modules--constellation .mp-workspace-modules__modules {
    grid-template-columns: minmax(0, 1fr);
  }

  .mp-workspace-modules--bridge .mp-workspace-modules__module-head,
  .mp-workspace-modules--bridge .mp-workspace-modules__module-copy,
  .mp-workspace-modules--bridge .mp-workspace-modules__preview,
  .mp-workspace-modules--constellation .mp-workspace-modules__module:first-child,
  .mp-workspace-modules--constellation .mp-workspace-modules__module:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .mp-workspace-modules--bridge .mp-workspace-modules__module,
  .mp-workspace-modules--constellation .mp-workspace-modules__module {
    transform: none;
  }
}
