/* ============================================================
   MINEWISE 4.0 : Mining landing page
   Scoped with .mw-. Uses global brand tokens from styles.css.
   Rhythm: light → light → NAVY → light → light → NAVY band →
           light → NAVY card → map. Depth via overlap + layering.
   ============================================================ */

/* ---------- Shared ---------- */

.mw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
}
.mw-eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold);
  flex: none;
}
.mw-eyebrow--light { color: var(--gold); }

.section__title--light { color: var(--white); }

/* Decorative oversized background word */
.mw-watermark {
  position: absolute;
  right: -2%;
  top: 4%;
  font-family: var(--font-heading);
  font-size: var(--fs-watermark);
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: rgba(10, 32, 53, 0.035);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}
.mw-watermark--light { color: rgba(255, 255, 255, 0.04); }

/* ---------- FOLD 1: hero badge ---------- */

.mw-hero__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255, 191, 0, 0.5);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 22px;
}

/* Hero email CTA (matches the About page's ab2-hero__cta, page-style not landing) */
.mw-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: rgba(255, 191, 0, 0.1);
  border: 1px solid rgba(255, 191, 0, 0.4);
  border-radius: 14px;
  color: var(--white);
  font-family: var(--font-heading);
  text-decoration: none;
  transition: all 0.3s ease;
}
.mw-hero__cta i { font-size: var(--fs-h5); color: var(--gold); }
.mw-hero__cta span { font-size: var(--fs-sm); color: rgba(255, 255, 255, 0.7); display: block; }
.mw-hero__cta strong { font-size: var(--fs-cta); font-weight: var(--fw-semibold); display: block; }
.mw-hero__cta:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.mw-hero__cta:hover i,
.mw-hero__cta:hover span,
.mw-hero__cta:hover strong { color: var(--navy); }

/* ---------- Consortium strip (overlaps hero) ---------- */

.mw-strip {
  position: relative;
  z-index: 5;
  margin-top: -46px;
}

.mw-strip__inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.mw-strip__label {
  font-family: var(--font-heading);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
}

.mw-strip__logos {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}
.mw-strip__logos img {
  height: 38px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
.mw-strip__plus {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--gold);
  line-height: 1;
}

/* ---------- FOLD 2: the scale (split + layered visual) ---------- */

.mw-scale {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.mw-scale__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mw-scale__copy p {
  font-size: var(--fs-cta);
  line-height: var(--lh-loose);
  color: var(--gray-600);
  margin-bottom: 18px;
}
.mw-scale__copy strong { color: var(--navy); font-weight: var(--fw-semibold); }
.mw-scale__copy .btn--text { margin-top: 10px; }

.mw-scale__shapes { position: relative; padding: 26px 26px 0 0; }

.mw-scale__img-wrap {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.mw-scale__img-wrap img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.mw-scale__rect {
  position: absolute;
  top: 0; right: 0;
  width: 62%; height: 72%;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.mw-scale__badge {
  position: absolute;
  left: -28px;
  bottom: 42px;
  z-index: 3;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-xl);
  max-width: 230px;
}
.mw-scale__badge-num {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 6px;
}
/* direct child only : must not hit the [data-count] span inside __badge-num */
.mw-scale__badge > span {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--lh-snug);
}

/* ---------- FOLD 3: focus tiles (image cards) ---------- */

.mw-focus { background: var(--off-white); }
.mw-focus__header { max-width: 760px; margin-bottom: 44px; }

.mw-focus__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mw-tile {
  position: relative;
  display: block;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  text-decoration: none;
  isolation: isolate;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.mw-tile__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.mw-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10,32,53,0.92) 0%, rgba(10,32,53,0.55) 45%, rgba(10,32,53,0.15) 100%);
  transition: background var(--transition);
}

.mw-tile__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 22px 20px;
}

.mw-tile__num {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
}

.mw-tile__body h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-cta);
  font-weight: var(--fw-semibold);
  line-height: 1.25;
  letter-spacing: -0.2px;
  color: var(--white);
  margin: 0;
}

.mw-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.mw-tile:hover .mw-tile__img { transform: scale(1.08); }
.mw-tile:hover::before { background: linear-gradient(to top, rgba(10,32,53,0.95) 0%, rgba(10,32,53,0.6) 55%, rgba(255,191,0,0.12) 100%); }
.mw-tile:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ---------- FOLD 4: consortium ---------- */

