/* ============================================================
   Jobit - Multiposter product page
   Uses tokens.css + site.css as the base system; scoped to .mp-page
   (each Multiposter block wraps its content in a .mp-page container).
   ============================================================ */

.mp-page {
  /* Use the same Jobit blue as the homepage instead of the
     Multiposter teal. Keep the --mp-accent-* token names so
     the rest of the page CSS doesn't need to change. */
  --mp-accent:        var(--jobit-blue);        /* #4364AD */
  --mp-accent-600:    var(--jobit-blue-600);    /* #36528E */
  --mp-accent-700:    var(--jobit-blue-700);    /* #2A4071 */
  --mp-accent-50:     var(--jobit-blue-50);     /* #EEF2FA */
  --mp-accent-100:    var(--jobit-blue-100);    /* #D9E1F2 */
  --mp-accent-200:    var(--jobit-blue-200);    /* #B3C3E4 */
  --mp-tint:          #F3F6FC;

  /* Hero layout (design's final tweak values) */
  --mp-h1-max:        49px;   /* max font-size for hero h1 */
  --mp-visual-col:    440px;  /* right column width */
  --mp-visual-size:   0.9;    /* scale factor for visual stage */
}

/* ============================================================
   HERO
   ============================================================ */
.mp-hero {
  position: relative;
  padding-top: calc(var(--sec-pad-y) + 56px);
  padding-bottom: calc(var(--sec-pad-y) - 16px);
  background: linear-gradient(180deg, #FCFEFE 0%, var(--mp-tint) 100%);
  overflow: hidden;
}
.mp-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--neutral-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--neutral-100) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse at 70% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, black 0%, transparent 70%);
  pointer-events: none;
}
.mp-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(243, 246, 252, 0) 0%, var(--mp-tint) 100%);
  z-index: 1;
  pointer-events: none;
}
.mp-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--mp-visual-col);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.mp-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mp-accent);
  margin-bottom: 22px;
}
.mp-breadcrumb a {
  color: var(--fg-muted);
  text-decoration: none;
}
.mp-breadcrumb a:hover { color: var(--mp-accent); }
.mp-breadcrumb svg { color: var(--neutral-400); }

.mp-hero h1 {
  font-size: clamp(36px, 4.4vw, var(--mp-h1-max));
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--fg-strong);
  margin: 0 0 22px;
  text-wrap: balance;
}
.mp-hero h1 em {
  font-style: normal;
  color: var(--mp-accent);
}
.mp-hero-lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 0 16px;
}
.mp-hero-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 0 32px;
}
.mp-hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.mp-btn-primary {
  background: var(--mp-accent);
  color: white;
  box-shadow: 0 10px 24px rgba(67, 100, 173, 0.32);
}
.mp-btn-primary:hover {
  background: var(--mp-accent-600);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(67, 100, 173, 0.4);
}

/* Hero visual - distribution mock */
.mp-hero-visual {
  position: relative;
  width: 100%;
  height: calc(460px * var(--mp-visual-size));
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  overflow: visible;
}
.mp-page .mp-hero-stage {
  position: relative;
  width: 460px;
  height: 460px;
  max-width: 100%;
  transform: scale(var(--mp-visual-size));
  transform-origin: center center;
}
.mp-page .mp-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(67, 100, 173, 0.22), 0 0 0 1px var(--mp-accent-100);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.mp-page .mp-hub img { width: 70%; height: 70%; object-fit: contain; }
.mp-page .mp-hub-pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 100px; height: 100px;
  border-radius: 24px;
  border: 1.5px solid var(--mp-accent);
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: mpPulse 3s ease-out infinite;
  pointer-events: none;
}
.mp-page .mp-hub-pulse.delay { animation-delay: 1.5s; }
@keyframes mpPulse {
  0%   { transform: translate(-50%, -50%) scale(1);    opacity: 0.55; }
  100% { transform: translate(-50%, -50%) scale(2.1);  opacity: 0; }
}

