/* Network Bio — nwb-style.css
   Brand prefix: nwb | Palette: deep navy #0B1F3A + teal #3FBFA8 + precision data aesthetic */

/* ── Custom properties ─────────────────────────────────── */
:root {
  --nwb-navy: #0B1F3A;
  --nwb-navy-alt: #122944;
  --nwb-navy-card: #1A3A5C;
  --nwb-teal: #3FBFA8;
  --nwb-teal-aa: #1E6E5C;
  --nwb-fg-light-primary: #0B1F3A;
  --nwb-fg-light-secondary: #3D5166;
  --nwb-fg-light-muted: #6B8099;
  --nwb-fg-dark-primary: #EDF2F7;
  --nwb-fg-dark-secondary: #A8BECC;
  --nwb-fg-dark-muted: #6B8099;
  --nwb-bg-light: #F4F7FA;
  --nwb-bg-white: #FFFFFF;
  --nwb-bg-cream: #EFF4F7;
  --nwb-bg-dark: #0B1F3A;
  --nwb-bg-dark-alt: #122944;
  --nwb-border-light: #D1DDED;
  --nwb-border-dark: #1E3F62;
  --nwb-status-green: #2ECC9A;
  --nwb-status-amber: #F5B83D;
  --nwb-status-red: #E05252;
  --nwb-radius-card: 6px;
  --nwb-radius-input: 4px;
  --nwb-radius-tag: 2px;
  --nwb-shadow-card: 0 2px 8px rgba(11,31,58,0.10);
  --nwb-shadow-nav: 0 1px 16px rgba(11,31,58,0.18);
  --nwb-container: 1200px;
  --nwb-section-v: 96px;
  --nwb-section-v-m: 64px;
  --nwb-font-heading: 'DM Sans', system-ui, sans-serif;
  --nwb-font-body: 'Inter', system-ui, sans-serif;
  --nwb-font-mono: 'JetBrains Mono', ui-monospace, 'Cascadia Code', Consolas, monospace;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--nwb-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--nwb-fg-light-primary);
  background: var(--nwb-bg-white);
  -webkit-font-smoothing: antialiased;
}
body.nwb-page--dark-top { background: var(--nwb-bg-dark); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; }
input, textarea, select, button { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--nwb-font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--nwb-fg-light-primary);
}
.nwb-section--dark h1,
.nwb-section--dark h2,
.nwb-section--dark h3,
.nwb-hero--dark h1,
.nwb-hero--dark h2,
.nwb-hero--dark h3,
.nwb-footer h1,
.nwb-footer h2,
.nwb-footer h3 {
  color: var(--nwb-fg-dark-primary);
}

.nwb-eyebrow {
  font-family: var(--nwb-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.nwb-section--light .nwb-eyebrow,
.nwb-section--white .nwb-eyebrow,
.nwb-section--cream .nwb-eyebrow { color: var(--nwb-teal-aa); }
.nwb-section--dark .nwb-eyebrow,
.nwb-hero--dark .nwb-eyebrow { color: var(--nwb-teal); }

/* ── Container ──────────────────────────────────────────── */
.nwb-container {
  width: 100%;
  max-width: var(--nwb-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.nwb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--nwb-font-heading);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--nwb-radius-card);
  border: 2px solid transparent;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.1s;
  white-space: nowrap;
  text-decoration: none;
}
.nwb-btn:hover { transform: translateY(-1px); }
.nwb-btn:active { transform: translateY(0); }

.nwb-btn--primary {
  background: var(--nwb-teal);
  color: var(--nwb-navy);
  border-color: var(--nwb-teal);
}
.nwb-btn--primary:hover { background: #34A892; border-color: #34A892; }

.nwb-btn--outline-dark {
  background: transparent;
  color: var(--nwb-fg-dark-primary);
  border-color: rgba(255,255,255,0.45);
}
.nwb-btn--outline-dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}

.nwb-btn--outline-light {
  background: transparent;
  color: var(--nwb-navy);
  border-color: var(--nwb-navy);
}
.nwb-btn--outline-light:hover { background: var(--nwb-navy); color: var(--nwb-fg-dark-primary); }

.nwb-btn--ghost-dark {
  background: transparent;
  color: var(--nwb-teal);
  border-color: transparent;
  padding-left: 0; padding-right: 0;
}
.nwb-btn--ghost-dark:hover { color: #fff; }

.nwb-btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* ── Navigation ──────────────────────────────────────────── */
.nwb-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  transition: background 0.25s, box-shadow 0.25s;
}
body.nwb-page--dark-top .nwb-nav { background: transparent; }
body.nwb-page--light-top .nwb-nav { background: var(--nwb-navy); }

.nwb-nav--scrolled {
  background: var(--nwb-navy) !important;
  box-shadow: var(--nwb-shadow-nav);
}

.nwb-nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: var(--nwb-container);
  margin: 0 auto;
}

