/* =========================================================================
   Business Transition Partners — Site Styles
   Brand direction: "Ledger" — warm, grounded, calm authority.
   Fonts: Source Serif 4 (headings) + Public Sans (body/UI).
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&family=Public+Sans:wght@400;500;600;700&display=swap');

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* Base palette */
  --pine-900: #16281F;
  --pine-700: #1E3A2E;
  --pine-500: #2C5744;
  --pine-300: #6C8C7D;
  --pine-100: #D7E3DB;

  --copper-700: #8C4A2A;
  --copper-500: #B2683B;
  --copper-300: #D9A57C;
  --copper-100: #F0DCC9;

  --brass-500: #8C7A4B;
  --brass-300: #C2B183;

  --ink-900: #211E1A;
  --ink-700: #4A453D;
  --ink-500: #766F63;
  --ink-300: #A9A297;

  --sand-050: #FBF9F5;
  --sand-100: #F7F3EC;
  --sand-200: #ECE5D8;
  --sand-300: #DED4C1;
  --white: #FFFFFF;

  /* Semantic aliases */
  --brand-primary: var(--pine-700);
  --brand-primary-dark: var(--pine-900);
  --brand-primary-light: var(--pine-100);
  --brand-accent: var(--copper-500);
  --brand-accent-dark: var(--copper-700);
  --brand-accent-light: var(--copper-100);
  --brand-tertiary: var(--brass-500);

  --text-primary: var(--ink-900);
  --text-secondary: var(--ink-700);
  --text-muted: var(--ink-500);
  --text-on-dark: var(--sand-050);
  --text-on-dark-muted: var(--pine-100);

  --surface-page: var(--sand-050);
  --surface-card: var(--white);
  --surface-subtle: var(--sand-100);
  --surface-dark: var(--pine-900);
  --surface-border: var(--sand-300);

  --link: var(--pine-700);
  --link-hover: var(--copper-700);

  /* Typography */
  --font-heading: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-body: 'Public Sans', -apple-system, 'Segoe UI', sans-serif;
  --tracking-eyebrow: 0.14em;
  --tracking-wordmark: 0.04em;

  /* Layout */
  --maxw: 1160px;
  --maxw-narrow: 760px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(33,30,26,.06), 0 2px 8px rgba(33,30,26,.05);
  --shadow-md: 0 6px 24px rgba(22,40,31,.10);
  --shadow-lg: 0 20px 60px rgba(22,40,31,.18);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--link); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--link-hover); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; color: var(--text-primary); margin: 0 0 .5em; line-height: 1.15; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }

/* ---- Layout helpers ----------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--maxw-narrow); }
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--subtle { background: var(--surface-subtle); }
.section--dark { background: var(--surface-dark); color: var(--text-on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--sand-050); }

.eyebrow {
  display: inline-block;
  font: 600 13px/1.4 var(--font-body);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--copper-700);
  margin-bottom: 16px;
}
.section--dark .eyebrow { color: var(--copper-300); }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lead { font-size: 19px; line-height: 1.6; color: var(--text-secondary); }
.section--dark .lead { color: var(--text-on-dark-muted); }

h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-size: clamp(28px, 3.6vw, 36px); line-height: 1.18; }
h3 { font-size: 24px; line-height: 1.3; }
h4 { font-family: var(--font-body); font-size: 19px; font-weight: 600; line-height: 1.35; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: 600 16px/1 var(--font-body);
  padding: 15px 26px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--copper-500); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--copper-700); color: var(--white); box-shadow: var(--shadow-md); }
.btn--pine { background: var(--pine-700); color: var(--sand-050); }
.btn--pine:hover { background: var(--pine-900); color: var(--sand-050); }
.btn--ghost { background: transparent; color: var(--pine-700); border-color: var(--surface-border); }
.btn--ghost:hover { border-color: var(--pine-500); color: var(--pine-900); background: var(--white); }
.section--dark .btn--ghost,
.hero .btn--ghost { color: var(--sand-050); border-color: rgba(215,227,219,.35); }
.section--dark .btn--ghost:hover,
.hero .btn--ghost:hover { background: rgba(255,255,255,.08); color: var(--white); border-color: var(--pine-100); }
/* Ghost buttons on the dark CTA band: brand copper (orange) text so the
   label is legible without hovering. */
