/* ── Public Bench — Brand Token System ───────────────────────────────── */

:root {
  /* Color */
  --pb-navy:          #0e2747;
  --pb-navy-deep:     #0a1d36;
  --pb-accent:        #c9853a;
  --pb-accent-strong: #a86a23;
  --pb-bg:            #faf7f0;
  --pb-cream:         #f5f1e8;
  --pb-cream-warm:    #efe9dc;
  --pb-fg:            #1c1d24;
  --pb-fg-soft:       #54565f;
  --pb-line:          rgba(14, 39, 71, 0.14);

  /* Typography */
  --pb-sans: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --pb-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Type scale */
  --pb-fs-hero:     clamp(40px, 5.5vw, 72px);
  --pb-fs-title:    clamp(28px, 3vw, 44px);
  --pb-fs-subtitle: clamp(18px, 2vw, 26px);
  --pb-fs-body:     17px;
  --pb-fs-small:    14px;
  --pb-fs-micro:    12px;

  /* Letter spacing */
  --pb-ls-tight:   -0.025em;
  --pb-ls-heading: -0.015em;
  --pb-ls-eyebrow:  0.18em;

  /* Spacing */
  --pb-space-4:  16px;
  --pb-space-5:  24px;
  --pb-space-6:  32px;
  --pb-space-7:  48px;
  --pb-space-8:  64px;
  --pb-space-9:  96px;

  /* Radii */
  --pb-radius-sm: 4px;
  --pb-radius-md: 8px;

  /* Rules */
  --pb-hairline:    1px solid var(--pb-line);
  --pb-rule-accent: 4px solid var(--pb-accent);
}

/* ── Base ─────────────────────────────────────────────────────────────── */

body {
  font-family: var(--pb-sans);
  background: var(--pb-bg);
  color: var(--pb-fg);
  font-size: var(--pb-fs-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--pb-accent-strong); }
a:hover { color: var(--pb-accent); }

code, pre, .pb-mono { font-family: var(--pb-mono); }

/* ── Type Primitives ──────────────────────────────────────────────────── */

.pb-eyebrow {
  font-size: var(--pb-fs-micro);
  font-weight: 600;
  letter-spacing: var(--pb-ls-eyebrow);
  text-transform: uppercase;
  color: var(--pb-accent);
}

.pb-hero {
  font-size: var(--pb-fs-hero);
  font-weight: 700;
  letter-spacing: var(--pb-ls-tight);
  line-height: 1.0;
  text-wrap: balance;
  color: var(--pb-navy);
}

.pb-hero-on-navy {
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  text-wrap: balance;
  color: var(--pb-cream);
}

.pb-title {
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-wrap: balance;
  color: var(--pb-navy);
}

.pb-subtitle {
  font-size: var(--pb-fs-subtitle);
  line-height: 1.35;
  color: var(--pb-fg-soft);
  text-wrap: pretty;
}

.pb-body { font-size: var(--pb-fs-body); line-height: 1.5; color: var(--pb-fg); }
.pb-body-soft { color: var(--pb-fg-soft); }

.pb-section-body {
  font-size: 18px;
  color: var(--pb-fg-soft);
  line-height: 1.55;
  max-width: 640px;
  margin-top: 20px;
  margin-bottom: 56px;
}

/* ── Accent Rule ──────────────────────────────────────────────────────── */

.pb-accent-rule {
  display: block;
  width: 52px;
  height: 3px;
  background: var(--pb-accent);
  border: none;
  margin: 0;
}

/* ── Navbar ───────────────────────────────────────────────────────────── */

.pb-navbar {
  background: var(--pb-navy);
  border-bottom: var(--pb-hairline);
  padding: 0;
}

.pb-navbar .navbar-brand {
  padding: 12px 0;
  display: flex;
  align-items: center;
}

/* .pb-navbar .navbar-brand img removed — navbar now uses inline SVG icon (Part 10.1) */

.pb-navbar .nav-link {
  color: rgba(245, 241, 232, 0.7) !important;
  font-size: var(--pb-fs-small);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 16px !important;
  transition: color 150ms;
}

.pb-navbar .nav-link:hover {
  color: var(--pb-cream) !important;
}

.pb-navbar .nav-link.active {
  color: var(--pb-cream) !important;
}

