/* ═══════════════════════════════════════════════════════════
   MigrationProvision — iOS-clean overlay
   Layered ON TOP of refresh.css to bring spacing closer to Apple-marketing rhythm:
   bigger headlines, more whitespace, single focal-point per section, fewer words.
═══════════════════════════════════════════════════════════ */

/* Stage backdrop — slightly warmer paper */
body { background: #faf7f0; }

/* ── Display headline (replaces .headline--xl on stripped pages) ── */
.display-headline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.75rem, 5vw + 1rem, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  text-wrap: balance;
}
.display-headline em { font-style: italic; color: var(--c-authority-d); font-weight: 500; }

/* ── Short deck ── 24 words max guideline */
.lede {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(1.1rem, .4vw + 1rem, 1.35rem);
  line-height: 1.55;
  color: var(--text-body);
  max-width: 480px;
  text-wrap: pretty;
}

/* ── Stage section — breathing room, but the page should still start near the header ── */
.stage {
  position: relative;
  padding: clamp(56px, 8vw, 104px) 0;
  overflow: hidden;
}
/* Hero starts close to the slim 64px sticky header — earlier values left a huge dead
   band above the headline. */
.stage--hero {
  padding-top: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(56px, 8vw, 96px);
}
.stage--center { text-align: center; }
.stage--center .lede { margin-left: auto; margin-right: auto; }

/* ── Two-column hero, illustration heavy ── */
.stage-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}
@media (max-width: 980px) {
  .stage-hero { grid-template-columns: 1fr; }
}
.stage-hero__copy { max-width: 540px; }
.stage-hero__visual {
  display: flex; align-items: center; justify-content: center;
}
.stage-hero__visual img,
.stage-hero__visual svg {
  width: 100%;
  height: auto;
  max-width: 520px;
}

/* ── Single CTA pair, big tap-targets ── */
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.cta-row .btn {
  padding: 17px 28px;
  font-size: 16px;
  border-radius: 12px;
}
.cta-row .btn svg { width: 18px; height: 18px; }

/* ── Trust micro-strip (replaces verbose trust block) ── */
.trust-mini {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.trust-mini strong { color: var(--c-ink); font-weight: 600; }

/* ── 3-step / 4-step minimal flow ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
  margin-top: clamp(48px, 6vw, 72px);
}
.steps--4 { grid-template-columns: repeat(4, 1fr); }
.steps--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) {
  .steps, .steps--4, .steps--5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .steps, .steps--4, .steps--5 { grid-template-columns: 1fr; }
}
.step-card {
  padding: 28px 24px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  text-align: left;
  transition: transform .35s cubic-bezier(.2,.6,.3,1), box-shadow .35s ease;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -14px rgba(14,42,71,.18);
}
.step-card__num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--c-authority-d);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.step-card__title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-strong);
  line-height: 1.25;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.step-card__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-body);
}

/* ── Section intro — short, no walls of text ── */
.section-intro {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.section-intro--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.section-intro h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 2.3vw + 1rem, 3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--text-strong);
  margin-bottom: 16px;
}
.section-intro h2 em {
  font-style: italic;
  color: var(--c-authority-d);
  font-weight: 500;
}
.section-intro p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 480px;
  margin: 0 auto;
}
.section-intro--left p { margin-left: 0; }

/* ── Subtle chapter dot (replaces all kicker/chapter-label bars) ── */
.chapter-dot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-slate-600);
  margin-bottom: 18px;
}
.chapter-dot::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-authority);
}

/* ── Sticker price label (single focal price tile) ── */
.price-sticker {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 14px 22px;
  background: var(--c-ink);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-serif);
  letter-spacing: -.01em;
  box-shadow: 0 10px 30px -12px rgba(14,42,71,.4);
}
.price-sticker__amount { font-size: 30px; font-weight: 600; line-height: 1; }
.price-sticker__cents  { font-size: 16px; font-weight: 500; line-height: 1; opacity: .8; }
.price-sticker__label  {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-authority-l);
  margin-left: 10px;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,.18);
}

/* ── Quiet CTA section (replaces the loud cta-banner) ── */
.cta-quiet {
  padding: clamp(72px, 9vw, 120px) 0;
  text-align: center;
}
.cta-quiet h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 2.5vw + 1rem, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--text-strong);
  margin-bottom: 12px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.cta-quiet h2 em { font-style: italic; color: var(--c-authority-d); font-weight: 500; }
.cta-quiet p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 32px;
}
.cta-quiet .btn { padding: 17px 32px; font-size: 16px; border-radius: 12px; }

