/* ============================================================
   UFJL, Components
   ============================================================ */

/* ---------- HERO (homepage), animated ---------- */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 30% 110%, rgba(242,168,29,.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(200,16,46,.16), transparent 65%),
    var(--navy-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 13vw, 180px) 0 clamp(64px, 9vw, 130px);
}
.hero::before {
  content: "";
  position: absolute;
  right: -180px; top: -180px;
  width: 640px; height: 640px;
  border: 2px solid rgba(242,168,29,.18);
  border-radius: 8px;
  transform: rotate(18deg);
  pointer-events: none;
  animation: heroDiamondSpin 60s linear infinite;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 6px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--alarm) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  animation: heroBar 6s linear infinite;
}
@keyframes heroBar { from{background-position: 0% 0;} to{background-position: 200% 0;} }
@keyframes heroDiamondSpin {
  from { transform: rotate(18deg); }
  to   { transform: rotate(378deg); }
}

/* Decorative orbital rings on the right side */
.hero__orbits {
  position: absolute;
  right: -240px; top: 50%;
  width: 760px; height: 760px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: .85;
}
.hero__orbits svg { width: 100%; height: 100%; display: block; }
.hero__orbits .ring {
  fill: none;
  stroke: rgba(242,168,29,.22);
  stroke-width: 1.2;
  transform-origin: 50% 50%;
}
.hero__orbits .ring-dashed { stroke-dasharray: 2 8; }
.hero__orbits .ring-spin-1 { animation: ringSpin 80s linear infinite; }
.hero__orbits .ring-spin-2 { animation: ringSpin 120s linear infinite reverse; }
.hero__orbits .ring-spin-3 { animation: ringSpin 200s linear infinite; }
.hero__orbits .star {
  fill: var(--gold);
  filter: drop-shadow(0 0 8px rgba(242,168,29,.55));
  transform-origin: 50% 50%;
  animation: ringSpin 24s linear infinite;
}
@keyframes ringSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Vertical kinetic word marquee on the right */
.hero__marquee {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  top: 0; bottom: 0;
  width: clamp(180px, 14vw, 240px);
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.hero__marquee::before, .hero__marquee::after {
  content: "STAND · SHOW UP · VOTE · ENGAGE · DEFEND · SPEAK · PROTECT · ORGANIZE · STAND · SHOW UP · VOTE · ENGAGE · DEFEND · SPEAK · PROTECT · ORGANIZE";
  position: absolute;
  left: 0; right: 0;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(48px, 6vw, 84px);
  letter-spacing: -.02em;
  text-transform: uppercase;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.16);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  animation: marqueeUp 45s linear infinite;
}
.hero__marquee::after {
  animation-delay: -22.5s;
}
@keyframes marqueeUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(-100%); }
}
@media (max-width: 980px) {
  .hero__marquee, .hero__orbits { display: none; }
}

