/* ============================================================
   Marshall Institute — Homepage Stylesheet
   /assets/css/home.css

   Loaded ONLY on the homepage. Contains:
   - Hero band with concierge search
   - Concierge result panel
   ============================================================ */

/* ── HERO ── */
.hero {
  background: linear-gradient(140deg, #0d1c2c 0%, #112030 55%, #091520 100%);
  padding: 64px 40px 70px; /* was 80px/88px; Variant B, President's review 2026-07-06 */
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,.08) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mi-gold);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp .6s .1s forwards;
}
/* === Hero eyebrow inline accent line === */
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #D87629;
  flex-shrink: 0;
}
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 4.7vw, 58px); /* was clamp(40px, 5.5vw, 68px); Variant B */
  line-height: .98;
  text-transform: uppercase;
  color: var(--mi-white);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp .6s .2s forwards;
}
.hero-tagline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp .6s .3s forwards;
}
.hero-tagline-top {
  font-size: 20px; /* was 22px; Variant B */
  color: rgba(255,255,255,.6);
  line-height: 1.3;
  font-style: italic;
}
.hero-tagline-top strong { color: var(--mi-gold); font-weight: 700; }
.hero-tagline-bottom { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.5; } /* was 18px; Variant B */
.hero-tagline-v2v {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  display: block;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .6s .4s forwards;
}

/* ── CONCIERGE ── */
.concierge-section { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.concierge-eyebrow { display: flex; align-items: center; gap: 10px; }
.concierge-label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--mi-orange);
}
.concierge-label em { font-style: italic; }
.concierge-badge {
  background: var(--mi-orange);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
}
.concierge-bar {
  width: 100%;
  max-width: 780px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(216,118,41,.35);
  border-radius: 999px;
  padding: 8px 8px 8px 28px;
  height: 68px;
  transition: border-color .2s, box-shadow .2s;
}
.concierge-bar:focus-within {
  border-color: rgba(216,118,41,.75);
  box-shadow: 0 0 28px rgba(216,118,41,.12);
}
.concierge-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--mi-white);
  letter-spacing: .02em;
}
.concierge-input::placeholder { color: rgba(255,255,255,.3); font-style: italic; }
.concierge-submit {
  background: var(--mi-orange);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  padding: 0 30px;
  height: 50px;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}
.concierge-submit:hover { background: var(--mi-orange-dark); }
.concierge-hint {
  font-size: 13px; /* was 11px */
  color: rgba(255,255,255,.65); /* was rgba(255,255,255,.25) */
  letter-spacing: .04em;
  font-style: italic;
}

/* ── CHIPS ── */
/* Two explicit rows (home.js renders two .concierge-chip-row divs; row 2 is
   Seminars + Certifications). Same 6px gap between chips and between rows.
   Rows may wrap internally on narrow screens; the row split always holds. */
.concierge-chips { display: flex; flex-direction: column; gap: 6px; align-items: center; margin-top: 4px; }
.concierge-chip-row { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.chip {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 7px 18px; /* was 5px 14px */
  font-size: 12px; /* was 11px */
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: all .15s;
  letter-spacing: .04em;
}
.chip:hover {
  background: rgba(216,118,41,.12);
  border-color: rgba(216,118,41,.4);
  color: var(--mi-orange);
}

/* === Concierge results — inline preview === */
.concierge-results {
  display: none;
  width: 100%;
  max-width: 480px;
  background: rgba(10,15,26,0.97);
  border: 1.5px solid rgba(216,118,41,0.3);
  border-radius: 12px;
  margin-top: 8px;
  overflow: hidden;
}
.concierge-results.visible { display: block; }

/* === Modal mode — full overlay === */
.concierge-results.modal-mode {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 600px;
  max-width: 90vw;
  max-height: 70vh;
  overflow-y: auto;
  z-index: 99999;
  margin-top: 0;
}

/* Click-outside backdrop that pairs with .concierge-results.modal-mode */
.concierge-results-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 10;
}
.concierge-results-overlay.visible { display: block; }