.cta-band .btn--ghost { color: var(--copper-300); border-color: rgba(217,165,124,.5); }
.cta-band .btn--ghost:hover { background: rgba(217,165,124,.14); color: var(--copper-100); border-color: var(--copper-300); }
.btn--lg { padding: 17px 32px; font-size: 17px; }
.btn--block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.btn-arrow { transition: transform .18s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---- Header / Nav ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,249,245,.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--surface-border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand-lockup { display: flex; align-items: center; gap: 12px; }
.brand-lockup img { width: 40px; height: 40px; }
.brand-lockup .wm { display: flex; flex-direction: column; line-height: 1.05; }
.brand-lockup .wm b {
  font-family: var(--font-heading); font-weight: 600; font-size: 17px;
  color: var(--pine-900); letter-spacing: .01em;
}
.brand-lockup .wm span {
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-500); font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--ink-700); font-weight: 500; font-size: 15.5px; }
.nav-links a:hover, .nav-links a.active { color: var(--pine-900); }
.nav-links a.active { color: var(--copper-700); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--pine-900); margin: 5px 0; transition: .2s var(--ease); border-radius: 2px; }

/* ---- Hero --------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--pine-900) 0%, var(--pine-700) 62%, #234436 100%);
  color: var(--text-on-dark);
  padding: 96px 0 104px;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 500px at 78% -10%, rgba(178,104,59,.24), transparent 60%),
    radial-gradient(700px 400px at 8% 110%, rgba(44,87,68,.5), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero .eyebrow { color: var(--copper-300); }
.hero h1 { color: var(--sand-050); margin-bottom: 20px; }
.hero p.lead { color: var(--pine-100); max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-note { margin-top: 22px; font-size: 14px; color: var(--pine-300); }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-medallion {
  width: min(360px, 80%); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(215,227,219,.10), rgba(22,40,31,.0) 70%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-medallion::before {
  content: ""; position: absolute; inset: 6%; border-radius: 50%;
  border: 1px solid rgba(215,227,219,.18);
}
.hero-medallion img { width: 74%; filter: drop-shadow(0 18px 40px rgba(0,0,0,.35)); }

/* ---- Trust bar ---------------------------------------------------------- */
.trustbar { background: var(--pine-900); color: var(--pine-100); border-top: 1px solid rgba(215,227,219,.10); }
.trustbar .container { display: flex; flex-wrap: wrap; gap: 20px 48px; justify-content: center; padding-top: 22px; padding-bottom: 22px; }
.trustbar .stat { text-align: center; }
.trustbar .stat b { display: block; font-family: var(--font-heading); font-size: 26px; color: var(--copper-300); line-height: 1.1; }
.trustbar .stat span { font-size: 13px; letter-spacing: .04em; color: var(--pine-100); }

/* ---- Cards / grids ------------------------------------------------------ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card--hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--pine-300); }
.card h3 { font-size: 21px; }
.card p:last-child { margin-bottom: 0; }

.card-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px; margin-bottom: 18px;
  background: var(--copper-100); color: var(--copper-700);
  font: 600 17px/1 var(--font-heading);
}
.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 18px;
  background: var(--pine-100); color: var(--pine-700);
}
.icon-badge svg { width: 24px; height: 24px; }

/* Feature list with check marks */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--text-secondary); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px;
  background: var(--copper-500);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}
.section--dark .checklist li { color: var(--pine-100); }

/* ---- Split feature ------------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--narrow-img { grid-template-columns: 1.1fr .9fr; }

/* ---- Problem / solution list ------------------------------------------- */
.pain-list { display: grid; gap: 16px; }
.pain-item {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start;
  padding: 20px 22px; background: var(--surface-card);
  border: 1px solid var(--surface-border); border-radius: var(--radius);
}
.pain-item .q { color: var(--pine-900); font-weight: 600; }
.pain-item .a { color: var(--text-muted); font-size: 15px; }
.pain-item .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--copper-500); margin-top: 8px; }

/* ---- Team --------------------------------------------------------------- */
.team-card { text-align: left; }
.team-card .avatar {
  width: 84px; height: 84px; border-radius: 50%; margin-bottom: 18px;
  background: var(--pine-100); color: var(--pine-700);
  display: flex; align-items: center; justify-content: center;
  font: 600 26px/1 var(--font-heading); overflow: hidden;
}
.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 20px; margin-bottom: 2px; }
.team-card .role { color: var(--copper-700); font-weight: 600; font-size: 14px; letter-spacing: .02em; margin-bottom: 12px; }
.team-card p { font-size: 15px; color: var(--text-secondary); margin-bottom: 0; }

