/* ══════════════════════════════════════════════════════
   NeuroGuard+ GEO Landing Pages — Shared Stylesheet
   ══════════════════════════════════════════════════════ */

/* ── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colors — replace at bootstrap time */
  --blue-primary: #89b24c;
  --blue-dark: #1f1f21;
  --blue-accent: #00fced;
  --blue-nav: #1f1f21;
  --blue-mid: #65ff3e;
  --text-color: #1f1f21;
  --text-light: #5a5a5a;
  --bg-white: #ffffff;
  --bg-light: #f8f9f5;
  --bg-blue-gradient: linear-gradient(135deg, #1f1f21 0%, #89b24c 100%);
  --border-color: #e5e7e0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --radius: 6px;
  --max-width: 960px;
  --font-display: 'Abel', 'Figtree', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, -apple-system, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ────────────────────────────────────── */
.site-nav {
  background: var(--blue-nav);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.site-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-nav__logo {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.site-nav__links { display: flex; gap: 2rem; align-items: center; }
.site-nav__links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.site-nav__links a:hover { opacity: 1; }
.site-nav__cta {
  background: var(--blue-accent);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 24px;
  font-weight: 600 !important;
  opacity: 1 !important;
  transition: background 0.2s !important;
}
.site-nav__cta:hover { background: #1b9ad8; }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  background: var(--bg-blue-gradient);
  padding: 2.25rem 2rem 1.75rem;
  text-align: center;
}
.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero h1 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.375rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.hero__sub {
  color: rgba(255,255,255,0.88);
  font-size: 0.9375rem;
  max-width: 680px;
  margin: 0 auto;
}

/* ── Section layout ───────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.content-section {
  padding: 3.5rem 2rem;
}
.content-section--alt {
  background: var(--bg-light);
}
.content-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ── Typography ────────────────────────────────────── */
h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue-dark);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--blue-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
p {
  margin-bottom: 1rem;
  color: var(--text-color);
}
.lead-paragraph {
  font-size: 1.0625rem;
  line-height: 1.8;
}

/* ── Compliance Table ──────────────────────────────── */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.compliance-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.9375rem;
}
.compliance-table thead {
  background: var(--blue-dark);
}
.compliance-table th {
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 0.875rem 1rem;
  white-space: nowrap;
}
.compliance-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}
.compliance-table tbody tr:nth-child(even) {
  background: var(--bg-light);
}
.compliance-table tbody tr:hover {
  background: #eef4fb;
}
.compliance-table .penalty-cell {
  color: #c53030;
  font-weight: 600;
}
.compliance-table .feature-cell {
  color: var(--blue-primary);
  font-weight: 600;
}

