
/* ===== ANDMOOK MARKETPLACES ===== */

.mp-hero {
  padding: 88px 0 100px;
}

.mp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,.94fr) minmax(0,1.06fr);
  gap: 72px;
  align-items: center;
}

.mp-hero-copy h1 {
  max-width: 800px;
  margin: 27px 0 28px;
  color: #15191d;
  font-size: clamp(52px,5.8vw,84px);
  line-height: .95;
  letter-spacing: -.052em;
}

.mp-hero-copy h1 strong {
  color: #349b52;
  font-weight: inherit;
}

.mp-hero-lead {
  max-width: 680px;
  margin: 0;
  color: #6e7378;
  font-size: 19px;
  line-height: 1.6;
}

.mp-proof-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 37px;
  color: #8c9094;
  font-size: 12px;
}

.mp-proof-line i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #43a860;
}


/* HERO VISUAL */

.mp-hero-visual {
  padding: 27px;
  border: 1px solid rgba(20,28,36,.09);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 80% 8%,
      rgba(60,185,92,.12),
      transparent 34%
    ),
    #f6f7f5;
}

.mp-platform-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}

.mp-platform {
  padding: 14px 13px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 13px;
  background: #fff;
}

.mp-platform small {
  display: block;
  margin-bottom: 4px;
  color: #a1a5a8;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.mp-platform strong {
  display: block;
  color: #1b2025;
  font-size: 12px;
  line-height: 1.3;
}

.mp-wb {
  box-shadow: inset 0 2px 0 #b84bd9;
}

.mp-ozon {
  box-shadow: inset 0 2px 0 #287cf4;
}

.mp-ym {
  box-shadow: inset 0 2px 0 #f2c42d;
}

.mp-connectors {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  height: 48px;
}

.mp-connectors span {
  position: relative;
}

.mp-connectors span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 35px;
  border-left: 1px solid rgba(47,121,68,.20);
}

.mp-connectors span::after {
  content: "";
  position: absolute;
  left: calc(50% - 3px);
  bottom: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #43ad63;
}

.mp-main-dashboard {
  padding: 25px;
  border-radius: 20px;
  background: #11171c;
  color: #fff;
  box-shadow: 0 21px 48px rgba(9,15,20,.15);
}

.mp-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mp-dashboard-top > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mp-dashboard-top small {
  color: rgba(255,255,255,.40);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.mp-dashboard-top strong {
  font-size: 18px;
}

.mp-live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.53);
  font-size: 9px;
}

.mp-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #58cf78;
  box-shadow: 0 0 0 5px rgba(88,207,120,.09);
}

.mp-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 9px;
  margin: 22px 0;
}

.mp-kpi {
  padding: 13px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
}

.mp-kpi small,
.mp-kpi span {
  display: block;
  color: rgba(255,255,255,.38);
  font-size: 8px;
}

.mp-kpi strong {
  display: block;
  margin: 5px 0;
  font-size: 13px;
}

.mp-chart {
  padding: 15px;
  border-radius: 13px;
  background: rgba(255,255,255,.04);
}

.mp-chart-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.mp-chart-head span {
  font-size: 11px;
  font-weight: 700;
}

.mp-chart-head small {
  color: rgba(255,255,255,.30);
  font-size: 8px;
}

.mp-chart-bars {
  display: flex;
  height: 106px;
  align-items: flex-end;
  gap: 6px;
}

.mp-chart-bars i {
  flex: 1;
  height: var(--h);
  min-height: 8px;
  border-radius: 4px 4px 2px 2px;
  background:
    linear-gradient(
      180deg,
      #61d781,
      rgba(60,170,90,.35)
    );
}

.mp-dashboard-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px;
}

.mp-dashboard-bottom span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.42);
  font-size: 8px;
}


/* SECTIONS */

.mp-reality-section,
.mp-capabilities,
.mp-economics,
.mp-history,
.mp-beyond,
.mp-security,
.mp-proof,
.mp-options,
.mp-final {
  padding: 88px 0;
}

.mp-reality-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  padding: 62px;
  border-radius: 26px;
  background: #f4f5f3;
}

.mp-reality-panel h2,
.mp-section-head h2,
.mp-economics-copy h2,
.mp-history-copy h2,
.mp-security-copy h2,
.mp-proof-panel h2,
.mp-final-panel h2 {
  margin: 18px 0 0;
  color: #15191d;
  font-size: clamp(39px,4.4vw,65px);
  line-height: .98;
  letter-spacing: -.045em;
}

