/* ================================================================
   The 2026 Client Service Report — Kaizan landing page
   Brand-locked: Gold #FFB900 / Cream #FFFBF0 / Black #000000
   System sans-serif stack. Bold display weights, tight tracking.
================================================================ */

:root {
  /* ---------- Brand palette ---------- */
  --gold: #FFB900;
  --gold-light: #FFD133;
  --gold-pale: #FFF3C4;
  --cream: #FFFBF0;
  --black: #000000;

  /* ---------- Semantic tokens ---------- */
  --ink: var(--black);
  --ink-soft: rgba(0, 0, 0, 0.70);
  --ink-mute: rgba(0, 0, 0, 0.52);
  --ink-faint: rgba(0, 0, 0, 0.32);

  --accent: var(--gold);
  --accent-hover: #E5A700;
  --accent-soft: var(--gold-pale);
  --accent-glow: rgba(255, 185, 0, 0.32);

  --paper: var(--cream);
  --paper-2: #FFF7DD;   /* subtle gold-tinted variation */
  --paper-3: var(--gold-pale);
  --paper-card: #FFFFFF;

  --dark: var(--black);
  --dark-2: #0E0E0E;
  --dark-3: #1A1A1A;

  --hairline: rgba(0, 0, 0, 0.10);
  --hairline-strong: rgba(0, 0, 0, 0.20);
  --hairline-dark: rgba(255, 251, 240, 0.10);
  --hairline-dark-strong: rgba(255, 251, 240, 0.22);

  /* ---------- Typography ---------- */
  --font-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-sans:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'SF Mono', ui-monospace, Menlo, Monaco, Consolas, monospace;

  /* ---------- Spacing ---------- */
  --gutter: clamp(20px, 4vw, 48px);
  --section-pad: clamp(80px, 10vw, 144px);
  --container: 1240px;

  /* ---------- Shadows ---------- */
  --shadow-card: 0 1px 2px rgba(20, 16, 0, 0.04),
                 0 8px 24px rgba(20, 16, 0, 0.06),
                 0 24px 56px rgba(20, 16, 0, 0.08);
  --shadow-card-hover: 0 1px 2px rgba(20, 16, 0, 0.04),
                       0 12px 32px rgba(20, 16, 0, 0.08),
                       0 32px 72px rgba(20, 16, 0, 0.12);
  --shadow-soft: 0 2px 8px rgba(20, 16, 0, 0.05),
                 0 12px 32px rgba(20, 16, 0, 0.07);
  --shadow-gold: 0 2px 6px rgba(255, 185, 0, 0.28),
                 0 10px 28px rgba(255, 185, 0, 0.32);

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;
}

/* ================================================================
   Page-level overrides (box-sizing, body reset, link colour, img
   block-display, button font are all already set by site.css).
================================================================ */

html { scroll-behavior: smooth; }

.wp-page {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

svg { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; color: inherit; }
a { text-decoration: none; }

::selection { background: var(--gold); color: var(--black); }

/* ================================================================
   Layout primitives
================================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-pad); position: relative; }
.section--tight { padding-block: clamp(60px, 7vw, 96px); }
.section--paper-2 { background: var(--paper-2); }
.section--dark { background: var(--dark); color: var(--cream); }

.hairline { height: 1px; background: var(--hairline); width: 100%; }
.hairline-dark { background: var(--hairline-dark); }

/* ================================================================
   Typography
================================================================ */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.eyebrow--accent { color: var(--ink); }
.eyebrow--paper { color: rgba(255, 251, 240, 0.80); }

.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}

.display i, .display em {  }

.h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 8.5vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
  margin: 0;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin: 0;
}

.h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.lede {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 32ch;
  text-wrap: pretty;
}

.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; }

i.display-i, em.display-i {
  font-family: var(--font-display);
  
  font-weight: 800;
}