.nwb-nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}
.nwb-nav__logo img {
  height: 36px;
  width: auto;
  max-width: 180px;
}

.nwb-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 16px;
}

.nwb-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-family: var(--nwb-font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--nwb-fg-dark-secondary);
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  background: none;
  border: none;
}
.nwb-nav__link:hover, .nwb-nav__link:focus { color: var(--nwb-fg-dark-primary); background: rgba(255,255,255,0.06); }
.nwb-nav__link .nwb-nav__arrow { font-size: 10px; transition: transform 0.2s; }
.nwb-nav__dropdown-wrap { position: relative; }
.nwb-nav__dropdown-wrap:hover .nwb-nav__arrow,
.nwb-nav__dropdown-wrap.is-open .nwb-nav__arrow { transform: rotate(180deg); }

.nwb-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--nwb-navy);
  border: 1px solid var(--nwb-border-dark);
  border-radius: var(--nwb-radius-card);
  box-shadow: 0 8px 24px rgba(0,0,0,0.32);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s;
  z-index: 100;
}
.nwb-nav__dropdown-wrap:hover .nwb-nav__dropdown,
.nwb-nav__dropdown-wrap.is-open .nwb-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nwb-nav__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--nwb-fg-dark-secondary);
  transition: color 0.15s, background 0.15s;
}
.nwb-nav__dropdown a:hover { color: var(--nwb-fg-dark-primary); background: rgba(255,255,255,0.06); }

.nwb-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nwb-nav__signin {
  font-size: 14px;
  font-weight: 500;
  color: var(--nwb-fg-dark-secondary);
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.15s;
  white-space: nowrap;
}
.nwb-nav__signin:hover { color: var(--nwb-fg-dark-primary); }

.nwb-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-left: 12px;
}
.nwb-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--nwb-fg-dark-primary);
  transition: transform 0.2s, opacity 0.2s;
  border-radius: 2px;
}

.nwb-nav__mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--nwb-navy);
  padding: 24px;
  overflow-y: auto;
  z-index: 850;
  flex-direction: column;
  gap: 8px;
}
.nwb-nav__mobile.is-open { display: flex; }
.nwb-nav__mobile a {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--nwb-fg-dark-secondary);
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.nwb-nav__mobile a:hover { color: var(--nwb-fg-dark-primary); background: rgba(255,255,255,0.06); }
.nwb-nav__mobile .nwb-nav__mobile-section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nwb-fg-dark-muted);
  padding: 16px 16px 4px;
  font-family: var(--nwb-font-mono);
}
.nwb-nav__mobile-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Hero (dark) ─────────────────────────────────────────── */
.nwb-hero--dark {
  position: relative;
  background: var(--nwb-bg-dark);
  min-height: 680px;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}
.nwb-hero--dark__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: var(--nwb-section-v) 0;
}
.nwb-hero--dark__content { max-width: 580px; }
.nwb-hero--dark__title {
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.1;
  color: var(--nwb-fg-dark-primary);
  margin-bottom: 24px;
}
.nwb-hero--dark__subhead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--nwb-fg-dark-secondary);
  margin-bottom: 40px;
}
.nwb-hero--dark__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.nwb-hero--dark__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nwb-hero--dark__visual svg {
  width: 100%;
  max-width: 520px;
  height: auto;
}