/* Channel chips orbiting the hub */
.mp-page .mp-channel {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 9px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-strong);
  white-space: nowrap;
  z-index: 2;
  transform: translate(-50%, -50%);
  animation: mpFloat 5s ease-in-out infinite;
  will-change: transform;
}
.mp-page .mp-channel-mk {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.01em;
}
.mp-page .mp-channel-logo {
  background: #fff;
  border-radius: var(--r-sm);
  padding: 3px;
  overflow: hidden;
}
.mp-page .mp-channel-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: var(--r-sm);
  display: block;
}
.mp-page .mp-channel-status {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(46,157,111,0.18);
  margin-left: 2px;
}
.mp-page .mp-c-1 { left: 13%;   top: 8.7%;  animation-delay: 0s; }
.mp-page .mp-c-2 { left: 87%;   top: 15.2%; animation-delay: -0.6s; }
.mp-page .mp-c-3 { left: 4.3%;  top: 50%;   animation-delay: -1.2s; }
.mp-page .mp-c-4 { left: 95.7%; top: 54.3%; animation-delay: -1.8s; }
.mp-page .mp-c-5 { left: 17.4%; top: 89.1%; animation-delay: -2.4s; }
.mp-page .mp-c-6 { left: 87%;   top: 91.3%; animation-delay: -3s; }
@keyframes mpFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-7px); }
}

/* Connector lines from hub to chips */
.mp-page .mp-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.mp-page .mp-lines path {
  stroke: var(--mp-accent);
  stroke-width: 1.4;
  fill: none;
  opacity: 0.4;
  stroke-dasharray: 4 4;
}
.mp-page .mp-lines .mp-packet {
  fill: var(--mp-accent);
  filter: drop-shadow(0 0 6px rgba(67, 100, 173, 0.7));
  opacity: 0;
}

/* ============================================================
   SHARED SECTION SCAFFOLD (overrides for this page)
   ============================================================ */
/* The channel ticker reuses the homepage .logo-row style, but lists ~2x as
   many channels, so its track is ~2x wider. Scale the scroll duration. */
.mp-page .logo-track { animation-duration: 68s; }
.mp-page .section { padding-top: var(--sec-pad-y); padding-bottom: var(--sec-pad-y); }
.mp-page .eyebrow {
  display: inline-block;
  background: var(--mp-accent-50);
  color: var(--mp-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
/* CTA-band on Multiposter sits below a white section - divider should be white */
.mp-page .cta-band[data-divider-from]::after { background: #ffffff; }
.mp-section-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--fg-strong);
  margin: 0 0 18px;
  text-wrap: balance;
}
.mp-section-title em { font-style: normal; color: var(--mp-accent); }
.mp-section-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
  text-wrap: pretty;
}

/* ============================================================
   PROBLEM + SOLUTION - two panels
   ============================================================ */
.mp-ps-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.mp-ps-split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
  align-items: stretch;
}
.mp-ps-panel { border-radius: 22px; padding: 34px 34px; }
.mp-ps-prob { background: var(--jobit-blue-700); color: white; }
.mp-ps-sol {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.mp-ps-panel-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.mp-ps-prob .mp-ps-panel-title { color: white; }
.mp-ps-sol .mp-ps-panel-title { color: var(--fg-strong); }
.mp-ps-prob-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mp-ps-prob-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.mp-ps-x {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12);
  color: white;
}
.mp-ps-x svg { width: 16px; height: 16px; }
.mp-ps-split.mp-ps-split-even { grid-template-columns: 1fr 1fr; }
.mp-ps-sol-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mp-ps-sol-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg-strong);
  line-height: 1.35;
}
.mp-ps-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--success-bg);
  color: var(--success);
}
.mp-ps-check svg { width: 16px; height: 16px; }

/* ============================================================
   HOW IT WORKS - 3 steps
   ============================================================ */
.mp-how {
  background: var(--mp-tint);
}
.mp-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.mp-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all var(--dur-base) var(--ease-out);
}
.mp-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mp-accent-200);
}
.mp-step-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--mp-accent);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 20px rgba(67, 100, 173,0.28);
}
.mp-step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg-strong);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.mp-step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}
.mp-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
}
.mp-step-tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--mp-accent-50);
  color: var(--mp-accent-700);
  font-weight: 600;
}

/* ============================================================
   WHY - reasons grid (dark blue section)
   ============================================================ */