/* ================================================================
   Pill / chip / badge
================================================================ */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-pill);
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.pill--dark {
  background: rgba(255, 251, 240, 0.08);
  border-color: var(--hairline-dark-strong);
  color: rgba(255, 251, 240, 0.92);
}

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.pulse-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.45;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0%   { transform: scale(0.7); opacity: 0.55; }
  60%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ================================================================
   Buttons
================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(255, 185, 0, 0.32),
              0 14px 32px rgba(255, 185, 0, 0.38);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--hairline-dark-strong);
}

.btn--block { width: 100%; padding: 18px 22px; font-size: 16px; }
.btn--small { padding: 10px 16px; font-size: 14px; }

/* Ghost button — secondary CTA, solid black */
.btn--ghost {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
}
.btn--ghost:hover {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-1px);
}

/* On dark backgrounds, ghost button inverts to cream */
.section--dark .btn--ghost,
.authority .btn--ghost,
.final-cta[data-cta="black"] .btn--ghost {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* Nav and footer styles removed — handled by site.css (.kz-nav, .kz-footer). */

/* ================================================================
   Hero
================================================================ */

.hero {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero__left { padding-top: 8px; }

.hero h1 {
  margin-top: 28px;
  margin-bottom: 24px;
}

.hero h1 i, .hero h1 em,
.h2 i, .h2 em {
  font-style: normal;
  /* gold highlight bar across the lower-mid portion of the word */
  background-image: linear-gradient(transparent 30%, var(--gold) 30%, var(--gold) 90%, transparent 90%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 0.06em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* On the dark inline-CTA, italics become solid gold text instead of highlight */
.inline-cta__h i, .inline-cta__h em {
  
  color: var(--gold);
  background-image: none;
}

/* ================================================================
   Marquee — gold scrolling credibility band
================================================================ */

.marquee {
  background: var(--gold);
  color: var(--black);
  border-top: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
  padding-block: 18px;
  overflow: hidden;
  position: relative;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee__dot {
  width: 5px;
  height: 5px;
  background: var(--black);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

.hero__sub {
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 40ch;
  text-wrap: pretty;
  margin: 0 0 36px;
  font-weight: 400;
}

.hero__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  max-width: 28ch;
  text-wrap: balance;
  margin: 22px 0 28px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 400;
}

.checklist .tick {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  color: var(--black);
}

.checklist--dark .tick {
  background: var(--gold);
  color: var(--black);
}

.checklist--dark li { color: rgba(255, 251, 240, 0.90); }

/* On gold backgrounds the tick stays black inside black circle */
.checklist--on-gold .tick {
  background: var(--black);
  color: var(--gold);
}
.checklist--on-gold li { color: rgba(0, 0, 0, 0.82); }

.trust-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}

.avatar-stack { display: flex; }
.avatar-stack__item {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  background: var(--gold-pale);
  margin-left: -8px;
  display: grid;
  place-items: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  color: var(--black);
  letter-spacing: 0;
}

.avatar-stack__item:first-child { margin-left: 0; }
.avatar-stack__item:nth-child(1) { background: var(--gold); }
.avatar-stack__item:nth-child(2) { background: var(--gold-light); }
.avatar-stack__item:nth-child(3) { background: var(--gold-pale); }
.avatar-stack__item:nth-child(4) { background: var(--black); color: var(--gold); }

.trust-line__copy {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.4;
}

.trust-line__copy strong { color: var(--ink); font-weight: 700; }

/* ================================================================
   Form card — the page's anchor
================================================================ */

.form-card {
  background: var(--paper-card);
  border-radius: var(--radius-lg);
  padding: 38px 36px 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.form-card--dark {
  background: var(--dark);
  border-color: var(--hairline-dark-strong);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 24px 64px rgba(0,0,0,0.3);
}

.form-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  background: var(--gold-pale);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 22px;
  font-weight: 500;
}

.form-card--dark .form-card__badge {
  background: rgba(255, 185, 0, 0.18);
  color: var(--gold);
}

.form-card__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 6px;
}

.form-card__sub {
  font-size: 14.5px;
  color: var(--ink-mute);
  margin: 0 0 24px;
  line-height: 1.45;
}

.form-card--dark .form-card__sub { color: rgba(255, 251, 240, 0.80); }

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}

.field { display: flex; flex-direction: column; gap: 6px; }

.field__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.form-card--dark .field__label { color: rgba(255, 251, 240, 0.76); }

.field__input {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--hairline-strong);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 13px 14px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  width: 100%;
}

.form-card--dark .field__input {
  background: rgba(255, 251, 240, 0.05);
  border-color: var(--hairline-dark-strong);
  color: var(--cream);
}

.form-card--dark .field__input::placeholder { color: rgba(255, 251, 240, 0.55); }
.field__input::placeholder { color: var(--ink-faint); }

.field__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--accent-glow);
  background: white;
}