/* ── Hero (light/sub-page) ───────────────────────────────── */
.nwb-subhero {
  background: var(--nwb-bg-light);
  padding: calc(68px + 64px) 0 64px;
}
.nwb-subhero__inner {
  max-width: var(--nwb-container);
  margin: 0 auto;
  padding: 0 24px;
}
.nwb-subhero__title {
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.15;
  color: var(--nwb-fg-light-primary);
  max-width: 780px;
  margin-bottom: 16px;
}
.nwb-subhero__sub {
  font-size: 18px;
  color: var(--nwb-fg-light-secondary);
  max-width: 680px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.nwb-subhero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.nwb-subhero--split .nwb-subhero__visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ── Sections ────────────────────────────────────────────── */
.nwb-section--white { background: var(--nwb-bg-white); }
.nwb-section--light { background: var(--nwb-bg-light); }
.nwb-section--cream { background: var(--nwb-bg-cream); }
.nwb-section--dark { background: var(--nwb-bg-dark); }
.nwb-section--dark-alt { background: var(--nwb-bg-dark-alt); }
.nwb-section { padding: var(--nwb-section-v) 0; }
.nwb-section--sm { padding: 56px 0; }

.nwb-section__header {
  margin-bottom: 48px;
}
.nwb-section__title {
  font-size: clamp(28px, 2.8vw, 36px);
  line-height: 1.25;
  margin-bottom: 16px;
}
.nwb-section__lead {
  font-size: 17px;
  line-height: 1.65;
  max-width: 640px;
}
.nwb-section--light .nwb-section__lead,
.nwb-section--white .nwb-section__lead,
.nwb-section--cream .nwb-section__lead { color: var(--nwb-fg-light-secondary); }
.nwb-section--dark .nwb-section__lead,
.nwb-section--dark-alt .nwb-section__lead { color: var(--nwb-fg-dark-secondary); }

/* ── Trust / proof strip ────────────────────────────────── */
.nwb-trust-strip {
  background: var(--nwb-bg-dark-alt);
  padding: 40px 0;
  border-top: 1px solid var(--nwb-border-dark);
  border-bottom: 1px solid var(--nwb-border-dark);
}
.nwb-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.nwb-trust-item {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid var(--nwb-border-dark);
}
.nwb-trust-item:last-child { border-right: none; }
.nwb-trust-item__num {
  font-family: var(--nwb-font-mono);
  font-size: 32px;
  font-weight: 500;
  color: var(--nwb-teal);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.nwb-trust-item__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--nwb-fg-dark-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Problem section ─────────────────────────────────────── */
.nwb-problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.nwb-problem__panels { display: flex; flex-direction: column; gap: 24px; }
.nwb-problem__panel {
  background: var(--nwb-bg-white);
  border: 1px solid var(--nwb-border-light);
  border-radius: var(--nwb-radius-card);
  padding: 24px;
}
.nwb-problem__panel-num {
  font-family: var(--nwb-font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--nwb-teal-aa);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}
.nwb-problem__panel h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--nwb-fg-light-primary);
}
.nwb-problem__panel p { font-size: 14px; color: var(--nwb-fg-light-secondary); line-height: 1.55; }

/* Inline mock table */
.nwb-mock-table-wrap {
  background: var(--nwb-navy);
  border-radius: var(--nwb-radius-card);
  padding: 20px;
  overflow-x: auto;
}
.nwb-mock-table-title {
  font-family: var(--nwb-font-mono);
  font-size: 11px;
  color: var(--nwb-teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--nwb-border-dark);
  padding-bottom: 10px;
}
.nwb-mock-table {
  font-family: var(--nwb-font-mono);
  font-size: 13px;
  width: 100%;
  border-collapse: collapse;
  line-height: 1.45;
}
.nwb-mock-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nwb-fg-dark-muted);
  padding: 6px 12px;
  text-align: left;
  border-bottom: 1px solid var(--nwb-border-dark);
}
.nwb-mock-table td {
  padding: 8px 12px;
  color: var(--nwb-fg-dark-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
}
.nwb-status-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--nwb-radius-tag);
}
.nwb-status-badge--blocked {
  background: rgba(224,82,82,0.18);
  color: #f08080;
}
.nwb-status-badge--pending {
  background: rgba(245,184,61,0.18);
  color: #f5b83d;
}
.nwb-status-badge--ready {
  background: rgba(46,204,154,0.18);
  color: #2ecc9a;
}

/* ── Solution steps ──────────────────────────────────────── */
.nwb-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.nwb-step { text-align: center; }
.nwb-step__icon {
  width: 56px;
  height: 56px;
  background: var(--nwb-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: var(--nwb-teal-aa);
}
.nwb-step__num {
  font-family: var(--nwb-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nwb-teal-aa);
  margin-bottom: 8px;
  display: block;
}
.nwb-step__title { font-size: 18px; margin-bottom: 10px; }
.nwb-step__body { font-size: 14px; color: var(--nwb-fg-light-secondary); line-height: 1.6; }

/* ── Dataset cards ───────────────────────────────────────── */
.nwb-dataset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nwb-dataset-card {
  background: var(--nwb-navy-card);
  border-radius: var(--nwb-radius-card);
  border: 1px solid var(--nwb-border-dark);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.nwb-dataset-card:hover {
  border-color: var(--nwb-teal);
  box-shadow: 0 4px 20px rgba(63,191,168,0.12);
}
.nwb-dataset-card__tag {
  display: inline-block;
  font-family: var(--nwb-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--nwb-radius-tag);
  background: rgba(63,191,168,0.15);
  color: var(--nwb-teal);
  width: fit-content;
}
.nwb-dataset-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--nwb-fg-dark-primary);
  font-family: var(--nwb-font-heading);
}
.nwb-dataset-card__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nwb-dataset-card__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.nwb-dataset-card__meta-label {
  font-family: var(--nwb-font-mono);
  color: var(--nwb-fg-dark-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.nwb-dataset-card__meta-val {
  color: var(--nwb-fg-dark-secondary);
  font-size: 13px;
}
.nwb-dataset-card__modalities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.nwb-modality-pill {
  font-family: var(--nwb-font-mono);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: var(--nwb-radius-tag);
  background: rgba(255,255,255,0.07);
  color: var(--nwb-fg-dark-secondary);
  border: 1px solid var(--nwb-border-dark);
}
.nwb-dataset-card__footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--nwb-border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nwb-dataset-card__updated {
  font-size: 12px;
  font-family: var(--nwb-font-mono);
  color: var(--nwb-fg-dark-muted);
}
.nwb-dataset-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--nwb-teal);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s;
}
.nwb-dataset-card__link:hover { gap: 10px; }