/* === Show more button === */
.concierge-show-more {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: rgba(216,118,41,0.1);
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #D87629;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
}
.concierge-show-more:hover {
  background: rgba(216,118,41,0.2);
}

/* === Close button in modal === */
.results-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 16px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}
.results-close:hover {
  color: rgba(255,255,255,0.8);
}

.results-header {
  padding: 12px 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.results-header-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mi-orange);
}
.results-count { font-size: 11px; color: rgba(255,255,255,.5); }
.result-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  transition: background .15s;
}
.result-item:last-child { border-bottom: none; }
.result-item:hover { background: rgba(216,118,41,.06); }
.result-item.pinned {
  background: rgba(216,118,41,.04);
  border-left: 3px solid var(--mi-orange);
  padding-left: 17px;
}
.result-icon {
  width: 34px; height: 34px;
  border-radius: 6px;
  background: rgba(216,118,41,.12);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-top: 2px;
}
.result-icon.pinned-icon { background: rgba(216,118,41,.2); }
.result-body { flex: 1; }
.result-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--mi-white);
  margin-bottom: 2px;
  line-height: 1.3;
}
.result-url {
  font-size: 11px;
  color: var(--mi-orange);
  letter-spacing: .03em;
  margin-bottom: 3px;
}
.result-desc { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.45; }
.result-pin-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mi-orange);
  background: rgba(216,118,41,.15);
  padding: 2px 6px;
  border-radius: 3px;
  align-self: center;
  flex-shrink: 0;
}
.result-arrow { color: rgba(255,255,255,.2); font-size: 16px; flex-shrink: 0; align-self: center; }
.no-results { padding: 20px 24px; font-size: 13px; color: rgba(255,255,255,.5); font-style: italic; }

/* ── No Results card ── */
.mi-no-results {
  background: var(--mi-white);
  border: 1.5px solid rgba(216,118,41,.3);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.mi-no-results-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.mi-no-results-icon svg { width: 36px; height: 36px; }
.mi-no-results-main { font-size: 16px; color: var(--mi-grey-800); line-height: 1.4; }
.mi-no-results-main strong { color: var(--mi-dark-teal); font-weight: 700; }
.mi-no-results-tip { font-size: 13px; color: rgba(0,0,0,0.5); line-height: 1.6; max-width: 380px; } /* was rgba(255,255,255,0.5) — invisible on white card */
.mi-no-results-tip em { color: var(--mi-orange); font-style: normal; font-weight: 600; }
.mi-no-results-divider { width: 40px; height: 1px; background: rgba(0,0,0,.1); margin: 4px 0; }
.mi-no-results-help { font-size: 14px; font-weight: 600; color: var(--mi-dark-teal); }
.mi-no-results-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }
.mi-no-results-btn {
  background: var(--mi-dark-teal);
  color: var(--mi-white);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s;
  white-space: nowrap;
}
.mi-no-results-btn:hover { background: #0f3f49; }
.mi-no-results-btn-outline { background: transparent; color: var(--mi-dark-teal); border: 1.5px solid rgba(4,36,51,.25); }
.mi-no-results-btn-outline:hover { background: rgba(4,36,51,.05); border-color: var(--mi-dark-teal); }


/* ── Hero animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero-top { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .hero { padding: 56px 20px 64px; }
  .editor-panel { width: 100%; }
}


/* ════════════════════════════════════════════════════════════════════
   HOMEPAGE — BELOW-HERO SECTION STACK
   ════════════════════════════════════════════════════════════════════
   Hero + concierge styling above this comment is locked — those rules
   (lines 11–104) are not to be touched.

   Section stack: A What We Do (white) → B Proven Results (Mist) →
   C TPR360 System (white) → D Insights & Events (Mist) →
   E Industries (white, preserved) → F Final CTA (.mi-cta-strip shared) →
   G Newsletter (Mist, preserved).
   ════════════════════════════════════════════════════════════════════ */

/* — Section shell shared by A/C/D — */
.mi-home-section { padding: 88px 24px; }
.mi-home-section--mist { background: #EEF4F9; }
.mi-home-section--white { background: var(--mi-white); }
.mi-home-section-inner { max-width: 1200px; margin: 0 auto; }
.mi-home-section-header { margin-bottom: 48px; }
.mi-home-section-header--center { text-align: center; }
.mi-home-section-header .mi-eyebrow,
.mi-home-section-header .section-eyebrow { margin-bottom: 8px; }
.mi-home-section-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 3.4vw, 42px);
  text-transform: uppercase;
  color: var(--mi-dark-teal);
  line-height: 1.12;
  letter-spacing: -.005em;
  margin: 0;
}