.form-card--dark .field__input:focus { background: rgba(255, 251, 240, 0.08); }

/* Custom select chevron */
.field--select { position: relative; }
.field--select .field__input { padding-right: 40px; cursor: pointer; }

.field--select::after {
  content: '';
  position: absolute;
  right: 16px;
  bottom: 19px;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--ink-soft);
  border-bottom: 1.5px solid var(--ink-soft);
  transform: rotate(45deg) translateY(-2px);
  pointer-events: none;
}

.form-card--dark .field--select::after {
  border-color: rgba(255, 251, 240, 0.76);
}

.form-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--ink-mute);
}

.form-card--dark .form-trust { color: rgba(255, 251, 240, 0.76); }

.form-trust svg { color: var(--ink-mute); }
.form-card--dark .form-trust svg { color: rgba(255, 251, 240, 0.76); }

/* Meta row */
.form-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px dashed var(--hairline-strong);
  position: relative;
}

.form-card--dark .form-meta { border-top-color: var(--hairline-dark-strong); }

.form-meta__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
  margin: 12px 0 0;
}

.form-card--dark .form-meta__label { color: rgba(255, 251, 240, 0.72); }

.form-meta__title {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--paper-card);
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.form-card--dark .form-meta__title { background: var(--dark); color: rgba(255, 251, 240, 0.72); }

.form-meta__cell { text-align: center; padding: 0 8px; position: relative; }
.form-meta__cell + .form-meta__cell::before {
  content: '';
  position: absolute;
  left: 0; top: 14px; bottom: 0;
  width: 1px;
  background: var(--hairline);
}

.form-card--dark .form-meta__cell + .form-meta__cell::before { background: var(--hairline-dark); }

.form-meta__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.form-card--dark .form-meta__num { color: var(--cream); }

/* Success state */
.btn--success {
  background: #1F8A4C !important;
  color: var(--cream) !important;
  box-shadow: 0 1px 2px rgba(31, 138, 76, 0.20), 0 6px 16px rgba(31, 138, 76, 0.22) !important;
}

/* Placeholder badge */
.ph-mark {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--black);
  background: var(--gold);
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 5;
  white-space: nowrap;
}

/* ================================================================
   Form graphic — Relationship Signal Map
   Concentric network of stakeholders, one at-risk node pulsing gold,
   sentiment-shift signals surfacing. The "invisible relationship
   layer becoming visible".
================================================================ */

.form-graphic {
  width: 100%;
  max-width: 280px;
  margin: -6px auto 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.form-graphic__svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  color: var(--ink);
}

/* Tiny inline mono labels inside the SVG (ACCOUNT / AT-RISK / SIGNAL) */
.sm-label text {
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.12em;
  fill: currentColor;
  opacity: 0.62;
}
.sm-label--accent text {
  fill: var(--gold);
  opacity: 1;
}
/* On dark form-card the labels need cream color */
.form-card--dark .sm-label text { fill: rgba(255, 251, 240, 0.72); }
.form-card--dark .sm-label--accent text { fill: var(--gold); }