/* Light bg dataset cards (datasets.html grid) */
.nwb-dataset-card--light {
  background: var(--nwb-bg-white);
  border: 1px solid var(--nwb-border-light);
}
.nwb-dataset-card--light .nwb-dataset-card__title { color: var(--nwb-fg-light-primary); }
.nwb-dataset-card--light .nwb-dataset-card__meta-val { color: var(--nwb-fg-light-secondary); }
.nwb-dataset-card--light .nwb-dataset-card__updated { color: var(--nwb-fg-light-muted); }
.nwb-dataset-card--light .nwb-dataset-card__link { color: var(--nwb-teal-aa); }
.nwb-dataset-card--light .nwb-dataset-card__footer { border-top-color: var(--nwb-border-light); }
.nwb-dataset-card--light .nwb-modality-pill {
  background: var(--nwb-bg-light);
  color: var(--nwb-fg-light-secondary);
  border-color: var(--nwb-border-light);
}

/* ── Audience split ──────────────────────────────────────── */
.nwb-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.nwb-audience-card {
  background: var(--nwb-bg-white);
  border: 1px solid var(--nwb-border-light);
  border-radius: var(--nwb-radius-card);
  padding: 36px 32px;
  box-shadow: var(--nwb-shadow-card);
}
.nwb-audience-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(63,191,168,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--nwb-teal-aa);
  margin-bottom: 20px;
}
.nwb-audience-card__title { font-size: 22px; margin-bottom: 12px; }
.nwb-audience-card__body { font-size: 15px; color: var(--nwb-fg-light-secondary); line-height: 1.6; margin-bottom: 24px; }
.nwb-audience-card__features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.nwb-audience-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--nwb-fg-light-secondary);
}
.nwb-audience-card__feature i { color: var(--nwb-teal-aa); margin-top: 2px; flex-shrink: 0; }

/* ── Callout strip (dark) ────────────────────────────────── */
.nwb-callout {
  background: var(--nwb-bg-dark);
  padding: var(--nwb-section-v) 0;
}
.nwb-callout__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.nwb-callout__title {
  font-size: clamp(26px, 2.4vw, 32px);
  color: var(--nwb-fg-dark-primary);
  margin-bottom: 16px;
  max-width: 640px;
}
.nwb-callout__body { font-size: 16px; color: var(--nwb-fg-dark-secondary); line-height: 1.65; max-width: 640px; }
.nwb-callout__cta { flex-shrink: 0; }

/* ── Testimonials ─────────────────────────────────────────── */
.nwb-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.nwb-testimonial {
  background: var(--nwb-bg-light);
  border-radius: var(--nwb-radius-card);
  padding: 36px 32px;
  border-left: 3px solid var(--nwb-teal-aa);
}
.nwb-testimonial__quote {
  font-size: 17px;
  line-height: 1.65;
  color: var(--nwb-fg-light-primary);
  font-style: italic;
  margin-bottom: 24px;
}
.nwb-testimonial__quote::before { content: '\201C'; }
.nwb-testimonial__quote::after { content: '\201D'; }
.nwb-testimonial__author { display: flex; align-items: center; gap: 14px; }
.nwb-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--nwb-navy-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nwb-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--nwb-teal);
  flex-shrink: 0;
}
.nwb-testimonial__name { font-size: 14px; font-weight: 600; color: var(--nwb-fg-light-primary); }
.nwb-testimonial__role { font-size: 13px; color: var(--nwb-fg-light-muted); }

