/* NPLD theme tokens — sourced from master playbook §1.3 voice + §4.2 brand promise
 * and the live nplinedesign.com palette (#c2262b primary, system-ui body, 1200px max).
 * Reused across all future NPLD funnels (kitchen, pool, etc.).
 */

/* Comfortaa loaded via Google Fonts <link> in Head.astro — see preconnect hints */

:root {
  /* Color */
  --np-red: #c2262b;
  --np-red-hover: #a01f23;
  --np-red-tint: rgba(194, 38, 43, 0.08);
  --np-charcoal: #333333;
  --np-charcoal-soft: #555555;
  --np-divider: #e5e5e5;
  --np-surface: #fafafa;
  --np-paper: #ffffff;
  --np-ink: #1a1a1a;

  /* Type */
  --font-display: "Comfortaa", system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", sans-serif;

  --text-hero: clamp(2.5rem, 1rem + 5vw, 5rem);
  --text-h2: clamp(1.75rem, 1rem + 2.5vw, 2.75rem);
  --text-h3: clamp(1.25rem, 0.95rem + 1.25vw, 1.75rem);
  --text-body: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-small: 0.9375rem;
  --line-body: 1.65;
  --line-tight: 1.15;

  /* Space */
  --max-content: 1200px;
  --max-prose: 68ch;
  --space-section: clamp(4rem, 3rem + 5vw, 9rem);
  --space-block: clamp(2rem, 1.5rem + 2vw, 4rem);

  /* Motion */
  --duration-fast: 150ms;
  --duration-normal: 280ms;
  --duration-slow: 520ms;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Depth (real, not flat) */
  --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lifted: 0 4px 8px rgba(0, 0, 0, 0.06), 0 24px 48px rgba(0, 0, 0, 0.1);
}

/* Skip-link (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: var(--np-ink);
  color: var(--np-paper);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  z-index: 9999;
  text-decoration: none;
  transition: top var(--duration-fast) var(--ease-out-expo);
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 0.5rem;
  outline: 2px solid var(--np-red);
  outline-offset: 2px;
}

/* Reset + base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--line-body);
  color: var(--np-charcoal);
  background: var(--np-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Headings: Comfortaa for editorial display */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--np-ink);
  line-height: var(--line-tight);
  letter-spacing: -0.01em;
  margin: 0;
}
h1 { font-size: var(--text-hero); font-weight: 700; }
h2 { font-size: var(--text-h2); font-weight: 700; }
h3 { font-size: var(--text-h3); font-weight: 600; }

p { margin: 0 0 1em; max-width: var(--max-prose); }

a {
  color: var(--np-red);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out-expo);
}
a:hover { color: var(--np-red-hover); text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--np-red); outline-offset: 3px; border-radius: 2px; }

img, video { max-width: 100%; height: auto; display: block; }

/* Hero video — full-bleed with cover fit; portrait poster fills landscape container correctly */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Containers */
.container {
  max-width: var(--max-content);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

/* CTA — designed, not browser default */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--np-paper);
  background: var(--np-red);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out-expo),
              background var(--duration-fast) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}
.cta:hover {
  background: var(--np-red-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lifted);
  color: var(--np-paper);
  text-decoration: none;
}
.cta:active { transform: translateY(0); }
.cta:focus-visible { outline: 2px solid var(--np-charcoal); outline-offset: 3px; }

.cta--ghost {
  background: transparent;
  color: var(--np-charcoal);
  border: 1.5px solid var(--np-divider);
  box-shadow: none;
}
.cta--ghost:hover {
  border-color: var(--np-charcoal);
  background: var(--np-surface);
  color: var(--np-charcoal);
}

/* Section spacing */
section { padding-block: var(--space-section); }
.section--tight { padding-block: var(--space-block); }
.section--surface { background: var(--np-surface); }

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  font-size: var(--text-small);
  color: var(--np-charcoal-soft);
  border-block: 1px solid var(--np-divider);
  padding-block: 1rem;
}
.trust-strip strong { color: var(--np-ink); font-weight: 600; }