.pb-navbar .btn-nav-cta {
  background: var(--pb-accent);
  color: var(--pb-navy);
  font-size: var(--pb-fs-small);
  font-weight: 600;
  padding: 7px 18px;
  border-radius: var(--pb-radius-sm);
  border: none;
  transition: background 150ms;
  text-decoration: none;
  white-space: nowrap;
}

.pb-navbar .btn-nav-cta:hover {
  background: var(--pb-accent-strong);
  color: var(--pb-navy);
}

/* ── Footer ───────────────────────────────────────────────────────────── */

.pb-footer {
  background: var(--pb-navy);
  border-top: var(--pb-hairline);
  padding: var(--pb-space-8) 0 var(--pb-space-6);
  margin-top: var(--pb-space-9);
}

.pb-footer-logo img {
  height: 32px;
  width: auto;
  margin-left: -6px;
  margin-bottom: var(--pb-space-4);
  opacity: 0.9;
}

.pb-footer-tagline {
  font-size: var(--pb-fs-small);
  color: rgba(245, 241, 232, 0.5);
  line-height: 1.5;
}

.pb-footer h6 {
  font-size: var(--pb-fs-micro);
  font-weight: 600;
  letter-spacing: var(--pb-ls-eyebrow);
  text-transform: uppercase;
  color: var(--pb-accent);
  margin-bottom: var(--pb-space-4);
}

.pb-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pb-footer-links li {
  margin-bottom: 8px;
}

.pb-footer-links a {
  color: rgba(245, 241, 232, 0.65);
  text-decoration: none;
  font-size: var(--pb-fs-small);
  transition: color 150ms;
}

.pb-footer-links a:hover {
  color: var(--pb-cream);
}

.pb-footer-divider {
  border-top: var(--pb-hairline);
  border-color: rgba(245, 241, 232, 0.12);
  margin: var(--pb-space-6) 0 var(--pb-space-5);
}

.pb-footer-bottom {
  color: rgba(245, 241, 232, 0.35);
  font-size: 12px;
}

/* ── Hero Section ─────────────────────────────────────────────────────── */

.pb-hero-section {
  background: var(--pb-navy);
  padding: 100px 0 96px;
}

.pb-hero-section .pb-eyebrow {
  margin-bottom: var(--pb-space-4);
}

.pb-hero-section .pb-subtitle-hero {
  font-size: clamp(16px, 1.8vw, 22px);
  color: rgba(245, 241, 232, 0.72);
  line-height: 1.45;
  max-width: 560px;
  text-wrap: pretty;
  margin-top: var(--pb-space-5);
  margin-bottom: var(--pb-space-7);
}

/* Global hero subtitle — used on all hero sections */
.pb-hero-section-subtitle {
  font-size: 20px;
  color: rgba(245, 241, 232, 0.65);
  line-height: 1.5;
  max-width: 560px;
  margin-top: 28px;
  margin-bottom: 44px;
}

/* ── Pillar Grid ──────────────────────────────────────────────────────── */

.pb-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

@media (max-width: 900px) {
  .pb-pillars { grid-template-columns: 1fr; gap: 32px; }
}

.pb-pillar {
  border-top: 3px solid var(--pb-accent);
  padding-top: 24px;
}

.pb-pillar-num {
  font-size: var(--pb-fs-micro);
  font-weight: 600;
  letter-spacing: var(--pb-ls-eyebrow);
  text-transform: uppercase;
  color: var(--pb-accent);
  margin-bottom: 10px;
}

.pb-pillar-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--pb-navy);
  margin-bottom: 12px;
}

.pb-pillar-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--pb-fg-soft);
}

/* ── Section Rhythm ───────────────────────────────────────────────────── */

.pb-section {
  padding: 96px 0 104px;
}

.pb-section-cream {
  background: var(--pb-cream-warm);
  padding: 96px 0 104px;
}

.pb-section-navy {
  background: var(--pb-navy);
  padding: 96px 0 104px;
  color: var(--pb-cream);
}

/* ── How It Works Steps ───────────────────────────────────────────────── */

.pb-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: var(--pb-space-7);
}

@media (max-width: 900px) {
  .pb-steps { grid-template-columns: 1fr; gap: 24px; }
}