/* ── CTA section (dark) ──────────────────────────────────── */
.nwb-cta-dark {
  background: var(--nwb-bg-dark);
  padding: var(--nwb-section-v) 0;
  text-align: center;
}
.nwb-cta-dark__title {
  font-size: clamp(28px, 2.8vw, 38px);
  color: var(--nwb-fg-dark-primary);
  margin-bottom: 20px;
}
.nwb-cta-dark__sub {
  font-size: 17px;
  color: var(--nwb-fg-dark-secondary);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.nwb-cta-dark__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Feature / benefit grid ──────────────────────────────── */
.nwb-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.nwb-feature-grid--2 { grid-template-columns: repeat(2, 1fr); }
.nwb-feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
.nwb-feature-card {
  padding: 28px;
  border: 1px solid var(--nwb-border-light);
  border-radius: var(--nwb-radius-card);
  background: var(--nwb-bg-white);
}
.nwb-feature-card__icon {
  font-size: 24px;
  color: var(--nwb-teal-aa);
  margin-bottom: 16px;
}
.nwb-section--dark .nwb-feature-card__icon { color: var(--nwb-teal); }
.nwb-feature-card__title { font-size: 17px; margin-bottom: 10px; }
.nwb-feature-card__body { font-size: 14px; color: var(--nwb-fg-light-secondary); line-height: 1.6; }

/* ── Format badges (monospace) ───────────────────────────── */
.nwb-format-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.nwb-format-badge {
  font-family: var(--nwb-font-mono);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--nwb-radius-input);
  border: 1px solid var(--nwb-border-light);
  color: var(--nwb-fg-light-secondary);
  background: var(--nwb-bg-light);
}

/* ── Blog cards ──────────────────────────────────────────── */
.nwb-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.nwb-blog-card {
  background: var(--nwb-bg-white);
  border: 1px solid var(--nwb-border-light);
  border-radius: var(--nwb-radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.nwb-blog-card:hover {
  border-color: var(--nwb-teal-aa);
  box-shadow: var(--nwb-shadow-card);
}
.nwb-blog-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  height: auto;
}
.nwb-blog-card__img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--nwb-navy-card);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nwb-blog-card__img-placeholder i { font-size: 32px; color: var(--nwb-teal); opacity: 0.5; }
.nwb-blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.nwb-blog-card__cat {
  font-family: var(--nwb-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nwb-teal-aa);
}
.nwb-blog-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--nwb-fg-light-primary);
  line-height: 1.4;
  margin: 0;
}
.nwb-blog-card__sum { font-size: 14px; color: var(--nwb-fg-light-secondary); line-height: 1.55; }
.nwb-blog-card__footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--nwb-border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--nwb-fg-light-muted);
}
.nwb-blog-card__read {
  color: var(--nwb-teal-aa);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Article page ────────────────────────────────────────── */
.nwb-article-header {
  background: var(--nwb-bg-light);
  padding: calc(68px + 56px) 0 48px;
}
.nwb-article-header__inner {
  max-width: var(--nwb-container);
  margin: 0 auto;
  padding: 0 24px;
}
.nwb-article-header__cat {
  font-family: var(--nwb-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nwb-teal-aa);
  margin-bottom: 16px;
  display: block;
}
.nwb-article-header__title {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  max-width: 800px;
  margin-bottom: 20px;
  color: var(--nwb-fg-light-primary);
}
.nwb-article-header__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--nwb-fg-light-muted);
  flex-wrap: wrap;
}
.nwb-article-header__sep { color: var(--nwb-border-light); }

.nwb-blog-article__cover {
  width: 100%;
  height: auto;
  max-width: 900px;
  display: block;
  margin: 0 auto;
  border-radius: var(--nwb-radius-card);
}
.nwb-article-cover-wrap {
  background: var(--nwb-bg-light);
  padding: 0 0 48px;
}
.nwb-article-cover-wrap__inner {
  max-width: var(--nwb-container);
  margin: 0 auto;
  padding: 0 24px;
}
.nwb-article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

/* ── Team ─────────────────────────────────────────────────── */
.nwb-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.nwb-team-card {
  text-align: center;
}
.nwb-team-card__portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--nwb-radius-card);
  margin-bottom: 16px;
  height: auto;
}
.nwb-team-card__portrait-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--nwb-navy-card);
  border-radius: var(--nwb-radius-card);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nwb-font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--nwb-teal);
}
.nwb-team-card__name { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.nwb-team-card__title { font-size: 14px; color: var(--nwb-fg-light-muted); }

/* ── Contact / Forms ─────────────────────────────────────── */
.nwb-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.nwb-form-block { display: flex; flex-direction: column; gap: 20px; }
.nwb-field { display: flex; flex-direction: column; gap: 6px; }
.nwb-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--nwb-fg-light-primary);
}
.nwb-input, .nwb-select, .nwb-textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--nwb-border-light);
  border-radius: var(--nwb-radius-input);
  font-size: 15px;
  color: var(--nwb-fg-light-primary);
  background: var(--nwb-bg-white);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
  max-width: 520px;
}
.nwb-input:focus, .nwb-select:focus, .nwb-textarea:focus {
  outline: none;
  border-color: var(--nwb-teal-aa);
  box-shadow: 0 0 0 3px rgba(30,110,92,0.12);
}
.nwb-textarea { resize: vertical; min-height: 120px; }
.nwb-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233D5166' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.nwb-select option { background: var(--nwb-bg-white); color: var(--nwb-fg-light-primary); }
.nwb-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nwb-form-btn { align-self: flex-start; }
.nwb-form-note { font-size: 13px; color: var(--nwb-fg-light-muted); }