/* ── Module Cards ──────────────────────────────────── */
.module-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--blue-accent);
}
.module-header__icon {
  width: 48px;
  height: 48px;
  background: var(--bg-blue-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.module-header__icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* ── Key fact callouts ─────────────────────────────── */
.penalty-callout {
  background: #fff5f5;
  border-left: 4px solid #c53030;
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.25rem 0;
  font-size: 0.9375rem;
}
.penalty-callout strong {
  color: #c53030;
}

/* ── CTA Banner ────────────────────────────────────── */
.cta-banner {
  background: var(--bg-blue-gradient);
  padding: 3rem 2rem;
  text-align: center;
}
.cta-banner__inner {
  max-width: 640px;
  margin: 0 auto;
}
.cta-banner h2 {
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.5rem;
}
.cta-button {
  display: inline-block;
  background: var(--blue-accent);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.cta-button:hover {
  background: #1b9ad8;
  transform: translateY(-1px);
}

/* ── Internal Links ───────────────────────────────── */
.internal-links {
  list-style: none;
  padding: 0;
}
.internal-links li {
  margin-bottom: 0.5rem;
}
.internal-links a {
  color: var(--blue-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.internal-links a:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

/* ── Footer ────────────────────────────────────────── */
.site-footer {
  background: var(--blue-nav);
  color: #fff;
  padding: 3rem 2rem 1.5rem;
  font-size: 0.875rem;
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer__heading {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem;
}
.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__col li {
  margin-bottom: 0.5rem;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
}
.site-footer p {
  color: #fff;
  margin: 0;
}
.site-footer a {
  color: var(--blue-accent);
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}

/* ── Page Table of Contents (inline, replaces sticky jump-nav) ───── */
.page-toc {
  max-width: var(--max-width);
  margin: 1.5rem auto 2rem;
  padding: 1.5rem 1.75rem;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--blue-accent);
  border-radius: var(--radius);
}
.page-toc__title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin: 0 0 1rem;
}
.page-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.625rem 2rem;
  counter-reset: toc;
}
.page-toc__list li {
  margin: 0;
  counter-increment: toc;
  font-size: 0.9375rem;
  line-height: 1.5;
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
}
.page-toc__list li::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--blue-primary);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  min-width: 1.5rem;
}
.page-toc__list a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.page-toc__list a:hover {
  color: var(--blue-primary);
  border-bottom-color: var(--blue-accent);
}
@media (max-width: 768px) {
  .page-toc { margin: 1rem auto 1.5rem; padding: 1.25rem 1.25rem 1rem; border-radius: 0; border-left-width: 0; border-top: 3px solid var(--blue-accent); }
  .page-toc__list { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ── Jump Nav (deprecated — superseded by .page-toc; kept for legacy renders) */
.jump-nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(150%) blur(8px);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 64px;
  z-index: 90;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.jump-nav .container {
  padding: 0 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.jump-nav .container::-webkit-scrollbar { display: none; }
.jump-nav ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.jump-nav li { margin: 0; }
.jump-nav a {
  display: inline-block;
  color: var(--blue-dark);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.875rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.jump-nav a:hover {
  color: var(--blue-primary);
  border-bottom-color: var(--blue-primary);
}

/* ── Direct Answer ────────────────────────────────── */
.direct-answer {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--blue-accent);
}

/* ── Ranked Items (Listicle) ─────────────────────── */
.ranked-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}
.ranked-item:last-child { border-bottom: none; }
.ranked-item__number {
  width: 40px;
  height: 40px;
  background: var(--bg-blue-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  flex-shrink: 0;
}
.ranked-item__content { flex: 1; }
.ranked-item__content h3 { margin-top: 0; color: var(--blue-dark); }

/* ── Comparison Table ────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.9375rem;
}
.comparison-table thead { background: var(--blue-dark); }
.comparison-table th {
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 0.875rem 1rem;
}
.comparison-table th:first-child { text-align: left; }
.comparison-table__brand { background: var(--blue-primary); }
.comparison-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  vertical-align: middle;
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-color);
}
.comparison-cell--yes {
  color: #2f855a;
  font-weight: 700;
  font-size: 1.125rem;
}
.comparison-cell--no {
  color: #c53030;
  font-weight: 700;
  font-size: 1.125rem;
}
.comparison-table tbody tr:nth-child(even) { background: var(--bg-light); }
.comparison-table tbody tr:hover { background: #eef4fb; }

/* ── When To Choose ──────────────────────────────── */
.when-to-choose {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 1.25rem 0;
}
.when-to-choose h3 { color: var(--blue-dark); margin-top: 0; }

/* ── Mid-Content CTA ─────────────────────────────── */
.cta-inline {
  text-align: center;
  padding: 2rem;
  margin: 2rem 0;
  background: var(--bg-light);
  border-radius: var(--radius);
}
.cta-inline p {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

/* ── Hub Cards ─────────────────────────────────────── */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.hub-card {
  display: block;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
}
.hub-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-accent);
}
.hub-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin: 0 0 0.5rem;
}
.hub-card__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ── Checklist Items (Buyer's Guide) ─────────────── */
.checklist-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color);
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item__marker {
  width: 32px;
  height: 32px;
  background: #2f855a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.checklist-item__content { flex: 1; }
.checklist-item__content h3 { margin-top: 0; }
.checklist-item__maps-to {
  background: var(--bg-light);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--blue-accent);
  font-size: 0.9375rem;
  margin-top: 0.75rem;
}

/* ── ROI Metrics ──────────────────────────────────── */
.roi-metric {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}
.roi-metric:last-child { border-bottom: none; }
.roi-metric__value {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.2;
}
.roi-metric__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--blue-primary);
  margin-bottom: 0.5rem;
}

/* ── Integration Details ─────────────────────────── */
.integration-detail {
  background: var(--bg-white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--blue-accent);
  margin: 1rem 0;
}
.integration-detail h3 { margin-top: 0; }
.integration-detail p:last-child { margin-bottom: 0; }