/* Bento gallery — anti-template */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  grid-auto-flow: dense;  /* fill gaps with later items, no empty cells */
  gap: clamp(0.5rem, 1.5vw, 1rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.bento > * {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--np-charcoal);
  box-shadow: var(--shadow-soft);
  margin: 0;
}
.bento > .b-hero { grid-column: span 12; aspect-ratio: 16/9; }
.bento > .b-tall { grid-column: span 6; aspect-ratio: 3/4; }
.bento > .b-wide { grid-column: span 6; aspect-ratio: 16/10; }
.bento > .b-third { grid-column: span 4; aspect-ratio: 1; }
@media (min-width: 768px) {
  .bento > .b-hero { grid-column: span 8; aspect-ratio: 4/3; }
  .bento > .b-tall { grid-column: span 4; aspect-ratio: 3/4; }
  .bento > .b-wide { grid-column: span 8; aspect-ratio: 16/10; }
  .bento > .b-third { grid-column: span 4; aspect-ratio: 1; }
}
.bento img, .bento video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}
.bento > *:hover img, .bento > *:hover video { transform: scale(1.04); }
.bento figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.875rem 1rem;
  font-size: 0.8125rem;
  color: var(--np-paper);
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--duration-normal) var(--ease-out-expo),
              transform var(--duration-normal) var(--ease-out-expo);
}
.bento > *:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* Value-stack list */
.value-stack {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.value-stack li {
  position: relative;
  padding-left: 2rem;
  font-size: var(--text-body);
}
.value-stack li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 1.25rem;
  height: 2px;
  background: var(--np-red);
}

/* Form */
.form-grid { display: grid; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.form-field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-small);
  color: var(--np-ink);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--np-divider);
  border-radius: 6px;
  background: var(--np-paper);
  transition: border-color var(--duration-fast) var(--ease-out-expo);
  -webkit-appearance: none;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--np-red);
}
.form-field--radios {
  display: grid;
  gap: 0.5rem;
}
.form-field--radios label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--np-divider);
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out-expo);
  font-weight: 400;
  font-family: var(--font-body);
}
.form-field--radios label:hover {
  border-color: var(--np-charcoal);
  background: var(--np-surface);
}
.form-field--radios input[type="radio"]:checked + span {
  font-weight: 600;
  color: var(--np-red);
}

/* Progress bar (3 groups) */
.progress {
  display: flex;
  gap: 0.5rem;
  margin-block: 1.5rem;
}
.progress > div {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--np-divider);
}
.progress > div.active { background: var(--np-red); }

/* FAQ */
details {
  border-block: 1px solid var(--np-divider);
  padding: 1.25rem 0;
}
details + details { border-top: none; }
details summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--np-ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--np-red);
  transition: transform var(--duration-normal) var(--ease-out-expo);
}
details[open] summary::after { transform: rotate(45deg); }
details > *:not(summary) { margin-top: 0.875rem; }

/* ────────────────────────────────────────────────────────────────────────
   Component layer — added Phase 4 CRO fixes (was missing from initial pass)
   ──────────────────────────────────────────────────────────────────────── */

/* Display + section headings */
.h-display {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: var(--line-tight);
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  max-width: 22ch;
}
.h-section {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: var(--line-tight);
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}
.lede {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  line-height: 1.5;
  color: var(--np-charcoal);
  margin: 0 0 1.25em;
  max-width: var(--max-prose);
  font-weight: 500;
}
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--np-red);
  margin: 0 0 1rem;
}
.cta--lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}
.section__intro {
  max-width: var(--max-prose);
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* Header */
.np-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--np-divider);
}
.np-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.875rem;
}
.np-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--np-ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.np-logo:hover { color: var(--np-red); text-decoration: none; }
.np-nav {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: 0.9375rem;
}
.np-nav a {
  color: var(--np-charcoal-soft);
  font-weight: 500;
}
.np-nav a:hover { color: var(--np-ink); text-decoration: none; }
.np-header__cta { padding: 0.625rem 1.125rem; font-size: 0.9375rem; }
@media (max-width: 767px) {
  .np-nav { display: none; }
  .np-header__cta { padding: 0.5rem 1rem; font-size: 0.875rem; }
}

/* Footer */
.np-footer {
  background: var(--np-surface);
  border-top: 1px solid var(--np-divider);
  padding-block: clamp(2rem, 4vw, 3rem);
  font-size: var(--text-small);
  color: var(--np-charcoal-soft);
}
.np-footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  align-items: flex-start;
  justify-content: space-between;
}
.np-footer__brand { font-weight: 600; color: var(--np-ink); }
.np-footer__addr { font-style: normal; line-height: 1.55; }
.np-footer a { color: var(--np-charcoal-soft); }
.np-footer a:hover { color: var(--np-red); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(580px, 80vh, 880px);
  display: flex;
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7rem);
  color: var(--np-paper);
  background: var(--np-ink);
}
.hero__video-wrap {
  position: absolute !important;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero__video-wrap video,
.hero__video-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--np-paper);
  max-width: 68ch;
}
.hero__content .h-display,
.hero__content h1 { color: var(--np-paper); }
.hero__content .lede,
.hero__content .eyebrow,
.hero__content .hero__sub {
  color: rgba(255, 255, 255, 0.92);
}
.hero__content .eyebrow { color: var(--np-paper); opacity: 0.85; }
.hero__sub {
  font-size: 1.0625rem;
  line-height: 1.55;
  max-width: 60ch;
  margin: 0 0 1.5em;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block: 1.5rem 2rem;
}
.hero .trust-strip {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}
.hero .trust-strip strong { color: var(--np-paper); }