/* Figure caption beneath the map — research-doc style */
.form-graphic__cap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
}
.form-graphic__cap-label {
  background: var(--gold);
  color: var(--black);
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.08em;
}
.form-graphic__cap-text { color: var(--ink-soft); }

.form-card--dark .form-graphic__cap-text { color: rgba(255, 251, 240, 0.72); }

/* Dark form variant — invert node/link color so they read on black */
.form-card--dark .form-graphic__svg { color: var(--cream); }

/* At-risk pulse: two staggered rings expanding from the flagged stakeholder */
.sm-risk-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: sm-pulse 2.6s cubic-bezier(0.2, 0.7, 0.3, 1) infinite;
}

.sm-risk-pulse--2 {
  animation-delay: 1.3s;
}

@keyframes sm-pulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  70%  { opacity: 0; }
  100% { transform: scale(3); opacity: 0; }
}

/* Sentiment shift: gentle breathing on a secondary node */
.sm-shift {
  transform-box: fill-box;
  transform-origin: center;
  animation: sm-shift 3.8s ease-in-out infinite;
}

@keyframes sm-shift {
  0%, 100% { transform: scale(0.85); opacity: 0.5; }
  50%      { transform: scale(1.15); opacity: 0.9; }
}

/* Background signal dots — slow shimmer to feel alive */
.sm-signals circle {
  animation: sm-shimmer 4s ease-in-out infinite;
}
.sm-signals circle:nth-child(2) { animation-delay: 0.8s; }
.sm-signals circle:nth-child(3) { animation-delay: 1.6s; }
.sm-signals circle:nth-child(4) { animation-delay: 2.4s; }
.sm-signals circle:nth-child(5) { animation-delay: 3.2s; }

@keyframes sm-shimmer {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 1; }
}

/* On hover, links subtly thicken (relationship strength reveal) */
.form-card:hover .sm-links line { stroke-width: 1.8; opacity: 0.75; transition: stroke-width 0.5s ease, opacity 0.5s ease; }
.sm-links line { transition: stroke-width 0.5s ease, opacity 0.5s ease; }

@media (prefers-reduced-motion: reduce) {
  .sm-risk-pulse, .sm-shift, .sm-signals circle { animation: none; }
}

/* Hover: avatars lean toward each other slightly, bubble lifts */
.fg-avatar, .fg-bubble {
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center;
}
.form-card:hover .fg-avatar--client { transform: translate(72px, 78px) rotate(-3deg); }
.form-card:hover .fg-avatar--helper { transform: translate(208px, 78px) rotate(3deg); }
.form-card:hover .fg-bubble         { transform: translate(140px, 30px) translateY(-3px); }

/* ================================================================
   Authority strip (dark)
================================================================ */

.authority {
  background: var(--dark);
  color: var(--cream);
  padding-block: clamp(72px, 8vw, 112px);
  position: relative;
  overflow: hidden;
}

.authority .container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.authority::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle at center, rgba(255, 185, 0, 0.14), transparent 60%);
  pointer-events: none;
}

.authority__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 251, 240, 0.80);
  max-width: 60ch;
  margin: 0 0 56px;
  padding-inline: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  text-align: left;
}

.authority__label::before {
  content: '';
  width: 0;
  height: 1px;
  background: transparent;
  flex-shrink: 0;
}

.authority__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  /* sized to fit the shifted container, not centered */
  width: 100%;
  margin-inline: 0;
}

@media (max-width: 920px) {
  .authority__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; width: 100%; margin-left: 0; }
}

