:root {
  --navy: #1a2a52;
  --navy-deep: #0a1430;
  --red: #b62330;
  --red-deep: #8a1a25;
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --border: #e3e3e7;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { 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;
}

/* ---------- HAMBURGER (floating) ---------- */
.nav-toggle {
  position: fixed;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 60;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--navy-deep);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  box-shadow: 0 4px 14px rgba(15, 28, 61, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}
.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);
}

/* ---------- MENU OVERLAY ---------- */
.nav-links {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--navy-deep);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 1.5rem;
  gap: 0.4rem;
}
.nav-links.open { display: flex; }
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover { color: #fff; background: var(--red); }

/* 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: rgba(255, 255, 255, 0.5);
}
.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: rgba(255, 255, 255, 0.5);
  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: #25272e;
}
.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: rgba(255, 255, 255, 0.6);
  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;
}

.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: #25272e;
  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: rgba(255, 255, 255, 0.5);
  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; }

.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 rgba(15, 28, 61, 0.04);
  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 rgba(15, 28, 61, 0.04);
}
.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: rgba(255, 255, 255, 0.6);
  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: rgba(255, 255, 255, 0.6);
  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: rgba(255, 255, 255, 0.5);
  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; }
}
