:root {
  --navy: #1a2a52;
  --navy-deep: #0a1430;
  --red: #b62330;
  --red-deep: #8a1a25;
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --border: #e3e3e7;
  --pill-bg: rgba(255, 255, 255, 0.5);
  --inset-bg: rgba(15, 28, 61, 0.04);
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

:root[data-theme="dark"] {
  --navy: #6a87d4;
  --navy-deep: #16203c;
  --red: #d34552;
  --red-deep: #b62330;
  --bg: #0c1020;
  --bg-soft: #161c33;
  --surface: #1a2240;
  --text: #e7e9ee;
  --muted: #9099a8;
  --border: #2a3149;
  --pill-bg: rgba(255, 255, 255, 0.05);
  --inset-bg: rgba(255, 255, 255, 0.04);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --navy: #6a87d4;
    --navy-deep: #16203c;
    --red: #d34552;
    --red-deep: #b62330;
    --bg: #0c1020;
    --bg-soft: #161c33;
    --surface: #1a2240;
    --text: #e7e9ee;
    --muted: #9099a8;
    --border: #2a3149;
    --pill-bg: rgba(255, 255, 255, 0.05);
    --inset-bg: rgba(255, 255, 255, 0.04);
  }
}

/* Logo light/dark swap. Specificity bumped with .logo prefix so these win
   against the later .logo-icon { display: block; } rule. */
.logo .logo-dark-only { display: none; }
:root[data-theme="dark"] .logo .logo-light-only { display: none; }
:root[data-theme="dark"] .logo .logo-dark-only { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .logo .logo-light-only { display: none; }
  :root:not([data-theme]) .logo .logo-dark-only { display: block; }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

/* Decorative background — kept simple to match institutional feel */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bg);
}

/* Container */
.container {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- SECTION BANNER ---------- */
.section-banner {
  background: var(--navy-deep);
  color: #fff;
  text-align: center;
  padding: 0.95rem 1rem;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0;
  position: relative;
}
.section-banner::before,
.section-banner::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--red);
  border-radius: 50%;
  margin: 0 0.85rem;
  vertical-align: middle;
  position: relative;
  top: -0.1em;
}

/* ---------- FLOATING CONTROLS (hamburger + theme) ---------- */
.floating-controls {
  position: fixed;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.nav-toggle, .theme-toggle {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--navy-deep);
  cursor: pointer;
  padding: 0;
  box-shadow: 0 4px 14px rgba(15, 28, 61, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1;
  color: #fff;
}
.theme-toggle:hover { background: var(--red); }
.theme-icon { display: none; }
:root:not([data-theme="dark"]) .theme-icon-moon,
[data-theme="light"] .theme-icon-moon { display: inline-block; }
[data-theme="dark"] .theme-icon-sun { display: inline-block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .theme-icon-moon { display: none; }
  :root:not([data-theme]) .theme-icon-sun { display: inline-block; }
}
.nav-toggle:hover { background: var(--red); }
.nav-toggle.open { background: var(--red); }
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}
.nav-toggle.open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- ACCORDION MENU ---------- */
.nav-links {
  position: fixed;
  top: calc(1.1rem + 48px + 0.55rem);
  right: 1.1rem;
  z-index: 55;
  width: min(280px, calc(100vw - 2.2rem));
  background: var(--navy-deep);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 28, 61, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: max-height 0.3s ease, opacity 0.2s ease, transform 0.22s ease;
}
.nav-links.open {
  max-height: calc(100vh - 7rem);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  overflow-y: auto;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.15s ease, background 0.15s ease, padding-left 0.15s ease;
}
.nav-links a:last-child { border-bottom: 0; }
.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: var(--red);
  padding-left: 1.4rem;
}

/* Anchor scroll offset (no sticky bar, but keep a small buffer) */
section[id] { scroll-margin-top: 1rem; }

/* Container gets top padding after a banner */
.section-banner + .container { padding-top: 3rem; }
@media (max-width: 480px) {
  .section-banner + .container { padding-top: 2.25rem; }
}