/* Qualifier (in / out lists) */
.qualifier__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .qualifier__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.qualifier__col h3 {
  font-size: var(--text-h3);
  margin: 0 0 1rem;
}
.check-list, .x-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.875rem;
}
.check-list li, .x-list li {
  position: relative;
  padding-left: 2rem;
  line-height: 1.55;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--np-red);
  font-weight: 700;
  font-size: 1.125rem;
}
.x-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: -0.125rem;
  color: var(--np-charcoal-soft);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}

/* Process steps (3-step diagram) */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  counter-reset: step;
}
@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}
.process-steps > li,
.process-steps > .process-step {
  list-style: none;
  position: relative;
  padding-top: 3.5rem;
  counter-increment: step;
}
.process-steps > li::before,
.process-steps > .process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--np-red);
  letter-spacing: -0.02em;
}
.process-steps h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

/* Case study card */
.case-card {
  background: var(--np-surface);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 900px) {
  .case-card { grid-template-columns: 1.2fr 1fr; }
}
.case-card__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--np-divider);
  min-height: 280px;
}
.case-card__media img { width: 100%; height: 100%; object-fit: cover; }
.case-card__body { padding: clamp(1.5rem, 3vw, 2.5rem); }
.case-card__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-block: 1px solid var(--np-divider);
}
.case-card__facts dt {
  font-size: var(--text-small);
  color: var(--np-charcoal-soft);
  margin-bottom: 0.25rem;
}
.case-card__facts dd {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--np-ink);
  margin: 0;
}
.case-card__context {
  font-size: var(--text-small);
  color: var(--np-charcoal-soft);
  line-height: 1.55;
}

/* Neighborhood grid */
.hood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-block: 2rem;
}
.hood-grid > * {
  display: block;
  padding: 1rem 1.25rem;
  background: var(--np-surface);
  border-radius: 6px;
  border: 1px solid transparent;
  transition: border-color var(--duration-fast) var(--ease-out-expo),
              transform var(--duration-fast) var(--ease-out-expo);
  text-decoration: none;
  color: var(--np-ink);
}
.hood-grid > *:hover {
  border-color: var(--np-red);
  transform: translateY(-1px);
  text-decoration: none;
}
.hood-grid strong, .hood-grid b {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.hood-grid small, .hood-grid span {
  font-size: var(--text-small);
  color: var(--np-charcoal-soft);
  line-height: 1.4;
}
.hood-grid__footer {
  margin-top: 1.5rem;
  font-size: var(--text-small);
  color: var(--np-charcoal-soft);
}

/* Risk reversal block */
.risk-block {
  background: var(--np-ink);
  color: var(--np-paper);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.risk-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--np-red);
}
.risk-block h2, .risk-block h3 { color: var(--np-paper); }
.risk-block .lede { color: rgba(255, 255, 255, 0.85); }
.risk-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}
.risk-list li {
  position: relative;
  padding-left: 2rem;
  line-height: 1.5;
}
.risk-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--np-red);
  font-weight: 700;
}

/* Finance section cards */
.finance-grid, .b-finance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-block: 2rem;
}
@media (min-width: 768px) {
  .finance-grid { grid-template-columns: repeat(3, 1fr); }
  .b-finance-grid { grid-template-columns: repeat(4, 1fr); }
}
.finance-card {
  background: var(--np-paper);
  border: 1.5px solid var(--np-divider);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: border-color var(--duration-fast) var(--ease-out-expo),
              transform var(--duration-fast) var(--ease-out-expo);
}
.finance-card:hover {
  border-color: var(--np-charcoal);
  transform: translateY(-2px);
}
.finance-card--primary {
  border-color: var(--np-red);
  background: var(--np-red-tint);
  position: relative;
}
.finance-card--primary::before {
  content: "Most popular";
  position: absolute;
  top: -10px;
  left: 1.5rem;
  background: var(--np-red);
  color: var(--np-paper);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
}
.finance-card h3 { font-size: 1.125rem; margin: 0; }
.finance-card p { font-size: 0.9375rem; margin: 0; color: var(--np-charcoal); }
.finance-card a, .finance-card .cta { margin-top: auto; }

