/* ══════════════════════════════════════════════════════════════════
   Bart Labs — solutions.html stylesheet
   "Chain of Custody" — media as evidence. Calm, credible, regulated-buyer voice.
   Tokens mirror index.html; dark mode ladder mirrors index.html exactly.
══════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #FDF8F3;
  --white:      #FFFFFF;
  --ink:        #2D3436;
  --ink-light:  #636E72;
  --ink-xlight: #7A8084;
  --rule:       #E5DDD5;
  --rule-light: #F0EAE3;
  --orange:     #FF6B35;
  --orange-cta:       #E85A2A;
  --orange-cta-hover: #D14E20;
  --teal:       #00D4AA;
  --purple:     #6C5CE7;
  --serif:      'Fraunces', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;
  --radius:     6px;
  --max:        1200px;
  --gutter:     clamp(24px, 5vw, 80px);
  --shadow-ink: 45,52,54;
  --nav-bg: rgba(253,248,243,0.92);
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --cream:      #14181B;
    --white:      #1B2024;
    --ink:        #F4F1EC;
    --ink-light:  #C8C3BB;
    --ink-xlight: #8B8983;
    --rule:       #2A3034;
    --rule-light: #333941;
    --shadow-ink: 0,0,0;
    --nav-bg: rgba(20,24,27,0.85);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --cream:      #14181B;
  --white:      #1B2024;
  --ink:        #F4F1EC;
  --ink-light:  #C8C3BB;
  --ink-xlight: #8B8983;
  --rule:       #2A3034;
  --rule-light: #333941;
  --shadow-ink: 0,0,0;
  --nav-bg: rgba(20,24,27,0.85);
  color-scheme: dark;
}
:root[data-theme="light"] {
  --cream:      #FDF8F3;
  --white:      #FFFFFF;
  --ink:        #2D3436;
  --ink-light:  #636E72;
  --ink-xlight: #7A8084;
  --rule:       #E5DDD5;
  --rule-light: #F0EAE3;
  --shadow-ink: 45,52,54;
  --nav-bg: rgba(253,248,243,0.92);
  color-scheme: light;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.25s ease, color 0.25s ease;
}

.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   NAV — identical structure to index.html
══════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.nav__logo span {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-light);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__cta {
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius);
  background: var(--orange-cta);
  color: #fff !important;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.18s, transform 0.18s;
}
.nav__cta:hover { background: var(--orange-cta-hover); transform: translateY(-1px); }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: transparent;
  cursor: pointer;
  color: var(--ink-light);
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  margin-left: 4px;
}
.theme-toggle:hover { border-color: var(--ink-light); color: var(--ink); }
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle__icon--moon { display: none; }
:root[data-theme="dark"] .theme-toggle__icon--sun { display: none; }
:root[data-theme="dark"] .theme-toggle__icon--moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle__icon--sun { display: none; }
  :root:not([data-theme="light"]) .theme-toggle__icon--moon { display: block; }
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav--open .nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__hamburger span:nth-child(2) { opacity: 0; }
.nav--open .nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 var(--gutter) 24px;
  border-top: 1px solid var(--rule);
}
.nav--open .nav__mobile { display: flex; }
.nav__mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-light);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-light);
  transition: color 0.18s;
}
.nav__mobile a:hover { color: var(--ink); }
.nav__mobile a[aria-current="page"] { color: var(--ink); }
.nav__mobile .nav__cta {
  margin-top: 16px;
  text-align: center;
  border-bottom: none;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ══════════════════════════════════════════════════════════════
   PAGE INTRO
══════════════════════════════════════════════════════════════ */
.solutions-intro {
  padding-block: clamp(56px, 8vw, 84px) clamp(40px, 5vw, 56px);
}
.solutions-intro__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-xlight);
  margin-bottom: 18px;
}
.solutions-intro__h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: 18px;
}
.solutions-intro__h1 em { font-style: italic; font-weight: 300; }
.solutions-intro__sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 620px;
}

/* ══════════════════════════════════════════════════════════════
   THE COMPLETE WALKTHROUGH — 6:01 exhibit + chapter rail
══════════════════════════════════════════════════════════════ */
.walkthrough {
  padding-bottom: clamp(48px, 6vw, 72px);
}
.walkthrough__inner {
  max-width: 880px;
  margin-inline: auto;
}
.walkthrough__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-xlight);
  margin-bottom: 10px;
}
.walkthrough__lede {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 24px;
}
.walkthrough__bridge {
  max-width: 880px;
  margin-inline: auto;
  margin-top: clamp(32px, 4vw, 44px);
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-light);
  line-height: 1.7;
}

/* Exhibit pill — bottom-left over the walkthrough frame */
.exhibit-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(14,17,24,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  font-feature-settings: "tnum" 1;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}
.exhibit-tag__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* Chapter rail — below the walkthrough frame. Segments are rendered by
   solutions.js from assets/chapters.json: inert <div> labels while "start"
   is null, seek buttons once real timestamps are filled in. */