/* ---------- HERO ---------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 2.5rem;
  text-align: center;
}
.hero .container { max-width: 720px; }
@media (max-width: 480px) {
  .hero { padding: 1rem 0 1.75rem; }
}

/* Logo: icon floats to the left, wordmark centred on screen */
.logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
  min-height: clamp(60px, 9vw, 90px);
}
.logo-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: clamp(50px, 8vw, 80px);
  width: auto;
  display: block;
}
.logo-wordmark {
  max-width: min(360px, 78%);
  height: auto;
  display: block;
}
@media (max-width: 480px) {
  .logo { margin-bottom: 1rem; min-height: 56px; }
  .logo-icon { height: 44px; left: 0.5rem; }
  .logo-wordmark { max-width: 70%; }
}

/* Kicker pill */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(182, 35, 48, 0.35);
  border-radius: 999px;
  background: var(--pill-bg);
}
.kicker .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(182, 35, 48, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(182, 35, 48, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(182, 35, 48, 0.05); }
}

/* Display headline */
.display {
  font-family: var(--sans);
  font-weight: 900;
  color: var(--navy);
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2em 0.4em;
}
.display .word { display: inline-block; }

/* Hero — line groups force a 2-line layout regardless of viewport */
.hero .display {
  flex-direction: column;
  align-items: center;
  gap: 0.05em 0;
}
.hero .display .line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.4em;
}
.hero .display .accent { color: var(--red); }

/* Section accent words */
.deputies .display .accent,
.story .display .accent,
.plan .display .accent,
.problem .display .accent,
.stand .display .accent,
.stakes .display .accent,
.mechanics .display .accent,
.vision .display .accent,
.examples .display .accent,
.drift .display .accent,
.bbc .display .accent { color: var(--red); }

/* Lede */
.lede {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 1.25rem;
}

/* Rule */
.rule {
  width: 56px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 1.1rem;
  border-radius: 2px;
}

/* CTA */
.cta-down {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 0.6rem 1rem;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--pill-bg);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cta-down:hover {
  background: var(--navy);
  color: #fff;
}
.cta-down .arrow {
  display: inline-block;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}

/* ---------- PROBLEM ---------- */
.problem {
  padding: 0 0 4rem;
  text-align: center;
  background: var(--bg);
}
.problem .lede { margin-bottom: 1.25rem; }

.caveat {
  max-width: 720px;
  margin: 0.5rem auto 2.25rem;
  padding: 1.5rem 1.5rem 1.75rem;
  background: var(--surface);
  border: 2px solid var(--red);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 28, 61, 0.08);
  text-align: left;
  position: relative;
}
.caveat-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1rem;
  padding: 0.4rem 0.85rem;
  background: rgba(182, 35, 48, 0.1);
  border-radius: 999px;
}
.caveat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(182, 35, 48, 0.18);
}
.caveat-body {
  font-size: 1.02rem;
  color: var(--text);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}
.caveat-punch,
.caveat-punch-2 {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  line-height: 1.2;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}
.caveat-punch-2 { margin-bottom: 0; }
.caveat-punch em,
.caveat-punch-2 em { color: var(--red); }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
  max-width: 880px;
  margin: 0 auto 1.75rem;
  text-align: left;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 10px;
  padding: 1.1rem 1.2rem 1.2rem;
}
.pillar h3 {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--red);
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
}
.pillar p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

/* ---------- STORY ---------- */
.story {
  padding: 0 0 4rem;
  text-align: center;
  background: var(--bg-soft);
}
.story .lede { margin-bottom: 1.5rem; }
.story .lede strong { color: var(--navy); }

.prose {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  text-align: left;
  font-size: 1rem;
  color: var(--text);
}
.prose p { margin: 0 0 0.85rem; }
.prose p:last-child { margin-bottom: 0; }

.pullquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--red);
  background: var(--pill-bg);
  border-radius: 0 8px 8px 0;
}
.pullquote p {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0 0 0.4rem;
}
.pullquote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.pullquote cite a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.pullquote cite a:hover { color: var(--red-deep); }