/* Bio block */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 700px) {
  .bio-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
.bio-card {
  background: var(--np-surface);
  padding: 1.75rem;
  border-radius: 8px;
}
.bio-card h3 { font-size: 1.125rem; margin: 0 0 0.25rem; }
.bio-card .eyebrow { margin-bottom: 0.5rem; }
.bio-card p { margin: 0; font-size: 0.9375rem; line-height: 1.55; }
.bio__footer {
  margin-top: 1.5rem;
  font-size: var(--text-small);
  color: var(--np-charcoal-soft);
  text-align: center;
}

/* FAQ list */
.faq-list { max-width: var(--max-prose); margin: 0 auto; }
.faq-list details { border-block: 1px solid var(--np-divider); }
.faq-list details + details { border-top: none; }

/* Final CTA */
.final-cta {
  background: var(--np-surface);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 8px;
  text-align: center;
}
.final-cta__inner { max-width: 56ch; margin: 0 auto; }
.final-cta h2 { margin: 0 0 1rem; }
.final-cta .lede { margin-inline: auto; }
.final-cta__alt {
  margin-top: 1rem;
  font-size: var(--text-small);
  color: var(--np-charcoal-soft);
}
.final-cta .hero__ctas,
.final-cta > div:has(.cta) {
  justify-content: center;
  margin-block: 1.5rem 0.5rem;
}

/* Disclosure */
.np-disclosure {
  font-size: 0.8125rem;
  color: var(--np-charcoal-soft);
  line-height: 1.5;
  max-width: var(--max-prose);
  margin: 1rem 0;
  padding: 0.875rem 1rem;
  background: var(--np-surface);
  border-left: 3px solid var(--np-divider);
  border-radius: 0 4px 4px 0;
}
.np-disclosure--mini {
  font-size: 0.75rem;
  padding: 0.625rem 0.875rem;
  background: transparent;
  border-left-width: 2px;
  margin: 0.75rem 0;
}
.np-disclosure a { color: var(--np-charcoal); text-decoration: underline; }

/* Featured radio (apply form — Hearth option) */
.form-field--radios__featured {
  border-color: var(--np-red) !important;
  background: var(--np-red-tint);
  position: relative;
}
.form-field--radios__featured::after {
  content: "Recommended";
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--np-red);
}
.form-field--radios__featured-title { font-weight: 600; display: block; }
.form-field--radios__featured-meta,
.form-field--radios__featured-note {
  display: block;
  font-size: var(--text-small);
  color: var(--np-charcoal-soft);
  font-weight: 400;
  margin-top: 0.25rem;
}

/* Progress bar — works for both <ol><li> and <div><div> patterns */
.progress { display: flex; gap: 0.5rem; margin-block: 1.5rem; padding: 0; list-style: none; }
.progress > li,
.progress > .progress__step,
.progress > div {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--np-divider);
  list-style: none;
}
.progress > li.active,
.progress > .progress__step.active,
.progress > div.active { background: var(--np-red); }

/* ────────────────────────────────────────────────────────────────────────
   Apply page — /apply
   Class names emitted by the editorial-copywriter content/apply.html
   (site-header, site-footer, apply-intro, form-group, reciprocity, etc.)
   These are NPLD-funnel-specific and don't conflict with .np-header etc.
   ──────────────────────────────────────────────────────────────────────── */

/* Site header (apply page variant) */
.site-header {
  border-bottom: 1px solid var(--np-divider);
  background: var(--np-paper);
}
.site-header > .container,
.site-header__row,
.page--apply .site-header,
.page--apply .site-header > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max-content);
  margin-inline: auto;
  padding: 1rem clamp(1.25rem, 4vw, 2rem);
}
.site-header__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--np-ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.site-header__wordmark:hover { color: var(--np-red); text-decoration: none; }
.site-header__license {
  font-size: 0.8125rem;
  color: var(--np-charcoal-soft);
}

/* Breadcrumb — note: HTML wraps an <ol> inside a <nav class="breadcrumb"> */
.breadcrumb,
.breadcrumb ol,
.breadcrumb ul {
  font-size: 0.8125rem;
  color: var(--np-charcoal-soft);
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  letter-spacing: 0.02em;
}
.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; list-style: none; }
.breadcrumb li::marker { content: ""; }
.breadcrumb li + li::before { content: "›"; color: var(--np-divider); margin-right: 0.25rem; }
.breadcrumb a { color: var(--np-charcoal-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--np-red); text-decoration: underline; }