/* ---- CTA band ----------------------------------------------------------- */
.cta-band {
  background: linear-gradient(150deg, var(--pine-900), var(--pine-700));
  color: var(--text-on-dark); border-radius: var(--radius-lg);
  padding: 56px; position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 90% 10%, rgba(178,104,59,.28), transparent 60%);
}
.cta-band .container-inner { position: relative; z-index: 1; }
.cta-band h2 { color: var(--sand-050); max-width: 18ch; }
.cta-band p { color: var(--pine-100); max-width: 52ch; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { background: var(--pine-900); color: var(--pine-100); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer .brand-lockup .wm b { color: var(--sand-050); }
.site-footer .brand-lockup .wm span { color: var(--pine-300); }
.site-footer p { color: var(--pine-300); font-size: 15px; max-width: 34ch; }
.footer-col h5 { font: 600 13px/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: var(--pine-300); margin: 0 0 16px; }
.footer-col a { display: block; color: var(--pine-100); margin-bottom: 10px; font-size: 15px; }
.footer-col a:hover { color: var(--copper-300); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(215,227,219,.14);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--pine-300);
}

/* ---- Tagline strip ------------------------------------------------------ */
.tagline { font-family: var(--font-heading); font-style: italic; color: var(--copper-300); font-size: 20px; }

/* ---- Reveal animation --------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- Page hero (interior) ---------------------------------------------- */
.page-hero { background: linear-gradient(160deg, var(--pine-900), var(--pine-700)); color: var(--text-on-dark); padding: 72px 0 64px; }
.page-hero .eyebrow { color: var(--copper-300); }
.page-hero h1 { color: var(--sand-050); }
.page-hero p { color: var(--pine-100); max-width: 60ch; font-size: 19px; }

/* =========================================================================
   Blueprint assessment
   ========================================================================= */
.bp-shell { max-width: 780px; margin: 0 auto; }
.bp-progress { margin-bottom: 28px; }
.bp-progress-bar { height: 8px; background: var(--sand-200); border-radius: 99px; overflow: hidden; }
.bp-progress-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--copper-500), var(--copper-700)); border-radius: 99px; transition: width .4s var(--ease); }
.bp-progress-meta { display: flex; justify-content: space-between; margin-top: 10px; font-size: 13px; color: var(--text-muted); }
.bp-progress-meta b { color: var(--pine-700); }

.bp-card {
  background: var(--surface-card); border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 40px;
}
.bp-step-eyebrow { color: var(--copper-700); font: 600 12px/1.4 var(--font-body); letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; margin-bottom: 10px; }
.bp-q { font-family: var(--font-heading); font-size: 24px; font-weight: 600; color: var(--pine-900); margin-bottom: 6px; }
.bp-help { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; }

.bp-options { display: grid; gap: 12px; }
.bp-options.cols-2 { grid-template-columns: 1fr 1fr; }
.bp-option {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 18px; border: 1.5px solid var(--surface-border); border-radius: var(--radius);
  background: var(--sand-050); color: var(--text-secondary); font-size: 15.5px; font-weight: 500;
  transition: .16s var(--ease); text-align: left;
}
.bp-option:hover { border-color: var(--pine-300); background: var(--white); }
.bp-option .tick { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--ink-300); flex: none; transition: .16s var(--ease); position: relative; }
.bp-option.sel { border-color: var(--copper-500); background: var(--copper-100); color: var(--pine-900); }
.bp-option.sel .tick { border-color: var(--copper-500); background: var(--copper-500); }
.bp-option.sel .tick::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--white); }

.bp-textarea, .bp-input {
  width: 100%; padding: 14px 16px; font-family: inherit; font-size: 15.5px;
  border: 1.5px solid var(--surface-border); border-radius: var(--radius); background: var(--sand-050); color: var(--text-primary);
  resize: vertical;
}
.bp-textarea:focus, .bp-input:focus { outline: none; border-color: var(--copper-500); background: var(--white); }

.bp-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 12px; }
.bp-back { background: none; border: 0; color: var(--text-muted); font-weight: 600; font-size: 15px; padding: 8px; }
.bp-back:hover { color: var(--pine-900); }
.bp-back[hidden] { visibility: hidden; }