.stats {
  list-style: none;
  margin: 0 auto 1.75rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  max-width: 720px;
}
.stats li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 10px;
  padding: 1rem 0.6rem;
  text-align: center;
}
.stats .num {
  display: block;
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(1.9rem, 4.5vw, 2.5rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stats .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

/* Denominational breakdown variant */
.stats-denom { margin-bottom: 0.85rem; }
.stats-denom .denom-progressive { border-top-color: var(--red); }
.stats-denom .denom-progressive .num { color: var(--red); }
.stats-denom .denom-masorti { border-top-color: var(--navy); }
.stats-denom .denom-masorti .num { color: var(--navy); }
.stats-denom .denom-orthodox { border-top-color: var(--border); }
.stats-denom .denom-orthodox .num { color: var(--muted); }
.stats-note {
  max-width: 660px;
  margin: 0 auto 2rem;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}

/* Bloc callout (named-speakers by ideological bloc) */
.bloc-callout {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  padding: 1.6rem 1.4rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 5px solid var(--red);
  border-radius: 12px;
  text-align: center;
}
.bloc-callout-label {
  display: inline-block;
  margin: 0 0 0.7rem;
  padding: 0.25rem 0.7rem;
  background: var(--red);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
}
.bloc-callout-headline {
  margin: 0 auto 1.1rem;
  max-width: 560px;
  font-family: var(--sans);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}
.bloc-callout-headline strong {
  color: var(--red);
  font-weight: 900;
}
.stats-bloc {
  margin-bottom: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.stats-bloc .bloc-left {
  border-top-color: var(--red);
  background: linear-gradient(180deg, rgba(182, 35, 48, 0.08), var(--surface) 60%);
}
.stats-bloc .bloc-left .num { color: var(--red); }
.stats-bloc .bloc-centre { border-top-color: var(--navy); }
.stats-bloc .bloc-centre .num { color: var(--navy); }
.stats-bloc .bloc-right { border-top-color: var(--border); }
.stats-bloc .bloc-right .num { color: var(--muted); }
.bloc-callout-note {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}
@media (max-width: 520px) {
  .stats-bloc { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .stats-bloc li { padding: 0.8rem 0.4rem; }
  .stats-bloc .num { font-size: clamp(1.4rem, 6vw, 1.9rem); }
}

.timeline {
  list-style: none;
  margin: 0 auto 1.75rem;
  padding: 0;
  max-width: 640px;
  text-align: left;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 2px;
  background: rgba(182, 35, 48, 0.25);
}
.timeline li {
  position: relative;
  padding: 0 0 0.85rem 1.75rem;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(182, 35, 48, 0.15);
}
.timeline time {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem;
}
.timeline p { margin: 0; color: var(--text); }

.closing {
  max-width: 680px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  color: var(--text);
  text-align: left;
}
.closing em {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--red);
}

/* ---------- DEPUTIES ---------- */
.deputies {
  padding: 0 0 4rem;
  text-align: center;
  background: var(--bg);
}
.deputies .lede { margin-bottom: 2rem; }

/* Expand/collapse for the deputies list */
.reveal {
  margin: 0 auto 1.5rem;
}
.reveal summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.65rem 1.1rem;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--pill-bg);
  transition: background 0.2s ease, color 0.2s ease;
}
.reveal summary::-webkit-details-marker { display: none; }
.reveal summary::marker { content: ""; }
.reveal summary:hover {
  background: var(--navy);
  color: #fff;
}
.reveal summary .reveal-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.reveal[open] summary .reveal-arrow { transform: rotate(180deg); }
.reveal[open] .reveal-label-show { display: none; }
.reveal:not([open]) .reveal-label-hide { display: none; }
.reveal[open] { margin-bottom: 0; }

/* Section-level expand: gives breathing room above expanded content */
.section-reveal { margin: 0 auto; }
.section-reveal[open] > summary { margin-bottom: 1.25rem; }
.section-reveal > summary { margin: 0.5rem auto 0; display: inline-flex; }
.section-reveal[open] {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-reveal[open] > .mechanic-block { width: 100%; max-width: 720px; }

/* Early-action callout (mid-page link to the email-the-President area) */
.early-action {
  margin: 0.5rem 0 1.5rem;
  text-align: center;
}
.btn-action {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 2px solid var(--red);
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-action:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: #fff;
}

/* Share row (under the hero CTA) */
.share-row {
  margin: 2rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  max-width: 640px;
}
.share-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 0.4rem;
}
.share-btn {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.share-btn:hover { background: var(--navy); color: #fff; }
.share-copy { font-family: inherit; }
.share-copied { background: var(--red); color: #fff; border-color: var(--red); }

/* ---------- ANTISEMISM CRISIS BANNER ---------- */
.crisis-banner {
  background: var(--navy-deep);
  padding: 3rem 0 3.25rem;
  position: relative;
  text-align: center;
}
.crisis-banner::before,
.crisis-banner::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.crisis-banner::before { top: 0; }
.crisis-banner::after { bottom: 0; }
.crisis-banner .container { max-width: 760px; }
.crisis-label {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 1rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
}
.crisis-statement {
  margin: 0 0 1rem;
  font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #fff;
}
.crisis-sub {
  margin: 0;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.crisis-sub-pivot {
  margin-top: 1rem;
  color: #fff;
}
.crisis-sub-pivot strong { color: #fff; font-weight: 800; }

/* ---------- TIMELINE (the Pattern section) ---------- */
.timeline-section {
  padding: 0 0 4rem;
  text-align: center;
  background: var(--bg);
}
.timeline-section .lede { margin-bottom: 1.75rem; }
.timeline-section .display .accent { color: var(--red); }
.timeline-section .closing-line { max-width: 720px; }

.failure-timeline {
  list-style: none;
  margin: 0 auto 2rem;
  padding: 0;
  max-width: 760px;
  text-align: left;
  position: relative;
}
.failure-timeline::before {
  content: "";
  position: absolute;
  left: 13px; top: 8px; bottom: 8px;
  width: 2px;
  background: rgba(182, 35, 48, 0.25);
}
.failure-timeline li {
  position: relative;
  padding: 0 0 1.4rem 2.5rem;
}
.failure-timeline li:last-child { padding-bottom: 0.5rem; }
.failure-timeline li::before {
  content: "";
  position: absolute;
  left: 6px; top: 8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(182, 35, 48, 0.15);
}
.failure-timeline time {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.2rem;
}
.failure-timeline h3 {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}
.failure-timeline p {
  margin: 0;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.55;
}

/* ---------- THEIR WORDS / OUR REPLY ---------- */
.their-words {
  padding: 0 0 4rem;
  text-align: center;
  background: var(--bg-soft);
}
.their-words .lede { margin-bottom: 1.75rem; }
.their-words .display .accent { color: var(--red); }
.their-words .closing-line { max-width: 720px; }

.word-pairs {
  display: grid;
  gap: 1rem;
  max-width: 880px;
  margin: 0 auto 1.75rem;
  text-align: left;
}
.word-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.theirs, .ours {
  margin: 0;
  padding: 1.1rem 1.25rem 1.25rem;
}
.theirs {
  background: var(--inset-bg);
  border-right: 1px solid var(--border);
}
.theirs-label, .ours-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.55rem !important;
}
.theirs-label { color: var(--muted); }
.ours-label { color: var(--red); }
.theirs p:not(.theirs-label) {
  margin: 0;
  font-style: italic;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.5;
}
.ours p:not(.ours-label) {
  margin: 0;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .word-pair { grid-template-columns: 1fr; }
  .theirs { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ---------- PLENARY FLOOR QUOTES ---------- */
.plenary-quotes {
  padding: 0 0 4rem;
  text-align: center;
  background: var(--bg-soft);
}
.plenary-quotes .lede { margin-bottom: 1.75rem; }
.plenary-quotes .display .accent { color: var(--red); }

.quote-list {
  list-style: none;
  margin: 0 auto 1.75rem;
  padding: 0;
  max-width: 800px;
  text-align: left;
  display: grid;
  gap: 1rem;
}
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  padding: 1.4rem 1.5rem 1.3rem;
}
.quote-card blockquote {
  margin: 0 0 1rem;
  padding: 0;
}
.quote-card blockquote p {
  margin: 0;
  font-family: var(--sans);
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.5;
}
.quote-attr {
  display: block;
  font-style: normal;
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}
.quote-name {
  display: block;
  font-weight: 800;
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: -0.005em;
}
.quote-constituency {
  display: block;
  font-size: 0.88rem;
  color: var(--red);
  font-weight: 700;
  margin-top: 0.15rem;
}
.quote-when {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}
.plenary-quotes .footnote {
  max-width: 720px;
  margin: 1rem auto 1.5rem;
  text-align: center;
}
.quote-group-heading {
  max-width: 800px;
  margin: 2.25rem auto 0.5rem;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(182, 35, 48, 0.25);
}
.quote-group-heading:first-of-type { margin-top: 0.5rem; }
.quote-group-intro {
  max-width: 800px;
  margin: 0 auto 1rem;
  text-align: left;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.plenary-floor-final {
  max-width: 720px;
  margin: 2rem auto 0;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  text-align: center;
}

/* ---------- SHARE CARDS CAROUSEL ---------- */
.share-cards {
  padding: 0 0 4rem;
  text-align: center;
  background: var(--bg-soft);
}
.share-cards .lede { margin-bottom: 1.75rem; }
.share-cards .display .accent { color: var(--red); }

.carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 1rem;
  scroll-behavior: smooth;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-card {
  flex: 0 0 280px;
  scroll-snap-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(15, 28, 61, 0.06);
}
.carousel-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  background: #f0eee9;
}
.carousel-actions {
  display: flex;
  gap: 0.5rem;
  padding: 0.7rem 0.85rem 0.85rem;
}
.btn-action-sm {
  flex: 1;
  padding: 0.55rem 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-align: center;
}
.btn-action-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 999px;
  border-style: solid;
  border-width: 2px;
}
.btn-action-ghost:hover { background: var(--navy); color: #fff; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--navy-deep);
  color: #fff;
  font-size: 1.6rem;
  line-height: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(15, 28, 61, 0.25);
  z-index: 2;
  transition: background 0.2s ease;
}
.carousel-btn:hover { background: var(--red); }
.carousel-prev { left: -8px; }
.carousel-next { right: -8px; }
@media (max-width: 480px) {
  .carousel-card { flex: 0 0 240px; }
  .carousel-prev { left: 4px; }
  .carousel-next { right: 4px; }
  .carousel-btn { width: 40px; height: 40px; font-size: 1.4rem; }
}

/* ---------- OBJECTIONS ---------- */
.objections {
  padding: 0 0 4rem;
  text-align: center;
  background: var(--bg);
}
.objections .lede { margin-bottom: 1.75rem; }
.objections .display .accent { color: var(--red); }

.objection {
  max-width: 760px;
  margin: 0 auto 0.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  text-align: left;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.objection[open] { border-color: var(--navy); border-left-color: var(--navy); }
.objection summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.objection summary::-webkit-details-marker { display: none; }
.objection summary::marker { content: ""; }
.objection summary::after {
  content: "+";
  margin-left: auto;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--red);
  transition: transform 0.2s ease;
  line-height: 1;
}
.objection[open] summary::after { content: "\2212"; color: var(--navy); }
.obj-q {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  font-style: italic;
}
.objection p {
  margin: 0;
  padding: 0 1.2rem 1.1rem;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ---------- SOURCES ---------- */
.sources {
  background: var(--bg-soft);
  padding: 3rem 0 3.5rem;
  border-top: 1px solid var(--border);
}
.sources .container { max-width: 820px; }
.sources-heading {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 1rem;
  text-align: center;
}
.sources-intro {
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0 auto 1.5rem;
  max-width: 640px;
}
.sources-list {
  list-style: decimal;
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text);
}
.sources-list li { margin-bottom: 0.7rem; padding-left: 0.3rem; }
.sources-list strong { color: var(--navy); font-weight: 700; }
.sources-list a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  word-break: break-word;
}
.sources-list a:hover { color: var(--red-deep); }
.sources-note {
  text-align: center;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  margin: 0 auto;
  max-width: 640px;
}

/* Hard "stop saying it" banner — used at the end of Whose Board */
.dont-banner {
  margin: 2.25rem auto 1rem;
  padding: 1.75rem 1.5rem;
  background: var(--navy-deep);
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dont-banner::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--red);
}
.dont-banner p {
  margin: 0;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.25rem, 3.5vw, 1.7rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.dont-banner-sub {
  margin-top: 0.6rem !important;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem) !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  letter-spacing: 0 !important;
}

.orgs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
  text-align: left;
  margin: 1.5rem 0;
}

.org {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 10px;
  padding: 0.9rem 1rem 1rem;
  box-shadow: 0 1px 0 var(--inset-bg);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.org:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 28, 61, 0.08);
}
.org h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.35rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--border);
}
.org-meta {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.org-meta-masorti { color: var(--navy); }
.org ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.org li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.18rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(26, 42, 82, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.footnote {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 1.75rem;
}
.footnote a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.footnote a:hover { color: var(--red); }

/* ---------- PLAN ---------- */
.plan {
  padding: 0 0 4rem;
  text-align: center;
  background: var(--bg);
}
.plan .lede strong { color: var(--navy); }
.plan .lede + .lede { margin-top: -0.5rem; }

.next-up {
  margin: 0 auto 1.75rem;
  max-width: 540px;
  padding: 1.25rem 1.5rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 1px 0 var(--inset-bg);
}
.next-up-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.3rem;
}
.next-up-date {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.1rem;
  margin: 0 0 0.85rem;
}
.next-up-note {
  font-size: 0.92rem;
  color: var(--text);
  margin: 0.85rem 0 0;
}
.next-up-note em {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--red);
  font-size: 1.05em;
}

