.bv20-page {
  --bv20-paper: var(--lynq-canvas);
  --bv20-paper-2: #ebe5da;
  --bv20-white: var(--lynq-paper);
  --bv20-ink: var(--lynq-ink);
  --bv20-deep: var(--lynq-deep);
  --bv20-line: var(--lynq-line);
  --bv20-light-line: rgba(243, 238, 227, .17);
  --bv20-orange: var(--lynq-accent);
  --bv20-orange-2: var(--lynq-accent);
  --bv20-blue: #b9d8de;
  --bv20-green: #91b88c;
  min-width: 0;
  overflow: clip;
  background: var(--bv20-paper);
  color: var(--bv20-ink);
}

.bv20-page a { text-decoration: none; }
.bv20-page h1,
.bv20-page h2,
.bv20-page h3,
.bv20-page p { margin-top: 0; }
.bv20-page button,
.bv20-page a,
.bv20-page summary { -webkit-tap-highlight-color: transparent; }
.bv20-page :focus-visible { outline: 3px solid var(--bv20-orange-2); outline-offset: 4px; }

.bv20-shell {
  width: min(1280px, calc(100% - 56px));
  margin-inline: auto;
  min-width: 0;
}

.bv20-detail-page main,
.bv20-detail-page section,
.bv20-detail-page aside,
.bv20-detail-page figure,
.bv20-detail-page .bv20-shell,
.bv20-detail-page .bv20-shell > * { min-width: 0; }
.bv20-detail-page h1,
.bv20-detail-page h2,
.bv20-detail-page h3,
.bv20-detail-page p,
.bv20-detail-page li,
.bv20-detail-page a,
.bv20-detail-page strong,
.bv20-detail-page small { overflow-wrap: anywhere; }

.bv20-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--bv20-line);
  background: color-mix(in srgb, var(--bv20-paper) 92%, transparent);
  backdrop-filter: blur(18px);
}

.bv20-header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
}

.bv20-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.bv20-brand > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--bv20-ink);
  color: var(--bv20-paper);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.bv20-brand strong {
  display: grid;
  line-height: 0.92;
  font-size: 20px;
  letter-spacing: 0.03em;
}

.bv20-brand small {
  margin-top: 7px;
  color: #6f7981;
  font: 700 10px/1 var(--font-geist-mono), monospace;
  letter-spacing: 0.2em;
}

.bv20-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 38px);
}

.bv20-nav a,
.bv20-language {
  color: #5e6971;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease;
}

.bv20-nav a:hover,
.bv20-language:hover { color: var(--bv20-ink); }

.bv20-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bv20-language {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.bv20-header-cta {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: var(--bv20-ink);
  color: var(--bv20-paper);
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.bv20-header-cta:hover { background: var(--bv20-orange); transform: translateY(-1px); }

.bv20-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--bv20-orange);
  font: 800 12px/1.25 var(--font-geist-mono), monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bv20-section-label > span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

.bv20-hero {
  position: relative;
  padding: 92px 0 0;
  isolation: isolate;
}

.bv20-hero::before {
  content: '';
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 33, 52, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 33, 52, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 94%);
}

.bv20-hero-orbit {
  position: absolute;
  z-index: -1;
  top: -190px;
  right: -140px;
  width: 650px;
  aspect-ratio: 1;
  border: 1px solid rgba(11, 33, 52, 0.09);
  border-radius: 50%;
}

.bv20-hero-orbit::before,
.bv20-hero-orbit::after {
  content: '';
  position: absolute;
  inset: 105px;
  border: 1px solid rgba(11, 33, 52, 0.08);
  border-radius: inherit;
}

.bv20-hero-orbit::after { inset: 210px; background: rgba(185, 216, 222, 0.24); }
.bv20-hero-orbit i { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--bv20-orange); }
.bv20-hero-orbit i:nth-child(1) { left: 61px; top: 224px; }
.bv20-hero-orbit i:nth-child(2) { right: 112px; bottom: 149px; background: var(--bv20-green); }
.bv20-hero-orbit i:nth-child(3) { left: 49%; top: 104px; background: var(--bv20-ink); }

.bv20-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
}

.bv20-hero-copy { padding-bottom: 52px; }

.bv20-hero h1,
.bv20-detail-hero h1 {
  max-width: 790px;
  margin-bottom: 28px;
  font: 500 clamp(58px, 6.1vw, 88px)/0.94 Georgia, 'Times New Roman', serif;
  letter-spacing: -0.055em;
}

.bv20-page h1 em,
.bv20-page h2 em { color: var(--bv20-orange); font-weight: 500; }

.bv20-hero-lead,
.bv20-detail-hero-grid > div > p {
  max-width: 650px;
  margin-bottom: 30px;
  color: #596875;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.6;
}

.bv20-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.bv20-button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--bv20-line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 850;
  transition: transform 180ms ease, color 180ms ease, border 180ms ease, background 180ms ease;
}

.bv20-button:hover { transform: translateY(-2px); }
.bv20-button-primary { border-color: var(--bv20-orange); background: var(--bv20-orange); color: var(--bv20-white); }
.bv20-button-primary:hover { border-color: var(--bv20-ink); background: var(--bv20-ink); }
.bv20-button-ghost { background: rgba(255, 253, 247, 0.56); }
.bv20-button-ghost:hover { border-color: var(--bv20-ink); }

.bv20-hero-checks {
  margin: 25px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 17px 25px;
  list-style: none;
  color: #5d6b76;
  font-size: 13px;
  font-weight: 700;
}

.bv20-hero-checks li { display: flex; align-items: center; gap: 7px; }
.bv20-hero-checks svg { color: #4f8a59; }

.bv20-pilot {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(248, 244, 235, 0.15);
  background: var(--bv20-deep);
  color: var(--bv20-paper);
  box-shadow: 0 34px 80px rgba(11, 33, 52, 0.18);
}

.bv20-pilot::after {
  content: '1 → 3';
  position: absolute;
  right: -13px;
  top: -20px;
  padding: 11px 14px;
  background: var(--bv20-orange);
  color: #fff;
  font: 900 13px/1 var(--font-geist-mono), monospace;
  letter-spacing: 0.08em;
}

.bv20-pilot-head,
.bv20-pilot-output,
.bv20-workspace-head,
.bv20-program-head,
.bv20-model-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bv20-pilot-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--bv20-light-line);
}