.nwb-contact-info { display: flex; flex-direction: column; gap: 24px; }
.nwb-contact-info__item { display: flex; align-items: flex-start; gap: 14px; }
.nwb-contact-info__icon {
  width: 40px;
  height: 40px;
  background: rgba(63,191,168,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--nwb-teal-aa);
  flex-shrink: 0;
}
.nwb-contact-info__label { font-size: 13px; color: var(--nwb-fg-light-muted); margin-bottom: 2px; }
.nwb-contact-info__val { font-size: 15px; color: var(--nwb-fg-light-primary); font-weight: 500; }
.nwb-contact-info__val a { color: var(--nwb-teal-aa); }

/* ── Auth pages ──────────────────────────────────────────── */
.nwb-auth-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.nwb-auth-form-panel {
  background: var(--nwb-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px clamp(32px, 8vw, 80px);
}
.nwb-auth-form-inner {
  width: 100%;
  max-width: 400px;
}
.nwb-auth-logo {
  margin-bottom: 40px;
}
.nwb-auth-logo img { height: 36px; width: auto; }
.nwb-auth-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--nwb-fg-light-primary);
  margin-bottom: 8px;
}
.nwb-auth-sub {
  font-size: 15px;
  color: var(--nwb-fg-light-secondary);
  margin-bottom: 32px;
  line-height: 1.5;
}
.nwb-auth-form { display: flex; flex-direction: column; gap: 18px; }
.nwb-auth-form .nwb-input { max-width: none; }
.nwb-auth-form .nwb-btn--primary { width: 100%; justify-content: center; margin-top: 8px; }
.nwb-auth-links {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--nwb-fg-light-muted);
}
.nwb-auth-links a { color: var(--nwb-teal-aa); font-weight: 500; }
.nwb-auth-side-panel {
  background: var(--nwb-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.nwb-auth-side-content {
  position: relative;
  z-index: 2;
  max-width: 360px;
}
.nwb-auth-side-panel .nwb-eyebrow { color: var(--nwb-teal); }
.nwb-auth-side-panel h2 { color: var(--nwb-fg-dark-primary); margin-bottom: 16px; }
.nwb-auth-side-panel p { color: var(--nwb-fg-dark-secondary); font-size: 16px; line-height: 1.6; }
.nwb-auth-side-svg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.35;
}

/* Standalone auth (light-top) */
.nwb-auth-standalone {
  min-height: 100vh;
  background: var(--nwb-bg-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px clamp(24px, 6vw, 56px);
}
.nwb-auth-standalone .nwb-auth-form-inner {
  background: var(--nwb-bg-white);
  border: 1px solid var(--nwb-border-light);
  border-radius: var(--nwb-radius-card);
  padding: 48px;
  box-shadow: var(--nwb-shadow-card);
  max-width: 440px;
  width: 100%;
}
.nwb-auth-standalone .nwb-auth-logo { margin-bottom: 32px; }

/* ── Legal pages ─────────────────────────────────────────── */
.nwb-legal-wrap {
  background: var(--nwb-bg-white);
  padding: calc(68px + 56px) 0 96px;
}
.nwb-legal-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-article { line-height: 1.7; }
.legal-header { margin-bottom: 48px; border-bottom: 1px solid var(--nwb-border-light); padding-bottom: 32px; }
.legal-header h1 { font-size: 36px; color: var(--nwb-fg-light-primary); margin-bottom: 12px; }
.legal-meta { font-size: 14px; color: var(--nwb-fg-light-muted); }
.legal-article section { margin-bottom: 40px; }
.legal-article h2 { font-size: 20px; color: var(--nwb-fg-light-primary); margin-bottom: 14px; padding-top: 8px; }
.legal-article h3 { font-size: 16px; color: var(--nwb-fg-light-primary); margin-bottom: 10px; margin-top: 20px; }
.legal-article p { margin-bottom: 14px; font-size: 15px; color: var(--nwb-fg-light-secondary); }
.legal-article ul, .legal-article ol { margin: 12px 0 14px 24px; }
.legal-article li { margin-bottom: 6px; font-size: 15px; color: var(--nwb-fg-light-secondary); }
.legal-article address { font-style: normal; font-size: 15px; color: var(--nwb-fg-light-secondary); line-height: 1.8; }
.legal-article a { color: var(--nwb-teal-aa); text-decoration: underline; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 16px 0; }
.legal-table th, .legal-table td { padding: 10px 14px; border: 1px solid var(--nwb-border-light); text-align: left; color: var(--nwb-fg-light-secondary); }
.legal-table th { background: var(--nwb-bg-light); font-weight: 600; color: var(--nwb-fg-light-primary); }

/* ── Platform architecture ───────────────────────────────── */
.nwb-arch-img {
  width: 100%;
  height: auto;
  max-width: 1000px;
  display: block;
  margin: 0 auto;
  border-radius: var(--nwb-radius-card);
  border: 1px solid var(--nwb-border-light);
}

/* ── Data Standards ──────────────────────────────────────── */
.nwb-standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.nwb-standards-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.nwb-standards-item__num {
  font-family: var(--nwb-font-mono);
  font-size: 24px;
  font-weight: 500;
  color: var(--nwb-teal-aa);
  flex-shrink: 0;
  width: 40px;
  line-height: 1;
}
.nwb-standards-item h3 { font-size: 17px; margin-bottom: 8px; }
.nwb-standards-item p { font-size: 14px; color: var(--nwb-fg-light-secondary); line-height: 1.6; }

/* ── About narrative ─────────────────────────────────────── */
.nwb-narrative { max-width: 760px; }
.nwb-narrative p { font-size: 17px; line-height: 1.75; color: var(--nwb-fg-light-secondary); margin-bottom: 20px; }

.nwb-boston-img {
  width: 100%;
  height: auto;
  border-radius: var(--nwb-radius-card);
  margin-top: 32px;
}

/* ── Dataset sub-page detail ─────────────────────────────── */
.nwb-ds-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.nwb-ds-info-card {
  background: var(--nwb-navy-card);
  border-radius: var(--nwb-radius-card);
  padding: 28px;
  border: 1px solid var(--nwb-border-dark);
}
.nwb-ds-info-card__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--nwb-border-dark);
  font-size: 14px;
}
.nwb-ds-info-card__row:last-child { border-bottom: none; }
.nwb-ds-info-card__key {
  font-family: var(--nwb-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nwb-fg-dark-muted);
}
.nwb-ds-info-card__val { color: var(--nwb-fg-dark-secondary); font-size: 13px; text-align: right; margin-left: auto; }