/* Soft sweeping spotlight across the whole hero */
.hero__sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(110deg,
    transparent 0%,
    transparent 40%,
    rgba(242,168,29,.06) 48%,
    rgba(255,255,255,.04) 50%,
    rgba(242,168,29,.06) 52%,
    transparent 60%,
    transparent 100%);
  background-size: 250% 100%;
  animation: heroSweep 11s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes heroSweep {
  0%, 100% { background-position: 130% 0; }
  50%      { background-position: -30% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero__orbits .ring-spin-1,
  .hero__orbits .ring-spin-2,
  .hero__orbits .ring-spin-3,
  .hero__orbits .star,
  .hero__marquee::before,
  .hero__marquee::after,
  .hero__sweep { animation: none; }
}

/* Floating embers */
.hero__embers {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
  z-index: 0;
}
.hero__embers span {
  position: absolute;
  bottom: -10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd27a 0%, #f2a81d 40%, transparent 70%);
  opacity: 0;
  animation: ember 7s linear infinite;
  filter: blur(.5px);
}
.hero__embers span:nth-child(1)  { left:  6%; animation-delay: 0s;   animation-duration: 6s;  }
.hero__embers span:nth-child(2)  { left: 12%; animation-delay: 1.2s; animation-duration: 8s;  width:4px;height:4px; }
.hero__embers span:nth-child(3)  { left: 19%; animation-delay: .4s;  animation-duration: 7s;  }
.hero__embers span:nth-child(4)  { left: 27%; animation-delay: 2.1s; animation-duration: 9s;  width:3px;height:3px; }
.hero__embers span:nth-child(5)  { left: 35%; animation-delay: 3.5s; animation-duration: 7.5s; }
.hero__embers span:nth-child(6)  { left: 44%; animation-delay: .8s;  animation-duration: 8.4s; width:5px;height:5px; }
.hero__embers span:nth-child(7)  { left: 52%; animation-delay: 4.2s; animation-duration: 6.6s; }
.hero__embers span:nth-child(8)  { left: 60%; animation-delay: 1.7s; animation-duration: 9.5s; }
.hero__embers span:nth-child(9)  { left: 68%; animation-delay: 2.6s; animation-duration: 7.2s; width:3px;height:3px; }
.hero__embers span:nth-child(10) { left: 76%; animation-delay: 5s;   animation-duration: 8s;  }
.hero__embers span:nth-child(11) { left: 82%; animation-delay: .2s;  animation-duration: 6.8s; width:4px;height:4px; }
.hero__embers span:nth-child(12) { left: 88%; animation-delay: 3s;   animation-duration: 9.2s; }
.hero__embers span:nth-child(13) { left: 93%; animation-delay: 1.4s; animation-duration: 7.6s; }
.hero__embers span:nth-child(14) { left: 48%; animation-delay: 4.8s; animation-duration: 8.6s; width:3px;height:3px; }
.hero__embers span:nth-child(15) { left: 72%; animation-delay: 6s;   animation-duration: 7s;  }
@keyframes ember {
  0%   { transform: translateY(0) translateX(0) scale(.6); opacity: 0; }
  10%  { opacity: .9; }
  60%  { transform: translateY(-60vh) translateX(15px) scale(1.1); opacity: .7; }
  100% { transform: translateY(-110vh) translateX(-10px) scale(.3); opacity: 0; }
}

.hero__inner { position: relative; z-index: 1; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
  opacity: 0;
  animation: fadeInUp .6s .1s forwards ease-out;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(.85); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Visually hidden, for screen readers only */
.hero__headline .vh {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.hero__headline {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(56px, 11vw, 180px);
  line-height: .86;
  letter-spacing: -.045em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  position: relative;
}

/* Typed first line */
.hero__headline .line--rising {
  display: block;
  font-size: clamp(28px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.92);
  margin-bottom: 12px;
  min-height: 1.05em;
  white-space: nowrap;
}
.hero__headline .typed { display: inline; white-space: pre; }
.hero__headline .typed.flame {
  background: linear-gradient(180deg, #fff7d6 0%, #f9c948 35%, #f2671d 70%, #c8102e 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-shadow:
    0 0 18px rgba(242,168,29,.55),
    0 0 36px rgba(200,16,46,.35);
  filter: drop-shadow(0 0 8px rgba(242,103,29,.4));
  animation: flameFlicker 2.6s ease-in-out infinite;
}
@keyframes flameFlicker {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(242,103,29,.4)) brightness(1); }
  35%      { filter: drop-shadow(0 0 14px rgba(242,103,29,.7)) brightness(1.08); }
  70%      { filter: drop-shadow(0 0 6px rgba(242,103,29,.3)) brightness(.96); }
}

/* Caret */
.hero__headline .caret {
  display: inline-block;
  width: .07em; height: .9em;
  background: var(--gold);
  margin-left: .04em;
  vertical-align: -0.05em;
  animation: caretBlink 1s steps(2) infinite;
  box-shadow: 0 0 12px rgba(242,168,29,.7);
}
.hero__headline .caret.is-done { animation: caretBlink 1s steps(2) 4 forwards; opacity: 0; }
@keyframes caretBlink {
  0%, 49%   { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* "So are we.", slam */
.hero__headline .line--so {
  display: block;
  position: relative;
  opacity: 0;
  transform: translateY(20px) scale(.92);
  filter: blur(8px);
}
.hero__headline .line--so.is-in {
  animation: slamIn .9s cubic-bezier(.2,1.6,.3,1) forwards;
}
@keyframes slamIn {
  0%   { opacity: 0; transform: translateY(20px) scale(.92); filter: blur(8px); }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.04); filter: blur(0); }
  80%  { transform: translateY(2px) scale(.99); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
.hero__headline .so-text {
  display: inline-block;
  color: var(--gold);
  font-family: var(--f-display);
  font-weight: 900;
  font-style: normal;
  letter-spacing: -.045em;
  text-transform: uppercase;
  font-size: clamp(64px, 12vw, 180px);
  line-height: .9;
  text-shadow: 0 0 60px rgba(242,168,29,.35);
}
.hero__headline .so-bar {
  display: block;
  height: 6px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--alarm));
  margin-top: 14px;
  border-radius: 3px;
  box-shadow: 0 0 24px rgba(242,168,29,.5);
}
.hero__headline .line--so.is-in .so-bar {
  animation: barGrow 1.4s .25s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes barGrow {
  to { width: 92%; }
}

.reveal-late {
  opacity: 0;
  transform: translateY(12px);
}
.reveal-late.is-in {
  animation: fadeInUp .7s ease-out forwards;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: clamp(32px, 5vw, 56px);
}
.hero__cta-row .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.hero__cta-row .btn--ghost:hover { background: #fff; color: var(--navy-ink); }

.hero__sub {
  font-family: var(--f-serif);
  font-style: normal;
  font-size: clamp(18px, 2.2vw, 26px);
  color: rgba(255,255,255,.85);
  max-width: 720px;
  margin-top: clamp(28px, 4vw, 48px);
  line-height: 1.4;
}

.hero__counters {
  display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero__counters .ct {
  font-family: var(--f-mono);
}
.hero__counters .ct .n {
  display: block;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -.03em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.hero__counters .ct .l {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: 8px;
}

/* ---------- SIGNERS TICKER ---------- */
.ticker {
  background: var(--gold);
  color: var(--navy-ink);
  padding: 0;
  border-top: 4px solid var(--navy-ink);
  border-bottom: 4px solid var(--navy-ink);
  position: relative;
  overflow: hidden;
}
.ticker__label {
  position: absolute; left: 0; top: 0; bottom: 0;
  z-index: 2;
  background: var(--navy-ink);
  color: var(--gold);
  display: flex; align-items: center;
  padding: 0 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 700;
  text-transform: uppercase;
  border-right: 4px solid var(--gold);
  white-space: nowrap;
}
.ticker__label .dot {
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  margin-right: 10px;
  animation: pulse 2.4s ease-in-out infinite;
}
.ticker__track {
  display: flex;
  gap: 0;
  padding: 18px 0 18px 200px;
  width: max-content;
  animation: scroll-x 60s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  padding: 0 22px;
  border-right: 1px solid rgba(20,28,74,.25);
  white-space: nowrap;
}
.ticker__item .name { color: var(--navy-ink); }
.ticker__item .city {
  margin-left: 10px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(20,28,74,.65);
}
.ticker__item.signed::before {
  content: "✓";
  display: inline-block;
  width: 20px; height: 20px;
  background: var(--navy-ink);
  color: var(--gold);
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  margin-right: 12px;
  font-weight: 900;
}

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

@media (max-width: 720px) {
  .ticker__label { font-size: 10px; padding: 0 14px; }
  .ticker__track { padding-left: 130px; }
}

/* ---------- PLEDGE BLOCK ---------- */
.pledge {
  background: var(--paper);
  position: relative;
}
.pledge__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 980px) {
  .pledge__grid { grid-template-columns: 1fr; }
}

.pledge__statement {
  border-left: 4px solid var(--gold);
  padding-left: clamp(20px, 3vw, 32px);
}
.pledge__statement h2 { margin-bottom: 24px; }
.pledge__statement p {
  font-family: var(--f-serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  color: var(--navy-ink);
}

.commits {
  list-style: none; padding: 0; margin: 24px 0 0;
  counter-reset: commit;
}
.commits li {
  counter-increment: commit;
  padding: 16px 0 16px 56px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 17px;
  line-height: 1.45;
  color: var(--navy-ink);
}
.commits li:last-child { border-bottom: 0; }
.commits li::before {
  content: counter(commit, decimal-leading-zero);
  position: absolute;
  left: 0; top: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  background: var(--navy-ink);
  color: var(--gold);
  padding: 4px 8px;
  border-radius: 2px;
}
.commits li b { font-weight: 800; color: var(--navy-ink); }

/* ---------- PLEDGE FORM ---------- */
.pledge-form-card {
  background: #fff;
  border: 2px solid var(--navy-ink);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 44px);
  position: relative;
  box-shadow: var(--shadow-2);
}
.pledge-form-card::before {
  content: "";
  position: absolute;
  inset: -2px -2px auto -2px;
  height: 8px;
  background: var(--gold);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.pledge-form-card h3 {
  font-size: clamp(24px, 3vw, 32px);
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: 6px;
  font-weight: 900;
}
.pledge-form-card h3 .so {
  color: var(--gold);
  font-family: var(--f-serif);
  font-style: normal;
  text-transform: none;
  font-weight: 500;
}
.pledge-form-card .form-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.field-group { margin-bottom: 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field-row.three { grid-template-columns: 2fr 1fr 1fr; }
@media (max-width: 540px) {
  .field-row, .field-row.three { grid-template-columns: 1fr; }
}

.privacy-fieldset {
  border: 1px solid var(--line);
  background: #FBF7EA;
  padding: 18px;
  border-radius: var(--radius);
  margin: 18px 0;
}
.privacy-fieldset legend {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy-ink);
  padding: 0 8px;
}
.radio-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
}
.radio-stack label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: 2px;
  cursor: pointer;
  transition: background .15s;
}
.radio-stack label:hover { background: rgba(242,168,29,.10); }
.radio-stack input[type="radio"] {
  margin: 4px 0 0;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.radio-stack b {
  display: block;
  font-weight: 700;
  color: var(--navy-ink);
  font-size: 15px;
}
.radio-stack span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.commitment-fieldset {
  border: 2px solid rgba(20,28,74,.16);
  background: #fff;
  padding: 18px;
  border-radius: var(--radius);
  margin: 18px 0 22px;
}
.commitment-fieldset legend {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy-ink);
  padding: 0 8px;
}
.commitment-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: var(--navy-ink);
}
.commitment-check input {
  margin-top: 5px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.commitment-check b {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}
.commitment-check span span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.form-success, .form-error {
  display: none;
  padding: 18px;
  border-radius: var(--radius);
  margin-top: 18px;
  font-size: 15px;
}
.form-success {
  background: #FFF5DE;
  border: 1px solid #e9c870;
  color: var(--navy-ink);
}
.form-success.is-visible, .form-error.is-visible { display: block; }
.form-error {
  background: #fdebee;
  border: 1px solid #f4b5be;
  color: var(--alarm);
}

/* ---------- STATS BLOCK ---------- */
.stats {
  background: var(--navy-ink);
  color: #fff;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: left;
}
.stats__cell {
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px);
  border-right: 1px solid rgba(255,255,255,.12);
}
.stats__cell:last-child { border-right: 0; }
.stats__cell .n {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(48px, 6vw, 84px);
  letter-spacing: -.04em;
  line-height: .9;
  color: var(--gold);
}
.stats__cell .l {
  display: block;
  margin-top: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.stats__cell p {
  margin-top: 14px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 980px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__cell { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stats__cell:nth-child(2n) { border-right: 0; }
  .stats__cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .stats__cell:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 540px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stats__cell { border-right: 0 !important; }
  .stats__cell:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.12); }
}

/* ---------- THREE-UP CARDS ---------- */
.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .three-up { grid-template-columns: 1fr; } }

.icon-card {
  background: #FBF7EA;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
}
.icon-card .num-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.icon-card h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.icon-card p { color: var(--muted); font-size: 15px; line-height: 1.5; }
.icon-card .arrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}
.icon-card .arrow:hover { color: var(--gold); }

/* ---------- PULL QUOTE ---------- */
.pullquote {
  font-family: var(--f-serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(24px, 3.6vw, 44px);
  line-height: 1.25;
  color: var(--navy-ink);
  letter-spacing: -.015em;
  border-left: 6px solid var(--gold);
  padding: 14px 0 14px 32px;
  text-wrap: balance;
}
.pullquote .src {
  display: block;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 24px;
  font-weight: 600;
}

/* ---------- SECTION HEADER ---------- */
.section-head {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: baseline;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-head .num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--muted);
  text-transform: uppercase;
}
.section-head .num b {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(48px, 5vw, 72px);
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -.04em;
  margin-top: 6px;
  line-height: .9;
}
.section-head h2 { margin-bottom: 14px; }
.section-head .lede {
  font-family: var(--f-serif);
  font-style: normal;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--navy);
  max-width: 60ch;
  line-height: 1.45;
}
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- TWO COLUMN PROSE ---------- */
.prose-2col {
  columns: 2;
  column-gap: 48px;
}
.prose-2col p { break-inside: avoid; max-width: none; }
@media (max-width: 720px) { .prose-2col { columns: 1; } }