.authority__cell {
  position: relative;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.authority__cell + .authority__cell { padding-left: 24px; }
/* Vertical lines on BOTH sides of the "340+" cell (col 2 of 4) — done as
   borders on that one cell so they're guaranteed to render in any cascade. */
.authority__cell:nth-child(2) {
  border-left: 1px solid var(--hairline-dark-strong);
  border-right: 1px solid var(--hairline-dark-strong);
}
/* Hide the pseudo-element-based dividers entirely (they were unreliable here) */
.authority__cell + .authority__cell::before { display: none !important; }
.authority__cell:nth-child(2)::before,
.authority__cell:nth-child(3)::before { display: none !important; }
.authority__cell + .authority__cell::before {
  content: '';
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 1px;
  background: var(--hairline-dark-strong);
}

@media (max-width: 920px) {
  .authority__cell + .authority__cell { padding-left: 0; }
  .authority__cell + .authority__cell::before { display: none; }
}

.authority__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 8vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: var(--cream);
  margin-bottom: 14px;
}

.authority__num em {
  font-style: normal;
  color: var(--gold);
}

.authority__desc {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 251, 240, 0.84);
  max-width: 22ch;
  text-align: center;
}

.authority__footnote {
  margin: 56px 0 0;
  padding: 24px 0 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 251, 240, 0.66);
  max-width: 80ch;
  text-align: left;
}

/* ================================================================
   Section heads
================================================================ */

.sec-head {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sec-head__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.sec-head__tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* on dark sections */
.section--dark .sec-head__tag,
.authority .sec-head__tag { color: var(--cream); }

/* on the gold final CTA */
.final-cta .sec-head__tag { color: var(--black); }
.final-cta .sec-head__tag::before { background: var(--black); }

/* ================================================================
   Outcome cards
================================================================ */

.outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-strong);
}

@media (max-width: 920px) { .outcomes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .outcomes { grid-template-columns: 1fr; } }

.outcome {
  padding: 36px 28px 32px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
  cursor: default;
}

.outcome:nth-child(4n) { border-right: none; }

@media (max-width: 920px) {
  .outcome:nth-child(2n) { border-right: none; }
  .outcome:nth-child(4n) { border-right: 1px solid var(--hairline); }
  .outcome:nth-child(2n) { border-right: none; }
}

@media (max-width: 540px) {
  .outcome { border-right: none; }
}

.outcome:hover { background: var(--paper-2); }
.outcome:hover .outcome__num { color: var(--black); background: var(--gold); }

.outcome__num {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  padding: 3px 8px;
  border: 1px solid var(--hairline-strong);
  border-radius: 3px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.outcome:hover .outcome__num { border-color: var(--gold); }

.outcome__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.outcome__desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  text-wrap: pretty;
}

/* ================================================================
   Report page mockups
================================================================ */

.pages {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  perspective: 1600px;
  margin-top: 24px;
}

@media (max-width: 920px) {
  .pages { grid-template-columns: 1fr; gap: 40px; padding-inline: 8px; }
}

.report-page--img {
  padding: 0;
  background: var(--paper-card);
}

.report-page--img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

.report-page {
  background: white;
  border-radius: 4px;
  aspect-ratio: 8.5 / 11;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: default;
  font-family: var(--font-sans);
}

.report-page--l { transform: rotate(-2deg) translateY(8px); }
.report-page--c { transform: rotate(0deg) translateY(-12px); z-index: 2; box-shadow: var(--shadow-card-hover); }
.report-page--r { transform: rotate(2deg) translateY(8px); }

.report-page:hover {
  transform: rotate(0deg) translateY(-16px);
  box-shadow: var(--shadow-card-hover);
  z-index: 3;
}

.report-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--hairline);
}

.report-page__mark {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.report-page__mark .logo__mark {
  width: 14px; height: 14px; border-radius: 3px; font-size: 9px;
}

.report-page__label {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.report-page__body {
  flex: 1;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.report-page__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

/* Page 1 — bar chart */
.rp-section-num {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rp-section-num::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gold);
}

.rp-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 4px 0 0;
}

.rp-stat-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 0 4px;
}

.rp-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.rp-stat-sub {
  font-size: 9.5px;
  color: var(--ink-mute);
  max-width: 12ch;
  line-height: 1.3;
}