/* ── Hub Page Enhancements ─────────────────────────── */
.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
}
.hero__meta time {
  color: rgba(255,255,255,0.7);
}
.hero__stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.hero__stat {
  text-align: center;
}
.hero__stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.hero__stat + .hero__stat {
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 2rem;
}
.section-desc {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}
.hub-card--featured {
  padding: 2rem;
  border-left: 3px solid var(--blue-accent);
  margin-top: 1.25rem;
}
.hub-card--featured .hub-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.hub-card--featured .hub-card__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 640px;
}
.hub-card__cta-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue-accent);
}
.hub-card__cta-hint svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 0.2s;
}
.hub-card:hover .hub-card__cta-hint svg {
  transform: translateX(3px);
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  .site-nav__links { display: none; }
  .content-section { padding: 2.5rem 1.25rem; }
  .hero { padding: 1.75rem 1.25rem 1.25rem; }
  .jump-nav { top: 64px; }
  .jump-nav .container { padding: 0 1.25rem; }
  .jump-nav ul { gap: 1.25rem; }
  .jump-nav a { padding: 0.75rem 0; font-size: 0.75rem; }
  .module-header__icon { width: 40px; height: 40px; }
  .ranked-item { gap: 0.75rem; padding: 1rem 0; }
  .ranked-item__number { width: 32px; height: 32px; font-size: 0.875rem; }
  .comparison-table { min-width: 500px; }
  .direct-answer { padding: 1rem; }
  .cta-inline { padding: 1.5rem 1rem; margin: 1.5rem 0; }
  .when-to-choose { padding: 1rem; }
  .hub-grid { grid-template-columns: 1fr; }
  .hub-card--featured { padding: 1.5rem; }
  .hero__stats { gap: 1rem; }
  .hero__stat + .hero__stat { padding-left: 1rem; }
  .hero__stat-value { font-size: 1.375rem; }
  .hero__meta { flex-direction: column; gap: 0.5rem; }
  .checklist-item { gap: 0.75rem; }
  .checklist-item__marker { width: 28px; height: 28px; font-size: 0.75rem; }
  .checklist-item__maps-to { padding: 0.5rem 0.75rem; }
  .integration-detail { padding: 1rem; }
}

/* ── Hub stats strip (research at a glance) ─────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem auto 0;
  max-width: var(--max-width);
}
.stat-card {
  display: block;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--blue-primary);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.stat-card:hover {
  border-color: var(--blue-accent);
  border-left-color: var(--blue-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.stat-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.2vw, 2.375rem);
  font-weight: 400;
  color: var(--blue-dark);
  line-height: 1.05;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.stat-card__label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── Sources list (How we research section) ─────────── */
.sources-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1.25rem;
  display: grid;
  gap: 0.875rem;
}
.sources-list li {
  padding: 1rem 1.25rem;
  background: var(--bg-light);
  border-left: 3px solid var(--blue-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.sources-list strong {
  color: var(--blue-dark);
  font-weight: 600;
}
.sources-list em {
  font-style: italic;
}
.sources-list a {
  color: var(--blue-primary);
  text-decoration: none;
  word-break: break-word;
}
.sources-list a:hover {
  text-decoration: underline;
}

/* ── Citations & References ────────────────────────── */
sup.citation {
  font-size: 0.7rem;
  line-height: 1;
  vertical-align: super;
  margin-left: 1px;
}
sup.citation a {
  color: var(--blue-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 0 2px;
  border-radius: 3px;
  transition: background 0.15s, color 0.15s;
}
sup.citation a:hover {
  background: var(--blue-primary);
  color: #fff;
  text-decoration: none;
}
.references-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: refcount;
}
.references-list li {
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-light);
  scroll-margin-top: 5rem;
}
.references-list li:target {
  background: rgba(0, 252, 237, 0.08);
  outline: 2px solid var(--blue-accent);
  outline-offset: 4px;
  border-radius: var(--radius);
}
.references-list .ref-number {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 0.9375rem;
}
.references-list em {
  font-style: italic;
  color: var(--text-color);
}
.references-list a {
  color: var(--blue-primary);
  text-decoration: none;
  word-break: break-word;
}
.references-list a:hover {
  text-decoration: underline;
}

/* ── Founder Note (VOICE.md §7b) ─────────────────────────── */
.founder-note {
  background: var(--bg-light);
  border-left: 4px solid var(--blue-primary);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.founder-note__portrait {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.founder-note__body { min-width: 0; }
.founder-note__quote {
  font-size: 1.0625rem;
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 1rem;
  color: var(--text-color);
}
.founder-note__attribution {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-light);
  margin: 0;
  font-style: normal;
}
@media (max-width: 600px) {
  .founder-note { grid-template-columns: 1fr; text-align: center; }
  .founder-note__portrait { margin: 0 auto; }
}

/* ── Inline image figures (VOICE.md §7d) ─────────────────── */
figure.product-figure {
  margin: 2rem 0;
}
figure.product-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  background: var(--bg-light);
}
figure.product-figure figcaption {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  text-align: center;
  font-style: italic;
}

/* ── 3-column lifestyle row ──────────────────────────────── */
.lifestyle-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.lifestyle-row figure { margin: 0; }
.lifestyle-row img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.lifestyle-row figcaption {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  text-align: center;
}

/* ── Paired callout + image (number + visual proof) ──────── */
.paired-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin: 2.5rem 0;
}
.paired-callout > .callout { margin: 0; }
.paired-callout > figure { margin: 0; }
.paired-callout > figure img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
@media (max-width: 768px) {
  .paired-callout { grid-template-columns: 1fr; }
  .paired-callout > figure img { min-height: 220px; }
}