.countdown-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
.countdown-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 0.3rem 0.55rem;
}
.cd-num {
  font-family: var(--sans);
  font-weight: 900;
  color: var(--red);
  font-size: clamp(1.7rem, 5.5vw, 2.4rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-unit {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 0.4rem;
}
@media (max-width: 380px) {
  .countdown-grid { gap: 0.3rem; }
  .countdown-grid li { padding: 0.55rem 0.2rem 0.45rem; }
  .cd-unit { font-size: 0.6rem; letter-spacing: 0.1em; }
}

.routes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
  max-width: 760px;
  margin: 0 auto 0;
  text-align: left;
}
.route {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 12px;
  padding: 1.1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
}
.route h3 {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
}
.route p {
  margin: 0;
  color: var(--text);
  flex: 1;
}

.plan .coming-soon,
.stand .coming-soon {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.75;
}

/* ---------- STAKES ---------- */
.stakes {
  padding: 0 0 4rem;
  text-align: center;
  background: var(--bg-soft);
}
.stakes .lede { margin-bottom: 2rem; }

.stakes-list {
  max-width: 760px;
  margin: 0 auto 1.75rem;
  text-align: left;
}
.stake {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(182, 35, 48, 0.22);
}
.stake:first-child { padding-top: 0.5rem; }
.stake:last-child { border-bottom: none; padding-bottom: 0.5rem; }
.stake-num {
  font-family: var(--sans);
  font-weight: 900;
  color: var(--red);
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  line-height: 0.9;
  align-self: start;
  min-width: 2.4em;
}
.stake-body h3 {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  line-height: 1.25;
  margin: 0 0 0.5rem;
}
.stake-body p {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
}
@media (max-width: 480px) {
  .stake { grid-template-columns: 1fr; gap: 0.4rem; }
  .stake-num { min-width: 0; }
}

/* ---------- BBC ---------- */
.bbc {
  padding: 0 0 4rem;
  text-align: center;
  background: var(--bg);
}
.bbc .lede { margin-bottom: 1.75rem; }

.bbc-mark {
  display: inline-flex;
  align-items: center;
  vertical-align: -0.06em;
}
.bbc-mark svg {
  height: 1em;
  width: auto;
  display: block;
}
.bbc .display {
  align-items: center;
  gap: 0.18em 0.35em;
}
.bbc .closing-line {
  margin: 0.4rem auto 0.6rem;
  max-width: 720px;
  text-align: left;
}
.bbc .bbc-final {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  text-align: left;
}

.bbc .bbc-name-it {
  border-left: 4px solid var(--red);
  padding-left: 1rem;
  margin-top: 0.5rem;
}
.bbc .bbc-name-it h3 { color: var(--red); }
.bbc .bbc-name-it em {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.05em;
}

/* ---------- GOALS vs REALITY ---------- */
.goals {
  padding: 0 0 4rem;
  text-align: center;
  background: var(--bg);
}
.goals .lede { margin-bottom: 1.75rem; }
.goals .display .accent { color: var(--red); }

.goals-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto 1.75rem;
  text-align: left;
}
.goal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 12px;
  padding: 1.25rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
}
.goal-card .goal-label,
.goal-card .reality-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
}
.goal-card .goal-label { color: var(--red); }
.goal-card .reality-label { color: var(--navy); margin-top: 0.85rem; }
.goal-card h3 {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.3;
  margin: 0 0 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.goal-card p:last-child {
  margin: 0;
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.55;
}

/* ---------- EXAMPLES ---------- */
.examples {
  padding: 0 0 4rem;
  text-align: center;
  background: var(--bg-soft);
}
.examples .lede { margin-bottom: 1.75rem; }
.examples .closing-line {
  margin: 0.5rem auto 1.75rem;
  max-width: 720px;
  text-align: left;
}

/* ---------- RECEIPT (verified-quote callout) ---------- */
.receipt {
  max-width: 680px;
  margin: 1.25rem 0 0;
  padding: 1.1rem 1.25rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: 0 8px 8px 0;
  text-align: left;
}
.receipt-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.7rem;
}
.receipt blockquote {
  margin: 0 0 0.7rem;
  padding: 0;
}
.receipt blockquote p {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
  margin: 0 0 0.4rem;
  line-height: 1.4;
}
.receipt blockquote cite {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}
.receipt-explain {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text);
}
.receipt > p:not(.receipt-label):not(.receipt-explain) {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  color: var(--text);
}