/* Apply page main — premium editorial pass */
.apply-main {
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 4vw, 2rem) clamp(4rem, 8vw, 7rem);
}
.apply-intro {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--np-divider);
  text-align: left;
}
.apply-intro::before {
  content: "Application";
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--np-red);
  margin-bottom: 1rem;
}
.apply-intro h1 {
  font-size: clamp(2.25rem, 1rem + 4vw, 3.75rem);
  margin: 0 0 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 700;
  max-width: 16ch;
}
.apply-intro__sub {
  font-size: clamp(1.0625rem, 0.95rem + 0.4vw, 1.25rem);
  color: var(--np-charcoal);
  line-height: 1.55;
  margin: 0;
  max-width: 60ch;
  font-weight: 400;
}

/* Reciprocity moved to TOP of form (was at end — never read).
   Render as quiet editorial side-note, not a heavy aside box. */
.reciprocity {
  background: transparent;
  padding: 0 0 0 1.5rem;
  border-left: 2px solid var(--np-red);
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--np-charcoal);
  max-width: 60ch;
  border-radius: 0;
}
.reciprocity p { margin: 0 0 0.75em; }
.reciprocity p:last-child { margin-bottom: 0; }
.reciprocity strong { color: var(--np-ink); }

/* Progress bar — minimal editorial track (premium pass) */
.progress {
  display: flex;
  gap: 0;
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--np-divider);
  border-bottom: 1px solid var(--np-divider);
}
.progress__step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  font-size: 0.8125rem;
  color: var(--np-charcoal-soft);
  transition: all var(--duration-fast) var(--ease-out-expo);
  position: relative;
  list-style: none;
}
.progress__step + .progress__step { border-left: 1px solid var(--np-divider); }
.progress__step--active {
  background: var(--np-red-tint);
  color: var(--np-ink);
  font-weight: 600;
}
.progress__step--active::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--np-red);
}
.progress__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--np-divider);
  color: var(--np-charcoal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.progress__step--active .progress__num {
  background: var(--np-red);
  color: var(--np-paper);
}
.progress__label {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  font-weight: 600;
}
@media (max-width: 600px) {
  .progress__step { padding: 0.75rem; flex-direction: column; gap: 0.25rem; text-align: center; font-size: 0.6875rem; }
}

/* Form group — editorial "chapter" treatment */
.form-group {
  border: none;
  padding: 0;
  margin: 0 0 clamp(3rem, 6vw, 4.5rem);
}
.form-group__legend {
  display: block;
  padding: 0;
  margin: 0 0 2rem;
  width: 100%;
  position: relative;
}
.form-group__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--np-red);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.form-group__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.375rem, 1rem + 1vw, 1.75rem);
  color: var(--np-ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

/* Form field — premium editorial */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}
.form-field > label:not(.form-field--radios > label) {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--np-ink);
  margin-bottom: 0.125rem;
  letter-spacing: -0.005em;
}
.form-field > input[type="text"],
.form-field > input[type="tel"],
.form-field > input[type="email"],
.form-field > input[type="number"],
.form-field > input[type="datetime-local"],
.form-field > textarea,
.form-field > select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 1rem 1.125rem;
  border: 1.5px solid var(--np-divider);
  border-radius: 8px;
  background: var(--np-paper);
  transition: border-color var(--duration-fast) var(--ease-out-expo);
  -webkit-appearance: none;
  appearance: none;
  color: var(--np-ink);
}
.form-field > input:focus,
.form-field > textarea:focus,
.form-field > select:focus {
  outline: none;
  border-color: var(--np-red);
  box-shadow: 0 0 0 4px var(--np-red-tint);
}
.form-field__hint {
  font-size: 0.8125rem;
  color: var(--np-charcoal-soft);
  margin: 0.25rem 0 0;
  line-height: 1.5;
}