/* ── Slim footer for stripped pages ── */
.foot-slim {
  padding: 56px 0 32px;
  background: var(--c-ink);
  color: var(--text-on-dark-m);
}
.foot-slim .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  font-size: 13px;
}
.foot-slim .brand .brand__name { color: #fff; }
.foot-slim .brand .brand__sub { color: var(--text-on-dark-m); }
.foot-slim .brand .brand__mark { background: rgba(255,255,255,.08); }
.foot-slim__nav {
  display: flex; gap: 22px; flex-wrap: wrap;
}
.foot-slim__nav a {
  color: var(--text-on-dark-m);
  font-size: 13px;
  transition: color .2s;
}
.foot-slim__nav a:hover { color: #fff; }
.foot-slim__legal {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  color: var(--text-on-dark-m);
  display: flex; flex-wrap: wrap; gap: 20px;
}

/* ── Slim header for stripped pages (less items in nav) ── */
.head-slim {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,240, .9);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.head-slim.is-scrolled {
  background: rgba(250,247,240, .98);
  border-bottom-color: var(--border);
}
.head-slim__inner {
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.head-slim__nav {
  display: flex; gap: 28px;
  align-items: center;
}
.head-slim__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-slate-700);
  transition: color .2s;
}
.head-slim__nav a:hover, .head-slim__nav a.is-active { color: var(--c-ink); }
@media (max-width: 720px) {
  .head-slim__nav { display: none; }
}

/* ── Tiny iOS-style chevron link ── */
.tap-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-ink);
  transition: gap .2s;
}
.tap-link::after {
  content: "›";
  font-size: 20px;
  line-height: 1;
  transition: transform .2s;
  color: var(--c-authority-d);
}
.tap-link:hover { gap: 8px; }
.tap-link:hover::after { transform: translateX(2px); }

/* ── Activity list — concrete what-we-do list, no marketing  ──
   Belt-and-braces against theme bleed: MP_Renderer dequeues the theme stylesheet on MP
   pages, but we also force the native marker off here so a stray theme rule can never
   double up with our own copper ::before dot. */
ul.activity-list,
.activity-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
  display: grid;
  gap: 14px;
}
.activity-list li {
  list-style: none !important;
  position: relative;
  padding-left: 26px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-body);
}
.activity-list li::marker { content: "" !important; }
.activity-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-authority-d);
  box-shadow: 0 0 0 4px rgba(183,138,74,.18);
}

/* ── Trust strip — three plain facts, illustration on top ── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 860px) {
  .trust-strip { grid-template-columns: 1fr; gap: 36px; max-width: 460px; margin: 0 auto; }
}
.trust-strip__item { text-align: center; }
.trust-strip__item img {
  width: 100%;
  max-width: 180px;
  height: 130px;
  object-fit: contain;
  margin: 0 auto 18px;
  display: block;
}
.trust-strip__title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-strong);
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.trust-strip__item p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 320px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════
   Rich footer — replaces .foot-slim on the public pages.
   Four pillars: brand+address, sitemap columns, start-wizard, legal.
══════════════════════════════════════════════════════════════ */
.foot-rich {
  background: #0e2a47;
  color: rgba(255,255,255,.78);
  padding: 72px 0 32px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
}
.foot-rich a { color: rgba(255,255,255,.78); text-decoration: none; transition: color .2s; }
.foot-rich a:hover { color: #fff; }

.foot-rich__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
  gap: 40px 32px;
  align-items: start;
}
@media (max-width: 980px) {
  .foot-rich__grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .foot-rich__wizard { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .foot-rich__grid { grid-template-columns: 1fr; }
}

.foot-rich h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0 0 16px;
}
.foot-rich__col a {
  display: block;
  padding: 4px 0;
}

/* Brand column */
.foot-rich__brand .brand__name { color: #fff; }
.foot-rich__brand .brand__sub  { color: rgba(255,255,255,.55); }
.foot-rich__brand .brand__mark { background: rgba(255,255,255,.08); }
.foot-rich__brand .brand__mark span { color: #fff; }
.foot-rich__address {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.66);
}
.foot-rich__address strong { color: rgba(255,255,255,.88); font-weight: 600; }

/* Start-wizard — mini form right inside the footer */
.foot-rich__wizard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 22px;
}
.foot-rich__wizard h4 { color: #fff; letter-spacing: .04em; text-transform: none; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.foot-rich__wizard p { font-size: 13px; color: rgba(255,255,255,.6); margin: 0 0 16px; }
.foot-rich__wizard .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.foot-rich__wizard label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); font-weight: 600; }
.foot-rich__wizard input,
.foot-rich__wizard select {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
  font: 500 14px var(--font-sans);
  transition: border-color .2s, background .2s;
}
.foot-rich__wizard input::placeholder { color: rgba(255,255,255,.4); }
.foot-rich__wizard input:focus,
.foot-rich__wizard select:focus {
  outline: none;
  border-color: var(--c-authority);
  background: rgba(255,255,255,.1);
}
.foot-rich__wizard select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.4) 50%), linear-gradient(135deg, rgba(255,255,255,.4) 50%, transparent 50%); background-position: right 14px top 16px, right 9px top 16px; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 28px; }
.foot-rich__wizard button {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%;
  background: var(--c-authority-d);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 16px;
  font: 600 14px var(--font-sans);
  cursor: pointer;
  margin-top: 4px;
  transition: background .2s;
}
.foot-rich__wizard button:hover { background: var(--c-authority); }
.foot-rich__wizard button svg { width: 16px; height: 16px; }
.foot-rich__wizard .fine {
  margin-top: 10px;
  font-size: 11px;
  color: rgba(255,255,255,.45);
  text-align: center;
}

/* Bottom legal row */
.foot-rich__legal {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.foot-rich__legal a { font-size: 12px; }
.foot-rich__legal .row-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-rich__legal .disclaimer-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.66);
  font-size: 11px;
  letter-spacing: .04em;
}
.foot-rich__legal .disclaimer-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--c-authority); }