.chapter-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.chapter-rail__act {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 4px 0;
  border-top: 2px solid var(--rule);
  background: none;
  border-left: none; border-right: none; border-bottom: none;
  text-align: left;
  font-family: var(--sans);
  cursor: default;
  min-height: 44px;
}
.chapter-rail__act[data-seekable="true"] { cursor: pointer; }
.chapter-rail__act--hook     { border-top-color: var(--rule); }
.chapter-rail__act--protect  { border-top-color: var(--orange); }
.chapter-rail__act--retain   { border-top-color: var(--teal); }
.chapter-rail__act--prove    { border-top-color: var(--ink); }
.chapter-rail__act.is-active { border-top-width: 3px; }
.chapter-rail__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-xlight);
}
.chapter-rail__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-light);
  line-height: 1.35;
}
.chapter-rail__act.is-active .chapter-rail__title { color: var(--ink); }
.chapter-rail__act.is-active .chapter-rail__label { color: var(--ink); }
.act-indicator {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-light);
  margin-top: 10px;
  letter-spacing: 0.02em;
}
@media (max-width: 600px) {
  .chapter-rail { grid-template-columns: repeat(2, 1fr); gap: 14px 8px; }
}

/* ══════════════════════════════════════════════════════════════
   PERSONA SELECTOR — 3 large self-select tiles + disabled 4th
══════════════════════════════════════════════════════════════ */
.persona-select {
  display: flex;
  gap: 14px;
  padding-bottom: clamp(40px, 6vw, 64px);
  flex-wrap: wrap;
}
.persona-tile {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  padding: 22px 20px;
  border-radius: 10px;
  border: 1.5px solid var(--rule);
  background: var(--white);
  cursor: pointer;
  font-family: var(--sans);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  min-height: 44px;
}
.persona-tile:hover:not([disabled]) { border-color: var(--ink-xlight); }
.persona-tile:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.persona-tile__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--ink-xlight);
}
.persona-tile--claims .persona-tile__dot    { background: var(--orange); }
.persona-tile--wealth .persona-tile__dot    { background: var(--teal); }
.persona-tile--knowledge .persona-tile__dot { background: var(--purple); }
.persona-tile__dot--dashed {
  background: transparent;
  border: 1.5px dashed var(--ink-xlight);
}
.persona-tile__role {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.persona-tile__subtitle {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.5;
}
.persona-tile__pill {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-xlight);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 3px 9px;
  margin-top: 2px;
}

/* Non-selected tiles compress slightly; selected tile promotes */
.persona-tile { opacity: 0.82; transform: scale(0.99); }
.persona-tile.is-active { opacity: 1; transform: scale(1); box-shadow: 0 6px 20px rgba(var(--shadow-ink), 0.08); }
.persona-tile--claims.is-active    { border-color: var(--orange); }
.persona-tile--wealth.is-active    { border-color: var(--teal); }
.persona-tile--knowledge.is-active { border-color: var(--purple); }

.persona-tile[disabled],
.persona-tile.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  border-style: dashed;
}
.persona-tile[disabled]:hover { border-color: var(--rule); }

@media (max-width: 720px) {
  .persona-select { flex-direction: column; }
  .persona-tile { flex: 1 1 auto; }
}

/* ══════════════════════════════════════════════════════════════
   PERSONA PANELS — video left / copy right (mirrors home hero)
══════════════════════════════════════════════════════════════ */
.panel-wrap {
  padding-bottom: clamp(64px, 8vw, 100px);
  border-bottom: 1px solid var(--rule);
}
.persona-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.persona-panel[hidden] { display: none; }
.persona-panel.is-transitioning-out {
  opacity: 0;
  transform: translateY(8px);
}
.persona-panel.is-transitioning-in {
  opacity: 0;
  transform: translateY(8px);
  transition: none;
}

@media (max-width: 900px) {
  .persona-panel { grid-template-columns: 1fr; }
  .persona-panel__video { order: -1; }
}

/* Video frame — copied pattern from index.html hero */
.video-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--rule),
    0 4px 12px rgba(var(--shadow-ink),0.06),
    0 20px 48px rgba(var(--shadow-ink),0.1);
  background: #0E1118;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.video-frame video,