/* ──── SECTION A — What We Do ────
   Service-card treatment mirrors .mi-hub-svc-card from the implementation
   index (orange 3px top stripe + 1px Mist border + elevation + hover lift)
   — kept page-local per the family precedent (see WM/CMP/hub all do this). */
.mi-home-svcs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mi-home-svc-card {
  background: var(--mi-white);
  border: 1px solid #EEF4F9;
  border-top: 3px solid #D87629;
  border-radius: 6px;
  padding: 32px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.mi-home-svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.09);
}
.mi-home-svc-icon {
  color: #D87629;
  width: 40px;
  height: 40px;
  display: block;
  transition: transform .18s ease;
}
.mi-home-svc-icon svg { width: 100%; height: 100%; stroke-width: 1.75; }
.mi-home-svc-card:hover .mi-home-svc-icon { transform: scale(1.08); }
.mi-home-svc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--mi-dark-teal);
  line-height: 1.2;
  letter-spacing: -.005em;
  margin: 0;
}
.mi-home-svc-desc {
  font-size: 15px;
  color: var(--mi-grey-700);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.mi-home-svc-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mi-orange);
  margin-top: 4px;
}
.mi-home-svc-link::after { content: ' \2192'; transition: transform .18s ease; display: inline-block; }
.mi-home-svc-card:hover .mi-home-svc-link::after { transform: translateX(3px); }

/* ──── SECTION B — Proven Results ────
   Reuses .mi-cs-stat-band / .mi-cs-stat-row / .mi-cs-stat from
   case-study.css. Page-local additions only: link styling on the wrapper
   <a>, the orange uppercase sublabel, and the centered closing CTA. */
a.mi-cs-stat { text-decoration: none; color: inherit; transition: transform .18s ease; }
a.mi-cs-stat:hover { transform: translateY(-2px); }
.mi-home-stat-source {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mi-orange);
  margin-top: 10px;
}
.mi-home-stat-band-cta { text-align: center; margin-top: 36px; }
.mi-home-stat-band-cta a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mi-orange);
  text-decoration: none;
}
.mi-home-stat-band-cta a:hover { color: var(--mi-orange-dark); }

/* ──── SECTION C — TPR360 System ──── */
.mi-home-tpr-body {
  font-size: 17px;
  color: var(--mi-grey-800);
  line-height: 1.7;
  margin: 0 auto 44px;
  max-width: 820px;
  text-align: center;
}
.mi-home-tpr-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 32px;
}
.mi-home-tpr-point {
  border-top: 3px solid var(--mi-orange);
  padding-top: 18px;
}
.mi-home-tpr-point-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--mi-dark-teal);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.mi-home-tpr-point-p {
  font-size: 15px;
  color: var(--mi-grey-700);
  line-height: 1.6;
  margin: 0;
}
.mi-home-tpr-cta { text-align: center; }
.mi-home-tpr-cta a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mi-orange);
  text-decoration: none;
}

/* ──── SECTION D — Insights & Events ────
   #mi-blog-grid hosts 2 Ghost-fetched blog cards (existing .mi-blog-card
   styling in main.css — dark navy with orange CTA). The seminar tile sits
   beside them at .mi-home-event-card with a steel-blue treatment so it
   reads as event, not article. */
