/* ────────────────────────────────────────────────────────────────────────────
   marketing-pages.css
   Editorial styles for the non-home marketing pages:
     find-talent · candidates · about · contact
   Scoped to body.is-marketing-site:not(.page-home) so it never leaks into the
   home page (which has its own index-editorial.css) or portal pages.
   Delete this file + the four <link>s to revert.
   ──────────────────────────────────────────────────────────────────────────── */

body.is-marketing-site:not(.page-home) {
  --mp-text: #0f172a;
  --mp-text-soft: #475569;
  --mp-text-mute: #94a3b8;
  --mp-bg: #ffffff;
  --mp-bg-soft: #f8fafc;
  --mp-line: #e2e8f0;
  --mp-accent: #ff1616;
  --mp-dark: #0b0f17;
  --mp-card-bg: #ffffff;
  --mp-display: 'Cabinet Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --mp-body: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--mp-bg);
  color: var(--mp-text);
  font-family: var(--mp-body);
}

/* Dark mode — driven by data-theme="dark" (set by js/theme.js) OR system
   preference when no explicit theme is chosen. */
:root[data-theme="dark"] body.is-marketing-site:not(.page-home) {
  --mp-text: #e6edf6;
  --mp-text-soft: #b6c2d2;
  --mp-text-mute: #7b8aa1;
  --mp-bg: #0b1220;
  --mp-bg-soft: #11172a;
  --mp-line: #1f2a3d;
  --mp-dark: #050810;
  --mp-card-bg: #11172a;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) body.is-marketing-site:not(.page-home) {
    --mp-text: #e6edf6;
    --mp-text-soft: #b6c2d2;
    --mp-text-mute: #7b8aa1;
    --mp-bg: #0b1220;
    --mp-bg-soft: #11172a;
    --mp-line: #1f2a3d;
    --mp-dark: #050810;
    --mp-card-bg: #11172a;
  }
}

/* Hide form alerts until contact.js shows them. CSS class instead of inline
   style so the strict CSP (no 'unsafe-inline') doesn't strip it. contact.js
   sets el.style.display directly, which overrides this class. */
.mp-form-alert.is-initially-hidden { display: none; }

/* Hide legacy global sections when an editorial version replaces them */
body.is-marketing-site.has-editorial main > .page-header,
body.is-marketing-site.has-editorial main > .section,
body.is-marketing-site.has-editorial main > .cta-banner { display: none; }

.mp-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 2.5vw, 3rem);
}

/* ── Staggered reveals ─────────────────────────────────────────────────── */
body.is-marketing-site:not(.page-home) [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
body.is-marketing-site:not(.page-home) [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
@media (prefers-reduced-motion: reduce) {
  body.is-marketing-site:not(.page-home) [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.mp-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 7rem) 0 clamp(2rem, 5vw, 4rem);
  overflow: hidden;
}
.mp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
}
.mp-hero-title {
  font-family: var(--mp-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6.2vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--mp-text);
  margin: 0;
  max-width: 18ch;
}
.mp-hero-title em {
  font-style: italic;
  color: var(--mp-accent);
  font-weight: 700;
}
.mp-hero-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: clamp(1.5rem, 4vw, 3rem);
}
@media (min-width: 880px) {
  .mp-hero-meta { grid-template-columns: 5fr 4fr; align-items: end; }
}
.mp-hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--mp-text);
  max-width: 56ch;
  margin: 0;
}
.mp-hero-lede strong { font-weight: 700; color: var(--mp-text); }
.mp-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  border-top: 1px solid var(--mp-line);
  padding-top: 1rem;
}
.mp-stat-num {
  font-family: var(--mp-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--mp-text);
  letter-spacing: -0.03em;
}
.mp-stat-num em { color: var(--mp-accent); font-style: normal; }
.mp-stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mp-text-mute);
  margin-top: 0.3rem;
}

/* Hero CTA (find-talent / candidates) — prominent account invitation.
   Sized to carry visual weight against the editorial hero typography. */