.mp-reality-panel h2 strong,
.mp-section-head h2 strong,
.mp-economics-copy h2 strong,
.mp-history-copy h2 strong,
.mp-security-copy h2 strong,
.mp-proof-panel h2 strong,
.mp-final-panel h2 strong {
  color: #349b52;
  font-weight: inherit;
}

.mp-reality-copy {
  align-self: end;
}

.mp-reality-copy p {
  margin: 0 0 18px;
  color: #686d71;
  font-size: 17px;
  line-height: 1.62;
}

.mp-section-head {
  max-width: 900px;
  margin-bottom: 46px;
}

.mp-section-head > p {
  max-width: 790px;
  margin: 24px 0 0;
  color: #686d72;
  font-size: 17px;
  line-height: 1.62;
}


/* CAPABILITIES */

.mp-capability-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
}

.mp-capability-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  background: #fff;
  transition:
    transform .18s ease,
    box-shadow .18s ease;
}

.mp-capability-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(10,18,24,.07);
}

.mp-capability-card > span,
.mp-option-card > span {
  color: #43a65f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mp-capability-card h3,
.mp-option-card h3,
.mp-beyond-grid h3 {
  margin: 35px 0 15px;
  color: #15191d;
  font-size: 27px;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.mp-capability-card p,
.mp-option-card p,
.mp-beyond-grid p {
  margin: 0;
  color: #74787c;
  font-size: 15px;
  line-height: 1.58;
}

.mp-formula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 31px;
  color: #7b7f83;
  font-size: 11px;
}

.mp-formula i {
  color: #b2b4b7;
  font-style: normal;
}

.mp-formula b {
  padding: 7px 9px;
  border-radius: 8px;
  background: #eef7f0;
  color: #32894c;
}

.mp-card-stats {
  display: flex;
  gap: 7px;
  margin-top: 32px;
}

.mp-card-stats strong {
  padding: 8px 10px;
  border-radius: 8px;
  background: #f3f4f2;
  color: #656a6e;
  font-size: 10px;
}


/* ECONOMICS */

.mp-economics {
  background: #11171c;
}

.mp-economics-grid {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 70px;
  align-items: center;
}

.mp-economics .section-kicker,
.mp-economics-copy h2 {
  color: #fff;
}

.mp-economics-copy h2 strong {
  color: #5ac878;
}

.mp-economics-copy p {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.56);
  font-size: 16px;
  line-height: 1.62;
}

.mp-economics-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 6px 0 10px;
}

.mp-economics-flow > div {
  min-width: 104px;
  padding: 16px 13px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
}

.mp-economics-flow > i {
  color: rgba(255,255,255,.25);
  font-style: normal;
}

.mp-economics-flow span {
  display: block;
  margin-bottom: 10px;
  color: #55c875;
  font-size: 9px;
}

.mp-economics-flow small {
  color: rgba(255,255,255,.70);
  font-size: 11px;
}

.mp-economics-flow .is-result {
  background: #3d9d58;
}

.mp-economics-flow .is-result span,
.mp-economics-flow .is-result small {
  color: #fff;
}


/* HISTORY */

.mp-history-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.mp-history-copy p {
  max-width: 660px;
  margin: 22px 0 0;
  color: #707478;
  font-size: 16px;
  line-height: 1.62;
}

.mp-timeline {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  padding: 37px 24px;
  border: 1px solid rgba(15,23,42,.09);
  border-radius: 22px;
  background: #f7f8f6;
}

.mp-time {
  position: relative;
  text-align: center;
}

.mp-time::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  border-top: 1px solid #d7dad6;
}

.mp-time:first-child::before {
  left: 50%;
  width: 50%;
}

.mp-time:last-child::before {
  width: 50%;
}

.mp-time strong {
  display: block;
  margin-bottom: 14px;
  color: #52575b;
  font-size: 11px;
}

.mp-time span {
  position: relative;
  z-index: 1;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto 14px;
  border: 3px solid #f7f8f6;
  border-radius: 50%;
  background: #aeb3af;
  box-shadow: 0 0 0 1px #bfc3bf;
}

.mp-time small {
  color: #999da0;
  font-size: 9px;
}