.bp-intro-points { display: grid; gap: 14px; margin: 26px 0 30px; }
.bp-intro-points li { list-style: none; }

/* Results */
.bp-results { display: none; }
.bp-results.show { display: block; }
.bp-hero-score {
  background: linear-gradient(150deg, var(--pine-900), var(--pine-700));
  color: var(--sand-050); border-radius: var(--radius-lg); padding: 40px;
  display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center; margin-bottom: 28px;
  position: relative; overflow: hidden;
}
.bp-hero-score::after { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 260px at 92% 8%, rgba(178,104,59,.30), transparent 60%); }
.bp-gauge { position: relative; z-index: 1; width: 168px; height: 168px; }
.bp-hero-score .meta { position: relative; z-index: 1; }
.bp-hero-score .eyebrow { color: var(--copper-300); }
.bp-hero-score h2 { color: var(--sand-050); font-size: 28px; margin-bottom: 8px; }
.bp-hero-score p { color: var(--pine-100); margin-bottom: 0; }
.bp-timeframe-pill { display: inline-block; margin-top: 14px; padding: 7px 14px; border-radius: 99px; background: rgba(215,227,219,.14); color: var(--sand-050); font-size: 13.5px; font-weight: 600; border: 1px solid rgba(215,227,219,.2); }

.bp-indices { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.bp-index { background: var(--surface-card); border: 1px solid var(--surface-border); border-radius: var(--radius); padding: 20px 22px; }
.bp-index .top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.bp-index .top b { font-family: var(--font-heading); font-size: 16px; color: var(--pine-900); }
.bp-index .top .val { font-family: var(--font-heading); font-weight: 700; font-size: 20px; }
.bp-index .meter { height: 7px; background: var(--sand-200); border-radius: 99px; overflow: hidden; }
.bp-index .meter i { display: block; height: 100%; border-radius: 99px; width: 0; transition: width .8s var(--ease); }
.bp-index .lbl { margin-top: 9px; font-size: 12.5px; font-weight: 600; letter-spacing: .02em; }

.bp-block { background: var(--surface-card); border: 1px solid var(--surface-border); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 24px; }
.bp-block > h3 { display: flex; align-items: center; gap: 10px; font-size: 20px; color: var(--pine-900); }
/* White cards live inside the dark results section — force dark headings/text so they stay legible */
.bp-block h3, .bp-block h4, .bp-index .top b, .bp-advisor .who { color: var(--pine-900); }
.bp-block p { color: var(--text-secondary); }
.bp-block p[style*="text-muted"], .bp-block .bp-help { color: var(--text-muted); }
.bp-opps { list-style: none; padding: 0; margin: 0; counter-reset: opp; }
.bp-opp { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--sand-200); }
.bp-opp:last-child { border-bottom: 0; }
.bp-opp .rank { counter-increment: opp; width: 30px; height: 30px; border-radius: 8px; background: var(--copper-100); color: var(--copper-700); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.bp-opp .rank::before { content: counter(opp); }
.bp-opp .txt b { color: var(--pine-900); display: block; }
.bp-opp .txt span { color: var(--text-muted); font-size: 14px; }
.bp-impact { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 10px; border-radius: 6px; white-space: nowrap; }
.bp-impact.high { background: var(--copper-500); color: #fff; }
.bp-impact.med { background: var(--brass-300); color: var(--pine-900); }
.bp-impact.low { background: var(--pine-100); color: var(--pine-700); }

.bp-timeline { position: relative; }
.bp-phase { position: relative; padding-left: 28px; padding-bottom: 26px; }
.bp-phase::before { content: ""; position: absolute; left: 7px; top: 22px; bottom: -4px; width: 2px; background: var(--sand-300); }
.bp-phase:last-child { padding-bottom: 0; }
.bp-phase:last-child::before { display: none; }
.bp-phase::after { content: ""; position: absolute; left: 0; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: var(--copper-500); border: 3px solid var(--sand-100); }
.bp-phase h4 { font-family: var(--font-heading); font-size: 18px; color: var(--pine-900); margin-bottom: 8px; }
.bp-phase ul { list-style: none; padding: 0; margin: 0; }
.bp-phase li { position: relative; padding-left: 24px; margin-bottom: 8px; color: var(--text-secondary); font-size: 15px; }
.bp-phase li::before { content: "✓"; position: absolute; left: 0; color: var(--pine-500); font-weight: 700; }

.bp-advisors { display: grid; gap: 12px; }
.bp-advisor { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 14px 16px; background: var(--sand-050); border: 1px solid var(--surface-border); border-radius: var(--radius); }
.bp-advisor .who { font-weight: 600; color: var(--pine-900); }
.bp-advisor .why { color: var(--text-muted); font-size: 14px; }
.bp-advisor .badge-need { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--copper-700); }

.bp-final-cta { background: linear-gradient(150deg, var(--pine-900), var(--pine-700)); color: var(--sand-050); border-radius: var(--radius-lg); padding: 40px; text-align: center; position: relative; overflow: hidden; }
.bp-final-cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 260px at 50% -20%, rgba(178,104,59,.30), transparent 60%); }
.bp-final-cta > * { position: relative; z-index: 1; }
.bp-final-cta h2 { color: var(--sand-050); }
.bp-final-cta p { color: var(--pine-100); max-width: 52ch; margin: 0 auto 24px; }
.bp-priority { background: rgba(255,255,255,.06); border: 1px solid rgba(215,227,219,.2); border-radius: var(--radius); padding: 20px 24px; margin: 0 auto 26px; max-width: 560px; text-align: left; }
.bp-priority .eyebrow { color: var(--copper-300); margin-bottom: 8px; }
.bp-priority p { color: var(--sand-050); margin: 0; font-size: 16px; }