.mp-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.1rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--mp-line);
}
.mp-hero-cta .mp-btn {
  justify-content: space-between;
  align-self: stretch;
  width: 100%;
  padding: clamp(1.3rem, 2.2vw, 1.85rem) clamp(1.5rem, 2.5vw, 2.2rem);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  letter-spacing: 0.1em;
  box-shadow: 8px 8px 0 0 var(--mp-text);
}
.mp-hero-cta .mp-btn:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 0 var(--mp-text);
}
.mp-hero-cta .mp-btn-arrow { width: 28px; height: 18px; }
@media (min-width: 880px) {
  .mp-hero-cta { align-self: stretch; }
  .mp-hero-cta .mp-btn { width: auto; align-self: flex-start; }
}
.mp-hero-cta-meta {
  font-family: var(--mp-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mp-text-mute);
}
.mp-hero-cta-meta a {
  color: var(--mp-text);
  text-decoration: none;
  border-bottom: 1px solid var(--mp-accent);
  padding-bottom: 1px;
  margin-left: 0.5rem;
}
.mp-hero-cta-meta a:hover { color: var(--mp-accent); }

/* On the home-page hero, the CTA spans the second column. On find-talent
   and candidates, give it room — bump it into its own grid row spanning full. */
.mp-hero-grid > .mp-hero-cta {
  grid-column: 1 / -1;
}

/* ── Marquee ───────────────────────────────────────────────────────────── */
.mp-marquee {
  position: relative;
  border-top: 1px solid var(--mp-line);
  border-bottom: 1px solid var(--mp-line);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  overflow: hidden;
  background: var(--mp-bg);
}
.mp-marquee-track {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  width: max-content;
  animation: mp-marquee 36s linear infinite;
}
.mp-marquee:hover .mp-marquee-track { animation-play-state: paused; }
.mp-marquee-item {
  font-family: var(--mp-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  line-height: 1;
  color: var(--mp-text);
  letter-spacing: -0.025em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.mp-marquee-item::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mp-accent);
  display: inline-block;
}
.mp-marquee-item.is-outline {
  -webkit-text-stroke: 1.5px var(--mp-text);
  color: transparent;
}
@keyframes mp-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .mp-marquee-track { animation: none; transform: none; }
}

/* ── Sections ──────────────────────────────────────────────────────────── */
.mp-section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  position: relative;
}
.mp-section.is-soft { background: var(--mp-bg-soft); }
.mp-section.is-dark { background: var(--mp-dark); color: #f8fafc; }
.mp-section.is-dark .mp-section-title { color: #ffffff; }
.mp-section.is-dark .mp-section-sub { color: rgba(255, 255, 255, 0.7); }
.mp-section.is-dark .mp-eyebrow { color: var(--mp-accent); }

.mp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mp-display);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mp-accent);
}
.mp-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--mp-accent);
}