/* ── Punch-out callout for headline numbers (VOICE.md §7c) ── */
.callout {
  background: var(--bg-light);
  border: 2px solid var(--blue-primary);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}
.callout__number {
  display: block;
  font-family: Abel, sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--blue-primary);
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.callout__label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
  font-weight: 500;
}
.callout__body {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 640px;
  color: var(--text-color);
}

/* ── Hero kicker (VOICE.md §7a — pre-H1 voice line) ──────── */
.hero__kicker {
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-accent);
  margin: 0 0 0.75rem;
  font-weight: 500;
}

/* ── Accessibility ─────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--blue-accent);
  outline-offset: 2px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ══════════════════════════════════════════════════════
   Campaign / scannable-layer components (flagship pages)
   ══════════════════════════════════════════════════════ */

/* ── Benefit / mechanism card grid ─────────────────── */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.benefit-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--blue-primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.benefit-card__icon {
  width: 44px;
  height: 44px;
  background: var(--bg-blue-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 0.875rem;
}
.benefit-card__icon svg { width: 22px; height: 22px; fill: #fff; }
.benefit-card h3 {
  font-size: 1.0625rem;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.benefit-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ── "What this means" takeaway box ────────────────── */
.takeaway-box {
  background: var(--bg-light);
  border-left: 4px solid var(--blue-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
  margin: 1.75rem 0;
}
.takeaway-box__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-primary);
  margin-bottom: 0.5rem;
}
.takeaway-box p { margin: 0; font-size: 1.0625rem; line-height: 1.65; }
.takeaway-box p + p { margin-top: 0.75rem; }

/* ── Collapsible "full research" disclosure ────────── */
.research-disclosure {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin: 1.5rem 0;
  background: var(--bg-white);
}
.research-disclosure > summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.research-disclosure > summary::-webkit-details-marker { display: none; }
.research-disclosure > summary::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  color: var(--blue-primary);
  font-weight: 400;
  transition: transform 0.2s;
}
.research-disclosure[open] > summary::after { content: "\2212"; }
.research-disclosure[open] > summary { border-bottom: 1px solid var(--border-color); }
.research-disclosure__body { padding: 1.25rem 1.5rem; }
.research-disclosure__body > *:first-child { margin-top: 0; }
.research-disclosure__body > *:last-child { margin-bottom: 0; }

/* ── Social proof strip (first-party Instagram) ────── */
.ig-strip__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.ig-strip__handle {
  font-weight: 600;
  color: var(--blue-primary);
  text-decoration: none;
}
.ig-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}
.ig-strip__grid a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
}
.ig-strip__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.ig-strip__grid a:hover img { transform: scale(1.04); }

/* ── Scene opener (story hook) ─────────────────────── */
.scene-opener {
  font-size: 1.1875rem;
  line-height: 1.65;
  color: var(--text-color);
  border-left: 3px solid var(--blue-accent);
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}
.scene-opener em { font-style: italic; }

/* ── Punch-out / pull quote ────────────────────────── */
.pull-quote {
  margin: 2rem 0;
  padding: 1.75rem 2rem;
  background: var(--blue-dark);
  border-left: 4px solid var(--blue-accent);
  border-radius: var(--radius);
}
.pull-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.5rem);
  line-height: 1.4;
  color: #fff;
}
.pull-quote cite {
  display: block;
  margin-top: 0.625rem;
  font-style: normal;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  color: var(--blue-accent);
}

@media (max-width: 768px) {
  .benefit-grid { gap: 0.75rem; }
  .benefit-card { padding: 1.25rem; }
  .takeaway-box { padding: 1.25rem 1.25rem; }
  .takeaway-box p { font-size: 1rem; }
  .scene-opener { font-size: 1.0625rem; padding-left: 1rem; }
  .pull-quote { padding: 1.25rem 1.25rem; }
}