.mp-time.is-live span {
  background: #43ab61;
  box-shadow: 0 0 0 4px rgba(67,171,97,.12);
}

.mp-time.is-live strong,
.mp-time.is-live small {
  color: #318d4c;
}


/* INDIVIDUAL */

.mp-beyond {
  background: #f5f6f4;
}

.mp-beyond-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.mp-beyond-grid article {
  padding: 29px;
  border-radius: 18px;
  background: #fff;
}

.mp-beyond-grid article > span {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #eef7f0;
  color: #399b55;
  font-weight: 800;
}

.mp-beyond-grid h3 {
  margin-top: 39px;
  font-size: 20px;
}


/* SECURITY */

.mp-security-panel {
  padding: 64px;
  border-radius: 28px;
  background: #11171c;
}

.mp-security-copy {
  max-width: 900px;
}

.mp-security .section-kicker,
.mp-security-copy h2 {
  color: #fff;
}

.mp-security-copy h2 strong {
  color: #5ac878;
}

.mp-security-copy p {
  max-width: 780px;
  margin: 25px 0 0;
  color: rgba(255,255,255,.57);
  font-size: 17px;
  line-height: 1.62;
}

.mp-security-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 11px;
  margin-top: 50px;
}

.mp-security-grid > div {
  padding: 23px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
}

.mp-security-grid span {
  display: block;
  margin-bottom: 34px;
  color: #55c875;
  font-size: 9px;
}

.mp-security-grid strong,
.mp-security-grid small {
  display: block;
}

.mp-security-grid strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 14px;
}

.mp-security-grid small {
  color: rgba(255,255,255,.38);
  font-size: 10px;
  line-height: 1.45;
}


/* PROOF */

.mp-proof-panel {
  padding: 55px 60px;
  border: 1px solid rgba(15,23,42,.09);
  border-radius: 24px;
}

.mp-proof-panel p {
  max-width: 860px;
  margin: 27px 0 0;
  color: #6f7478;
  font-size: 17px;
  line-height: 1.62;
}


/* OPTIONS */

.mp-option-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
}

.mp-option-card {
  padding: 42px;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 23px;
  background: #f7f8f6;
}

.mp-option-card h3 {
  margin-top: 40px;
  font-size: 31px;
}

.mp-option-card ul {
  margin: 28px 0 35px;
  padding: 0;
  list-style: none;
}

.mp-option-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(15,23,42,.08);
  color: #62676b;
  font-size: 13px;
}

.mp-option-card.is-dark {
  border-color: #11171c;
  background: #11171c;
}

.mp-option-card.is-dark > span {
  color: #5ac878;
}

.mp-option-card.is-dark h3 {
  color: #fff;
}

.mp-option-card.is-dark p,
.mp-option-card.is-dark li {
  color: rgba(255,255,255,.54);
}

.mp-option-card.is-dark li {
  border-bottom-color: rgba(255,255,255,.08);
}

.mp-light-button {
  background: #fff;
  color: #11171c;
}

.mp-light-button:hover {
  background: #edf0ed;
}


/* FINAL */

.mp-final-panel {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  padding: 63px;
  border-radius: 27px;
  background: #eff5ef;
}

.mp-final-action {
  align-self: end;
}

.mp-final-action p {
  margin: 0 0 28px;
  color: #656b68;
  font-size: 16px;
  line-height: 1.62;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

  .mp-hero-grid,
  .mp-economics-grid,
  .mp-history-grid {
    grid-template-columns: 1fr;
  }

  .mp-hero-grid {
    gap: 55px;
  }

  .mp-reality-panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .mp-beyond-grid,
  .mp-security-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 760px) {

  .mp-hero {
    padding: 58px 0 66px;
  }

  .mp-hero-grid {
    gap: 46px;
  }

  .mp-hero-copy h1 {
    font-size: 48px;
  }

  .mp-hero-lead {
    font-size: 17px;
  }

  .mp-hero-visual {
    padding: 17px;
    border-radius: 21px;
  }

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

  .mp-connectors {
    display: none;
  }

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

  .mp-capability-grid,
  .mp-beyond-grid,
  .mp-security-grid,
  .mp-option-grid,
  .mp-final-panel {
    grid-template-columns: 1fr;
  }

  .mp-reality-section,
  .mp-capabilities,
  .mp-economics,
  .mp-history,
  .mp-beyond,
  .mp-security,
  .mp-proof,
  .mp-options,
  .mp-final {
    padding: 58px 0;
  }

  .mp-reality-panel,
  .mp-security-panel,
  .mp-final-panel {
    padding: 34px 22px;
    border-radius: 21px;
  }

  .mp-capability-card,
  .mp-option-card {
    min-height: 0;
    padding: 28px 22px;
  }

  .mp-proof-panel {
    padding: 34px 22px;
  }

  .mp-timeline {
    padding: 29px 8px;
  }

  .mp-time strong,
  .mp-time small {
    font-size: 8px;
  }
}