.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-lqip {
  position: absolute;
  inset: 0;
  filter: blur(18px);
  transform: scale(1.15);
  z-index: 0;
}
.video-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-poster.is-loaded { opacity: 1; }
.video-frame video { z-index: 2; }
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(to bottom, rgba(14,17,24,0.2) 0%, rgba(14,17,24,0.45) 100%);
  transition: opacity 0.25s;
}
.video-overlay.hidden { opacity: 0; pointer-events: none; }
.play-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.28);
  transition: transform 0.18s, background 0.18s;
}
.video-frame:hover .play-btn { transform: scale(1.07); background: #fff; }
.play-btn svg { width: 20px; height: 20px; fill: var(--ink); margin-left: 3px; }
.play-btn.is-buffering { animation: buffer-ring 1.1s ease-in-out infinite; }
@keyframes buffer-ring {
  0%, 100% { box-shadow: 0 2px 16px rgba(0,0,0,0.28), 0 0 0 0 rgba(0,212,170,0.55); }
  50%      { box-shadow: 0 2px 16px rgba(0,0,0,0.28), 0 0 0 6px rgba(0,212,170,0); }
}
.video-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.transcript-note {
  font-size: 12px;
  color: var(--ink-xlight);
  font-style: italic;
  margin-top: 10px;
}

/* Copy column */
.persona-panel__subtitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-xlight);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.persona-panel__h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}
.persona-panel__pain {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.persona-panel__beats-label,
.persona-panel__proof-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-xlight);
  margin-bottom: 12px;
}
.persona-panel__beats {
  list-style: none;
  counter-reset: beat;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.persona-panel__beats li {
  counter-increment: beat;
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.persona-panel__beats li::before {
  content: counter(beat);
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-xlight);
}
.persona-panel__proof {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  padding: 16px 18px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--cream);
}
.persona-panel__proof li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-light);
  line-height: 1.55;
}
.persona-panel__proof-dot {
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-top: 6px;
  background: var(--ink-xlight);
}
[data-panel="claims"] .persona-panel__proof-dot    { background: var(--orange); }
[data-panel="wealth"] .persona-panel__proof-dot    { background: var(--teal); }
[data-panel="knowledge"] .persona-panel__proof-dot { background: var(--purple); }

.persona-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}
.persona-panel__cta:hover { transform: translateY(-1px); }
[data-panel="claims"] .persona-panel__cta {
  background: var(--orange-cta);
  box-shadow: 0 1px 3px rgba(232,90,42,0.3), 0 4px 12px rgba(232,90,42,0.18);
}
[data-panel="claims"] .persona-panel__cta:hover { background: var(--orange-cta-hover); }
[data-panel="wealth"] .persona-panel__cta {
  background: #00A583;
  box-shadow: 0 1px 3px rgba(0,165,131,0.3), 0 4px 12px rgba(0,165,131,0.18);
}
[data-panel="wealth"] .persona-panel__cta:hover { background: #008F71; }
[data-panel="knowledge"] .persona-panel__cta {
  background: var(--purple);
  box-shadow: 0 1px 3px rgba(108,92,231,0.3), 0 4px 12px rgba(108,92,231,0.18);
}
[data-panel="knowledge"] .persona-panel__cta:hover { background: #5A48D6; }

/* ══════════════════════════════════════════════════════════════
   AI GOVERNANCE — capability grid, honest maturity badges
   White section (alternates against the cream panel-wrap above it,
   mirrors the .pillars pattern). Badge alpha values are derived
   directly from --orange / --teal (theme-invariant tokens) so the
   tint reads correctly in both light and dark without a new token.
══════════════════════════════════════════════════════════════ */
.governance {
  padding-block: clamp(72px, 9vw, 112px);
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}
.governance__heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 640px;
  margin-bottom: 16px;
}
.governance__heading em { font-style: italic; font-weight: 300; }
.governance__lede {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.gov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
}
.gov-card {
  background: var(--white);
  padding: clamp(26px, 3vw, 32px) clamp(22px, 2.6vw, 28px);
  transition: background 0.2s;
}
.gov-card:hover { background: var(--cream); }
.gov-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.gov-card__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
}
.gov-card__body {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.65;
}
.gov-badge {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.gov-badge--beta {
  background: rgba(255,107,53,0.12);
  color: var(--orange-cta);
  border: 1px solid rgba(255,107,53,0.28);
}
.gov-badge--ga {
  background: rgba(0,212,170,0.14);
  color: #00A583;
  border: 1px solid rgba(0,212,170,0.3);
}
.governance__note {
  margin-top: clamp(28px, 3vw, 36px);
  max-width: 760px;
  padding-top: 20px;
  border-top: 1px dashed var(--rule);
  font-size: 13.5px;
  font-style: italic;
  color: var(--ink-xlight);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .gov-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gov-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   CLOSING CTA — reused pattern from index.html / products.html
══════════════════════════════════════════════════════════════ */
.cta-band {
  padding-block: clamp(72px, 9vw, 108px);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.cta-band__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-xlight);
  margin-bottom: 20px;
}
.cta-band__h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 600px;
  margin-inline: auto;
}
.cta-band__h2 em { font-style: italic; font-weight: 300; }
.cta-band__sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-light);
  line-height: 1.65;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 36px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius);
  background: var(--orange-cta);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 3px rgba(232,90,42,0.3), 0 4px 12px rgba(232,90,42,0.18);
}
.btn-primary:hover { background: var(--orange-cta-hover); transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════════════
   FOOTER — identical to index.html
══════════════════════════════════════════════════════════════ */
.footer { padding-block: clamp(40px, 5vw, 60px); background: var(--cream); }
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__brand-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.footer__brand-tag { font-size: 13px; color: var(--ink-xlight); line-height: 1.5; margin-bottom: 14px; }
.footer__domain { font-size: 13px; font-weight: 500; color: var(--ink-light); }
.footer__right { text-align: right; }
.footer__copy { font-size: 12px; color: var(--ink-xlight); }

@media (max-width: 600px) {
  .footer__inner { flex-direction: column; }
  .footer__right { text-align: left; }
}