.rp-chart { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.rp-bar-row { display: grid; grid-template-columns: 44px 1fr 26px; gap: 8px; align-items: center; }
.rp-bar-label { font-family: var(--font-mono); font-size: 7.5px; font-weight: 500; letter-spacing: 0.06em; color: var(--ink-mute); text-transform: uppercase; }
.rp-bar-track {
  height: 8px;
  background: var(--gold-pale);
  border-radius: 2px;
  overflow: hidden;
}
.rp-bar-fill { height: 100%; background: var(--ink); border-radius: 2px; }
.rp-bar-fill--accent { background: var(--gold); }
.rp-bar-val { font-family: var(--font-mono); font-size: 8.5px; font-weight: 500; color: var(--ink); text-align: right; }

.rp-divider { height: 1px; background: var(--hairline); margin: 6px 0; }

.rp-caption { font-size: 9px; line-height: 1.4; color: var(--ink-soft); }

/* Page 2 — numbered list */
.rp-list { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; list-style: none; padding: 0; }
.rp-list-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  font-size: 9.5px;
  line-height: 1.35;
}
.rp-list-num {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  padding-top: 1px;
}
.rp-list-text strong { font-weight: 700; color: var(--ink); }
.rp-list-text span { color: var(--ink-mute); }

/* Page 3 — CARE grid */
.rp-care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 6px;
  flex: 1;
}

.rp-care-cell {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}

.rp-care-cell:nth-child(1) { background: var(--gold-pale); }
.rp-care-cell:nth-child(2) { background: var(--gold); }
.rp-care-cell:nth-child(3) { background: var(--gold-pale); }
.rp-care-cell:nth-child(4) { background: var(--black); color: var(--cream); }

.rp-care-cell:nth-child(4) .rp-care-letter { color: var(--gold); }
.rp-care-cell:nth-child(4) .rp-care-name { color: var(--cream); }
.rp-care-cell:nth-child(4) .rp-care-sub { color: rgba(255, 251, 240, 0.84); }

.rp-care-letter {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: normal;
  font-size: 28px;
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.05em;
}

.rp-care-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: -0.01em;
}

.rp-care-sub {
  font-size: 8.5px;
  line-height: 1.3;
  color: var(--ink-soft);
}

/* ================================================================
   Inline mid-page CTA
================================================================ */

.inline-cta {
  background: var(--dark);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 920px) {
  .inline-cta { grid-template-columns: 1fr; }
}

.inline-cta::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle at center, rgba(255, 185, 0, 0.16), transparent 60%);
  pointer-events: none;
}

.inline-cta__copy { position: relative; z-index: 1; }
.inline-cta__copy .eyebrow { color: rgba(255, 251, 240, 0.80); }

.inline-cta__h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 16px 0 18px;
  color: var(--cream);
}

.inline-cta__h i {  color: var(--gold); }

.inline-cta__sub {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 251, 240, 0.85);
  max-width: 36ch;
  margin: 0;
}

/* ================================================================
   Stats band (proprietary findings)
================================================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}

@media (max-width: 920px) { .stats { grid-template-columns: 1fr; } }

.stat {
  padding: 56px 28px;
  position: relative;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.stat__num { margin-top: 0; }
.stat__desc { margin-top: 0; }
.stat__source { margin-top: auto; padding-top: 8px; }

.stat:nth-child(2) { background: var(--gold); }

.stat:last-child { border-right: none; }

@media (max-width: 920px) {
  .stat { border-right: none; border-bottom: 1px solid var(--hairline); }
  .stat:last-child { border-bottom: none; }
}

.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 6.2vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 20px;
  word-break: break-word;
}

.stat__num em {
  font-style: normal;
}

.stat:nth-child(2) .stat__num em { color: var(--black); }
.stat:nth-child(1) .stat__num em,
.stat:nth-child(3) .stat__num em { color: var(--ink-mute); }

.stat__desc {
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 30ch;
  margin: 0 0 20px;
}

.stat:nth-child(2) .stat__desc { color: rgba(0, 0, 0, 0.78); }

.stat__desc strong { color: var(--ink); font-weight: 700; }

.stat__source {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.stat:nth-child(2) .stat__source { color: rgba(0, 0, 0, 0.62); }

/* ================================================================
   CARE framework cards
================================================================ */