/* ===== MARKETPLACES COMPACT V2 ===== */


/* Overall page rhythm */

.mp-hero {
  padding-top: 62px;
  padding-bottom: 58px;
}

.mp-reality-section,
.mp-capabilities,
.mp-economics,
.mp-history,
.mp-beyond,
.mp-security,
.mp-proof,
.mp-options,
.mp-final {
  padding-top: 58px;
  padding-bottom: 58px;
}


/* Hero proportions */

.mp-hero-grid {
  grid-template-columns:
    minmax(0, .91fr)
    minmax(0, 1.09fr);
  gap: 58px;
}

.mp-hero-copy h1 {
  max-width: 720px;
  margin-top: 23px;
  margin-bottom: 23px;
  font-size: clamp(46px, 4.65vw, 70px);
  line-height: .98;
  letter-spacing: -.048em;
}

.mp-hero-lead {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.55;
}

.mp-proof-line {
  margin-top: 27px;
}


/* Marketplace logos */

.mp-platform-row {
  gap: 12px;
}

.mp-platform {
  display: flex;
  height: 72px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  overflow: hidden;
}

.mp-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.mp-brand-wb {
  background:
    linear-gradient(
      90deg,
      #7f2bea,
      #cb31c9
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 19px;
  font-weight: 850;
  letter-spacing: -.045em;
  text-transform: lowercase;
}

.mp-brand-ozon {
  color: #005bff;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.055em;
}

.mp-brand-ym {
  gap: 4px;
  color: #171717;
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -.035em;
}

.mp-brand-ym b {
  color: #fc3f1d;
  font-size: 22px;
  font-weight: 850;
}

.mp-brand-ym span {
  position: relative;
}

.mp-brand-ym span::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -3px;
  width: 31px;
  height: 4px;
  border-radius: 4px;
  background: #ffcc00;
}

.mp-wb,
.mp-ozon,
.mp-ym {
  box-shadow: none;
}

.mp-wb {
  border-top: 3px solid #b43bd0;
}

.mp-ozon {
  border-top: 3px solid #005bff;
}

.mp-ym {
  border-top: 3px solid #ffcc00;
}


/* Hero analytics */

.mp-hero-visual {
  padding: 24px;
}

.mp-connectors {
  height: 36px;
}

.mp-connectors span::before {
  height: 26px;
}

.mp-main-dashboard {
  padding: 23px;
}

.mp-kpi-grid {
  margin: 18px 0;
}

.mp-chart-bars {
  height: 92px;
}


/* Data / answers */

.mp-reality-panel {
  gap: 58px;
  padding: 46px 50px;
}

.mp-reality-panel h2,
.mp-section-head h2,
.mp-economics-copy h2,
.mp-history-copy h2,
.mp-security-copy h2,
.mp-proof-panel h2,
.mp-final-panel h2 {
  font-size: clamp(36px, 3.6vw, 55px);
}

.mp-reality-copy p {
  font-size: 15px;
  line-height: 1.56;
}


/* Capabilities */

.mp-section-head {
  margin-bottom: 32px;
}

.mp-capability-grid {
  gap: 14px;
}

.mp-capability-card {
  min-height: 0;
  padding: 27px 30px;
}

.mp-capability-card h3 {
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 23px;
}

.mp-capability-card p {
  max-width: 630px;
  font-size: 14px;
  line-height: 1.5;
}

.mp-formula,
.mp-card-stats {
  margin-top: 23px;
}


/* Economics: make the visual as important as the headline */

.mp-economics {
  padding-top: 64px;
  padding-bottom: 64px;
}

.mp-economics-grid {
  grid-template-columns:
    minmax(0, .72fr)
    minmax(620px, 1.28fr);
  gap: 56px;
}

