/* ==========================================================================
   Section 07 — markplus
   Values transcribed verbatim from docs/research/sections/07-markplus.html
   No hover states exist on the original.
   ========================================================================== */

.markplus {
  background: var(--grad-markplus);
  border-top: 1px solid #F2E4EE;
  border-bottom: 1px solid #ECEAF6;
}

.markplus__inner {
  padding-top: 84px;
  padding-bottom: 84px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

/* --- eyebrow pill --------------------------------------------------------- */
.markplus__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--pink-line-2);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pink-deep);
}

/* --- headline ------------------------------------------------------------- */
.markplus__title {
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 18px 0 14px;
}

.markplus__title-accent { color: var(--pink); }

/* --- body copy ------------------------------------------------------------ */
.markplus__lede {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 26px;
  max-width: 520px;
  text-wrap: pretty;
}

/* --- cta ------------------------------------------------------------------ */
.markplus__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
}

.markplus__cta-arrow { font-size: 18px; }

/* --- chip grid ------------------------------------------------------------ */
.markplus__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.markplus__chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--pink-line);
  border-radius: var(--r-md);
  padding: 13px 15px;
}

.markplus__dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--pink);
}

.markplus__chip-label {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}

/* --- responsive ------------------------------------------------------------ */
@media (max-width: 860px) {
  /* 84px matches none of the original's mobile padding selectors, so it does NOT
     collapse — verified 84px and gap 56px at 390px. */
  .markplus__inner {
    padding-top: 84px;
    padding-bottom: 84px;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .markplus__grid { grid-template-columns: 1fr; }

  .markplus__lede { max-width: 100%; }
}