/* Inline quote inside a mechanic-block */
.inline-quote {
  margin: 0 0 0.85rem;
  padding: 0.7rem 1rem;
  background: var(--pill-bg);
  border-left: 3px solid var(--red);
  border-radius: 0 6px 6px 0;
}
.inline-quote p {
  margin: 0 0 0.4rem;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.4;
}
.inline-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- DRIFT ---------- */
.drift {
  padding: 0 0 4rem;
  text-align: center;
  background: var(--bg);
}
.drift .lede { margin-bottom: 1.75rem; }

.drift-list {
  list-style: none;
  margin: 0 auto 1.75rem;
  padding: 0;
  max-width: 760px;
  text-align: left;
  position: relative;
}
.drift-list::before {
  content: "";
  position: absolute;
  left: 12px; top: 8px; bottom: 8px;
  width: 2px;
  background: rgba(182, 35, 48, 0.25);
}
.drift-list li {
  position: relative;
  padding: 0 0 1.5rem 2.5rem;
}
.drift-list li:last-child { padding-bottom: 0.5rem; }
.drift-list li::before {
  content: "";
  position: absolute;
  left: 6px; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(182, 35, 48, 0.15);
}
.drift-list time {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.2rem;
}
.drift-list h3 {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0 0 0.5rem;
}
.drift-list p {
  margin: 0 0 0.5rem;
  color: var(--text);
  font-size: 0.98rem;
}
.drift-list em {
  color: var(--navy);
  font-weight: 600;
}
.drift-list .step-note {
  font-size: 0.88rem;
  color: var(--muted);
}
.drift-list blockquote {
  margin: 0;
  padding: 0.7rem 1rem;
  background: var(--pill-bg);
  border-left: 3px solid var(--red);
  border-radius: 0 6px 6px 0;
}
.drift-list blockquote p {
  margin: 0 0 0.35rem;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.4;
}
.drift-list blockquote cite {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}
.drift .closing-line {
  margin: 0 auto 0.8rem;
}
.drift .drift-final {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--red);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}
.drift .receipt {
  margin: 0 auto 1.5rem;
}
.drift .footnote {
  margin: 0 auto 1.75rem;
  text-align: center;
}