.pb-step {
  border-top: var(--pb-hairline);
  padding-top: var(--pb-space-5);
}

.pb-step-num {
  font-family: var(--pb-mono);
  font-size: var(--pb-fs-micro);
  color: var(--pb-accent);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.pb-step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--pb-navy);
  margin-bottom: 8px;
}

.pb-step-body {
  font-size: var(--pb-fs-small);
  color: var(--pb-fg-soft);
  line-height: 1.55;
}

/* ── Editorial Table ──────────────────────────────────────────────────── */

.pb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--pb-fs-small);
}

.pb-table thead tr {
  border-top: var(--pb-hairline);
  border-bottom: var(--pb-hairline);
}

.pb-table thead th {
  font-size: var(--pb-fs-micro);
  font-weight: 600;
  letter-spacing: var(--pb-ls-eyebrow);
  text-transform: uppercase;
  color: var(--pb-fg-soft);
  padding: 10px 12px;
  text-align: left;
}

.pb-table tbody tr {
  border-bottom: var(--pb-hairline);
}

.pb-table tbody td {
  padding: 12px 12px;
  color: var(--pb-fg);
  vertical-align: middle;
}

.pb-table tbody tr:hover {
  background: var(--pb-cream-warm);
}

/* ── Grade Chips ──────────────────────────────────────────────────────── */

.grade-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--pb-radius-sm);
  letter-spacing: 0.02em;
}