/* Radio group — premium card-style options */
.form-field--radios {
  gap: 0.625rem;
}
.form-field--radios > label:first-of-type {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--np-ink);
  margin-bottom: 0.625rem;
  letter-spacing: -0.005em;
}
.form-field--radios > label:not(:first-of-type),
.form-field--radios label:has(input[type="radio"]) {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.125rem 1.25rem;
  border: 1.5px solid var(--np-divider);
  border-radius: 8px;
  cursor: pointer;
  background: var(--np-paper);
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--np-ink);
  transition: border-color var(--duration-fast) var(--ease-out-expo),
              background var(--duration-fast) var(--ease-out-expo),
              transform var(--duration-fast) var(--ease-out-expo);
}
.form-field--radios label:has(input[type="radio"]):hover {
  border-color: var(--np-charcoal);
  background: var(--np-surface);
  transform: translateX(2px);
}
.form-field--radios input[type="radio"] {
  margin: 0.1875rem 0 0 0;
  accent-color: var(--np-red);
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}
.form-field--radios label:has(input[type="radio"]:checked) {
  border-color: var(--np-red);
  background: var(--np-red-tint);
}

/* Featured Hearth radio option */
.form-field--radios__featured {
  border-color: var(--np-red) !important;
  background: var(--np-red-tint) !important;
  position: relative;
  flex-direction: column !important;
  align-items: flex-start !important;
}
.form-field--radios__featured::before {
  content: "Most popular";
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--np-red);
  color: var(--np-paper);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
}
.form-field--radios__featured-title {
  font-weight: 600;
  display: block;
  font-size: 1rem;
  color: var(--np-ink);
}
.form-field--radios__featured-meta,
.form-field--radios__featured-note {
  display: block;
  font-size: 0.8125rem;
  color: var(--np-charcoal-soft);
  font-weight: 400;
  margin-top: 0.25rem;
  font-style: normal;
}

/* Reciprocity aside ("two reasons we ask before we talk") */
.reciprocity {
  background: var(--np-surface);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid var(--np-red);
  margin: 0 0 2rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.reciprocity p { margin: 0 0 0.75em; }
.reciprocity p:last-child { margin-bottom: 0; }

/* Consent block under form */
.form-grid__consent {
  font-size: 0.8125rem;
  color: var(--np-charcoal-soft);
  line-height: 1.55;
  margin: 1rem 0 0;
  max-width: var(--max-prose);
}
.form-grid__consent a { color: var(--np-charcoal); text-decoration: underline; }

/* Site footer (apply page variant) */
.site-footer {
  border-top: 1px solid var(--np-divider);
  background: var(--np-surface);
  padding-block: 2rem;
  margin-top: 3rem;
  font-size: 0.8125rem;
  color: var(--np-charcoal-soft);
}
.site-footer > .container,
.site-footer > div:first-child {
  max-width: var(--max-content);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.site-footer__legal {
  font-weight: 500;
}
.site-footer__links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.site-footer a { color: var(--np-charcoal-soft); text-decoration: none; }
.site-footer a:hover { color: var(--np-red); text-decoration: underline; }

/* Submit CTA — apply page editorial (not full-width red bar) */
.page--apply form > button[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2.5rem;
  font-size: 1.0625rem;
  margin-top: 1.5rem;
  background: var(--np-ink);
  color: var(--np-paper);
  border-radius: 8px;
}
.page--apply form > button[type="submit"]:hover {
  background: var(--np-red);
  transform: translateY(-1px);
}

/* Site header — more substantial editorial top bar */
.site-header {
  border-bottom: 1px solid var(--np-divider);
  background: var(--np-paper);
  padding-block: 0.5rem;
}

/* Section spacer between groups */
.form-group + .form-group {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--np-divider);
}

/* Apply page body padding adjustment */
.page--apply { background: var(--np-paper); }

/* ────────────────────────────────────────────────────────────────────────
   Variant B (/v/b/) — finance-led hook
   ──────────────────────────────────────────────────────────────────────── */

/* Generic section wrappers used across landing/B (most inherit section padding) */
.case-study, .neighborhoods, .gallery, .financing, .faq, .process,
.value-stack-section { padding-block: var(--space-section); }
.case-study:nth-child(even),
.financing { background: var(--np-surface); }

/* Section process steps headers + cards */
.process-steps__step {
  padding-top: 3.5rem;
  position: relative;
  counter-increment: step;
  list-style: none;
}
.process-steps__step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--np-red);
}
.process-steps__title { font-size: 1.25rem; margin: 0 0 0.5rem; font-family: var(--font-display); font-weight: 600; }
.process-steps { counter-reset: step; }