.mw-consortium {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.mw-consortium__head { position: relative; z-index: 1; max-width: 920px; margin-bottom: 52px; }

.mw-consortium__lead {
  font-size: var(--fs-lg);
  line-height: var(--lh-loose);
  color: rgba(255, 255, 255, 0.82);
  margin: 20px 0 0;
}
.mw-consortium__lead strong { color: var(--gold); font-weight: var(--fw-semibold); }

.mw-partners {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
}

.mw-partner__join {
  align-self: center;
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--gold);
  line-height: 1;
}

.mw-partner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.mw-partner:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.mw-partner--featured { border-top: 4px solid var(--gold); }

.mw-partner__logo { height: 58px; display: flex; align-items: center; margin-bottom: 20px; }
.mw-partner__logo img { max-height: 50px; max-width: 160px; width: auto; object-fit: contain; }

.mw-partner__name {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: var(--navy);
  margin: 0 0 6px;
}
.mw-partner__role {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.mw-partner p {
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  color: var(--gray-600);
  margin: 0;
}

/* ---------- FOLD 5: the difference (zig-zag rows) ---------- */

.mw-diff__head { max-width: 820px; margin-bottom: 20px; }
.mw-diff__lead {
  font-size: var(--fs-lg);
  line-height: var(--lh-loose);
  color: var(--gray-600);
  margin: 18px 0 0;
}

.mw-diff__list { margin-top: 20px; }

.mw-diff__row {
  display: grid;
  grid-template-columns: 120px 1fr 90px;
  gap: 32px;
  align-items: center;
  padding: 38px 0;
  border-bottom: 1px solid var(--gray-200);
}
.mw-diff__row:last-child { border-bottom: none; }

.mw-diff__num {
  font-family: var(--font-heading);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(10, 32, 53, 0.22);
  transition: color var(--transition), -webkit-text-stroke-color var(--transition);
}

.mw-diff__content h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--navy);
  margin: 0 0 10px;
  line-height: var(--lh-snug);
}
.mw-diff__content p {
  font-size: var(--fs-cta);
  line-height: var(--lh-loose);
  color: var(--gray-600);
  margin: 0;
  max-width: 68ch;
}

.mw-diff__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255, 191, 0, 0.14);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  justify-self: end;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.mw-diff__row:hover .mw-diff__num { color: rgba(255, 191, 0, 0.9); -webkit-text-stroke-color: transparent; }
.mw-diff__row:hover .mw-diff__icon { background: var(--navy); color: var(--gold); transform: scale(1.06); }

/* ---------- FOLD 6: approach + playbook ---------- */

.mw-approach { background: var(--off-white); padding-bottom: 0; }

/* header: title left, lead right so the row reads full-width */
.mw-approach__head {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 52px;
}
.mw-approach__lead {
  font-size: var(--fs-lg);
  line-height: var(--lh-loose);
  color: var(--gray-600);
  margin: 0;
  padding-bottom: 6px;
}

/* body: image left, pillar cards right */
.mw-approach__body {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 84px;
}

.mw-approach__visual { position: relative; padding: 0 0 26px 26px; }
.mw-approach__img-wrap {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.mw-approach__img-wrap img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.mw-approach__accent {
  position: absolute;
  left: 0; bottom: 0;
  width: 58%; height: 66%;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 1;
}
.mw-approach__quote {
  position: absolute;
  right: -18px;
  bottom: 44px;
  z-index: 3;
  background: var(--navy);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 20px 24px;
  max-width: 250px;
}
.mw-approach__quote i { color: var(--gold); font-size: 16px; }
.mw-approach__quote p {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  color: var(--white);
  margin: 8px 0 0;
}

.mw-pillars { display: flex; flex-direction: column; gap: 22px; }

.mw-pillar {
  display: flex;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 30px 30px 30px 26px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.mw-pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.mw-pillar__icon {
  flex: none;
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.mw-pillar h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: var(--navy);
  margin: 0 0 10px;
}
.mw-pillar p {
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  color: var(--gray-600);
  margin: 0;
}

.mw-playbook { background: var(--navy); padding: 76px 0 20px; }
.mw-playbook__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-semibold);
  color: var(--white);
  text-align: center;
  margin: 0 0 52px;
}

.mw-feature { padding-bottom: 64px; }
.mw-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.mw-feature--rev .mw-feature__media { order: 2; }