/* ---------- DOCUMENT BLOCK (about, manual) ---------- */
.doc {
  font-size: 17px;
  line-height: 1.65;
  max-width: 720px;
}
.doc h2 { margin: 56px 0 18px; }
.doc h3 { margin: 36px 0 12px; }
.doc p { color: var(--ink); margin-bottom: 18px; }
.doc ul, .doc ol { margin: 14px 0 22px; padding-left: 22px; }
.doc li { margin-bottom: 10px; }

/* ---------- BOARD MEMBERS ---------- */
.board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
@media (max-width: 880px) { .board { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .board { grid-template-columns: 1fr; } }
.board__member {
  background: #FBF7EA;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.board__member b {
  display: block;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--navy-ink);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.board__member span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.board__member p { color: var(--muted); font-size: 14px; margin-top: 12px; line-height: 1.5; }

/* ---------- MANUAL QUESTIONS LIST ---------- */
.qlist { list-style: none; padding: 0; margin: 0; counter-reset: q; }
.qlist li {
  counter-increment: q;
  padding: 22px 0 22px 64px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 18px;
  line-height: 1.5;
  color: var(--navy-ink);
}
.qlist li::before {
  content: counter(q, decimal-leading-zero);
  position: absolute;
  left: 0; top: 22px;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  background: var(--gold);
  color: var(--navy-ink);
  padding: 4px 9px;
  border-radius: 2px;
}
.qlist li small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
}