.care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 720px) { .care-grid { grid-template-columns: 1fr; } }

.care-card {
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.care-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--black);
  background: var(--black);
  color: var(--cream);
}

.care-card:hover .care-card__pillar { color: rgba(255, 251, 240, 0.66); }
.care-card:hover .care-card__title { color: var(--cream); }
.care-card:hover .care-card__desc { color: rgba(255, 251, 240, 0.84); }
.care-card:hover .care-card__callout {
  background: rgba(255, 251, 240, 0.06);
  border-left-color: var(--gold);
}
.care-card:hover .care-card__callout-num { color: var(--gold); }
.care-card:hover .care-card__callout-cap { color: rgba(255, 251, 240, 0.78); }

.care-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4px;
}

.care-card__pillar {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-transform: uppercase;
  transition: color 0.28s ease;
}

.care-card__letter {
  font-family: var(--font-display);
  
  font-weight: 800;
  font-size: clamp(110px, 12vw, 156px);
  line-height: 0.82;
  color: var(--gold);
  letter-spacing: -0.06em;
  margin: 8px 0;
}

.care-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 6px;
}

.care-card__desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 38ch;
}

.care-card__callout {
  margin-top: auto;
  padding: 16px 18px;
  background: var(--paper-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
  transition: background 0.28s ease, border-left-color 0.28s ease;
}

.care-card__callout-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  transition: color 0.28s ease;
}

.care-card__callout-cap {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-soft);
  transition: color 0.28s ease;
}

/* ================================================================
   Roles cards
================================================================ */

.roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 920px) { .roles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .roles { grid-template-columns: 1fr; } }

.role {
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.role:hover {
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  background: var(--paper);
}

.role:hover .role__icon {
  background: var(--gold);
  color: var(--black);
}

.role__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold-pale);
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.role__icon svg { width: 20px; height: 20px; }

.role__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.role__desc {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-mute);
  margin: 0;
}

/* ================================================================
   Quote cards
================================================================ */

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 920px) { .quotes { grid-template-columns: 1fr; } }

.quote {
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.quote__stars { display: flex; gap: 2px; color: var(--gold); }

.quote__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}

.quote__text mark {
  background: var(--gold);
  color: var(--black);
  padding: 0 4px;
  border-radius: 2px;
  
  font-weight: 700;
}

.quote__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}

.quote__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--black);
}

.quote__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin: 0;
}

.quote__role {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  margin: 2px 0 0;
}

/* ================================================================
   Final CTA — the intentional GOLD moment
================================================================ */

.final-cta {
  background: var(--gold);
  color: var(--black);
  padding-block: clamp(100px, 12vw, 160px);
  position: relative;
  overflow: hidden;
}

.final-cta__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Centered single-column variant — used when left copy is removed */
.final-cta__grid--center {
  grid-template-columns: minmax(0, 480px);
  justify-content: center;
}

@media (max-width: 920px) { .final-cta__grid { grid-template-columns: 1fr; } }

.final-cta .pill {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.20);
  color: rgba(0, 0, 0, 0.86);
}
.final-cta .pulse-dot { background: var(--black); }
.final-cta .pulse-dot::before { background: var(--black); }

.final-cta__h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 22px 0 24px;
  color: var(--black);
}