/* Hero card variant (h-card) */
.h-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Variant B split hero — prose left + still+prequal right */
.b-hero-split { position: relative; z-index: 2; }
.b-hero-split__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .b-hero-split__inner { grid-template-columns: 1.05fr 1fr; }
}
.b-hero-split__prose { max-width: 56ch; }
.b-hero-split__prose h1,
.b-hero-split__prose .h-display { color: var(--np-paper); }
.b-hero-split__prose .lede,
.b-hero-split__prose .eyebrow { color: rgba(255,255,255,0.92); }
.b-hero-split__prose .eyebrow { color: var(--np-paper); opacity: 0.85; }
.b-hero-split__visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.b-hero-split__figure {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lifted);
  background: var(--np-charcoal);
  aspect-ratio: 4/3;
}
.b-hero-split__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 899px) {
  .b-hero-split__figure { order: 3; aspect-ratio: 16/10; }
}

/* B pre-qual card */
.b-prequal-card {
  background: var(--np-paper);
  color: var(--np-ink);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: var(--shadow-lifted);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  border-top: 4px solid var(--np-red);
}
.b-prequal-card .eyebrow { color: var(--np-red); margin: 0; }
.b-prequal-card h2,
.b-prequal-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  margin: 0;
  color: var(--np-ink);
  line-height: 1.2;
}
.b-prequal-card__tagline {
  font-size: 0.9375rem;
  color: var(--np-charcoal-soft);
  margin: 0;
  line-height: 1.55;
}
.b-prequal-card .cta { width: 100%; justify-content: center; }
.b-prequal-card__skip {
  text-align: center;
  font-size: 0.875rem;
  color: var(--np-charcoal-soft);
  margin: 0;
}
.b-prequal-card__skip a {
  color: var(--np-charcoal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* "Why see numbers first" 3-paragraph reciprocity section */
.b-why-numbers {
  padding-block: var(--space-section);
  background: var(--np-surface);
}
.b-why-numbers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 920px;
  margin: 1.5rem auto 0;
}
@media (min-width: 768px) {
  .b-why-numbers__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.b-why-numbers__grid > * {
  padding: 1.5rem;
  background: var(--np-paper);
  border-radius: 8px;
  border-left: 3px solid var(--np-red);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.b-why-numbers__note {
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: var(--np-charcoal-soft);
  text-align: center;
  font-style: italic;
}

/* Monthly note callout */
.b-monthly-note {
  display: inline-block;
  margin-top: 0.875rem;
  padding: 0.5rem 0.75rem;
  background: var(--np-red-tint);
  border-radius: 4px;
  font-size: 0.8125rem;
  color: var(--np-charcoal);
  font-style: italic;
}

/* B finance grid (4-card row) */
.b-finance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
@media (min-width: 720px) {
  .b-finance-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .b-finance-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Final CTA row of buttons */
.final-cta__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-block: 1.5rem 1rem;
}

/* ────────────────────────────────────────────────────────────────────────
   /finance/ page — Hearth pre-qual landing
   ──────────────────────────────────────────────────────────────────────── */

.np-funnel-header,
.np-funnel-footer {
  background: var(--np-paper);
  border-bottom: 1px solid var(--np-divider);
}
.np-funnel-header > *,
.np-funnel-footer > * {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-content);
  margin-inline: auto;
  padding: 1rem clamp(1.25rem, 4vw, 2rem);
  gap: 1rem;
  flex-wrap: wrap;
}
.np-funnel-footer {
  border-top: 1px solid var(--np-divider);
  border-bottom: none;
  background: var(--np-surface);
  font-size: 0.8125rem;
  color: var(--np-charcoal-soft);
  margin-top: 3rem;
}
.np-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--np-ink);
  text-decoration: none;
}
.np-breadcrumb {
  font-size: 0.8125rem;
  color: var(--np-charcoal-soft);
}

.np-finance {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2rem);
}
.np-finance__intro {
  margin-bottom: 2.5rem;
  text-align: center;
}
.np-finance__intro h1 {
  font-size: clamp(2rem, 1rem + 3vw, 3rem);
  margin: 0 0 1rem;
}
.np-finance__intro p {
  max-width: 60ch;
  margin-inline: auto;
  color: var(--np-charcoal);
  font-size: 1.0625rem;
  line-height: 1.6;
}
.np-finance__widget {
  background: var(--np-surface);
  border-radius: 12px;
  padding: 1.5rem;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--np-divider);
  margin-bottom: 2rem;
}
.np-finance__widget iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: 8px;
  background: var(--np-paper);
}
.np-finance__nextup {
  padding: 1.25rem 1.5rem;
  background: var(--np-red-tint);
  border-radius: 8px;
  margin-block: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.np-finance__nextup strong { color: var(--np-ink); }
.np-finance__skip {
  text-align: center;
  margin: 1.5rem 0;
}
.np-skip-note {
  font-size: 0.8125rem;
  color: var(--np-charcoal-soft);
  text-align: center;
  margin: 0.5rem 0;
}
.np-finance__legal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--np-divider);
}
.np-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ────────────────────────────────────────────────────────────────────────
   /confirmed/ page
   ──────────────────────────────────────────────────────────────────────── */