/* ---------- DONATE TIERS ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 32px 0;
}
@media (max-width: 880px) { .tiers { grid-template-columns: 1fr 1fr; } }
.tier {
  background: #fff;
  border: 2px solid var(--navy-ink);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  cursor: pointer;
  transition: all .15s ease;
  font-family: inherit;
}
.tier:hover {
  background: var(--paper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.tier.is-selected {
  background: var(--navy-ink);
  color: #fff;
  border-color: var(--navy-ink);
}
.tier.is-selected .amount { color: var(--gold); }
.tier.is-selected .label  { color: rgba(255,255,255,.7); }
.tier .amount {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--navy-ink);
}
.tier .label {
  display: block;
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- BANNER STRIP ---------- */
.banner-strip {
  background: var(--gold);
  color: var(--navy-ink);
  padding: 22px 0;
  text-align: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 26px);
  text-transform: uppercase;
  letter-spacing: .04em;
  border-top: 4px solid var(--navy-ink);
  border-bottom: 4px solid var(--navy-ink);
}
.banner-strip .dot { color: var(--navy-ink); margin: 0 16px; }

/* ---------- CTA SECTION ---------- */
.cta-block {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.cta-block::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 280px; height: 280px;
  background: var(--gold);
  opacity: .12;
  border-radius: 50%;
}
.cta-block h2 { color: #fff; max-width: 18ch; }
.cta-block .so { color: var(--gold); font-family: var(--f-serif); font-style: normal; font-weight: 500; text-transform: none; }
.cta-block p { color: rgba(255,255,255,.78); margin-top: 18px; font-size: 18px; max-width: 50ch; }
.cta-block .btn { margin-top: 28px; }

/* ---------- VIDEO PLACEHOLDER ---------- */
.video-ph {
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(
      45deg,
      var(--paper-2) 0 14px,
      var(--paper) 14px 28px
    );
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--muted);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}
.video-ph .play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy-ink);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  font-size: 18px;
}

/* ---------- DEFINITION LIST ---------- */
.dl-rows { margin: 0; }
.dl-rows .row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.dl-rows .row:last-child { border-bottom: 0; }
.dl-rows .k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}
.dl-rows .v { color: var(--ink); font-size: 16px; }
@media (max-width: 720px) {
  .dl-rows .row { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- RECENT SIGNERS GRID ---------- */
.signers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 32px;
}
.signers-grid .cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  font-size: 14px;
  background: #FBF7EA;
}
.signers-grid .cell b {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--navy-ink);
  font-size: 15px;
}
.signers-grid .cell span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
  display: block;
}