.final-cta__h i {
  color: var(--black);
  background-image: linear-gradient(transparent 30%, var(--gold) 30%, var(--gold) 90%, transparent 90%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 0.06em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.final-cta__sub {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.78);
  max-width: 40ch;
  margin: 0 0 32px;
  font-weight: 400;
}

/* form card on gold uses dark variant for contrast */
/* On the GOLD final CTA, checklist ticks must flip to black-on-black
   (gold tick on gold bg would disappear). */
.final-cta:not([data-cta="black"]) .checklist--dark .tick {
  background: var(--black);
  color: var(--gold);
}
.final-cta:not([data-cta="black"]) .checklist--dark li {
  color: rgba(0, 0, 0, 0.82);
}

/* form card on gold uses dark variant for contrast */
.final-cta .form-card--dark { background: var(--black); }
.final-cta .form-card--dark::before { background: var(--gold); }

/* When user toggles final CTA to BLACK, restore the cream/light look on
   the checklist (already correct) and give the form-card a gold separator. */
.final-cta[data-cta="black"] .form-card--dark {
  border: 1px solid rgba(255, 185, 0, 0.22);
}
.final-cta[data-cta="black"] .final-cta__h { color: var(--cream); }
.final-cta[data-cta="black"] .final-cta__h i {
  color: var(--black);
  background-image: linear-gradient(transparent 30%, var(--gold) 30%, var(--gold) 90%, transparent 90%);
}
.final-cta[data-cta="black"] .final-cta__sub { color: rgba(255, 251, 240, 0.86); }
.final-cta[data-cta="black"] .pill {
  background: rgba(255, 251, 240, 0.08);
  border-color: var(--hairline-dark-strong);
  color: rgba(255, 251, 240, 0.92);
}
.final-cta[data-cta="black"] .pulse-dot,
.final-cta[data-cta="black"] .pulse-dot::before { background: var(--gold); }
.final-cta[data-cta="black"] .sec-head__tag { color: var(--cream); }
.final-cta[data-cta="black"] .sec-head__tag::before { background: var(--gold); }

/* ================================================================
   FAQ
================================================================ */

.faq { border-top: 1px solid var(--hairline-strong); }

.faq__item {
  border-bottom: 1px solid var(--hairline);
  position: relative;
}

.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
  transition: color 0.2s ease;
}

.faq__btn:hover { color: var(--ink); }

.faq__item.is-open .faq__btn { color: var(--ink); }

.faq__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--hairline-strong);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.25s ease, color 0.2s ease;
  color: var(--ink-soft);
}

.faq__btn:hover .faq__icon {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--black);
}

.faq__item.is-open .faq__icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__answer-inner {
  padding: 0 0 28px;
  max-width: 64ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.faq__item.is-open .faq__answer { max-height: 320px; }

/* ================================================================
   Reveal on scroll
================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ================================================================
   Mobile tweaks
================================================================ */

@media (max-width: 720px) {
  .wp-page { font-size: 16px; }
  .form-card { padding: 28px 22px 24px; }
  .form-card__heading { font-size: 24px; }
  .form-meta__num { font-size: 26px; }
  .care-card__letter { font-size: 96px; }
  .stat { padding: 36px 24px; }
}

/* ================================================================
   Form validation + submission states
================================================================ */

.field.has-error .field__input {
  border-color: #c1342a;
  box-shadow: 0 0 0 3px rgba(193, 52, 42, 0.18);
}
.form-card--dark .field.has-error .field__input {
  border-color: #ff6b60;
  box-shadow: 0 0 0 3px rgba(255, 107, 96, 0.22);
}
.field__err {
  display: none;
  font-size: 12.5px;
  color: #c1342a;
  margin-top: 2px;
  line-height: 1.35;
}
.form-card--dark .field__err { color: #ff6b60; }
.field.has-error .field__err { display: block; }

.form-error {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  background: #fdecea;
  border: 1px solid #f5c2bf;
  border-radius: var(--radius);
  color: #8a1f17;
  font-size: 13px;
  line-height: 1.4;
}
.form-card--dark .form-error {
  background: rgba(255, 107, 96, 0.12);
  border-color: rgba(255, 107, 96, 0.32);
  color: #ffb1a8;
}
.form-error.is-visible { display: block; }

.btn[disabled] { opacity: 0.7; cursor: not-allowed; transform: none; }