.page--confirmed { background: var(--np-paper); }
.confirmed {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2rem) 3rem;
}
.confirm-hero {
  text-align: center;
  padding: 2rem 0 1rem;
  border-bottom: 1px solid var(--np-divider);
  margin-bottom: 2.5rem;
}
.confirm-hero .eyebrow { color: var(--np-red); margin: 0 0 0.75rem; }
.confirm-hero h1 {
  font-size: clamp(1.875rem, 1rem + 2.5vw, 2.75rem);
  margin: 0 0 0.75rem;
}
.subhead {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  color: var(--np-charcoal-soft);
  margin: 0 auto 1.5rem;
  max-width: 56ch;
  line-height: 1.55;
}
.confirm-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  padding: 0.875rem 1.25rem;
  background: var(--np-surface);
  border-radius: 8px;
  font-size: 0.9375rem;
  margin-top: 1rem;
}
.confirm-meta dt {
  color: var(--np-charcoal-soft);
  margin-right: 0.375rem;
  display: inline;
}
.confirm-meta dt::after { content: ":"; }
.confirm-meta dd {
  font-weight: 600;
  color: var(--np-ink);
  margin: 0 0 0 0;
  display: inline;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem 0;
}
.cta-row .cta { padding: 0.875rem 1.5rem; font-size: 1rem; }
.cta-row--ghost .cta { background: transparent; color: var(--np-charcoal); border: 1.5px solid var(--np-divider); box-shadow: none; }

/* Intro video */
.intro-video {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--np-charcoal);
  box-shadow: var(--shadow-soft);
}
.intro-video video { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }
.video-caption {
  font-size: 0.875rem;
  color: var(--np-charcoal-soft);
  margin: 0.5rem 1rem;
  text-align: center;
}
.video-microcopy {
  font-size: 0.875rem;
  color: var(--np-charcoal-soft);
  margin: 0.5rem 0 0;
  text-align: center;
}

/* "What to bring" section */
.bring,
.cover {
  margin: 2.5rem 0;
  padding: 1.75rem;
  background: var(--np-surface);
  border-radius: 8px;
}
.bring h2,
.cover h2 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}
.bring__lede {
  color: var(--np-charcoal-soft);
  margin: 0 0 1rem;
  font-size: 0.9375rem;
}
.bring__list,
.cover__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.bring__list li,
.cover__list li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.bring__list li::before,
.cover__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--np-red);
  font-weight: 700;
}

/* Cases — 3 small case-study links */
.cases {
  margin: 2.5rem 0;
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) {
  .case-grid { grid-template-columns: repeat(3, 1fr); }
}
.case-grid > * {
  padding: 1.25rem;
  background: var(--np-paper);
  border: 1px solid var(--np-divider);
  border-radius: 8px;
  text-decoration: none;
  color: var(--np-ink);
  transition: border-color var(--duration-fast) var(--ease-out-expo);
}
.case-grid > *:hover { border-color: var(--np-red); text-decoration: none; }

/* Bottom CTA */
.bottom-cta {
  margin: 3rem 0 0;
  padding: 2rem;
  background: var(--np-ink);
  color: var(--np-paper);
  border-radius: 12px;
  text-align: center;
}
.bottom-cta h2 { color: var(--np-paper); margin: 0 0 0.75rem; }
.bottom-cta p { color: rgba(255,255,255,0.85); }
.bottom-cta__note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
}
.bottom-cta .cta--ghost {
  color: var(--np-paper);
  border-color: rgba(255,255,255,0.3);
}
.bottom-cta .cta--ghost:hover {
  border-color: var(--np-paper);
  background: rgba(255,255,255,0.08);
  color: var(--np-paper);
}

/* Retention section */
.retention {
  margin: 2.5rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--np-red);
  background: var(--np-surface);
  border-radius: 0 8px 8px 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Brand block (CSLB badge) */
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
}
.brand__mark { font-weight: 700; color: var(--np-ink); }
.brand__license { font-size: 0.8125rem; color: var(--np-charcoal-soft); }

/* Legal block */
.legal {
  font-size: 0.75rem;
  color: var(--np-charcoal-soft);
  line-height: 1.5;
  margin-top: 1.5rem;
}

/* Visually-hidden helper (a11y) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ──────────────────────────────────────────────────────────────────────── */

/* Accessible reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