.mp-economics-copy h2 {
  font-size: clamp(40px, 4vw, 60px);
}

.mp-economics-flow {
  display: grid;
  grid-template-columns:
    repeat(11, max-content);
  gap: 10px;
  align-items: stretch;
  overflow-x: auto;
  padding: 18px 3px;
}

.mp-economics-flow > div {
  display: flex;
  width: 118px;
  min-width: 118px;
  min-height: 116px;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 16px;
  border-radius: 16px;
}

.mp-economics-flow > div span {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
}

.mp-economics-flow > div small {
  font-size: 13px;
  font-weight: 650;
  line-height: 1.25;
}

.mp-economics-flow > i {
  display: flex;
  width: 22px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.mp-economics-flow .is-result {
  width: 132px;
  min-width: 132px;
  box-shadow:
    0 15px 34px rgba(56, 169, 87, .16);
}


/* History */

.mp-history-grid {
  grid-template-columns:
    minmax(0, .82fr)
    minmax(0, 1.18fr);
  gap: 56px;
}

.mp-history-copy p {
  margin-top: 16px;
  font-size: 15px;
}

.mp-timeline {
  padding: 42px 34px;
  border-radius: 22px;
}

.mp-time::before {
  top: 47px;
  border-top-width: 2px;
}

.mp-time strong {
  margin-bottom: 18px;
  font-size: 14px;
}

.mp-time span {
  width: 15px;
  height: 15px;
  margin-bottom: 17px;
  border-width: 4px;
}

.mp-time small {
  font-size: 11px;
}

.mp-time.is-live span {
  box-shadow:
    0 0 0 7px rgba(67, 171, 97, .12);
}


/* Individual solutions */

.mp-beyond-grid {
  gap: 12px;
}

.mp-beyond-grid article {
  padding: 25px;
}

.mp-beyond-grid article > span {
  width: 46px;
  height: 46px;
  font-size: 19px;
}

.mp-beyond-grid h3 {
  margin-top: 27px;
}


/* Security */

.mp-security-panel {
  padding: 50px;
}

.mp-security-grid {
  margin-top: 36px;
}

.mp-security-grid > div {
  padding: 20px;
}

.mp-security-grid span {
  margin-bottom: 24px;
}


/* Proof/options/final */

.mp-proof-panel {
  padding: 44px 50px;
}

.mp-proof-panel p {
  margin-top: 20px;
  font-size: 15px;
}

.mp-option-card {
  padding: 34px;
}

.mp-option-card h3 {
  margin-top: 29px;
  font-size: 27px;
}

.mp-final-panel {
  gap: 54px;
  padding: 48px 52px;
}


/* Desktop spacing correction */

@media (min-width: 1101px) {

  .mp-reality-section + .mp-capabilities {
    padding-top: 34px;
  }

  .mp-capabilities + .mp-economics {
    margin-top: 12px;
  }

  .mp-economics + .mp-history {
    padding-top: 64px;
  }
}


/* Tablet/mobile */

@media (max-width: 1100px) {

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

  .mp-economics-flow {
    grid-template-columns:
      repeat(11, max-content);
  }
}

@media (max-width: 760px) {

  .mp-hero {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .mp-hero-copy h1 {
    font-size: 43px;
  }

  .mp-platform-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .mp-platform {
    height: 58px;
    padding: 8px;
  }

  .mp-brand-wb {
    font-size: 13px;
  }

  .mp-brand-ozon {
    font-size: 16px;
  }

  .mp-brand-ym {
    font-size: 11px;
  }

  .mp-brand-ym b {
    font-size: 17px;
  }

  .mp-reality-section,
  .mp-capabilities,
  .mp-economics,
  .mp-history,
  .mp-beyond,
  .mp-security,
  .mp-proof,
  .mp-options,
  .mp-final {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .mp-reality-panel {
    padding: 28px 22px;
  }

  .mp-timeline {
    padding: 30px 8px;
  }

  .mp-time strong {
    font-size: 10px;
  }

  .mp-time small {
    font-size: 8px;
  }
}



/* ===== MARKETPLACES POLISH V3 ===== */


/* Real marketplace artwork */

.mp-brand-image {
  display: block;
  width: auto;
  max-width: 148px;
  height: 29px;
  object-fit: contain;
}

.mp-brand-image-ym {
  max-width: 150px;
}


/* Hero footer: three platforms only */

.mp-proof-line {
  gap: 10px;
  margin-top: 23px;
}


/* Current sales marketplace marks */

.mp-card-marketplaces {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mp-mini-brand {
  display: flex;
  min-width: 74px;
  height: 34px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border: 1px solid rgba(17, 25, 31, .07);
  border-radius: 9px;
  background: #f7f8f6;
}

.mp-mini-wb {
  background:
    linear-gradient(
      90deg,
      #8d2fe8,
      #cd3bc7
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -.045em;
}

.mp-mini-ozon {
  color: #005bff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -.055em;
}

.mp-mini-ym img {
  display: block;
  width: auto;
  max-width: 78px;
  height: 18px;
}


/* Economics:
   all six stages visible simultaneously on desktop */

.mp-economics-grid {
  grid-template-columns:
    minmax(350px, .66fr)
    minmax(0, 1.34fr);
  gap: 52px;
}

.mp-economics-flow {
  display: grid;
  grid-template-columns:
    repeat(6, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  overflow: visible;
  padding: 14px 0;
}

.mp-economics-flow > i {
  display: none;
}

.mp-economics-flow > div {
  position: relative;
  width: auto;
  min-width: 0;
  min-height: 126px;
  padding: 18px 14px;
  overflow: visible;
}

.mp-economics-flow > div:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -19px;
  width: 25px;
  height: 25px;
  margin-top: -12px;
  border-radius: 50%;
  background: #11171c;
  color: rgba(255,255,255,.35);
  font-size: 16px;
  line-height: 25px;
  text-align: center;
}

.mp-economics-flow > div span {
  font-size: 11px;
}

.mp-economics-flow > div small {
  font-size: clamp(10px, .78vw, 13px);
  overflow-wrap: anywhere;
}

.mp-economics-flow .is-result {
  width: auto;
  min-width: 0;
}


/* Remove the giant lower gaps.
   These rules intentionally win over previous V1/V2 spacing. */

.mp-security {
  padding-top: 46px;
  padding-bottom: 24px;
}

.mp-proof {
  padding-top: 24px;
  padding-bottom: 24px;
}

.mp-options {
  padding-top: 36px;
  padding-bottom: 28px;
}

.mp-final {
  padding-top: 26px;
  padding-bottom: 52px;
}

.mp-security-panel {
  margin-bottom: 0;
}

.mp-proof-panel {
  margin-top: 0;
  margin-bottom: 0;
}

.mp-options .mp-section-head {
  margin-bottom: 30px;
}

.mp-option-grid {
  margin-bottom: 0;
}


/* Responsive economics */

@media (max-width: 1200px) {

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

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

@media (max-width: 760px) {

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

  .mp-economics-flow > div {
    min-height: 100px;
  }

  .mp-economics-flow > div::after {
    display: none;
  }

  .mp-security {
    padding-top: 34px;
    padding-bottom: 16px;
  }

  .mp-proof {
    padding-top: 16px;
    padding-bottom: 18px;
  }

  .mp-options {
    padding-top: 28px;
    padding-bottom: 18px;
  }

  .mp-final {
    padding-top: 18px;
    padding-bottom: 40px;
  }

  .mp-brand-image {
    max-width: 105px;
    height: 22px;
  }
}



/* =========================================================
   MARKETPLACES MOBILE FINAL FIX
   Mobile only. Desktop >= 761px is intentionally untouched.
   ========================================================= */

@media (max-width: 760px) {

  /*
   * HERO
   * Text first, dashboard second.
   * No desktop two-column geometry may survive on phone.
   */

  .mp-hero {
    padding-top: 34px;
    padding-bottom: 44px;
    overflow: hidden;
  }

  .mp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    width: 100%;
  }

  .mp-hero-copy,
  .mp-hero-visual {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .mp-hero-copy .eyebrow {
    width: fit-content;
    max-width: 100%;
    padding: 9px 13px;
    font-size: 12px;
    line-height: 1.35;
  }

  .mp-hero-copy h1 {
    max-width: none;
    margin: 22px 0 20px;
    font-size: clamp(38px, 11vw, 46px);
    line-height: .98;
    letter-spacing: -.045em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .mp-hero-copy h1 br {
    display: none;
  }

  .mp-hero-lead {
    max-width: none;
    font-size: 16px;
    line-height: 1.5;
  }

  .mp-hero-copy .hero-actions {
    margin-top: 26px;
  }

  .mp-proof-line {
    margin-top: 24px;
    gap: 9px;
    font-size: 11px;
  }


  /*
   * HERO DASHBOARD
   */

  .mp-hero-visual {
    box-sizing: border-box;
    padding: 14px;
    border-radius: 20px;
  }

  .mp-platform-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .mp-platform {
    min-width: 0;
    height: 50px;
    padding: 6px;
    border-radius: 11px;
  }

  .mp-brand-wb {
    font-size: 11px;
  }

  .mp-brand-ozon {
    font-size: 14px;
  }

  .mp-brand-image,
  .mp-brand-image-ym {
    width: 100%;
    max-width: 82px;
    height: 19px;
  }

  .mp-connectors {
    display: none;
  }

  .mp-main-dashboard {
    margin-top: 10px;
    padding: 17px;
    border-radius: 17px;
  }

  .mp-dashboard-top {
    align-items: flex-start;
    gap: 10px;
  }

  .mp-dashboard-top strong {
    font-size: 17px;
    line-height: 1.2;
  }

  .mp-live {
    max-width: 90px;
    justify-content: flex-end;
    font-size: 8px;
    line-height: 1.25;
    text-align: right;
  }

  .mp-kpi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin: 15px 0;
  }

  .mp-kpi {
    min-width: 0;
    padding: 10px 8px;
  }

  .mp-kpi small,
  .mp-kpi span {
    font-size: 7px;
  }

  .mp-kpi strong {
    margin: 4px 0;
    font-size: 11px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .mp-chart {
    padding: 11px;
  }

  .mp-chart-bars {
    height: 72px;
    gap: 4px;
  }

  .mp-dashboard-bottom {
    gap: 5px;
    margin-top: 12px;
  }

  .mp-dashboard-bottom span {
    padding: 5px 7px;
    font-size: 7px;
  }


  /*
   * REST OF PAGE
   * Hard stop against desktop widths leaking into mobile.
   */

  .mp-reality-panel,
  .mp-capability-grid,
  .mp-economics-grid,
  .mp-history-grid,
  .mp-beyond-grid,
  .mp-security-grid,
  .mp-option-grid,
  .mp-final-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .mp-reality-panel,
  .mp-security-panel,
  .mp-proof-panel,
  .mp-final-panel,
  .mp-capability-card,
  .mp-option-card,
  .mp-beyond-grid article {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .mp-reality-panel h2,
  .mp-section-head h2,
  .mp-economics-copy h2,
  .mp-history-copy h2,
  .mp-security-copy h2,
  .mp-proof-panel h2,
  .mp-final-panel h2 {
    font-size: clamp(34px, 9.5vw, 42px);
    line-height: 1;
  }

  .mp-section-head > p,
  .mp-reality-copy p,
  .mp-economics-copy p,
  .mp-history-copy p,
  .mp-security-copy p,
  .mp-proof-panel p,
  .mp-final-action p {
    font-size: 15px;
    line-height: 1.55;
  }

  .mp-economics-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 9px;
    overflow: visible;
  }

  .mp-economics-flow > div {
    width: auto;
    min-width: 0;
    min-height: 96px;
  }

  .mp-history-grid {
    gap: 28px;
  }

  .mp-timeline {
    width: 100%;
    box-sizing: border-box;
    padding: 24px 6px;
  }

  .mp-capability-grid,
  .mp-option-grid,
  .mp-beyond-grid,
  .mp-security-grid {
    gap: 12px;
  }

  .mp-reality-section,
  .mp-capabilities,
  .mp-economics,
  .mp-history,
  .mp-beyond,
  .mp-security,
  .mp-proof,
  .mp-options,
  .mp-final {
    max-width: 100%;
    overflow: hidden;
  }
}



/* =========================================================
   MARKETPLACES MOBILE GUTTERS V2
   Match the mobile page geometry used across the site.
   Desktop >= 761px remains untouched.
   ========================================================= */

@media (max-width: 760px) {

  main .container {
    width: calc(100% - 40px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .mp-hero-copy .hero-actions {
    width: 100%;
  }

  .mp-hero-copy .hero-actions .button {
    box-sizing: border-box;
    width: 100%;
  }

}