.mi-home-insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.mi-home-insights-grid #mi-blog-grid {
  display: contents; /* lets Ghost-fetched cards lay out as direct grid items */
}
.mi-home-event-card {
  background: #26406B;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
  text-decoration: none;
  color: var(--mi-white);
}
.mi-home-event-card:hover { border-color: rgba(245,166,35,.45); transform: translateY(-3px); }
.mi-home-event-banner {
  background: var(--mi-dark-teal);
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mi-home-event-banner-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mi-gold);
  position: absolute;
  top: 12px;
}
.mi-home-event-month {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mi-orange);
}
.mi-home-event-day {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--mi-white);
  line-height: 1;
  letter-spacing: -.02em;
}
.mi-home-event-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.mi-home-event-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.mi-home-event-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--mi-white);
  line-height: 1.25;
}
.mi-home-event-meta {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}
.mi-home-event-cta {
  font-size: 11px;
  font-weight: 700;
  color: var(--mi-gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 8px;
}
.mi-home-insights-footer { text-align: center; margin-top: 32px; }
.mi-home-insights-footer a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mi-orange);
  text-decoration: none;
}

/* ──── Responsive — all below-hero sections collapse to 1 col ≤900px ──── */
@media (max-width: 900px) {
  .mi-home-svcs-grid,
  .mi-home-tpr-points,
  .mi-home-insights-grid { grid-template-columns: 1fr; }
  .mi-home-section { padding: 64px 24px; }
}
@media (max-width: 600px) {
  .mi-home-section { padding: 56px 20px; }
}

/* ════════════════════════════════════════════════════════════════════
   HOMEPAGE RESTRUCTURE (2026-07-04)
   Tokens per notes/design-standards.md. Brand navy/orange/gold/white only
   (deliberately NOT pastel). Adds: (A) 4-phase cycle infographic, and the
   combined (B/C/D) TPR360 promo "ad" + stacked Proven Results / Insights.
   ════════════════════════════════════════════════════════════════════ */

/* ──── SECTION A — 4-phase transformation cycle ──── */
/* Subtle mist wash panel differentiates the cycle from the white section
   and lets the white phase cards pop. */
.mi-cycle {
  max-width: 960px; margin: 0 auto;
  background: #EEF4F9;
  border-radius: 18px;
  padding: 46px 48px 50px;
}
/* Full-width horizontal bands stacked 1→4, connected by an orange rail on
   the left with a down-arrow in each gap; a navy "Continuous Improvement"
   pill + return arrow close the loop below band 4. */
.mi-cycle-flow {
  position: relative;
  display: flex; flex-direction: column; gap: 26px;
  padding-left: 46px;                  /* corridor for the rail */
}
.mi-cycle-flow::before {               /* the rail: band 1 top → band 4 bottom */
  content: '';
  position: absolute; left: 14px; top: 24px; bottom: 70px;
  width: 3px; border-radius: 2px;
  background: var(--mi-orange);
}
.mi-cycle-band {
  position: relative;
  display: flex; align-items: center; gap: 32px;
  background: var(--mi-white);
  border: 1px solid #dbe6ee;
  border-radius: 10px;
  padding: 20px 28px;
  /* Thin light-steel top line (lightened #26406B) via inset shadow: keeps the
     full hairline border + rounded corners, counterbalances the orange rail. */
  box-shadow: 0 4px 14px rgba(4,36,51,.06), inset 0 2px 0 #B9C7DB;
}
/* Down-arrow on the rail in each between-band gap (bands 2-4 draw the arrow
   above themselves; sibling selector so the return row is never matched). */
.mi-cycle-band + .mi-cycle-band::before {
  content: '';
  position: absolute; left: -38px; top: -18px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid var(--mi-orange);
}
.mi-cycle-band-lead { flex: 0 0 220px; }
.mi-cycle-phase-head { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.mi-cycle-num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--mi-orange);
  color: var(--mi-white);
  border-radius: 50%;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 21px; line-height: 1;
}
.mi-cycle-icon { flex-shrink: 0; width: 30px; height: 30px; display: block; }
.mi-cycle-icon svg { width: 100%; height: 100%; display: block; }
.mi-cycle-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 24px;
  text-transform: uppercase; letter-spacing: -.005em;
  color: var(--mi-dark-teal);
  margin: 0;
}
.mi-cycle-desc {
  font-size: 14px; font-style: italic;
  color: var(--mi-grey-700); line-height: 1.45;
  margin: 0;                           /* last element in the band lead */
}
.mi-cycle-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
/* Bands with >2 bullets split them into two columns at full width.
   Column flow (rows defined, auto-flow column) so bullets read top-to-bottom
   down the first column before wrapping to the second. */