.bp-gate { max-width: 460px; margin: 0 auto; }
.bp-field { margin-bottom: 16px; text-align: left; }
/* Default: dark labels for light backgrounds (e.g. the contact report form). */
.bp-field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; letter-spacing: .02em; }
/* Light labels only inside the dark Blueprint gate. */
.bp-gate .bp-field label, .bp-gate label { color: var(--pine-100); }
.bp-gate .bp-input { background: rgba(255,255,255,.08); border-color: rgba(215,227,219,.28); color: #fff; }
.bp-gate .bp-input::placeholder { color: rgba(215,227,219,.55); }
.bp-gate .bp-input:focus { background: rgba(255,255,255,.14); border-color: var(--copper-300); }

.bp-disclaimer { font-size: 12.5px; color: var(--text-muted); text-align: center; margin-top: 22px; }
.section--dark .bp-disclaimer { color: var(--pine-300); }

/* ---- Utility ------------------------------------------------------------ */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.stack-lg > * + * { margin-top: 20px; }
.badge-soft { display: inline-block; padding: 5px 12px; border-radius: 99px; background: var(--copper-100); color: var(--copper-700); font-size: 12.5px; font-weight: 600; letter-spacing: .03em; }
.divider { height: 1px; background: var(--surface-border); border: 0; margin: 0; }
.contact-line { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; color: var(--text-secondary); }
.contact-line svg { width: 20px; height: 20px; color: var(--copper-500); flex: none; }
.contact-line a { color: var(--pine-700); font-weight: 500; }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 940px) {
  .hero .container { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; }
  .hero-medallion { width: 220px; }
  .split, .split--narrow-img { grid-template-columns: 1fr; gap: 32px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bp-hero-score { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  /* Mobile menu: brand + hamburger share the top row; links and CTA stack
     into a full-width panel below it (order keeps the toggle in row 1 so
     the CTA never crowds the 74px header row). */
  .nav { flex-wrap: wrap; }
  .brand-lockup { order: 1; }
  .nav-toggle { order: 2; display: block; }
  .nav-links { order: 3; }
  .nav-cta { order: 4; }
  .nav-links, .nav-cta { display: none; }
  .site-header.open .nav { height: auto; padding-bottom: 14px; }
  .site-header.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    width: 100%; gap: 2px; margin-top: 10px;
    border-top: 1px solid var(--surface-border); padding-top: 8px;
  }
  .site-header.open .nav-links a { padding: 12px 2px; width: 100%; border-bottom: 1px solid var(--sand-200); }
  .site-header.open .nav-cta { display: flex; width: 100%; margin-top: 12px; }
  .site-header.open .nav-cta .btn { display: inline-flex; width: 100%; }
  .grid-2, .grid-3, .grid-4, .bp-indices, .bp-options.cols-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band, .bp-card, .bp-block, .bp-final-cta, .bp-hero-score { padding: 26px; }
  .trustbar .container { gap: 16px 28px; }
}