/* ---------- MECHANICS ---------- */
.mechanics {
  padding: 0 0 4rem;
  text-align: center;
  background: var(--bg);
}
.mechanics .lede { margin-bottom: 1.75rem; }

.mechanic-block {
  max-width: 720px;
  margin: 0 auto 1.6rem;
  text-align: left;
}
.mechanic-block:last-of-type { margin-bottom: 1.75rem; }
.mechanic-block h3 {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0 0 0.55rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.mechanic-block p {
  margin: 0 0 0.85rem;
  color: var(--text);
  font-size: 1rem;
}
.mechanic-block p:last-child { margin-bottom: 0; }

/* ---------- VISION ---------- */
.vision {
  padding: 0 0 4rem;
  text-align: center;
  background: var(--bg-soft);
}
.vision .lede { margin-bottom: 1.75rem; }

.vision-list {
  list-style: none;
  margin: 0 auto 0;
  padding: 0;
  max-width: 760px;
  text-align: left;
  counter-reset: vision;
}
.vision-list li {
  counter-increment: vision;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 10px;
  padding: 1.1rem 1.2rem 1.2rem;
  margin-bottom: 0.85rem;
  position: relative;
}
.vision-list h3 {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  padding-left: 2.6rem;
  position: relative;
  min-height: 1.5rem;
}
.vision-list h3::before {
  content: counter(vision, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.18em;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--red);
  background: rgba(182, 35, 48, 0.1);
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
}
.vision-list p {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  padding-left: 2.6rem;
}
.vision .closing-line {
  margin-top: 1.75rem;
  margin-bottom: 1.5rem;
}

/* ---------- STAND ---------- */
.stand {
  padding: 0 0 4rem;
  text-align: center;
  background: var(--bg);
}
.stand .lede { margin-bottom: 1.75rem; }

.qa {
  list-style: none;
  margin: 0 auto 1rem;
  padding: 0;
  max-width: 720px;
  text-align: left;
  counter-reset: qa;
}
.qa li {
  counter-increment: qa;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.qa li:last-child { border-bottom: none; }
.qa h3 {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1.25;
  margin: 0 0 0.4rem;
  padding-left: 3.25rem;
  position: relative;
  min-height: 1.6rem;
}
.qa h3::before {
  content: counter(qa, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.15em;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--red);
  background: rgba(182, 35, 48, 0.1);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.qa p {
  margin: 0;
  padding-left: 3.25rem;
  font-size: 0.98rem;
  color: var(--text);
}

.closing-line {
  max-width: 620px;
  margin: 1.5rem auto 0;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}

/* Case for standing — long-form expandable */
.case {
  max-width: 720px;
  margin: 1.75rem auto 0;
  text-align: center;
}
.case summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.65rem 1.1rem;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--pill-bg);
  transition: background 0.2s ease, color 0.2s ease;
}
.case summary::-webkit-details-marker { display: none; }
.case summary::marker { content: ""; }
.case summary:hover { background: var(--navy); color: #fff; }
.case summary .reveal-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.case[open] summary .reveal-arrow { transform: rotate(180deg); }
.case[open] .reveal-label-show { display: none; }
.case:not([open]) .reveal-label-hide { display: none; }

.case-prose {
  margin-top: 1.75rem;
  text-align: left;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
}
.case-prose p { margin: 0 0 0.95rem; }
.case-prose h4 {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 1.5rem 0 0.5rem;
}
.case-prose h4:first-of-type { margin-top: 1.25rem; }
.case-prose .case-final {
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
  text-align: center;
}

.btn {
  align-self: flex-start;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-align: center;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { background: var(--red-deep); border-color: var(--red-deep); color: #fff; }
.btn.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn.btn-ghost:hover { background: var(--navy); color: #fff; }

/* ---------- IF YOU'RE READING THIS ---------- */
.reading {
  padding: 0 0 4rem;
  text-align: center;
  background: var(--bg-soft);
}
.reading .lede { margin-bottom: 1.75rem; }
.reading .display .accent { color: var(--red); }

.reading-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1rem;
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}
.reading-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  padding: 1.25rem 1.4rem 1.4rem;
}
.reading-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.7rem;
}
.reading-card p:not(.reading-label) {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.55;
}
.reading-card p:not(.reading-label) strong { color: var(--navy); }

.btn-mail {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.1rem;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-mail:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: #fff;
}

.email-confirm {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--border);
}
.email-confirm-prompt {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.btn-confirm {
  display: inline-block;
  padding: 0.55rem 0.95rem;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-confirm:hover {
  background: var(--navy);
  color: #fff;
}
.email-confirm-thanks {
  margin: 0.85rem 0 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

/* ---------- SIGN-OFF ---------- */
.sign-off {
  background: var(--navy-deep);
  text-align: center;
  padding: 5.5rem 1.5rem 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
}
.sign-off::after {
  content: "";
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--red);
}
.sign-off-rule {
  width: 88px;
  height: 4px;
  background: var(--red);
  margin: 0 auto 2.25rem;
  border-radius: 2px;
}
.sign-off p {
  margin: 0;
  font-family: "Frank Ruhl Libre", "Noto Serif Hebrew", "David Libre", "Times New Roman", serif;
  font-size: clamp(3.25rem, 14vw, 8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #d8def0;
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: 0.85rem;
}
.site-footer p { margin: 0.15rem 0; }
.site-footer .small { font-size: 0.78rem; opacity: 0.7; }

/* ---------- MOTION ---------- */
.logo, .hero .kicker, .hero .display, .hero .lede, .rule, .cta-down {
  animation: rise 0.8s ease both;
}
.hero .kicker { animation-delay: 0.05s; }
.hero .display { animation-delay: 0.15s; }
.hero .lede   { animation-delay: 0.25s; }
.rule         { animation-delay: 0.35s; }
.cta-down     { animation-delay: 0.4s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; }
  html { scroll-behavior: auto; }
}