.mp-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
@media (min-width: 880px) {
  .mp-section-head.is-split { grid-template-columns: 1fr auto; gap: 2rem; }
}
.mp-section-title {
  font-family: var(--mp-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: var(--mp-text);
  margin: 0;
  max-width: 18ch;
}
.mp-section-title em { color: var(--mp-accent); font-style: italic; }
.mp-section-sub {
  max-width: 38ch;
  color: var(--mp-text-soft);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

/* ── 3-col brutalist cards ─────────────────────────────────────────────── */
.mp-grid-3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (min-width: 760px) {
  .mp-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.mp-card {
  background: var(--mp-card-bg);
  border: 1px solid var(--mp-text);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  position: relative;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mp-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 0 var(--mp-accent);
}
.mp-card-num {
  font-family: var(--mp-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mp-text-mute);
  margin: 0 0 1.25rem;
}
.mp-card-title {
  font-family: var(--mp-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.75rem;
  color: var(--mp-text);
}
.mp-card-body {
  color: var(--mp-text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
/* Accent card: always-dark navy in light mode, always-red in dark mode.
   This way the inverted card stays visually distinct against both pages. */
.mp-card.is-accent {
  background: #0f172a;
  border-color: #0f172a;
  color: #f8fafc;
}
.mp-card.is-accent .mp-card-title { color: #ffffff; }
.mp-card.is-accent .mp-card-num { color: rgba(255, 255, 255, 0.55); }
.mp-card.is-accent .mp-card-body { color: rgba(255, 255, 255, 0.78); }
.mp-card.is-accent:hover { box-shadow: 8px 8px 0 0 var(--mp-accent); }

:root[data-theme="dark"] .mp-card.is-accent {
  background: var(--mp-accent);
  border-color: var(--mp-accent);
}
:root[data-theme="dark"] .mp-card.is-accent:hover { box-shadow: 8px 8px 0 0 #ffffff; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .mp-card.is-accent {
    background: var(--mp-accent);
    border-color: var(--mp-accent);
  }
  :root:not([data-theme="light"]) .mp-card.is-accent:hover { box-shadow: 8px 8px 0 0 #ffffff; }
}

/* ── Process steps (editorial — matches homepage .ed-step) ─────────────── */
.mp-process-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 2.5rem);
}
@media (min-width: 760px) {
  .mp-process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 2.4vw, 2.25rem);
  }
  /* 5-step flow (find-talent): 2-up on tablet … */
  .mp-process-steps.is-5up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  /* … 5-up on desktop, matching the homepage steps */
  .mp-process-steps.is-5up { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.mp-step {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 1.1rem;
  border-top: 2px solid var(--mp-text);
}
.mp-step-num {
  font-family: var(--mp-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 3vw, 3rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--mp-accent);
  margin-bottom: 0.15rem;
}
.mp-step-title {
  font-family: var(--mp-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mp-text);
  margin: 0;
}
.mp-step-body {
  color: var(--mp-text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
}

/* ── Pull-quote ────────────────────────────────────────────────────────── */
.mp-pullquote {
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--mp-bg-soft);
  border-left: 4px solid var(--mp-accent);
  font-family: var(--mp-display);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.25;
  font-style: italic;
  font-weight: 700;
  color: var(--mp-text);
  letter-spacing: -0.02em;
  border-radius: 6px 32px 8px 28px;
}
/* About page: pull-quote rendered on the dark variant — always-dark background */
body.page-about .mp-pullquote { background: var(--mp-dark); color: #ffffff; }
body.page-about .mp-pullquote cite { color: rgba(255, 255, 255, 0.6); }
.mp-pullquote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-family: var(--mp-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mp-text-mute);
}

/* ── Editorial body block (long-form text with intro label) ────────────── */
.mp-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 980px) {
  .mp-editorial.is-split {
    grid-template-columns: 4fr 6fr;
    align-items: start;
    gap: clamp(2.5rem, 5vw, 5rem);
  }
}
.mp-editorial-label {
  font-family: var(--mp-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--mp-text);
  margin: 0;
  border-top: 2px solid var(--mp-accent);
  padding-top: 1rem;
}
.mp-editorial-text {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: var(--mp-text);
  margin: 0 0 1.25rem;
  font-weight: 400;
}
.mp-editorial-text strong { color: var(--mp-accent); font-weight: 700; }
.mp-editorial-text:last-child { margin-bottom: 0; }

/* ── CTA panel (dark) ──────────────────────────────────────────────────── */
.mp-cta {
  background: var(--mp-dark);
  color: #f8fafc;
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.mp-cta-title {
  font-family: var(--mp-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 1.5rem;
  max-width: 18ch;
}
.mp-cta-title em { color: var(--mp-accent); font-style: italic; }
.mp-cta-body {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
  max-width: 50ch;
  margin: 0 0 2rem;
}
.mp-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Editorial buttons ─────────────────────────────────────────────────── */
body.is-marketing-site:not(.page-home) .mp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 0;
  border: 1px solid;
  font-family: var(--mp-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 160ms cubic-bezier(0.16, 1, 0.3, 1),
              color 140ms ease,
              background 140ms ease;
  font-family: var(--mp-display);
}
.mp-btn.is-primary {
  background: var(--mp-accent);
  border-color: var(--mp-accent);
  color: #ffffff;
  box-shadow: 5px 5px 0 0 #0f172a;
}
.mp-btn.is-primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 0 #0f172a;
}
.mp-cta .mp-btn.is-primary { box-shadow: 5px 5px 0 0 #ffffff; }
.mp-cta .mp-btn.is-primary:hover { box-shadow: 8px 8px 0 0 #ffffff; }

.mp-btn.is-outline {
  background: transparent;
  border-color: var(--mp-text);
  color: var(--mp-text);
}
.mp-btn.is-outline:hover {
  background: var(--mp-text);
  color: #ffffff;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 0 var(--mp-accent);
}
.mp-cta .mp-btn.is-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}
.mp-cta .mp-btn.is-outline:hover {
  background: #ffffff;
  color: var(--mp-text);
  border-color: #ffffff;
  box-shadow: 4px 4px 0 0 var(--mp-accent);
}

.mp-btn-arrow {
  width: 18px;
  height: 12px;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mp-btn:hover .mp-btn-arrow { transform: translateX(4px); }

/* ── Role tag list (find-talent's roles section) — clean aligned index ───── */
.mp-pill-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  max-width: 760px;
}
@media (min-width: 560px) {
  .mp-pill-list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(1.5rem, 3vw, 3rem); }
}
@media (min-width: 900px) {
  .mp-pill-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.mp-pill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--mp-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--mp-text);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--mp-line);
}
.mp-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mp-accent);
  flex: none;
}

/* ── Editorial form (contact) ──────────────────────────────────────────── */
.mp-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--mp-card-bg);
  border: 1px solid var(--mp-text);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 12px 12px 0 0 var(--mp-accent);
}
.mp-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}
@media (min-width: 600px) {
  .mp-form-row.is-2col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.mp-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.mp-form-label {
  font-family: var(--mp-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mp-text);
}
.mp-form-input,
.mp-form-select,
.mp-form-textarea {
  font-family: var(--mp-body);
  font-size: 0.98rem;
  color: var(--mp-text);
  background: var(--mp-bg);
  border: 1px solid var(--mp-text);
  border-radius: 0;
  padding: 0.7rem 0.85rem;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
  width: 100%;
}
.mp-form-input:focus,
.mp-form-select:focus,
.mp-form-textarea:focus {
  outline: none;
  border-color: var(--mp-accent);
  box-shadow: 4px 4px 0 0 var(--mp-accent);
  transform: translate(-1px, -1px);
}
.mp-form-textarea { min-height: 140px; resize: vertical; }
.mp-form-alert {
  font-family: var(--mp-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 1rem;
  border: 1px solid;
}
.mp-form-alert.is-success {
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
  border-color: #059669;
}
.mp-form-alert.is-error {
  background: rgba(255, 22, 22, 0.08);
  color: var(--mp-accent);
  border-color: var(--mp-accent);
}
.mp-form-foot {
  font-family: var(--mp-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mp-text-mute);
  margin: 0;
}

/* ── Contact success state (replaces the form on submit) ─────────────────
   Strong, unambiguous confirmation: the form is hidden and this card takes
   its place. contact.js toggles .is-visible and sets form.style.display. */
.mp-form-success {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  background: var(--mp-card-bg);
  border: 1px solid var(--mp-text);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: 12px 12px 0 0 #059669;
  animation: mpSuccessIn 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.mp-form-success.is-visible { display: flex; }
.mp-form-success-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 2px solid #059669;
  animation: mpSuccessPop 420ms cubic-bezier(0.34, 1.56, 0.64, 1) 80ms both;
}
.mp-form-success-badge svg { width: 30px; height: 30px; }
.mp-form-success-title {
  font-family: var(--mp-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 1rem + 2.2vw, 2.4rem);
  line-height: 1.05;
  color: var(--mp-text);
  margin: 0;
}
.mp-form-success-text {
  font-family: var(--mp-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--mp-text-soft);
  margin: 0;
  max-width: 48ch;
}
.mp-form-success-text strong { color: var(--mp-text); font-weight: 700; }
.mp-form-success .mp-btn { margin-top: 0.5rem; }
@keyframes mpSuccessIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mpSuccessPop {
  0%   { opacity: 0; transform: scale(0.4); }
  100% { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .mp-form-success,
  .mp-form-success-badge { animation: none; }
}

/* ── Contact split (info on left, form on right) ───────────────────────── */
.mp-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (min-width: 980px) {
  .mp-contact-grid { grid-template-columns: 5fr 7fr; }
}
.mp-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mp-contact-row {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--mp-line);
}
.mp-contact-row:last-child { border-bottom: none; }
.mp-contact-row-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mp-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mp-accent);
  min-width: 130px;
}
.mp-contact-row-label svg {
  width: 15px;
  height: 15px;
  flex: none;
}
.mp-contact-row-value {
  font-family: var(--mp-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  letter-spacing: -0.01em;
  color: var(--mp-text);
  text-decoration: none;
}
.mp-contact-row-value:hover { color: var(--mp-accent); }
.mp-contact-row-meta {
  font-family: var(--mp-body);
  font-size: 0.85rem;
  color: var(--mp-text-soft);
  margin-top: 0.25rem;
}

/* ── Find-talent specific tweaks ───────────────────────────────────────── */
body.page-find-talent .mp-hero-title { max-width: 16ch; }

/* ── Candidates specific ───────────────────────────────────────────────── */
body.page-candidates .mp-hero-title { max-width: 18ch; }

/* ── About specific tweaks already applied above via body.page-about ───── */

/* ── Mobile tightening ─────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .mp-hero { padding-top: clamp(2rem, 6vw, 4rem); }
  .mp-section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
  .mp-marquee-item { font-size: clamp(1.5rem, 7vw, 2.5rem); }
  .mp-cta-actions .mp-btn { width: 100%; justify-content: center; }
}