.mw-feature__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.mw-feature__media img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.mw-feature__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-cta);
  font-weight: var(--fw-semibold);
  letter-spacing: 2px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 6px;
  padding: 7px 18px;
  margin-bottom: 18px;
}
.mw-feature__body h4 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  color: var(--white);
  margin: 0 0 16px;
}
.mw-feature__body p {
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  color: rgba(255, 255, 255, 0.76);
  margin: 0 0 14px;
}
.mw-feature__body p:last-child { margin-bottom: 0; }

/* ---------- FOLD 7: stat band + clients ---------- */

.mw-statband {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 56px 0;
}
.mw-statband__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.mw-statband__item { text-align: center; }
.mw-statband__num {
  font-family: var(--font-heading);
  font-size: var(--fs-stat);
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 10px;
}
/* direct child only : must not hit the [data-count] span inside __num */
.mw-statband__item > span {
  display: block;
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  color: rgba(255, 255, 255, 0.72);
  max-width: 210px;
  margin: 0 auto;
}

.mw-clients { position: relative; overflow: hidden; background: var(--white); }
.mw-clients__header { position: relative; z-index: 1; max-width: 700px; margin-bottom: 40px; }
.mw-clients__logos { position: relative; z-index: 1; }
.mw-clients__logos .clients__logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

/* ---------- FOLD 8: connect + form ---------- */

.mw-connect { background: var(--off-white); padding: 96px 0; }

.mw-connect__card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--white);
}

.mw-connect__aside {
  background: var(--navy);
  padding: 56px 44px;
  color: var(--white);
}
.mw-connect__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  color: var(--white);
  margin: 0 0 16px;
  text-wrap: balance;
}
.mw-connect__text {
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  color: rgba(255, 255, 255, 0.74);
  margin: 0 0 30px;
}

.mw-steps { list-style: none; margin: 0 0 32px; padding: 0; }
.mw-steps li { display: flex; gap: 16px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.mw-steps li:first-child { border-top: none; padding-top: 0; }
.mw-steps__n {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255, 191, 0, 0.16);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  display: flex; align-items: center; justify-content: center;
}
.mw-steps h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--white);
  margin: 3px 0 4px;
}
.mw-steps p { font-size: var(--fs-sm); line-height: var(--lh-normal); color: rgba(255,255,255,0.62); margin: 0; }

.mw-connect__items { display: flex; flex-direction: column; gap: 10px; }
.mw-connect__item {
  display: flex; align-items: center; gap: 12px;
  min-height: 44px;
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  font-size: var(--fs-base);
  transition: color var(--transition);
}
.mw-connect__item i { color: var(--gold); width: 18px; text-align: center; }
.mw-connect__item:hover { color: var(--gold); }

/* form panel */
.mw-formpanel { padding: 56px 48px; }
.mw-formpanel__head { margin-bottom: 28px; }
.mw-formpanel__head h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: var(--navy);
  margin: 0 0 8px;
  line-height: var(--lh-snug);
}
.mw-formpanel__head p { font-size: var(--fs-sm); color: var(--gray-500); margin: 0; }
.mw-formpanel__head span { color: #dc2626; }

/* icon-prefixed inputs */
.mw-input { position: relative; }
.mw-input i {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 14px;
  pointer-events: none;
}
.mw-form .mw-input input { padding-left: 44px; }

.mw-form input,
.mw-form textarea {
  min-height: 48px;
  border-radius: var(--radius-md);
}
.mw-form textarea { min-height: auto; }

.mw-submit {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: var(--fs-cta);
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.mw-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(255, 191, 0, 0.35);
}
.mw-submit:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }

.mw-formnote {
  display: flex; align-items: center; gap: 8px;
  font-size: var(--fs-xs);
  color: var(--gray-500);
  margin: 14px 0 0;
  justify-content: center;
}

.mw-field-error {
  display: block;
  font-size: var(--fs-xs);
  color: #dc2626;
  margin-top: 6px;
}

/* Honeypot: off-screen for people, visible to bots. */
.mw-hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.mw-formerror {
  font-size: var(--fs-sm);
  color: #dc2626;
  margin: 12px 0 0;
  text-align: center;
}
.mw-formerror:empty { display: none; }

.mw-submit:disabled { opacity: 0.75; cursor: default; transform: none; }

/* ---------- FOLD 9: map + address card ---------- */