.bv20-pilot-head div { display: flex; align-items: center; gap: 9px; color: #d9c35d; }
.bv20-pilot-head span,
.bv20-pilot-head small,
.bv20-pilot-task small,
.bv20-pilot-output small,
.bv20-pilot-decision span {
  font: 800 10px/1.3 var(--font-geist-mono), monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.bv20-pilot-head small { color: #8e9aa3; }

.bv20-pilot-task { padding: 28px 0 24px; }
.bv20-pilot-task small { color: #8ea0ac; }
.bv20-pilot-task h2 { max-width: 560px; margin: 12px 0 18px; font: 500 clamp(25px, 2.3vw, 36px)/1.12 Georgia, serif; letter-spacing: -0.025em; }
.bv20-pilot-task > span { display: inline-flex; padding: 8px 11px; border: 1px solid var(--bv20-light-line); border-radius: 999px; color: #cfd8dc; font-size: 12px; }

.bv20-pilot-roles { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--bv20-light-line); }
.bv20-pilot-roles > div { min-width: 0; padding: 17px 13px; display: grid; gap: 8px; border-right: 1px solid var(--bv20-light-line); }
.bv20-pilot-roles > div:last-child { border-right: 0; }
.bv20-pilot-roles span { color: #d9c35d; font: 800 10px/1 var(--font-geist-mono), monospace; }
.bv20-pilot-roles strong { font-size: 13px; }
.bv20-pilot-roles small { color: #84939e; font-size: 10px; line-height: 1.35; }

.bv20-pilot-output { margin-top: 16px; padding: 19px; background: var(--bv20-paper); color: var(--bv20-ink); }
.bv20-pilot-output > div { display: grid; gap: 6px; }
.bv20-pilot-output small { color: var(--bv20-orange); }
.bv20-pilot-output strong { font-size: 13px; }
.bv20-pilot-output svg { color: var(--bv20-orange); }

.bv20-pilot-decision { padding-top: 19px; display: grid; gap: 7px; }
.bv20-pilot-decision span { display: flex; align-items: center; gap: 8px; color: #93a0a9; }
.bv20-pilot-decision i { width: 7px; height: 7px; border-radius: 50%; background: var(--bv20-green); }
.bv20-pilot-decision strong { color: #d9c35d; font-size: 12px; }

.bv20-facts {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--bv20-line);
  border-bottom: 0;
  background: rgba(255, 253, 247, 0.42);
}

.bv20-facts > div { min-height: 120px; padding: 25px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; border-right: 1px solid var(--bv20-line); }
.bv20-facts > div:last-child { border-right: 0; }
.bv20-facts strong { font: 500 clamp(28px, 3vw, 42px)/1 Georgia, serif; }
.bv20-facts span { color: #69747c; font: 700 11px/1.35 var(--font-geist-mono), monospace; letter-spacing: 0.06em; text-transform: uppercase; }

.bv20-model,
.bv20-workspaces,
.bv20-detail-artifacts { padding: 118px 0; background: var(--bv20-deep); color: var(--bv20-paper); }
.bv20-programs,
.bv20-launch,
.bv20-evidence,
.bv20-inquiry,
.bv20-faq,
.bv20-detail-audience,
.bv20-detail-outcomes,
.bv20-detail-modules,
.bv20-detail-pilot,
.bv20-program-inquiry,
.bv20-detail-faq { padding: 118px 0; }

.bv20-heading {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 50px;
}

.bv20-heading h2,
.bv20-evidence-copy h2,
.bv20-inquiry h2,
.bv20-faq-intro h2,
.bv20-detail-audience h2,
.bv20-modules-intro h2,
.bv20-detail-pilot h2,
.bv20-program-inquiry h2 {
  max-width: 830px;
  margin: 0;
  font: 500 clamp(43px, 4.7vw, 69px)/0.98 Georgia, 'Times New Roman', serif;
  letter-spacing: -0.045em;
}

.bv20-heading > p:not(.bv20-section-label),
.bv20-evidence-copy > p:not(.bv20-section-label),
.bv20-faq-intro > p:not(.bv20-section-label),
.bv20-detail-pilot-grid > div > p {
  margin-bottom: 0;
  color: #53616d;
  font-size: 17px;
  line-height: 1.65;
}
.bv20-heading-light .bv20-section-label { color: #d7bd62; }
.bv20-heading-light > p { color: #9ca9b2; }
.bv20-heading.bv20-heading-light > p:not(.bv20-section-label) { color: #c9d0d4; }

.bv20-comparison {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.bv20-comparison > article { min-height: 154px; padding: 24px; display: grid; align-content: center; gap: 12px; border: 1px solid var(--bv20-light-line); }
.bv20-comparison > article:last-child { background: var(--bv20-paper); color: var(--bv20-ink); }
.bv20-comparison > svg { color: #d7bd62; }
.bv20-comparison small { color: #94a2ab; font: 800 10px/1 var(--font-geist-mono), monospace; letter-spacing: 0.09em; text-transform: uppercase; }
.bv20-comparison article:last-child small { color: var(--bv20-orange); }
.bv20-comparison strong { font-size: clamp(16px, 1.5vw, 21px); }
.bv20-comparison p { margin: 0; color: #8f9ba3; font-size: 13px; line-height: 1.5; }
.bv20-comparison article:last-child p { color: #53616d; }

.bv20-model-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.bv20-model-grid article { min-height: 330px; padding: 28px; border: 1px solid var(--bv20-light-line); border-right: 0; }
.bv20-model-grid article:last-child { border-right: 1px solid var(--bv20-light-line); }
.bv20-model-card-top { margin-bottom: 66px; color: #d7bd62; }
.bv20-model-card-top span { font: 800 11px/1 var(--font-geist-mono), monospace; }
.bv20-model-grid article > small { color: #8f9da6; font: 800 10px/1 var(--font-geist-mono), monospace; letter-spacing: 0.1em; text-transform: uppercase; }
.bv20-model-grid h3 { margin: 15px 0 15px; font: 500 clamp(27px, 2.3vw, 38px)/1.02 Georgia, serif; letter-spacing: -0.03em; }
.bv20-model-grid p { margin-bottom: 0; color: #9da8af; font-size: 14px; line-height: 1.65; }

.bv20-programs { padding: 90px 0 96px; background: var(--bv20-paper-2); }
.bv20-programs .bv20-heading { margin-bottom: 38px; }
.bv20-programs .bv20-section-label { color: #a82e10; }
.bv20-program-accordion {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--bv20-line);
  background: var(--bv20-line);
}
.bv20-program-row { min-width: 0; background: rgba(255, 253, 247, 0.82); }
.bv20-program-row[open] { grid-column: 1 / -1; background: var(--bv20-white); }
.bv20-program-row > summary {
  min-height: 92px;
  padding: 17px 20px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto 32px;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}
.bv20-program-row > summary::-webkit-details-marker { display: none; }
.bv20-program-row > summary:focus-visible { position: relative; z-index: 2; outline: 3px solid var(--bv20-orange); outline-offset: -3px; }
.bv20-program-row[open] > summary { box-shadow: inset 5px 0 0 var(--bv20-orange); }
.bv20-program-index { color: var(--bv20-orange); font: 900 11px/1 var(--font-geist-mono), monospace; }
.bv20-program-summary-copy { min-width: 0; display: grid; gap: 5px; }
.bv20-program-summary-copy strong { font: 500 clamp(20px, 1.8vw, 27px)/1.04 Georgia, serif; letter-spacing: -0.025em; }
.bv20-program-summary-copy small {
  overflow: hidden;
  color: #46545f;
  font-size: 12px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bv20-program-meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.bv20-program-meta small { padding: 7px 9px; border: 1px solid var(--bv20-line); border-radius: 999px; color: #46545f; font-size: 11px; font-weight: 800; white-space: nowrap; }
.bv20-program-row > summary > i { position: relative; width: 30px; height: 30px; border: 1px solid var(--bv20-line); border-radius: 50%; }
.bv20-program-row > summary > i::before,
.bv20-program-row > summary > i::after { content: ''; position: absolute; inset: 50% auto auto 50%; width: 10px; height: 1px; background: var(--bv20-ink); transform: translate(-50%, -50%); }
.bv20-program-row > summary > i::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 180ms ease; }
.bv20-program-row[open] > summary > i::after { transform: translate(-50%, -50%) rotate(0deg); }
.bv20-program-panel {
  padding: 24px 22px 26px 74px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 72px);
  border-top: 1px solid var(--bv20-line);
}
.bv20-program-panel-copy > p { margin: 0 0 18px; color: #5f6e79; font-size: 14px; line-height: 1.6; }
.bv20-program-outcome { padding: 16px 0; display: grid; gap: 8px; border-top: 1px solid var(--bv20-line); border-bottom: 1px solid var(--bv20-line); }
.bv20-program-outcome small,
.bv20-program-panel-topics > small { color: var(--bv20-orange); font: 900 10px/1.2 var(--font-geist-mono), monospace; letter-spacing: 0.05em; text-transform: uppercase; }
.bv20-program-outcome strong { color: #394d5e; font-size: 13px; line-height: 1.55; }
.bv20-program-panel-topics { display: flex; min-width: 0; flex-direction: column; }
.bv20-program-panel-topics ul { margin: 13px 0 16px; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; list-style: none; color: #586875; font-size: 12px; font-weight: 700; }
.bv20-program-panel-topics li { display: flex; gap: 8px; align-items: flex-start; }
.bv20-program-panel-topics li svg { flex: 0 0 auto; margin-top: 1px; color: #4f8a59; }
.bv20-program-panel-topics > a { min-height: 46px; margin-top: auto; padding: 13px 0 10px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--bv20-line); font-size: 14px; font-weight: 900; }
.bv20-program-panel-topics > a svg { color: var(--bv20-orange); transition: transform 180ms ease; }
.bv20-program-panel-topics > a:hover svg { transform: translate(2px, -2px); }

.bv20-launch { background: var(--bv20-white); }
.bv20-launch-track { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--bv20-line); border-left: 1px solid var(--bv20-line); list-style: none; }
.bv20-launch-track li { min-height: 280px; padding: 22px; border-right: 1px solid var(--bv20-line); border-bottom: 1px solid var(--bv20-line); }
.bv20-launch-icon { margin-bottom: 72px; display: flex; align-items: center; justify-content: space-between; color: var(--bv20-orange); }
.bv20-launch-icon span { color: #53616d; font: 800 10px/1 var(--font-geist-mono), monospace; }
.bv20-launch-track h3 { margin-bottom: 14px; font: 500 clamp(21px, 1.75vw, 28px)/1.05 Georgia, serif; letter-spacing: -0.025em; }
.bv20-launch-track p { margin: 0; color: #53616d; font-size: 12px; line-height: 1.55; }

.bv20-workspace-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.bv20-workspace-grid article { min-height: 475px; padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--bv20-light-line); border-right: 0; }
.bv20-workspace-grid article:last-child { border-right: 1px solid var(--bv20-light-line); background: var(--bv20-paper); color: var(--bv20-ink); }
.bv20-workspace-head { margin-bottom: 70px; padding-bottom: 17px; border-bottom: 1px solid var(--bv20-light-line); }
.bv20-workspace-grid article:last-child .bv20-workspace-head { border-color: var(--bv20-line); }
.bv20-workspace-head span { color: #d7bd62; font: 800 10px/1 var(--font-geist-mono), monospace; }
.bv20-workspace-grid article:last-child .bv20-workspace-head span { color: #a82e10; }
.bv20-workspace-head strong { font: 800 11px/1 var(--font-geist-mono), monospace; letter-spacing: 0.08em; text-transform: uppercase; }
.bv20-workspace-grid article > small { color: #c6ced2; font: 800 10px/1 var(--font-geist-mono), monospace; text-transform: uppercase; }
.bv20-workspace-grid h3 { margin: 14px 0 16px; font: 500 clamp(30px, 2.6vw, 44px)/1 Georgia, serif; letter-spacing: -0.035em; }
.bv20-workspace-grid article > p { margin-bottom: 28px; color: #9ca8af; font-size: 14px; line-height: 1.65; }
.bv20-workspace-grid article:last-child > small,
.bv20-workspace-grid article:last-child > p { color: #53616d; }
.bv20-workspace-grid ul { margin: auto 0 0; padding: 19px 0 0; display: grid; gap: 10px; border-top: 1px solid var(--bv20-light-line); list-style: none; color: #c6ced2; font-size: 12px; font-weight: 700; }
.bv20-workspace-grid article:last-child ul { border-color: var(--bv20-line); color: #536573; }
.bv20-workspace-grid li { display: flex; align-items: center; gap: 9px; }
.bv20-workspace-grid li span { width: 7px; height: 7px; border-radius: 50%; background: #d7bd62; }

.bv20-evidence { background: var(--bv20-paper); }
.bv20-evidence-grid { display: grid; grid-template-columns: minmax(0, 0.74fr) minmax(520px, 1.26fr); gap: clamp(50px, 8vw, 120px); align-items: start; }
.bv20-evidence-copy { position: sticky; top: 120px; }
.bv20-evidence-copy h2 { margin-bottom: 25px; }
.bv20-evidence-copy > p { margin-bottom: 30px; }
.bv20-text-link { width: fit-content; min-height: 44px; display: inline-flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--bv20-ink); font-size: 14px; font-weight: 900; }
.bv20-text-link svg { color: var(--bv20-orange); }
.bv20-artifacts { margin: 0; padding: 0; border-top: 1px solid var(--bv20-line); list-style: none; }
.bv20-artifacts li { min-height: 124px; padding: 22px 0; display: grid; grid-template-columns: 62px 1fr auto; align-items: center; gap: 20px; border-bottom: 1px solid var(--bv20-line); }
.bv20-artifacts li > div { display: grid; gap: 10px; color: var(--bv20-orange); }
.bv20-artifacts li > div span { color: #53616d; font: 800 10px/1 var(--font-geist-mono), monospace; }
.bv20-artifacts section h3 { margin-bottom: 7px; font: 500 24px/1.05 Georgia, serif; letter-spacing: -0.025em; }
.bv20-artifacts section p { margin: 0; color: #53616d; font-size: 13px; line-height: 1.5; }
.bv20-artifacts li > svg { color: #4f8a59; }

.bv20-inquiry { padding-top: 20px; background: var(--bv20-paper); }
.bv20-inquiry-card { padding: clamp(32px, 5vw, 70px); display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(50px, 8vw, 110px); background: var(--bv20-orange); color: #fffaf0; }
.bv20-inquiry .bv20-section-label { color: #fff2e3; }
.bv20-inquiry h2 em { color: #fff; }
.bv20-inquiry h2 { margin-bottom: 23px; }
.bv20-inquiry-card > div > p { max-width: 650px; margin-bottom: 30px; color: #fff; font-size: 17px; line-height: 1.6; }
.bv20-inquiry .bv20-button-primary { border-color: var(--bv20-deep); background: var(--bv20-deep); }
.bv20-inquiry aside { padding: 26px; border: 1px solid rgba(255, 255, 255, 0.27); background: rgba(92, 24, 9, 0.15); }
.bv20-inquiry aside > strong { display: block; margin-bottom: 20px; font: 900 11px/1 var(--font-geist-mono), monospace; letter-spacing: 0.08em; text-transform: uppercase; }
.bv20-inquiry aside ol { margin: 0; padding: 0; list-style: none; }
.bv20-inquiry aside li { padding: 16px 0; display: grid; grid-template-columns: 34px 1fr; gap: 10px; border-top: 1px solid rgba(255, 255, 255, 0.23); }
.bv20-inquiry aside li > span { font: 800 10px/1.4 var(--font-geist-mono), monospace; }
.bv20-inquiry aside li p { margin: 0; color: #ffe4d8; font-size: 12px; line-height: 1.5; }
.bv20-inquiry aside li b { display: block; margin-bottom: 3px; color: #fff; font-size: 14px; }
.bv20-inquiry aside > small { color: #ffd5c4; font-size: 10px; }

.bv20-faq { background: var(--bv20-paper); }
.bv20-faq-grid { display: grid; grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1.3fr); gap: clamp(50px, 8vw, 120px); }
.bv20-faq-intro { align-self: start; }
.bv20-faq-intro h2 { margin-bottom: 24px; }
.bv20-faq-intro > p { margin-bottom: 25px; }
.bv20-faq-intro > a { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 0; color: var(--bv20-orange); font-size: 13px; font-weight: 850; }
.bv20-faq-list { border-top: 1px solid var(--bv20-line); }
.bv20-faq-list details { border-bottom: 1px solid var(--bv20-line); }
.bv20-faq-list summary { min-height: 84px; display: grid; grid-template-columns: 42px 1fr 22px; align-items: center; gap: 12px; cursor: pointer; list-style: none; }
.bv20-faq-list summary::-webkit-details-marker { display: none; }
.bv20-faq-list summary > span { color: var(--bv20-orange); font: 800 10px/1 var(--font-geist-mono), monospace; }
.bv20-faq-list summary strong { font-size: 16px; }
.bv20-faq-list summary i { position: relative; width: 16px; height: 16px; }
.bv20-faq-list summary i::before,
.bv20-faq-list summary i::after { content: ''; position: absolute; left: 2px; right: 2px; top: 7px; height: 2px; background: var(--bv20-ink); transition: transform 180ms ease; }
.bv20-faq-list summary i::after { transform: rotate(90deg); }
.bv20-faq-list details[open] summary i::after { transform: rotate(0); }
.bv20-faq-list details > p { margin: -3px 38px 25px 54px; color: #53616d; font-size: 14px; line-height: 1.65; }

.bv20-footer { padding: 72px 0 0; background: var(--bv20-deep); color: var(--bv20-paper); }
.bv20-footer-grid { display: grid; grid-template-columns: 1.35fr 0.75fr 0.75fr 1fr; gap: 54px; }
.bv20-brand-light > span { background: var(--bv20-paper); color: var(--bv20-deep); }
.bv20-brand-light small { color: #8897a0; }
.bv20-footer-intro > p { max-width: 330px; margin: 24px 0 18px; color: #9ba8b0; font-size: 13px; line-height: 1.6; }
.bv20-footer-intro > a { display: flex; align-items: center; gap: 8px; color: #d4dadd; font-size: 12px; }
.bv20-footer nav { display: grid; align-content: start; gap: 13px; }
.bv20-footer nav strong,
.bv20-footer-note > span { margin-bottom: 7px; color: #d7bd62; font: 900 10px/1 var(--font-geist-mono), monospace; letter-spacing: 0.08em; text-transform: uppercase; }
.bv20-footer nav a { color: #aeb8be; font-size: 12px; transition: color 180ms ease; }
.bv20-footer nav a:hover { color: var(--bv20-paper); }
.bv20-footer-note { padding: 21px; border: 1px solid var(--bv20-light-line); }
.bv20-footer-note > p { margin: 15px 0 22px; color: #aeb8be; font-size: 12px; line-height: 1.55; }
.bv20-footer-note > a { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; }
.bv20-footer-bottom { margin-top: 58px; min-height: 65px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--bv20-light-line); color: #73828c; font: 700 10px/1.4 var(--font-geist-mono), monospace; letter-spacing: 0.05em; text-transform: uppercase; }

/* Representative business program detail */
.bv20-detail-hero { position: relative; padding: 62px 0 90px; isolation: isolate; }
.bv20-detail-orbit { position: absolute; z-index: -1; right: -130px; top: -220px; width: 610px; aspect-ratio: 1; border: 1px solid var(--bv20-line); border-radius: 50%; }
.bv20-detail-orbit::before { content: ''; position: absolute; inset: 120px; border: 1px solid var(--bv20-line); border-radius: inherit; }
.bv20-detail-orbit i { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--bv20-orange); }
.bv20-detail-orbit i:first-child { left: 90px; top: 250px; }
.bv20-detail-orbit i:last-child { right: 120px; bottom: 100px; background: var(--bv20-green); }
.bv20-breadcrumb { margin-bottom: 66px; display: flex; align-items: center; gap: 10px; color: #53616d; font-size: 12px; font-weight: 750; }
.bv20-breadcrumb a { min-height: 44px; display: inline-flex; align-items: center; gap: 7px; }
.bv20-breadcrumb a:hover { color: var(--bv20-orange); }
.bv20-detail-hero-grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr); align-items: end; gap: clamp(55px, 8vw, 120px); }
.bv20-detail-hero h1 { max-width: 850px; overflow-wrap: anywhere; }
.bv20-breadcrumb { flex-wrap: wrap; overflow-wrap: anywhere; }
.bv20-program-passport { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--bv20-line); border-left: 1px solid var(--bv20-line); background: rgba(255, 253, 247, 0.48); }
.bv20-program-passport > div { min-height: 116px; padding: 22px; display: grid; align-content: end; gap: 8px; border-right: 1px solid var(--bv20-line); border-bottom: 1px solid var(--bv20-line); }
.bv20-program-passport small { color: #53616d; font: 800 10px/1.3 var(--font-geist-mono), monospace; text-transform: uppercase; }
.bv20-program-passport strong { font: 500 23px/1.1 Georgia, serif; overflow-wrap: anywhere; }
.bv20-program-passport > section { grid-column: 1 / -1; padding: 23px; background: var(--bv20-deep); color: var(--bv20-paper); }
.bv20-program-passport section small { color: #d7bd62; }
.bv20-program-passport section p { margin: 10px 0 0; color: #d6dde1; font-size: 13px; line-height: 1.55; }

.bv20-detail-audience { background: var(--bv20-white); }
.bv20-audience-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(60px, 9vw, 130px); align-items: center; }
.bv20-detail-audience h2 { margin-bottom: 25px; }
.bv20-detail-audience .bv20-audience-grid > div:first-child > p { max-width: 600px; margin-bottom: 0; color: #65737c; font-size: 17px; line-height: 1.65; }
.bv20-audience-visual { min-height: 390px; margin: 0; padding: clamp(25px, 4vw, 48px); display: flex; flex-direction: column; justify-content: space-between; gap: 30px; border: 1px solid var(--bv20-line); background-image: linear-gradient(var(--bv20-line) 1px, transparent 1px), linear-gradient(90deg, var(--bv20-line) 1px, transparent 1px); background-size: 44px 44px; }
.bv20-audience-visual figcaption { max-width: 460px; padding: 22px; display: grid; gap: 13px; background: var(--bv20-deep); color: var(--bv20-paper); }
.bv20-audience-visual figcaption small { color: #d7bd62; font: 800 10px/1.3 var(--font-geist-mono), monospace; letter-spacing: .08em; text-transform: uppercase; }
.bv20-audience-visual figcaption strong { font: 500 clamp(24px, 3vw, 38px)/1.05 Georgia, serif; overflow-wrap: anywhere; }
.bv20-audience-visual > p { max-width: 580px; margin: 0; color: #4f5f6b; font-size: 16px; line-height: 1.6; }
.bv20-audience-facts { display: flex; flex-wrap: wrap; gap: 8px; }
.bv20-audience-facts span { max-width: 100%; padding: 9px 12px; border: 1px solid var(--bv20-line); background: color-mix(in srgb, var(--bv20-white) 90%, transparent); color: #69747b; font: 800 10px/1.35 var(--font-geist-mono), monospace; overflow-wrap: anywhere; }

.bv20-detail-outcomes { background: var(--bv20-paper-2); }
.bv20-detail-outcomes .bv20-section-label { color: #a82e10; }
.bv20-detail-outcome-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bv20-detail-outcome-grid article { min-height: 315px; padding: 27px; border: 1px solid var(--bv20-line); border-right: 0; }
.bv20-detail-outcome-grid article:last-child { border-right: 1px solid var(--bv20-line); background: var(--bv20-deep); color: var(--bv20-paper); }
.bv20-detail-outcome-grid article > div { margin-bottom: 78px; display: flex; align-items: center; justify-content: space-between; color: var(--bv20-orange); }
.bv20-detail-outcome-grid article:not(:last-child) > div { color: #a82e10; }
.bv20-detail-outcome-grid article:last-child > div { color: #d7bd62; }
.bv20-detail-outcome-grid article > div span { font: 800 10px/1 var(--font-geist-mono), monospace; }
.bv20-detail-outcome-grid h3 { margin-bottom: 16px; font: 500 34px/1 Georgia, serif; letter-spacing: -0.03em; overflow-wrap: anywhere; }
.bv20-detail-outcome-grid p { margin: 0; color: #53616d; font-size: 14px; line-height: 1.6; }
.bv20-detail-outcome-grid article:last-child p { color: #a7b1b7; }

.bv20-detail-modules { background: var(--bv20-paper); }
.bv20-modules-grid { display: grid; grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr); gap: clamp(60px, 9vw, 135px); align-items: start; }
.bv20-modules-intro { position: sticky; top: 120px; }
.bv20-modules-intro h2 { margin-bottom: 23px; }
.bv20-modules-intro > p:not(.bv20-section-label) { margin-bottom: 28px; color: #53616d; font-size: 16px; line-height: 1.65; }
.bv20-module-loop { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: #6a767e; font: 800 9px/1 var(--font-geist-mono), monospace; text-transform: uppercase; }
.bv20-module-loop span { padding: 8px 9px; border: 1px solid var(--bv20-line); }
.bv20-module-loop svg { color: var(--bv20-orange); }
.bv20-module-list { margin: 0; padding: 0; list-style: none; }
.bv20-module-list li { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 22px; }
.bv20-module-number { display: flex; flex-direction: column; align-items: center; }
.bv20-module-number span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--bv20-deep); color: var(--bv20-paper); font: 800 10px/1 var(--font-geist-mono), monospace; }
.bv20-module-number i { flex: 1; width: 1px; min-height: 80px; background: var(--bv20-line); }
.bv20-module-list article { padding: 5px 0 38px; }
.bv20-module-list h3 { margin-bottom: 11px; font: 500 clamp(26px, 2.5vw, 38px)/1.02 Georgia, serif; letter-spacing: -0.03em; overflow-wrap: anywhere; }
.bv20-module-list p { margin-bottom: 14px; color: #64727c; font-size: 14px; line-height: 1.6; }
.bv20-module-list strong { display: flex; align-items: center; gap: 8px; color: #3c7348; font-size: 12px; }

.bv20-detail-artifact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bv20-detail-artifact-grid article { min-height: 340px; padding: 25px; display: flex; flex-direction: column; border: 1px solid var(--bv20-light-line); border-right: 0; }
.bv20-detail-artifact-grid article:nth-child(3n) { border-right: 1px solid var(--bv20-light-line); }
.bv20-detail-artifact-grid article:last-child { border-right: 1px solid var(--bv20-light-line); }
.bv20-detail-artifact-grid article > div { margin-bottom: 76px; display: flex; align-items: center; justify-content: space-between; color: #d7bd62; }
.bv20-detail-artifact-grid article > div span { font: 800 10px/1 var(--font-geist-mono), monospace; }
.bv20-detail-artifact-grid h3 { margin-bottom: 15px; font: 500 28px/1.03 Georgia, serif; letter-spacing: -0.025em; overflow-wrap: anywhere; }
.bv20-detail-artifact-grid p { margin-bottom: 22px; color: #9eabb2; font-size: 13px; line-height: 1.55; }
.bv20-detail-artifact-grid small { margin-top: auto; padding-top: 16px; display: flex; align-items: center; gap: 7px; border-top: 1px solid var(--bv20-light-line); color: #b9c2c7; font-size: 10px; font-weight: 800; }
.bv20-detail-artifact-grid small svg { color: var(--bv20-green); }

.bv20-detail-page .bv20-detail-audience,
.bv20-detail-page .bv20-detail-outcomes,
.bv20-detail-page .bv20-detail-modules,
.bv20-detail-page .bv20-detail-artifacts,
.bv20-detail-page .bv20-detail-pilot,
.bv20-detail-page .bv20-detail-faq { padding: 88px 0; }
.bv20-detail-pilot { background: var(--bv20-white); }
.bv20-detail-pilot-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: clamp(34px, 5vw, 68px); }
.bv20-detail-pilot-copy { min-width: 0; padding: 8px 0; display: flex; flex-direction: column; }
.bv20-detail-pilot h2 { margin-bottom: 20px; font-size: clamp(42px, 4vw, 58px); }
.bv20-detail-pilot-grid > div > p { margin-bottom: 22px; }
.bv20-detail-pilot-grid > div ul { margin: 0; padding: 0; display: grid; gap: 10px; list-style: none; color: #506170; font-size: 13px; font-weight: 700; }
.bv20-detail-pilot-grid > div li { display: flex; gap: 9px; align-items: flex-start; overflow-wrap: anywhere; }
.bv20-detail-pilot-grid > div li svg { flex: 0 0 auto; margin-top: 2px; color: #4f8a59; }
.bv20-detail-pilot-grid > div li b { color: var(--bv20-ink); }
.bv20-detail-pilot-steps {
  min-height: 430px;
  margin: 0;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid var(--bv20-line);
  background-image: linear-gradient(var(--bv20-line) 1px, transparent 1px), linear-gradient(90deg, var(--bv20-line) 1px, transparent 1px);
  background-size: 42px 42px;
  list-style: none;
}
.bv20-detail-pilot-steps > li { min-width: 0; padding: 18px; display: flex; flex-direction: column; background: var(--bv20-paper); border: 1px solid var(--bv20-line); }
.bv20-detail-pilot-steps > li > div { margin-bottom: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.bv20-detail-pilot-steps span,
.bv20-detail-pilot-steps small { color: var(--bv20-orange); font: 800 10px/1 var(--font-geist-mono), monospace; text-transform: uppercase; }
.bv20-detail-pilot-steps small { color: #53616d; }
.bv20-detail-pilot-steps strong { margin: 30px 0 9px; font: 500 clamp(19px, 1.7vw, 25px)/1.04 Georgia, serif; overflow-wrap: anywhere; }
.bv20-detail-pilot-steps p { margin: 0; color: #53616d; font-size: 12px; line-height: 1.48; overflow-wrap: anywhere; }

.bv20-program-inquiry { padding-top: 20px; background: var(--bv20-white); }
.bv20-program-inquiry-card { padding: clamp(35px, 5vw, 70px); display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); align-items: center; gap: 60px; background: var(--bv20-deep); color: var(--bv20-paper); }
.bv20-program-inquiry .bv20-section-label { color: #d7bd62; }
.bv20-program-inquiry h2 em { color: #d7bd62; }
.bv20-program-inquiry h2 { margin-bottom: 20px; }
.bv20-program-inquiry-card > div:first-child > p { margin: 0; color: #a5b0b6; font-size: 16px; line-height: 1.6; }
.bv20-program-inquiry-card > div:last-child { display: grid; gap: 10px; }
.bv20-program-inquiry .bv20-button-ghost { border-color: var(--bv20-light-line); background: transparent; color: var(--bv20-paper); }
.bv20-program-inquiry-card > div:last-child > small { margin-top: 5px; text-align: center; color: #86959e; font-size: 10px; }
.bv20-detail-faq { background: var(--bv20-paper); }

@media (max-width: 1160px) {
  .bv20-header-inner { gap: 22px; }
  .bv20-nav { gap: 18px; }
  .bv20-nav a { font-size: 13px; }
  .bv20-language { display: none; }
  .bv20-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, 0.88fr); gap: 44px; }
  .bv20-launch-track { grid-template-columns: repeat(3, 1fr); }
  .bv20-launch-track li { min-height: 235px; }
  .bv20-launch-icon { margin-bottom: 47px; }
  .bv20-detail-artifact-grid { grid-template-columns: repeat(2, 1fr); }
  .bv20-detail-artifact-grid article:nth-child(2) { border-right: 1px solid var(--bv20-light-line); }
  .bv20-detail-artifact-grid article:nth-child(n + 3) { border-top: 0; }
  .bv20-detail-pilot-steps { min-height: 400px; }
}

@media (max-width: 900px) {
  .bv20-shell { width: min(100% - 36px, 760px); }
  .bv20-nav { display: none; }
  .bv20-header-inner { grid-template-columns: 1fr auto; min-height: 70px; }
  .bv20-brand > span { width: 42px; height: 42px; border-radius: 13px; }
  .bv20-hero { padding-top: 68px; }
  .bv20-hero-grid,
  .bv20-detail-hero-grid,
  .bv20-audience-grid { grid-template-columns: minmax(0, 1fr); }
  .bv20-hero-copy { padding-bottom: 0; }
  .bv20-pilot { max-width: 680px; }
  .bv20-facts { margin-top: 54px; grid-template-columns: repeat(2, 1fr); }
  .bv20-facts > div:nth-child(2) { border-right: 0; }
  .bv20-facts > div:nth-child(-n + 2) { border-bottom: 1px solid var(--bv20-line); }
  .bv20-model,
  .bv20-workspaces,
  .bv20-detail-artifacts,
  .bv20-programs,
  .bv20-launch,
  .bv20-evidence,
  .bv20-inquiry,
  .bv20-faq,
  .bv20-detail-audience,
  .bv20-detail-outcomes,
  .bv20-detail-modules,
  .bv20-detail-pilot,
  .bv20-program-inquiry,
  .bv20-detail-faq { padding: 82px 0; }
  .bv20-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 40px; }
  .bv20-heading > p { max-width: 620px; }
  .bv20-comparison { grid-template-columns: 1fr; }
  .bv20-comparison > svg { transform: rotate(90deg); justify-self: center; }
  .bv20-model-grid,
  .bv20-workspace-grid,
  .bv20-detail-outcome-grid { grid-template-columns: minmax(0, 1fr); }
  .bv20-model-grid article,
  .bv20-workspace-grid article,
  .bv20-detail-outcome-grid article { min-height: 280px; border-right: 1px solid var(--bv20-light-line); border-bottom: 0; }
  .bv20-model-grid article:last-child,
  .bv20-workspace-grid article:last-child,
  .bv20-detail-outcome-grid article:last-child { border-bottom: 1px solid var(--bv20-light-line); }
  .bv20-model-card-top,
  .bv20-workspace-head,
  .bv20-detail-outcome-grid article > div { margin-bottom: 44px; }
  .bv20-program-accordion { grid-template-columns: minmax(0, 1fr); }
  .bv20-program-row[open] { grid-column: auto; }
  .bv20-program-panel { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .bv20-launch-track { grid-template-columns: repeat(2, 1fr); }
  .bv20-evidence-grid,
  .bv20-inquiry-card,
  .bv20-faq-grid,
  .bv20-modules-grid,
  .bv20-detail-pilot-grid,
  .bv20-program-inquiry-card { grid-template-columns: minmax(0, 1fr); }
  .bv20-evidence-copy,
  .bv20-modules-intro { position: static; }
  .bv20-inquiry { padding-top: 0; }
  .bv20-footer-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr; }
  .bv20-footer-note { grid-column: 1 / -1; }
  .bv20-detail-hero { padding-bottom: 74px; }
  .bv20-breadcrumb { margin-bottom: 50px; }
  .bv20-audience-visual { min-height: 370px; }
  .bv20-detail-page .bv20-detail-audience,
  .bv20-detail-page .bv20-detail-outcomes,
  .bv20-detail-page .bv20-detail-modules,
  .bv20-detail-page .bv20-detail-artifacts,
  .bv20-detail-page .bv20-detail-pilot,
  .bv20-detail-page .bv20-detail-faq { padding: 68px 0; }
  .bv20-detail-pilot-steps { min-height: 0; }
}

@media (max-width: 600px) {
  .bv20-shell { width: calc(100% - 28px); }
  .bv20-header-inner { min-height: 64px; }
  .bv20-brand { gap: 9px; }
  .bv20-brand > span { width: 38px; height: 38px; border-radius: 12px; font-size: 13px; }
  .bv20-brand strong { font-size: 17px; }
  .bv20-brand small { margin-top: 5px; font-size: 8px; }
  .bv20-header-cta { min-height: 40px; padding: 0 13px; font-size: 12px; }
  .bv20-header-cta svg { display: none; }
  .bv20-section-label { margin-bottom: 17px; font-size: 10px; line-height: 1.4; }
  .bv20-section-label > span { width: 22px; }
  .bv20-hero { padding-top: 50px; }
  .bv20-hero h1,
  .bv20-detail-hero h1 { font-size: clamp(44px, 14vw, 62px); line-height: 0.96; }
  .bv20-hero-lead,
  .bv20-detail-hero-grid > div > p { font-size: 16px; }
  .bv20-actions { display: grid; grid-template-columns: minmax(0, 1fr); }
  .bv20-button { width: 100%; }
  .bv20-hero-checks { display: grid; }
  .bv20-pilot { padding: 17px; }
  .bv20-pilot::after { right: -5px; top: -18px; }
  .bv20-pilot-task h2 { font-size: 27px; }
  .bv20-pilot-roles { grid-template-columns: minmax(0, 1fr); }
  .bv20-pilot-roles > div { border-right: 0; border-bottom: 1px solid var(--bv20-light-line); }
  .bv20-pilot-roles > div:last-child { border-bottom: 0; }
  .bv20-pilot-output strong { font-size: 11px; }
  .bv20-facts > div { min-height: 98px; padding: 18px; }
  .bv20-facts strong { font-size: 29px; }
  .bv20-facts span { font-size: 9px; }
  .bv20-model,
  .bv20-workspaces,
  .bv20-detail-artifacts,
  .bv20-programs,
  .bv20-launch,
  .bv20-evidence,
  .bv20-inquiry,
  .bv20-faq,
  .bv20-detail-audience,
  .bv20-detail-outcomes,
  .bv20-detail-modules,
  .bv20-detail-pilot,
  .bv20-program-inquiry,
  .bv20-detail-faq { padding: 64px 0; }
  .bv20-heading h2,
  .bv20-evidence-copy h2,
  .bv20-inquiry h2,
  .bv20-faq-intro h2,
  .bv20-detail-audience h2,
  .bv20-modules-intro h2,
  .bv20-detail-pilot h2,
  .bv20-program-inquiry h2 { font-size: clamp(38px, 11.5vw, 52px); }
  .bv20-model-grid article,
  .bv20-workspace-grid article,
  .bv20-detail-outcome-grid article { padding: 22px; }
  .bv20-programs .bv20-heading { margin-bottom: 28px; }
  .bv20-program-row > summary {
    min-height: 108px;
    padding: 15px 14px;
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 10px;
  }
  .bv20-program-index { grid-row: 1 / span 2; align-self: start; margin-top: 7px; }
  .bv20-program-summary-copy { grid-column: 2; }
  .bv20-program-summary-copy strong { font-size: 23px; }
  .bv20-program-summary-copy small { font-size: 11px; line-height: 1.35; white-space: normal; }
  .bv20-program-meta { grid-column: 2; justify-content: flex-start; }
  .bv20-program-row > summary > i { grid-column: 3; grid-row: 1 / span 2; }
  .bv20-program-panel { padding: 20px 14px 24px; }
  .bv20-program-panel-topics ul { grid-template-columns: minmax(0, 1fr); }
  .bv20-launch-track { grid-template-columns: minmax(0, 1fr); }
  .bv20-launch-track li { min-height: 210px; }
  .bv20-artifacts li { grid-template-columns: 44px 1fr; gap: 13px; }
  .bv20-artifacts li > svg { display: none; }
  .bv20-artifacts section h3 { font-size: 21px; }
  .bv20-inquiry-card,
  .bv20-program-inquiry-card { width: 100%; padding: 34px 18px; }
  .bv20-faq-list summary { grid-template-columns: 32px 1fr 20px; }
  .bv20-faq-list details > p { margin-left: 44px; margin-right: 12px; }
  .bv20-footer { padding-top: 54px; }
  .bv20-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px 24px; }
  .bv20-footer-intro,
  .bv20-footer-note { grid-column: 1 / -1; }
  .bv20-footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; }
  .bv20-detail-hero { padding-top: 36px; }
  .bv20-breadcrumb { margin-bottom: 38px; }
  .bv20-program-passport { grid-template-columns: 1fr; }
  .bv20-program-passport > section { grid-column: auto; }
  .bv20-audience-visual { min-height: 0; padding: 18px; gap: 24px; }
  .bv20-audience-visual figcaption { padding: 18px; }
  .bv20-audience-visual > p { font-size: 14px; }
  .bv20-detail-artifact-grid { grid-template-columns: minmax(0, 1fr); }
  .bv20-detail-artifact-grid article,
  .bv20-detail-artifact-grid article:nth-child(2) { min-height: 260px; border-right: 1px solid var(--bv20-light-line); border-bottom: 0; }
  .bv20-detail-artifact-grid article:last-child { border-bottom: 1px solid var(--bv20-light-line); }
  .bv20-detail-artifact-grid article > div { margin-bottom: 40px; }
  .bv20-module-list li { grid-template-columns: 44px minmax(0, 1fr); gap: 14px; }
  .bv20-module-number span { width: 42px; height: 42px; }
  .bv20-detail-page .bv20-detail-audience,
  .bv20-detail-page .bv20-detail-outcomes,
  .bv20-detail-page .bv20-detail-modules,
  .bv20-detail-page .bv20-detail-artifacts,
  .bv20-detail-page .bv20-detail-pilot,
  .bv20-detail-page .bv20-detail-faq { padding: 56px 0; }
  .bv20-detail-pilot-steps { padding: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bv20-detail-pilot-steps > li { min-height: 176px; padding: 14px; }
  .bv20-detail-pilot-steps strong { margin-top: 24px; font-size: 20px; }
}

@media (max-width: 360px) {
  .bv20-shell { width: calc(100% - 20px); }
  .bv20-header-inner { gap: 8px; }
  .bv20-brand { gap: 7px; min-width: 0; }
  .bv20-brand > span { flex: 0 0 34px; width: 34px; height: 34px; border-radius: 10px; }
  .bv20-brand strong { font-size: 14px; }
  .bv20-brand small { font-size: 7px; letter-spacing: .12em; }
  .bv20-header-cta { max-width: 108px; min-height: 42px; padding: 6px 9px; text-align: center; line-height: 1.15; white-space: normal; }
  .bv20-detail-hero h1 { font-size: clamp(38px, 14vw, 48px); }
  .bv20-button { min-width: 0; min-height: 48px; padding-inline: 14px; text-align: center; white-space: normal; }
  .bv20-program-passport { grid-template-columns: minmax(0, 1fr); }
  .bv20-program-passport > section { grid-column: auto; }
  .bv20-detail-outcome-grid h3,
  .bv20-detail-artifact-grid h3 { font-size: 25px; }
  .bv20-detail-pilot-steps { grid-template-columns: minmax(0, 1fr); grid-template-rows: none; }
  .bv20-footer-grid { grid-template-columns: minmax(0, 1fr); }
  .bv20-footer-intro,
  .bv20-footer-note { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .bv20-page *,
  .bv20-page *::before,
  .bv20-page *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Production integration: keep the published bv20 composition while the
   prototype mail link is replaced by the first-party CRM lead contract. */
.bv20-page {
  --lynq-canvas: #f3eee3;
  --lynq-paper: #fbf8f0;
  --lynq-ink: #10263a;
  --lynq-deep: #081a2a;
  --lynq-accent: #c43816;
  --lynq-line: rgba(16, 38, 58, .16);
  --font-geist-mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-family: Inter, Arial, sans-serif;
}

/* The legacy mobile performance layer estimates skipped section heights.
   Business anchors require final donor geometry before the browser scrolls. */
.marketing-page .bv20-page main > section {
  content-visibility: visible !important;
  contain-intrinsic-size: none !important;
}

html.lynq-redesign-document .lynq-redesign-root .bv20-page .bv20-button-primary {
  color: var(--bv20-white);
}

.bv20-icon {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bv20-inquiry-form-disclosure {
  margin-top: 22px;
}

.bv20-inquiry-form-disclosure > summary {
  width: fit-content;
  list-style: none;
  cursor: pointer;
}

.bv20-inquiry-form-disclosure > summary::-webkit-details-marker { display: none; }

.bv20-inquiry-form-disclosure[open] > summary { margin-bottom: 22px; }

.bv20-inquiry-form {
  display: grid;
  gap: 17px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(92, 24, 9, .17);
}

.bv20-inquiry-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bv20-inquiry-field {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.bv20-inquiry-field-wide { grid-column: 1 / -1; }

.bv20-inquiry-field input,
.bv20-inquiry-field select,
.bv20-inquiry-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 0;
  background: #fffaf0;
  color: var(--bv20-ink);
  font: inherit;
  font-weight: 600;
}

.bv20-inquiry-field textarea {
  min-height: 112px;
  resize: vertical;
}

.bv20-inquiry-field input:focus-visible,
.bv20-inquiry-field select:focus-visible,
.bv20-inquiry-field textarea:focus-visible {
  outline-color: #fff;
}

.bv20-inquiry-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
}

.bv20-inquiry-consent input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--bv20-deep);
}

.bv20-inquiry-form .bv20-button {
  width: fit-content;
  border-color: var(--bv20-deep);
  background: var(--bv20-deep);
  color: #fff;
}

.bv20-inquiry-status {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
}

.bv20-inquiry-status.is-success { background: rgba(21, 91, 58, .55); }
.bv20-inquiry-status.is-error { background: rgba(92, 24, 9, .55); }

.bv20-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.bv20-program-intent-note {
  margin: 0 0 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 600px) {
  .bv20-inquiry-form { padding: 18px 14px; }
  .bv20-inquiry-form-grid { grid-template-columns: minmax(0, 1fr); }
  .bv20-inquiry-field-wide { grid-column: auto; }
  .bv20-inquiry-form .bv20-button { width: 100%; }
}