.grade-A { color: var(--pb-navy); background: var(--pb-accent); }
.grade-B { color: #fff; background: var(--pb-navy); }
.grade-C { color: var(--pb-navy); background: #e6c97a; }
.grade-D { color: #fff; background: #b05b2e; }
.grade-F { color: #fff; background: #6b3030; }

/* Large grade display (report card) */
.grade-display-lg {
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* ── Buttons ──────────────────────────────────────────────────────────── */

/* Reset button elements before applying brand styles */
button.btn-pb-primary,
button.btn-pb-ochre,
button.btn-pb-outline {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
}

/* Primary button (light bg) */
.btn-pb-primary {
  background: var(--pb-navy);
  color: var(--pb-cream);
  border: none;
  border-radius: var(--pb-radius-sm);
  padding: 12px 28px;
  font-size: var(--pb-fs-small);
  font-weight: 600;
  font-family: var(--pb-sans);
  cursor: pointer;
  transition: background 150ms;
  text-decoration: none;
  display: inline-block;
}
.btn-pb-primary:hover { background: var(--pb-navy-deep); color: var(--pb-cream); }

/* Primary button (navy bg) */
.btn-pb-ochre {
  background: var(--pb-accent);
  color: var(--pb-navy);
  border: none;
  border-radius: var(--pb-radius-sm);
  padding: 12px 28px;
  font-size: var(--pb-fs-small);
  font-weight: 700;
  font-family: var(--pb-sans);
  cursor: pointer;
  transition: background 150ms;
  text-decoration: none;
  display: inline-block;
}
.btn-pb-ochre:hover { background: var(--pb-accent-strong); color: var(--pb-navy); }

/* Large size */
.btn-pb-lg { padding: 14px 36px; font-size: 16px; }

/* Secondary outlined */
.btn-pb-outline {
  background: transparent;
  color: var(--pb-navy);
  border: 1.5px solid var(--pb-navy);
  border-radius: var(--pb-radius-sm);
  padding: 10px 24px;
  font-size: var(--pb-fs-small);
  font-weight: 600;
  font-family: var(--pb-sans);
  cursor: pointer;
  transition: all 150ms;
  text-decoration: none;
  display: inline-block;
}
.btn-pb-outline:hover { background: var(--pb-navy); color: var(--pb-cream); }

/* Bootstrap overrides — make btn-dark and btn-warning match brand */
.btn-dark {
  background: var(--pb-navy) !important;
  border-color: var(--pb-navy) !important;
  color: var(--pb-cream) !important;
  border-radius: var(--pb-radius-sm) !important;
  font-weight: 600;
  transition: background 150ms !important;
}
.btn-dark:hover {
  background: var(--pb-navy-deep) !important;
  border-color: var(--pb-navy-deep) !important;
}

.btn-warning {
  background: var(--pb-accent) !important;
  border-color: var(--pb-accent) !important;
  color: var(--pb-navy) !important;
  border-radius: var(--pb-radius-sm) !important;
  font-weight: 700;
  transition: background 150ms !important;
}
.btn-warning:hover {
  background: var(--pb-accent-strong) !important;
  border-color: var(--pb-accent-strong) !important;
  color: var(--pb-navy) !important;
}

.btn-outline-dark {
  border-color: var(--pb-navy) !important;
  color: var(--pb-navy) !important;
  border-radius: var(--pb-radius-sm) !important;
  font-weight: 600;
}
.btn-outline-dark:hover {
  background: var(--pb-navy) !important;
  color: var(--pb-cream) !important;
}

/* ── Form Fields ──────────────────────────────────────────────────────── */

.form-control, .form-select {
  border: 1px solid var(--pb-line);
  border-radius: var(--pb-radius-sm);
  font-family: var(--pb-sans);
  background: #fff;
  color: var(--pb-fg);
  transition: border-color 150ms;
}

.form-control:focus, .form-select:focus {
  border-color: var(--pb-navy);
  box-shadow: 0 0 0 2px rgba(14, 39, 71, 0.1);
  outline: none;
}

input[type="url"].form-control,
input.pb-mono {
  font-family: var(--pb-mono);
}

.form-label {
  font-size: var(--pb-fs-small);
  color: var(--pb-navy);
}

.form-text {
  font-size: 12px;
  color: var(--pb-fg-soft);
}

/* ── Progress Bar ─────────────────────────────────────────────────────── */

.progress {
  background: var(--pb-cream-warm);
  border-radius: 2px;
}

.progress-bar, .progress-bar.bg-dark {
  background: var(--pb-navy) !important;
}

.progress-bar-animated {
  background: var(--pb-accent) !important;
}

/* ── Cards ────────────────────────────────────────────────────────────── */

.card {
  border: var(--pb-hairline);
  border-radius: var(--pb-radius-sm);
  background: #fff;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(14, 39, 71, 0.06);
  transition: box-shadow 150ms;
}

/* ── Badges ───────────────────────────────────────────────────────────── */

.badge.bg-warning {
  background: var(--pb-accent) !important;
  color: var(--pb-navy) !important;
}

/* Beta badge */
.beta-badge {
  background: var(--pb-accent);
  color: var(--pb-navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: var(--pb-radius-sm);
  vertical-align: middle;
  text-transform: uppercase;
}

/* ── Bootstrap Table Overrides ────────────────────────────────────────── */

.table {
  color: var(--pb-fg);
  font-size: var(--pb-fs-small);
  --bs-table-bg: transparent;
  --bs-table-hover-bg: var(--pb-cream-warm);
}

.table thead th {
  font-size: var(--pb-fs-micro);
  letter-spacing: var(--pb-ls-eyebrow);
  text-transform: uppercase;
  color: var(--pb-fg-soft);
  font-weight: 600;
  border-bottom: var(--pb-hairline);
}

.table-light { background: transparent !important; }
.table > :not(caption) > * > * { border-bottom-color: var(--pb-line); }

/* ── Onboarding Progress ──────────────────────────────────────────────── */

.pb-onboard-progress {
  display: flex;
  gap: 4px;
  margin-bottom: var(--pb-space-6);
}

.pb-onboard-step {
  height: 3px;
  flex: 1;
  background: var(--pb-cream-warm);
  border-radius: 2px;
}

.pb-onboard-step.active {
  background: var(--pb-accent);
}

.pb-onboard-step.done {
  background: var(--pb-navy);
}

/* ── Alert Overrides ──────────────────────────────────────────────────── */

.alert-info {
  background: rgba(14, 39, 71, 0.06);
  border-color: rgba(14, 39, 71, 0.15);
  color: var(--pb-navy);
}

/* ── Utility ──────────────────────────────────────────────────────────── */

.text-accent { color: var(--pb-accent); }
.text-navy { color: var(--pb-navy); }
.bg-navy { background: var(--pb-navy); }
.bg-cream { background: var(--pb-cream-warm); }

/* ── Interior Page Hero ───────────────────────────────────────────────── */

.pb-hero-section-interior {
  background: var(--pb-navy);
  padding: 64px 0 60px;
}

/* ── CTA Band ─────────────────────────────────────────────────────────── */

.pb-cta-band {
  background: var(--pb-cream-warm);
  border-top: 3px solid var(--pb-accent);
  padding: 36px 40px;
  border-radius: var(--pb-radius-sm);
}

/* ── Stats Band ───────────────────────────────────────────────────────── */

.pb-stats-band {
  background: var(--pb-cream-warm);
  border-top: 1px solid var(--pb-line);
  border-bottom: 1px solid var(--pb-line);
  padding: 64px 0;
}

.pb-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.pb-stat-item {
  padding-right: 48px;
  border-right: 1px solid var(--pb-line);
}
.pb-stat-item:first-child { padding-left: 0; }
.pb-stat-item:nth-child(2) { padding-left: 48px; }
.pb-stat-item:last-child {
  border-right: none;
  padding-left: 48px;
  padding-right: 0;
}

.pb-stat-num {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--pb-navy);
  line-height: 1;
  margin-bottom: 12px;
}

.pb-stat-rule {
  width: 32px;
  height: 3px;
  background: var(--pb-accent);
  border: none;
  margin-bottom: 14px;
  display: block;
}

.pb-stat-label {
  font-size: 15px;
  color: var(--pb-fg-soft);
  line-height: 1.4;
  max-width: 220px;
  margin-bottom: 8px;
}

.pb-stat-sublabel {
  font-size: 11px;
  color: rgba(28,29,36,0.4);
  font-family: var(--pb-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .pb-stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .pb-stat-item { border-right: none; padding: 0 !important; }
}

/* ── Pipeline (How It Works) ──────────────────────────────────────────── */

.pb-pipeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid rgba(14,39,71,0.1);
  margin-bottom: 40px;
}

.pb-pipeline-card {
  background: var(--pb-cream-warm);
  padding: 24px 20px;
  position: relative;
  border-right: 1px solid rgba(14,39,71,0.08);
}
.pb-pipeline-card:last-child { border-right: none; }

.pb-pipeline-stage {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pb-accent);
  margin-bottom: 8px;
  font-family: var(--pb-sans);
}

.pb-pipeline-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--pb-navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.pb-pipeline-body {
  font-size: 12px;
  color: var(--pb-fg-soft);
  line-height: 1.55;
}

.pb-pipeline-arrow {
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pb-accent);
  font-size: 13px;
  z-index: 2;
  background: var(--pb-cream-warm);
  padding: 2px 1px;
  line-height: 1;
}

.pb-pipeline-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--pb-line);
  padding-top: 28px;
}

.pb-pipeline-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--pb-navy);
  margin-bottom: 4px;
}