.mw-map { position: relative; background: var(--white); padding-bottom: 64px; }
.mw-map__frame { line-height: 0; }
.mw-map__frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(25%);
}

.mw-map__card {
  position: relative;
  margin-top: -60px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.mw-map__icon {
  width: 54px; height: 54px;
  flex: none;
  border-radius: 50%;
  background: rgba(255, 191, 0, 0.16);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.mw-map__card h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-h5);
  font-weight: var(--fw-semibold);
  color: var(--navy);
  margin: 0 0 4px;
}
.mw-map__card p { font-size: var(--fs-base); color: var(--gray-600); margin: 0; }
.mw-map__link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--navy);
  border-radius: 50px;
  color: var(--navy);
  text-decoration: none;
  font-size: var(--fs-base);
  transition: background var(--transition), color var(--transition);
}
.mw-map__link:hover { background: var(--navy); color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .mw-focus__grid { grid-template-columns: repeat(3, 1fr); }
  .mw-clients__logos .clients__logo-grid { grid-template-columns: repeat(5, 1fr); }
  .mw-scale__grid { gap: 48px; }
}

@media (max-width: 992px) {
  .mw-scale__grid { grid-template-columns: 1fr; gap: 56px; }
  .mw-scale__badge { left: 0; }
  .mw-partners { grid-template-columns: 1fr; }
  .mw-partner__join { display: none; }
  .mw-connect__card { grid-template-columns: 1fr; }
  .mw-statband__grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .mw-clients__logos .clients__logo-grid { grid-template-columns: repeat(4, 1fr); }
  .mw-feature__grid { grid-template-columns: 1fr; gap: 30px; }
  .mw-feature--rev .mw-feature__media { order: 0; }
  .mw-diff__row { grid-template-columns: 84px 1fr; }
  .mw-diff__icon { display: none; }
  .mw-approach__head { grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .mw-approach__lead { padding-bottom: 0; }
  .mw-approach__body { grid-template-columns: 1fr; gap: 44px; padding-bottom: 64px; }
}

@media (max-width: 768px) {
  .mw-focus__grid { grid-template-columns: repeat(2, 1fr); }
  .mw-pillars { gap: 18px; }
  .mw-approach__img-wrap img { height: 320px; }
  .mw-strip__inner { padding: 20px 24px; gap: 18px; }
  .mw-strip__logos { gap: 18px; }
  .mw-strip__logos img { height: 30px; }
  .mw-connect__aside, .mw-formpanel { padding: 40px 28px; }
  .mw-map__frame iframe { height: 320px; }
  .mw-feature__media img { height: 260px; }
  .mw-playbook { padding-top: 56px; }
}

@media (max-width: 600px) {
  .mw-clients__logos .clients__logo-grid { grid-template-columns: repeat(3, 1fr); }
  .mw-scale__img-wrap img { height: 300px; }
  .mw-scale__shapes { padding: 20px 20px 0 0; }
  .mw-scale__badge { position: static; max-width: none; margin-top: 18px; }
  .mw-diff__row { grid-template-columns: 1fr; gap: 10px; padding: 28px 0; }
  .mw-diff__num { font-size: 48px; }
  .mw-map__card { margin-top: -30px; padding: 22px; }
  .mw-map__link { margin-left: 0; width: 100%; justify-content: center; }
  .mw-watermark { display: none; }
  .mw-approach__visual { padding: 0; }
  .mw-approach__accent { display: none; }
  .mw-approach__quote { position: static; max-width: none; margin-top: 16px; }
  .mw-pillar { flex-direction: column; gap: 16px; padding: 26px 22px 26px 20px; }
}

@media (max-width: 480px) {
  .mw-focus__grid { grid-template-columns: 1fr; }
  .mw-statband__grid { grid-template-columns: 1fr; }
  .mw-tile { height: 220px; }
  .mw-hero__badge { font-size: var(--fs-2xs); padding: 7px 16px; }
  .mw-connect { padding: 60px 0; }
}

/* ---------- Motion preference ---------- */

@media (prefers-reduced-motion: reduce) {
  .mw-tile, .mw-tile__img, .mw-partner, .mw-diff__icon, .mw-diff__num, .mw-submit { transition: none; }
  .mw-tile:hover, .mw-partner:hover, .mw-submit:hover { transform: none; }
  .mw-tile:hover .mw-tile__img { transform: none; }
  .mw-diff__row:hover .mw-diff__icon { transform: none; }
}