/* Filter bar (datasets.html) */
.nwb-filter-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: var(--nwb-bg-light);
  border-radius: var(--nwb-radius-card);
  border: 1px solid var(--nwb-border-light);
  align-items: center;
}
.nwb-filter-bar label {
  font-size: 13px;
  font-weight: 500;
  color: var(--nwb-fg-light-secondary);
}
.nwb-filter-bar .nwb-select { max-width: 200px; padding: 8px 36px 8px 12px; font-size: 14px; max-width: 220px; }

/* ── Footer ──────────────────────────────────────────────── */
.nwb-footer {
  background: var(--nwb-bg-dark);
  padding: 72px 0 40px;
  border-top: 1px solid var(--nwb-border-dark);
}
.nwb-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.nwb-footer__logo { margin-bottom: 20px; }
.nwb-footer__logo img { height: 36px; width: auto; }
.nwb-footer__tagline { font-size: 15px; color: var(--nwb-fg-dark-secondary); line-height: 1.6; margin-bottom: 20px; }
.nwb-footer__identity { display: flex; flex-direction: column; gap: 6px; }
.nwb-footer__identity-item { font-size: 13px; color: var(--nwb-fg-dark-muted); }
.nwb-footer__identity-item a { color: var(--nwb-teal); }
.nwb-footer__col-title {
  font-family: var(--nwb-font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nwb-fg-dark-primary);
  margin-bottom: 20px;
}
.nwb-footer__links { display: flex; flex-direction: column; gap: 10px; }
.nwb-footer__links a {
  font-size: 14px;
  color: var(--nwb-fg-dark-secondary);
  transition: color 0.15s;
  display: block;
}
.nwb-footer__links a:hover { color: var(--nwb-fg-dark-primary); }
.nwb-footer__bottom {
  border-top: 1px solid var(--nwb-border-dark);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.nwb-footer__copy { font-size: 13px; color: var(--nwb-fg-dark-muted); }
.nwb-footer__legal { display: flex; gap: 20px; }
.nwb-footer__legal a { font-size: 13px; color: var(--nwb-fg-dark-muted); transition: color 0.15s; }
.nwb-footer__legal a:hover { color: var(--nwb-fg-dark-secondary); }

/* ── Cookie banner ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--nwb-navy-alt);
  border-top: 1px solid var(--nwb-border-dark);
}
.cookie-banner__inner {
  max-width: var(--nwb-container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text { font-size: 14px; color: var(--nwb-fg-dark-secondary); flex: 1; min-width: 200px; }
.cookie-banner__text a { color: var(--nwb-teal); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__btn {
  font-family: var(--nwb-font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--nwb-radius-input);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-banner__btn--primary {
  background: var(--nwb-teal);
  color: var(--nwb-navy);
}
.cookie-banner__btn--primary:hover { background: #34A892; }

/* ── Scroll fade-in ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nwb-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .nwb-trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .nwb-team-grid { grid-template-columns: repeat(2, 1fr); }
  .nwb-hero--dark__inner { grid-template-columns: 1fr; }
  .nwb-hero--dark__visual { display: none; }
  .nwb-callout__inner { grid-template-columns: 1fr; gap: 32px; }
  .nwb-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nwb-section-v: var(--nwb-section-v-m); }
  .nwb-nav__links, .nwb-nav__actions { display: none; }
  .nwb-nav__hamburger { display: flex; }
  .nwb-dataset-grid, .nwb-blog-grid { grid-template-columns: 1fr; }
  .nwb-audience-grid { grid-template-columns: 1fr; }
  .nwb-testimonials-grid { grid-template-columns: 1fr; }
  .nwb-steps { grid-template-columns: 1fr; }
  .nwb-form-grid { grid-template-columns: 1fr; }
  .nwb-field-row { grid-template-columns: 1fr; }
  .nwb-auth-layout { grid-template-columns: 1fr; }
  .nwb-auth-side-panel { display: none; }
  .nwb-standards-grid { grid-template-columns: 1fr; }
  .nwb-subhero--split { grid-template-columns: 1fr; }
  .nwb-subhero--split .nwb-subhero__visual { display: none; }
  .nwb-footer__grid { grid-template-columns: 1fr; }
  .nwb-ds-detail-grid { grid-template-columns: 1fr; }
  .nwb-trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .nwb-cta-dark__actions { flex-direction: column; align-items: center; }
  .nwb-problem__grid { grid-template-columns: 1fr; }
  .nwb-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Article body / docs content scoping ────────────────── */
.nwb-docs-content { display: block; }
.nwb-page--light-top .nwb-docs-content h2,
.nwb-page--light-top .nwb-docs-content h3,
.nwb-page--light-top .nwb-docs-content p,
.nwb-page--light-top .nwb-docs-content li,
.nwb-page--light-top .nwb-docs-content a { color: var(--nwb-fg-light-primary); }
.nwb-page--light-top .nwb-docs-content p,
.nwb-page--light-top .nwb-docs-content li { color: var(--nwb-fg-light-secondary); }
.nwb-page--light-top .nwb-docs-content a { color: var(--nwb-teal-aa); }

/* JS form hook — no visual styles needed, just present for JS querySelector */
.nwb-js-form { display: flex; flex-direction: column; gap: 20px; }

/* ── QC table mock (data-standards) ─────────────────────── */
.nwb-qc-mock-wrap {
  background: var(--nwb-bg-light);
  border-radius: var(--nwb-radius-card);
  border: 1px solid var(--nwb-border-light);
  overflow-x: auto;
}
.nwb-qc-mock-title {
  font-family: var(--nwb-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nwb-teal-aa);
  padding: 14px 20px;
  border-bottom: 1px solid var(--nwb-border-light);
}
.nwb-qc-mock-table {
  font-family: var(--nwb-font-mono);
  font-size: 13px;
  width: 100%;
  border-collapse: collapse;
  line-height: 1.45;
}
.nwb-qc-mock-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nwb-fg-light-muted);
  padding: 8px 20px;
  text-align: left;
  border-bottom: 1px solid var(--nwb-border-light);
}
.nwb-qc-mock-table td {
  padding: 10px 20px;
  color: var(--nwb-fg-light-secondary);
  border-bottom: 1px solid var(--nwb-border-light);
  vertical-align: middle;
}
.nwb-qc-mock-table tr:last-child td { border-bottom: none; }
.nwb-qc-pass { color: #1b8a61; background: rgba(46,204,154,0.1); padding: 2px 8px; border-radius: 2px; font-size: 10px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.nwb-qc-warn { color: #9b6d0c; background: rgba(245,184,61,0.1); padding: 2px 8px; border-radius: 2px; font-size: 10px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

/* ── Delivery section ────────────────────────────────────── */
.nwb-delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ── Request data form ───────────────────────────────────── */
.nwb-multi-check { display: flex; flex-wrap: wrap; gap: 10px; }
.nwb-check-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--nwb-fg-light-secondary);
  cursor: pointer;
}
.nwb-check-pill input { accent-color: var(--nwb-teal-aa); }