.pb-pipeline-meta span {
  font-size: 13px;
  color: var(--pb-fg-soft);
}

@media (max-width: 900px) {
  .pb-pipeline { grid-template-columns: 1fr 1fr; }
  .pb-pipeline-meta { grid-template-columns: 1fr; gap: 16px; }
}

.pb-pipeline-card--roundtable {
  background: #e4ddd0;
}

.pb-pipeline-card--roundtable .pb-pipeline-arrow {
  background: #e4ddd0;
}

/* ── Theory of Change Horizons ────────────────────────────────────────── */

.pb-horizons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
  margin-bottom: 48px;
}

.pb-horizon {
  border-top: 1px solid rgba(245,241,232,0.15);
  padding-top: 28px;
}

.pb-horizon-label {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--pb-cream);
  line-height: 1;
  margin-bottom: 4px;
}

.pb-horizon-label.is-accent { color: var(--pb-accent); }

.pb-horizon-time {
  font-size: 11px;
  color: rgba(245,241,232,0.4);
  font-family: var(--pb-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pb-horizon h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--pb-cream);
  margin-bottom: 10px;
}

.pb-horizon p {
  font-size: 14px;
  color: rgba(245,241,232,0.58);
  line-height: 1.6;
}

.pb-horizon-footer-text {
  border-top: 1px solid rgba(245,241,232,0.1);
  padding-top: 28px;
  font-size: 14px;
  color: rgba(245,241,232,0.4);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .pb-horizons { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Documentation TOC ────────────────────────────────────────────────── */

.pb-doc-toc {
  border-right: 1px solid var(--pb-line);
  padding-right: 32px;
}

.pb-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pb-toc-list li { margin-bottom: 6px; }

.pb-toc-list a {
  font-size: 13px;
  color: var(--pb-fg-soft);
  text-decoration: none;
  transition: color 150ms;
  display: block;
  padding: 3px 0 3px 10px;
  border-left: 2px solid transparent;
}

.pb-toc-list a:hover,
.pb-toc-list a.active {
  color: var(--pb-navy);
  border-left-color: var(--pb-accent);
}

.pb-doc-prose .pb-doc-section {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--pb-line);
}

.pb-doc-prose .pb-doc-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pb-doc-list {
  padding-left: 20px;
  margin-bottom: 0;
}
.pb-doc-list li {
  font-size: var(--pb-fs-body);
  color: var(--pb-fg-soft);
  margin-bottom: 8px;
  line-height: 1.5;
}

.pb-callout {
  background: var(--pb-cream-warm);
  border-left: 4px solid var(--pb-accent);
  padding: 20px 24px;
  border-radius: 0 var(--pb-radius-sm) var(--pb-radius-sm) 0;
}
.pb-callout-label {
  font-size: var(--pb-fs-micro);
  font-weight: 600;
  letter-spacing: var(--pb-ls-eyebrow);
  text-transform: uppercase;
  color: var(--pb-accent-strong);
  margin-bottom: 8px;
}
.pb-callout-body {
  font-size: 14px;
  color: var(--pb-fg);
  line-height: 1.55;
  margin-bottom: 0;
}
.pb-callout-body .pb-mono {
  font-family: var(--pb-mono);
  font-size: 13px;
  background: rgba(14,39,71,0.07);
  padding: 1px 5px;
  border-radius: 3px;
}

/* ── Hero Fine Print ──────────────────────────────────────────────────── */

.hero-fine,
.pb-hero-fine {
  margin-top: 20px;
  font-size: 15px;
  color: rgba(245,241,232,0.4);
  font-family: var(--pb-mono);
  letter-spacing: 0.02em;
}

/* ── Nav Dropdowns ────────────────────────────────────────────────────── */

.pb-dropdown {
  background: var(--pb-navy-deep);
  border: 1px solid rgba(245,241,232,0.1);
  border-radius: var(--pb-radius-sm);
  padding: 6px 0;
  min-width: 240px;
}

.pb-dropdown .dropdown-item {
  color: rgba(245,241,232,0.65);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 150ms, background 150ms;
}

.pb-dropdown .dropdown-item:hover {
  color: var(--pb-cream);
  background: rgba(245,241,232,0.06);
}

.pb-dropdown-disabled {
  color: rgba(245,241,232,0.3) !important;
  cursor: default !important;
  pointer-events: none;
  font-size: 13px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pb-dropdown-divider {
  border-color: rgba(245,241,232,0.08) !important;
  margin: 4px 0;
}

.pb-coming-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pb-accent);
  opacity: 0.8;
  flex-shrink: 0;
  margin-left: 12px;
}

/* ── Use Case Selector ────────────────────────────────────────────────── */

.pb-use-case-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.pb-use-case-btn {
  font-family: var(--pb-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--pb-radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.pb-use-case-btn--active {
  background: var(--pb-navy);
  color: var(--pb-cream);
}

.pb-use-case-btn--inactive {
  background: transparent;
  color: var(--pb-fg-soft);
  border: 1px solid var(--pb-line);
  cursor: default;
  text-align: left;
}

.pb-use-case-soon {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--pb-accent);
  margin-top: 3px;
  letter-spacing: 0.04em;
}

/* ── Part 10: Navbar SVG icon ─────────────────────────────────────────── */

.pb-nav-icon {
  display: flex;
  align-items: center;
  padding: 0;
}

.pb-bench-icon {
  display: block;
  width: 32px;
  height: 22px;
}

/* ── Part 10: Hero logo ───────────────────────────────────────────────── */

.pb-hero-logo {
  margin-bottom: 40px;
}

.pb-hero-logo-img {
  height: 88px;
  width: auto;
  display: block;
}

/* ── Part 10: Footer logo ─────────────────────────────────────────────── */

.pb-footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: var(--pb-space-4);
}