.mi-cycle-list--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  gap: 8px 28px;
}
.mi-cycle-list li {
  position: relative; padding-left: 20px;
  font-size: 14.5px; color: var(--mi-grey-700); line-height: 1.45;
}
.mi-cycle-list li::before {
  content: ''; position: absolute; left: 2px; top: 8px;
  width: 7px; height: 7px; background: var(--mi-orange); border-radius: 50%;
}
/* Loop closure below band 4: return arrow curving from the pill back up
   toward the rail (negative margin pulls the curve over the rail column). */
.mi-cycle-return {
  display: flex; align-items: center; gap: 12px;
  margin-left: -41px;
  min-height: 44px;
}
.mi-cycle-return-arrow { flex: 0 0 44px; width: 44px; height: 44px; }
.mi-cycle-return-arrow svg { width: 100%; height: 100%; display: block; }
.mi-cycle-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--mi-dark-teal); color: var(--mi-gold);
  border-radius: 999px; padding: 10px 22px;
  box-shadow: 0 6px 18px rgba(4,36,51,.18);
}
.mi-cycle-pill-icon { flex-shrink: 0; width: 17px; height: 17px; }
.mi-cycle-pill-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.88);
  line-height: 1;
}
/* Trust points (moved here from TPR360) get separation above. */
.mi-home-why-points { margin-top: 60px; }

/* ──── SECTION B/C — TPR360 promo + Proven Results on a dark band ──── */
/* Inverted contrast (2026-07-04): the SECTION carries the navy treatment,
   the TPR360 card goes white, Proven Results is a ghost panel on the band.
   Band = flat navy fallback (background-color paints first), then a strong
   navy overlay over a low-opacity plant image so it reads navy-with-texture,
   never busy. Image: hero-bg pool, AdobeStock_714646211 (technician at a
   machine line, blue-toned; unused by any page hero). */
.mi-home-showcase-band {
  background-color: var(--mi-dark-teal);
  background-image:
    linear-gradient(rgba(4, 36, 51, 0.93), rgba(4, 36, 51, 0.96)),
    url('/assets/img/hero-bg/AdobeStock_714646211.jpeg');
  background-size: cover;
  background-position: center;
}
.mi-home-showcase-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;      /* ~60 / 40 */
  gap: 40px;
  align-items: stretch;                /* Proven Results panel matches TPR360 ad height */
}
/* TPR360 promo: white card on the band. Navy headline, steel body,
   orange CTA (btn-gold markup unchanged). */
.mi-tpr-ad {
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--mi-white);
  border: 1px solid #e3ebf1;
  border-radius: 14px;
  padding: 44px 40px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}