.mp-why {
  background: var(--jobit-blue);
  color: white;
  position: relative;
  overflow: hidden;
}
.mp-why::before {
  content: "";
  position: absolute;
  right: -10%; top: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
  pointer-events: none;
}
.mp-why-head { text-align: center; max-width: 760px; margin: 0 auto 56px; position: relative; z-index: 2; }
.mp-why .eyebrow {
  background: rgba(255,255,255,0.14);
  color: white;
}
.mp-why .mp-section-title { color: white; }
.mp-why .mp-section-title em { color: var(--mp-accent-100); }
.mp-why .mp-section-sub { color: rgba(255,255,255,0.78); }
.mp-why-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.mp-why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--dur-base) var(--ease-out);
}
.mp-why-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.24);
  transform: translateY(-3px);
}
.mp-why-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}
.mp-why-num svg {
  width: 36px;
  height: 36px;
  stroke: white;
  flex-shrink: 0;
  display: block;
}
.mp-why-num-unit { font-size: 22px; opacity: 0.7; font-weight: 700; margin-left: 2px; }
.mp-why-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.mp-why-desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ============================================================
   INTEGRATIONS - reuses .integraties hub+spoke from homepage;
   retint packets/rings to the Multiposter (= Jobit blue) accent.
   ============================================================ */
.mp-page .integraties { background: white; }
.mp-page .int-ring { border-color: rgba(67, 100, 173, 0.22); }
.mp-page .int-line {
  background: linear-gradient(90deg, rgba(67, 100, 173,0) 0%, rgba(67, 100, 173,0.35) 50%, rgba(67, 100, 173,0) 100%);
}
.mp-page .int-packet.out {
  background: var(--mp-accent);
  box-shadow: 0 0 12px rgba(67, 100, 173,0.75);
}
.mp-page .int-packet.in {
  background: #2E9D6F;
  box-shadow: 0 0 12px rgba(46,157,111,0.7);
}
.mp-page .int-hub::before {
  background: radial-gradient(circle, rgba(67, 100, 173,0.18), transparent 70%);
}
.mp-page .integraties-copy .section-title em,
.mp-page .integraties-copy .mp-section-title em { color: var(--mp-accent); }
.mp-int-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.mp-int-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-strong);
  transition: all var(--dur-base) var(--ease-out);
}
.mp-int-tag:hover { border-color: var(--mp-accent); color: var(--mp-accent-700); background: var(--mp-accent-50); }
.mp-int-tag-mk {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mp-accent);
  flex-shrink: 0;
}

/* ============================================================
   FOR WHO - audience grid
   ============================================================ */
.mp-who {
  background: var(--bg-subtle);
}
.mp-who-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.mp-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mp-who-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.mp-who-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--mp-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.mp-who-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mp-accent-200);
}
.mp-who-card:hover::before { transform: scaleX(1); }
.mp-who-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg-strong);
  margin: 0;
  letter-spacing: -0.01em;
}
.mp-who-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}

/* ============================================================
   PLATFORM SECTION - transparant + onderdeel van Jobit
   ============================================================ */
.mp-platform {
  background: white;
}
.mp-platform-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
}
.mp-pl-card {
  background: linear-gradient(180deg, white 0%, var(--mp-tint) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.mp-pl-card.dark {
  background: linear-gradient(135deg, var(--jobit-blue-700), var(--jobit-blue));
  color: white;
  border-color: transparent;
}
.mp-pl-card.dark .mp-pl-eyebrow { color: var(--jobit-blue-100); }
.mp-pl-card.dark .mp-pl-title { color: white; }
.mp-pl-card.dark .mp-pl-body { color: rgba(255,255,255,0.82); }
.mp-pl-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mp-accent);
}
.mp-pl-title {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 800;
  color: var(--fg-strong);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
}
.mp-pl-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}
.mp-pl-actions { margin-top: 8px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .mp-hero-inner,
  .mp-platform-inner { grid-template-columns: 1fr; }
  .mp-ps-split,
  .mp-ps-split.mp-ps-split-even { grid-template-columns: 1fr; }
  .mp-hero-visual { height: 380px; justify-self: center; max-width: 460px; }
  .mp-how-steps { grid-template-columns: 1fr; }
  .mp-why-grid { grid-template-columns: repeat(2, 1fr); }
  .mp-who-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .mp-why-grid { grid-template-columns: 1fr; }
  .mp-who-grid { grid-template-columns: 1fr; }
  /* shrink the hero distribution graphic a bit on phones */
  .mp-hero-visual { --mp-visual-size: 0.8; height: calc(460px * var(--mp-visual-size)); }
}