.mi-tpr-ad-logo { width: 210px; max-width: 62%; height: auto; margin-bottom: 26px; }
.mi-tpr-ad-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--mi-orange); margin: 0 0 10px;
}
.mi-tpr-ad-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(26px, 2.4vw, 34px);
  text-transform: uppercase; line-height: 1.1; letter-spacing: -.005em;
  color: var(--mi-dark-teal); margin: 0 0 18px;
}
.mi-tpr-ad-body { font-size: 16px; line-height: 1.7; color: #4A6274; margin: 0 0 30px; }
.mi-tpr-ad-cta { margin-top: auto; }

.mi-home-showcase-side { display: flex; flex-direction: column; gap: 28px; }
.mi-home-side-panel {
  flex: 1;                             /* fill the stretched column; stats center in the extra room */
  display: flex; flex-direction: column;
  background: var(--mi-white);
  border: 1px solid #e3ebf1;
  border-radius: 12px;
  padding: 28px 26px;
  box-shadow: 0 2px 10px rgba(4,36,51,.05);
}
.mi-home-side-head { margin-bottom: 18px; }
.mi-home-side-head .mi-eyebrow { margin-bottom: 6px; }
.mi-home-side-h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 24px;
  text-transform: uppercase; letter-spacing: -.005em;
  color: var(--mi-dark-teal); line-height: 1.1; margin: 0;
}
.mi-home-side-stats { display: flex; flex-direction: column; justify-content: center; flex: 1; }
.mi-home-side-stat {
  display: flex; align-items: baseline; gap: 16px;
  padding: 13px 4px;
  border-bottom: 1px solid #eef2f5;
  text-decoration: none; color: inherit;
  transition: background .15s ease;
}
.mi-home-side-stat:last-child { border-bottom: 0; }
.mi-home-side-stat:hover { background: rgba(216,118,41,.05); }
.mi-home-side-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 34px; line-height: 1;
  color: var(--mi-orange); flex-shrink: 0; min-width: 82px;
}
.mi-home-side-stat-text { display: flex; flex-direction: column; gap: 3px; }
.mi-home-side-stat-label { font-size: 14.5px; color: var(--mi-grey-800); line-height: 1.35; }
.mi-home-side-stat-source {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mi-orange);
}
.mi-home-side-cta { margin-top: 18px; }
.mi-home-side-cta a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--mi-orange); text-decoration: none;
}
.mi-home-side-cta a:hover { color: var(--mi-orange-dark); }
/* Proven Results as a ghost/outline panel on the dark band: thin light
   border, gold stat numbers, white/light-steel text. Scoped so the panel
   classes stay reusable on light backgrounds. */
.mi-home-showcase-band .mi-home-side-panel {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.30);
  box-shadow: none;
}
.mi-home-showcase-band .mi-home-side-head .mi-eyebrow { color: var(--mi-gold); }
.mi-home-showcase-band .mi-home-side-h3 { color: var(--mi-white); }
.mi-home-showcase-band .mi-home-side-stat { border-bottom-color: rgba(255, 255, 255, 0.14); }
.mi-home-showcase-band .mi-home-side-stat:hover { background: rgba(255, 255, 255, 0.06); }
.mi-home-showcase-band .mi-home-side-stat-num { color: var(--mi-gold); }
.mi-home-showcase-band .mi-home-side-stat-label { color: #C7D3DC; }
.mi-home-showcase-band .mi-home-side-stat-source { color: var(--mi-gold); }
.mi-home-showcase-band .mi-home-side-cta a { color: var(--mi-gold); }
.mi-home-showcase-band .mi-home-side-cta a:hover { color: var(--mi-white); }
/* Insights: full-width white section below the dark band. Reuses the
   side-panel head/CTA type treatment; the grid itself is the shared
   3-across .mi-home-insights-grid (stacks ≤900px). No margin-top: it is
   its own section since the band restyle, so section padding spaces it. */
.mi-home-insights-full { margin-top: 0; }
.mi-home-insights-full .mi-home-side-cta { margin-top: 24px; text-align: center; }

/* ──── Responsive ──── */
@media (max-width: 900px) {
  /* Cycle bands: rail hides, bands stack with a downward chevron between
     each (band 4's chevron points into the pill row), lead stacks above
     the bullets, 2-col bullet lists collapse to one column. */
  .mi-cycle { padding: 26px 18px 30px; border-radius: 14px; }
  .mi-cycle-flow { padding-left: 0; gap: 24px; }
  .mi-cycle-flow::before,
  .mi-cycle-band + .mi-cycle-band::before { content: none; }
  .mi-cycle-band { flex-direction: column; align-items: stretch; gap: 12px; padding: 20px; }
  .mi-cycle-band-lead { flex: none; }
  .mi-cycle-band::after {
    content: '\2193';
    position: absolute; left: 50%; bottom: -19px; transform: translateX(-50%);
    color: var(--mi-orange); font-size: 20px; font-weight: 700; line-height: 1;
  }
  .mi-cycle-list--2col { display: flex; flex-direction: column; gap: 8px; }
  .mi-cycle-return { margin-left: 0; justify-content: center; }
  .mi-cycle-return-arrow { display: none; }
  .mi-home-why-points { margin-top: 40px; }
  /* Showcase stacks: TPR360 → Proven Results → Insights. */
  .mi-home-showcase-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .mi-tpr-ad { padding: 34px 26px; }
}
