@font-face {
  font-family: "We The People";
  src: url("assets/WeThePeople.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

:root {
  --ink: #0c0c0c;
  --muted: #606060;
  --line: #e8e8e8;
  --paper: #ffffff;
  --signal: #ffb000;
  --sun: #ffb000;
  --sun-hot: #0c0c0c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 176, 0, 0.035) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 26%, rgba(255, 176, 0, 0.03) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 42% 72%, rgba(255, 176, 0, 0.03) 0 2px, transparent 3px);
}

body.store-entry-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.store-entry {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 22px;
  background: var(--signal);
}

.store-entry.is-gone {
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.store-entry-inner {
  width: min(640px, 100%);
  min-height: 420px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-entry-inner::before {
  content: none;
}

.store-entry-inner::after {
  content: none;
}

.store-entry-plaque {
  position: relative;
  z-index: 1;
  width: min(300px, 100%);
  padding: 18px 16px 16px;
  border: 2px solid var(--ink);
  background: rgba(255, 250, 236, 0.94);
  box-shadow: 10px 10px 0 rgba(12, 12, 12, 0.08);
}

.store-entry-title {
  margin: 0 0 12px;
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-style: italic;
  line-height: 0.98;
  text-transform: lowercase;
  text-align: center;
  color: var(--ink);
  text-shadow: none;
}

.store-entry-field {
  position: relative;
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.store-entry-name {
  position: absolute;
  left: var(--name-left, 50%);
  top: var(--name-top, 50%);
  transform: translate(-50%, -50%) rotate(var(--name-tilt, 0deg));
  color: var(--ink);
  opacity: 0.26;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(0.96rem, 1.8vw, 1.22rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  white-space: nowrap;
}

.store-entry-form label {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-family: "Courier New", monospace;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: lowercase;
  text-align: center;
}

.store-entry-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.store-entry-form input {
  min-height: 48px;
  padding: 0 12px;
  color: var(--ink);
  background: #fffdf5;
  border: 2px solid #7a4b1d;
  border-radius: 0;
  box-shadow: inset 0 0 0 1px rgba(12, 12, 12, 0.08);
  font-family: "Courier New", monospace;
  font-size: 1rem;
}

.store-entry-button {
  min-width: 94px;
  border-radius: 0;
  transform: none;
  background: #fff7e0;
}

.site-header,
.site-footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-header {
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: 104px;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  overflow: visible;
}

.sun-logo {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  z-index: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 35% 30%, #ffffff 0 10%, var(--signal) 11% 62%, #e49a00 63% 100%);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-family: "Orbitron", "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  box-shadow: 0 0 0 3px rgba(255, 176, 0, 0.14);
  transform: scale(1.95);
  transform-origin: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand .sun-logo + span {
  margin-left: 14px;
}

.sun-logo:hover,
.sun-logo.bursting {
  transform: scale(2.04);
  box-shadow: 0 0 0 5px rgba(255, 176, 0, 0.18);
}

.sun-particle {
  position: fixed;
  left: var(--start-x);
  top: var(--start-y);
  width: var(--size);
  height: var(--size);
  z-index: 1000;
  pointer-events: none;
  background: var(--signal);
  border: 1px solid rgba(12, 12, 12, 0.2);
  border-radius: 50%;
  animation: particle-burst 700ms cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

@keyframes particle-burst {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.8);
  }

  70% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--move-x)), calc(-50% + var(--move-y))) scale(0.15);
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a {
  display: inline-block;
  transition: transform 180ms ease, color 180ms ease;
}

.site-nav a:nth-child(odd) {
  transform: rotate(-1deg);
}

.site-nav a:nth-child(even) {
  transform: rotate(0.9deg);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
}

.site-nav a:hover {
  transform: rotate(-3deg) translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--ink);
  background: var(--paper);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

.page-intro {
  padding: 96px 0 72px;
}

.about-page .page-intro,
.about-page .roycroft-bridge,
.about-page .grid.two.border-top,
.about-page .evolution-bridge {
  position: relative;
}

.about-page .page-intro::before,
.about-page .roycroft-bridge::after,
.about-page .grid.two.border-top::before,
.about-page .evolution-bridge::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 176, 0, 0.16) 0 34%, rgba(255, 176, 0, 0.08) 35% 58%, rgba(255, 176, 0, 0) 59% 100%);
  filter: blur(0.4px);
}

.about-page .page-intro::before {
  top: 22px;
  right: 6%;
  width: 96px;
  height: 96px;
  transform: rotate(-9deg);
}

.about-page .roycroft-bridge::after {
  right: 8%;
  bottom: 22px;
  width: 72px;
  height: 72px;
}

.about-page .grid.two.border-top::before {
  top: 30px;
  left: 2%;
  width: 62px;
  height: 62px;
}

.about-page .evolution-bridge::after {
  top: 12px;
  right: 2%;
  width: 84px;
  height: 84px;
}

.hero {
  padding: 84px 0 72px;
}

.hero.simple,
.hero-split {
  min-height: auto;
  position: static;
  overflow: visible;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: center;
}

.hero-copy-block {
  min-width: 0;
}

.page-flag {
  width: 74px;
  height: auto;
  display: block;
  border: 1px solid var(--ink);
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(12, 12, 12, 0.1);
}

.fundraise-flag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.fundraise-flag-copy {
  margin: 0;
  color: var(--ink);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-style: italic;
  font-weight: 700;
}

.fundraise-handles {
  margin-top: 16px;
  padding: 14px 16px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 176, 0, 0.1);
}

.fundraise-handles ul {
  margin: 8px 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.fundraise-handles li + li {
  margin-top: 0.28rem;
}

.fundraise-programs {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.fundraise-programs h3 {
  margin-bottom: 10px;
}

.fundraise-program-list {
  display: grid;
  gap: 18px;
  margin-top: 16px;
}

.fundraise-program-list article {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.fundraise-program-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.fundraise-program-list h4 {
  margin: 6px 0 8px;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.optional-note {
  color: var(--muted);
  font-size: 0.82em;
  font-weight: 600;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
}

h1 {
  max-width: 970px;
  margin-bottom: 22px;
  font-size: 5rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: #2b2b2b;
  font-size: 1.25rem;
}

.about-caption {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--ink);
  font-family: "Cardo", Georgia, serif;
  font-size: 1.26rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
}

.about-caption span {
  color: var(--signal);
}

.mini-landscape {
  position: relative;
  width: min(360px, 58vw);
  height: 92px;
  margin: 18px 0 0;
  overflow: hidden;
}

.mini-sun,
.mini-hill,
.mini-river {
  position: absolute;
  display: block;
}

.mini-sun {
  top: 2px;
  left: 50%;
  width: 34px;
  height: 34px;
  background: var(--signal);
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: translateX(-50%);
}

.mini-hill {
  left: 50%;
  bottom: 28px;
  width: 112%;
  height: 54px;
  background: linear-gradient(180deg, rgba(34, 88, 216, 0.08), rgba(34, 88, 216, 0.18));
  border-top: 2px solid var(--ink);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: translateX(-50%);
}

.mini-river {
  left: 50%;
  bottom: 0;
  height: 44px;
  border: 2px solid #2258d8;
  border-color: #2258d8 transparent transparent transparent;
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%) rotate(-4deg);
}

.mini-river-one {
  width: 76%;
}

.mini-river-two {
  bottom: 8px;
  width: 46%;
  transform: translateX(-50%) rotate(5deg);
}

.reason-intro {
  max-width: 820px;
  margin: 0 0 22px;
}

.reason-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin: 0 0 14px;
  color: #ffffff;
  background: #d92b1f;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.reason-line {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(1.5rem, 3.1vw, 2.3rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.08;
}

.reason-line span {
  display: inline;
  padding: 0 0.14em;
  background: linear-gradient(180deg, transparent 0 54%, rgba(255, 176, 0, 0.38) 55% 100%);
}

.reason-copy {
  max-width: 760px;
  margin: 0;
  color: #2b2b2b;
  font-size: 1.02rem;
}

.reason-outro {
  padding: 34px 0 72px;
}

.slashed-word {
  position: relative;
  display: inline-block;
  margin-right: 0.1em;
}

.slashed-word::after {
  position: absolute;
  left: -0.04em;
  right: -0.02em;
  top: 50%;
  height: 2px;
  content: "";
  background: #d92b1f;
  transform: rotate(-18deg);
}

.label {
  margin-bottom: 14px;
  color: var(--muted);
  font-family: "Cardo", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.label:not(.plan-section-label):not(.story-label) {
  display: inline-block;
  transform: rotate(-1.6deg);
}

.why-label {
  display: inline-block;
  color: var(--ink);
  font-family: "We The People", "Cardo", Georgia, serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  transform: rotate(-3deg);
}

.horizontal-spin {
  display: inline-block;
  color: var(--signal);
  transform-origin: 50% 58%;
  animation: horizontal-roll 18s linear infinite;
}

@keyframes horizontal-roll {
  0% {
    transform: rotate(0deg);
  }

  22% {
    transform: rotate(18deg);
  }

  50% {
    transform: rotate(180deg);
  }

  78% {
    transform: rotate(342deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.story-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  color: var(--ink);
  background: var(--signal);
  font-family: "Cardo", Georgia, serif;
  font-size: 0.7em;
  font-style: italic;
  font-weight: 700;
  text-transform: none;
  vertical-align: middle;
}

.built-by-tag {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 10px 5px;
  color: #ffffff;
  background: #d92b1f;
  font-family: "Orbitron", "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transform: rotate(-6deg);
}

.float-away-word {
  display: inline-block;
  transition:
    transform 240ms ease,
    opacity 240ms ease,
    filter 240ms ease;
  will-change: transform, opacity, filter;
}

.float-away-word:hover,
.float-away-word:focus-visible {
  transform: translateY(-0.65em) rotate(-5deg);
  opacity: 0;
  filter: blur(2px);
}

.not-looking-up {
  font-family: "Cardo", Georgia, serif;
  font-style: italic;
  font-weight: 700;
}

.marker-signature {
  margin-top: 12px !important;
  color: var(--ink);
  font-family: "Cardo", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
}

.signature-name {
  display: inline-block;
  margin-top: 10px;
  font-family: "We The People", "Cardo", Georgia, serif;
  font-size: 1.34em;
  font-style: normal;
  transform: rotate(-1.2deg);
}

.signature-clover {
  display: inline-block;
  margin-left: 0.18em;
  color: #2f9e44;
  font-size: 0.84em;
  transform: translateY(-0.08em) rotate(10deg);
}

.hello-line {
  width: fit-content;
  margin: 0 0 22px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-family: "Cardo", Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  font-style: italic;
  font-weight: 700;
  cursor: help;
}

.hello-wrap {
  display: inline-block;
}

.footnote-wrap {
  position: relative;
}

.footnote-trigger {
  appearance: none;
}

.footnote-popover {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  width: min(340px, 82vw);
  z-index: 10;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(12, 12, 12, 0.14);
  font-family: "Cardo", Georgia, serif;
  font-size: 0.98rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.28;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.footnote-popover::after {
  position: absolute;
  left: 18px;
  bottom: -7px;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--paper);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: rotate(45deg);
}

.footnote-wrap:hover .footnote-popover,
.footnote-wrap:focus-within .footnote-popover {
  opacity: 1;
  transform: translateY(0);
}

.mantra {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--ink);
  font-family: "Cardo", Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
}

.horizon-figure {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px 14px 10px 16px;
  background: #fdfdf9;
  transform: rotate(-0.65deg);
}

.roycroft-bridge {
  max-width: 760px;
  padding: 0 0 56px;
}

.evolution-bridge {
  max-width: 760px;
  padding: 42px 0 56px;
}

.evolution-mantra {
  padding: 0 0 54px;
}

.evolution-script,
.evolution-myth,
.evolution-line {
  margin: 0;
}

.evolution-script {
  color: var(--ink);
  font-family: "We The People", "Cardo", Georgia, serif;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 0.92;
  text-align: center;
}

.evolution-myth {
  margin-top: 10px;
  color: #2b2b2b;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.16rem;
  font-style: italic;
  text-align: center;
}

.evolution-line {
  margin-top: 14px;
  color: var(--ink);
  font-family: "Orbitron", "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(1.8rem, 4.8vw, 3.8rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.evolution-flag {
  width: 42px;
  height: auto;
  display: block;
  margin: 6px auto 0;
  border: 1px solid var(--ink);
  border-radius: 2px;
}

.evolution-american {
  max-width: 760px;
  margin: 10px auto 0;
  color: var(--ink);
  font-family: "Cardo", Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.evolution-american span {
  color: #2b2b2b;
  font-weight: 400;
}

.values-tree {
  position: relative;
  width: 140px;
  height: 122px;
  margin: 12px auto 0;
}

.values-tree-shadow {
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 92px;
  height: 18px;
  background: radial-gradient(circle, rgba(12, 12, 12, 0.28) 0 32%, rgba(12, 12, 12, 0.12) 33% 64%, rgba(12, 12, 12, 0) 65% 100%);
  transform: translateX(-50%);
  filter: blur(2px);
}

.values-tree-mark {
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 96px;
  height: 88px;
  transform: translateX(-50%);
}

.values-tree-canopy,
.values-tree-trunk {
  position: absolute;
  display: block;
}

.values-tree-canopy {
  border: 1.8px solid var(--ink);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.92) 0 12%, rgba(255, 176, 0, 0.92) 13% 58%, rgba(221, 148, 0, 0.98) 59% 100%);
  box-shadow: 0 10px 18px rgba(12, 12, 12, 0.12);
}

.canopy-left {
  left: 2px;
  top: 14px;
  width: 38px;
  height: 38px;
}

.canopy-center {
  left: 24px;
  top: 0;
  width: 48px;
  height: 48px;
  z-index: 1;
}

.canopy-right {
  right: 0;
  top: 16px;
  width: 36px;
  height: 36px;
}

.values-tree-trunk {
  left: 50%;
  bottom: 2px;
  width: 14px;
  height: 44px;
  border: 1.8px solid var(--ink);
  border-radius: 10px 10px 12px 12px;
  background: linear-gradient(180deg, #8d5a24 0%, #67401a 100%);
  transform: translateX(-50%);
  box-shadow: 0 8px 12px rgba(12, 12, 12, 0.12);
}

.values-tree-trunk::before,
.values-tree-trunk::after {
  position: absolute;
  top: -12px;
  width: 20px;
  height: 14px;
  border-top: 1.8px solid var(--ink);
  content: "";
}

.values-tree-trunk::before {
  left: -14px;
  border-left: 1.8px solid var(--ink);
  border-radius: 18px 0 0 0;
  transform: rotate(-18deg);
}

.values-tree-trunk::after {
  right: -14px;
  border-right: 1.8px solid var(--ink);
  border-radius: 0 18px 0 0;
  transform: rotate(18deg);
}

.values-tree-label {
  position: absolute;
  left: 50%;
  top: 44px;
  padding: 4px 10px 3px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1.6px solid var(--ink);
  box-shadow: 0 6px 14px rgba(12, 12, 12, 0.08);
  font-family: "Cardo", Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 700;
  transform: translate(-50%, -50%) rotate(-5deg);
  white-space: nowrap;
}

.fundraise-page .page-intro {
  position: relative;
  padding-bottom: 40px;
  border-bottom: 4px solid var(--signal);
}

.fundraise-page .page-intro::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: min(320px, 48vw);
  height: 4px;
  content: "";
  background: var(--ink);
}

.fundraise-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 860px;
  margin-top: 24px;
}

.fundraise-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff7dd;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.fundraise-model {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: 28px;
  padding: 28px 0 58px;
}

.fundraise-model-intro {
  display: grid;
  align-content: start;
  gap: 12px;
  padding-top: 0;
}

.capital-line {
  max-width: 360px;
  margin: 0 0 2px;
  color: var(--ink);
  font-family: "Orbitron", "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.fundraise-model-intro p:not(.label) {
  margin: 0;
  max-width: 320px;
}

.coin-artifact {
  display: inline-grid;
  justify-items: center;
  gap: 8px;
  width: fit-content;
  margin: 4px 0 2px;
}

.coin-face {
  position: relative;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 30% 28%, #fffceb 0 11%, #ffd84d 12% 56%, #ffb000 57% 100%);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 4px rgba(255, 255, 255, 0.35),
    0 10px 18px rgba(12, 12, 12, 0.12);
  font-family: "Orbitron", "Space Grotesk", Arial, sans-serif;
  font-size: 1.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.coin-face::before,
.coin-face::after {
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(12, 12, 12, 0.28);
  border-radius: 50%;
  content: "";
}

.coin-face::after {
  inset: 18px;
  border-style: solid;
  border-color: rgba(255, 59, 48, 0.48);
}

.coin-caption {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.fundraise-toggle-stack {
  display: grid;
  gap: 12px;
}

.fundraise-toggle {
  border: 1px solid var(--ink);
  border-top-width: 4px;
  background: linear-gradient(180deg, rgba(255, 176, 0, 0.15), #ffffff 58%);
}

.fundraise-toggle:nth-child(2n) {
  background: linear-gradient(180deg, rgba(255, 176, 0, 0.24), #ffffff 62%);
}

.fundraise-toggle summary {
  display: grid;
  gap: 6px;
  padding: 18px 18px 16px;
  list-style: none;
  cursor: pointer;
}

.fundraise-toggle summary::-webkit-details-marker {
  display: none;
}

.fundraise-toggle summary::after {
  justify-self: end;
  margin-top: -32px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 800;
  content: "+";
}

.fundraise-toggle[open] summary::after {
  content: "−";
}

.fundraise-toggle h3 {
  margin: 0;
  font-family: "Cardo", Georgia, serif;
  font-size: 1.55rem;
  font-style: italic;
}

.fundraise-toggle-body {
  padding: 0 18px 18px;
}

.fundraise-toggle-body p {
  margin: 0;
}

.fundraise-toggle-body p + p {
  margin-top: 10px;
}

.fundraise-page .fundraise-unlocks article h3 {
  margin-bottom: 8px;
  font-family: "Cardo", Georgia, serif;
  font-size: 1.42rem;
  font-style: italic;
}

.fundraise-page .fundraise-unlocks article p:not(.label) {
  margin: 0;
}

.fundraise-unlocks {
  padding-top: 0;
}

.fundraise-page .fundraise-unlocks article:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 176, 0, 0.24), #ffffff 64%);
}

.fundraise-progress {
  width: 100%;
  max-width: 320px;
  height: 10px;
  margin: 18px 0 16px;
  background: #fff4ce;
  border: 1px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
}

.fundraise-progress span {
  display: block;
  width: 26%;
  height: 100%;
  background: linear-gradient(90deg, var(--ink) 0 14%, var(--signal) 14% 100%);
}

.donation-note {
  max-width: 360px;
  margin: 0;
  color: #2b2b2b;
  font-size: 0.98rem;
}

.fundraise-page .donation > div {
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}

.fundraise-page .donation-form {
  padding: 18px;
  background: #fff9e6;
  border: 1px solid var(--ink);
  border-radius: 10px;
}

.fundraise-page .donation-form h3 {
  margin-bottom: 10px;
  font-family: "Cardo", Georgia, serif;
  font-size: 1.7rem;
  font-style: italic;
}

.stripe-handoff-note {
  margin: 0 0 18px;
  color: #2b2b2b;
  font-size: 0.98rem;
}

.people-photo-band {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding: 28px 0 58px;
}

.people-photo {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #f7f7f7;
}

.people-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.people-photo-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink);
  font-family: "Cardo", Georgia, serif;
  font-size: 1.12rem;
  font-style: italic;
  text-align: center;
}

.people-welcome-title {
  color: #1a1a1a;
  font-family: "We The People", "Cardo", Georgia, serif;
  font-size: clamp(2.5rem, 4.4vw, 3.35rem);
  font-style: normal;
  line-height: 0.94;
}

.people-title-mark {
  color: var(--ink);
  font-family: "We The People", "Cardo", Georgia, serif;
  font-size: clamp(3.6rem, 9vw, 6.8rem);
  font-weight: 700;
  line-height: 0.94;
}

.people-banner-art {
  padding: 0 0 20px;
}

.people-banner-art img {
  width: min(100%, 820px);
  height: auto;
  display: block;
}

.all-ages-mark {
  display: inline-block;
  padding: 0 0.18em;
  color: var(--ink);
  background: var(--signal);
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 800;
}

.spiritually-homeless-mark {
  color: var(--signal);
}

.welcome-shift-note {
  max-width: 28ch;
  margin: 14px 0 0;
  color: var(--ink);
  font-family: "Orbitron", "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(0.92rem, 1.7vw, 1.08rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: none;
}

.democratized-club {
  padding: 8px 0 58px;
}

.democratized-club .horizon-figure {
  max-width: 860px;
}

.people-photo-intro {
  grid-column: 1 / -1;
  max-width: 720px;
  margin-bottom: 6px;
}

.people-photo-intro p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-family: "Cardo", Georgia, serif;
  font-size: 1.08rem;
  font-style: italic;
}

.trade-over {
  display: inline-block;
  margin-left: 0.16em;
  padding: 0 0.18em;
  color: var(--ink);
  background: var(--signal);
  transform: translateY(-0.08em) rotate(-2deg);
}

.american-experiment {
  margin: 0 0 58px;
  padding: 28px 24px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 176, 0, 0.24), rgba(255, 59, 48, 0.16) 52%, rgba(34, 110, 255, 0.16));
  border: 1px solid var(--ink);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(12, 12, 12, 0.06);
}

.american-experiment h2 {
  margin-bottom: 12px;
}

.worked-mark {
  position: relative;
  display: inline-block;
  color: var(--ink);
}

.worked-mark::after {
  position: absolute;
  right: -0.02em;
  bottom: 0.04em;
  left: 0;
  height: 0.14em;
  content: "";
  background: rgba(255, 176, 0, 0.65);
  z-index: -1;
}

.american-experiment p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: #2b2b2b;
  font-size: 1.04rem;
}

.horizon-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: contain;
}

.horizon-figure figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
}

.painting-title {
  margin: 0;
  color: var(--ink);
  font-family: "Cardo", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 700;
}

.photo-credit {
  color: #2258d8;
  white-space: normal;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.photo-credit a {
  color: inherit;
}

.roycroft-note {
  margin: 14px 0 0;
  max-width: 720px;
  color: #2b2b2b;
  font-size: 1rem;
}

.roycroft-note a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.pull-quote {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 34px 0 18px;
}

.spiral-artifact {
  width: min(100%, 230px);
  justify-self: center;
}

.spiral-artifact svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.spiral-line {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
}

.question-line {
  fill: none;
  stroke: var(--signal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8;
}

.question-dot {
  fill: var(--signal);
}

.pull-quote blockquote {
  max-width: 820px;
  margin: 0;
}

.pull-quote p {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
}

.quote-signal {
  color: var(--signal);
}

.pull-quote cite {
  color: var(--muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.4;
}

.home-page .pull-quote {
  position: relative;
}

.home-page .pull-quote::after {
  position: absolute;
  right: 1%;
  top: 12px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 176, 0, 0.14) 0 34%, rgba(255, 176, 0, 0.05) 35% 62%, rgba(255, 176, 0, 0) 63% 100%);
  transform: rotate(-8deg);
}

.home-page .hero {
  padding: 92px 0 82px;
}

.home-page .hero-copy-block,
.home-page .pull-quote blockquote,
.home-page .stack,
.home-page .reason-intro {
  max-width: 740px;
}

.home-page h1 {
  max-width: 900px;
  font-size: clamp(3.8rem, 8.4vw, 5.25rem);
}

.home-page h2 {
  font-size: clamp(2.35rem, 4.8vw, 3.2rem);
  line-height: 0.98;
}

.home-page .lead {
  max-width: 690px;
  margin-bottom: 34px;
  font-size: 1.16rem;
  line-height: 1.52;
}

.home-page .mantra {
  margin-bottom: 18px;
}

.home-page .label:not(.why-label):not(.story-label) {
  color: #727272;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  transform: none;
}

.home-page .border-top {
  margin-top: 64px;
  padding-top: 64px;
}

.home-page .grid {
  gap: 40px;
  padding: 52px 0;
}

.home-page .grid article,
.home-page .list article,
.home-page .donation {
  border-top-color: #ece9de;
}

.home-page .grid article:nth-child(odd),
.home-page .grid article:nth-child(even),
.home-page .list article:nth-child(odd),
.home-page .list article:nth-child(even) {
  transform: none;
}

.home-page .horizon-figure {
  padding: 10px;
  border-radius: 8px;
  transform: none;
}

.home-page .button {
  border-radius: 10px;
  transform: none;
}

.home-page .button:hover {
  transform: translateY(-1px);
}

.sun-text {
  color: var(--sun);
}

.dramatic {
  display: inline-block;
  font-family: "Cardo", Georgia, serif;
  font-size: 1.06em;
  line-height: 0.9;
  color: var(--ink);
  background: var(--signal);
  padding: 0 0.12em;
}

.yellow-mark {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.yellow-mark::after {
  position: absolute;
  right: -0.14em;
  bottom: -0.02em;
  left: -0.14em;
  height: 0.26em;
  z-index: -1;
  content: "";
  background: var(--signal);
}

.we-the-people-mark {
  display: inline-block;
  margin-right: 0.12em;
  padding: 0 0.18em;
  color: var(--ink);
  background: var(--signal);
  font-family: "We The People", "Cardo", Georgia, serif;
  font-size: 1.08em;
  font-weight: 700;
  line-height: 0.92;
  vertical-align: baseline;
}

em,
.money {
  color: var(--ink);
  font-family: "Cardo", Georgia, serif;
  font-style: italic;
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #ffffff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 8px 14px 10px 15px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transform: rotate(-0.9deg);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.links a:hover {
  color: var(--ink);
  background: var(--signal);
  transform: rotate(1deg) translateY(-1px);
}

.button.ghost {
  color: var(--ink);
  background: transparent;
}

.button.ghost:hover {
  background: var(--signal);
}

.button.full {
  width: 100%;
}

.grid {
  display: grid;
  gap: 28px;
  padding: 58px 0;
}

.grid.two {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-grid-four {
  align-items: start;
}

.grid article,
.list article,
.donation {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.grid article:hover {
  border-top-color: var(--ink);
}

.grid article:nth-child(odd),
.list article:nth-child(odd) {
  transform: rotate(-0.35deg);
}

.grid article:nth-child(even),
.list article:nth-child(even) {
  transform: rotate(0.28deg);
}

.metamorphosis-swarm {
  position: relative;
  display: inline-block;
  padding-right: 3.2em;
}

.butterfly {
  position: absolute;
  right: 0.15em;
  top: -0.15em;
  width: 0.92em;
  height: 0.7em;
  animation: butterfly-float 5.4s ease-in-out infinite;
  filter: drop-shadow(0 2px 3px rgba(12, 12, 12, 0.2));
}

.butterfly::before,
.butterfly::after {
  position: absolute;
  top: 0;
  width: 0.42em;
  height: 0.62em;
  border: 1.5px solid var(--ink);
  background:
    radial-gradient(circle at 50% 32%, #fff4c6 0 8%, rgba(255, 255, 255, 0) 9% 100%),
    linear-gradient(180deg, #ffb54a 0%, #f57e1f 100%);
  content: "";
}

.butterfly::before {
  left: 0;
  border-radius: 75% 28% 68% 44%;
  transform: rotate(-18deg);
}

.butterfly::after {
  right: 0;
  border-radius: 28% 75% 44% 68%;
  transform: rotate(18deg);
}

.butterfly-two {
  right: 1.2em;
  top: -0.82em;
  width: 0.74em;
  height: 0.58em;
  animation-delay: 0.9s;
}

.butterfly-three {
  right: 2.18em;
  top: -0.28em;
  width: 0.84em;
  height: 0.62em;
  animation-delay: 1.7s;
}

@keyframes butterfly-float {
  0% {
    transform: translate(0, 0) rotate(-10deg) scale(0.96);
    opacity: 0.72;
  }

  50% {
    transform: translate(0.48em, -0.5em) rotate(11deg) scale(1.03);
    opacity: 1;
  }

  100% {
    transform: translate(0, 0) rotate(-10deg) scale(0.96);
    opacity: 0.72;
  }
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 42px 0 58px;
}

.stats-question {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
  font-size: 1.12rem;
  font-weight: 700;
  text-transform: none;
}

.stats-strip article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.stats-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: "Cardo", Georgia, serif;
  font-size: 2.15rem;
  font-style: italic;
  line-height: 1;
}

.stats-strip strong a {
  color: inherit;
  text-decoration: none;
}

.stat-link-wrap {
  display: inline-block;
}

.stat-link-wrap .footnote-popover {
  left: 0;
  bottom: calc(100% + 12px);
  width: min(300px, 72vw);
  padding: 12px 14px;
  background: #fff7dd;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}

.stat-link-wrap .footnote-popover::after {
  background: #fff7dd;
}

.stats-strip p {
  margin: 0;
  font-size: 0.92rem;
}

.home-page .stats-strip {
  gap: 22px;
  padding: 26px 0 8px;
}

.home-page .stats-question {
  margin-bottom: 2px;
}

.home-page .stats-strip article {
  padding-top: 20px;
}

.home-page .stats-strip p {
  line-height: 1.45;
}

.home-page .hero {
  padding: 92px 0 82px;
}

.home-page .hero-copy-block,
.home-page .pull-quote blockquote,
.home-page .stack,
.home-page .reason-intro {
  max-width: 740px;
}

.home-page h1 {
  max-width: 900px;
  font-size: clamp(3.8rem, 8.4vw, 5.25rem);
}

.home-page h2 {
  font-size: clamp(2.35rem, 4.8vw, 3.2rem);
  line-height: 0.98;
}

.home-page .lead {
  max-width: 690px;
  margin-bottom: 34px;
  font-size: 1.16rem;
  line-height: 1.52;
}

.home-page .mantra {
  margin-bottom: 18px;
}

.home-page .label:not(.why-label):not(.story-label) {
  color: #727272;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  transform: none;
}

.home-page .border-top {
  margin-top: 64px;
  padding-top: 64px;
}

.home-page .grid {
  gap: 40px;
  padding: 52px 0;
}

.home-page .grid article,
.home-page .list article,
.home-page .donation {
  border-top-color: #ece9de;
}

.home-page .grid article:nth-child(odd),
.home-page .grid article:nth-child(even),
.home-page .list article:nth-child(odd),
.home-page .list article:nth-child(even) {
  transform: none;
}

.home-page .horizon-figure {
  padding: 10px;
  border-radius: 8px;
  transform: none;
}

.home-page .button {
  border-radius: 10px;
  transform: none;
}

.home-page .button:hover {
  transform: translateY(-1px);
}

.home-page .page-intro {
  padding: 76px 0 44px;
}

.home-page .roycroft-bridge {
  padding-bottom: 34px;
}

.home-page .evolution-bridge {
  padding: 32px 0 34px;
}

.home-page .evolution-mantra {
  padding-bottom: 30px;
}

.home-page .about-grid-four {
  padding-top: 34px;
}

.home-page .reason-outro {
  padding: 34px 0 8px;
}

.home-page .closing {
  max-width: 780px;
  padding: 18px 0 96px;
}

.home-page .closing h2,
.home-page .closing p {
  max-width: 680px;
}

.home-page .closing p {
  font-size: 1.05rem;
  line-height: 1.55;
}

.home-page .closing .label {
  color: var(--signal);
  font-family: "Orbitron", "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(9rem, 18vw, 11rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.82;
  transform: none;
}

.home-page .reason-copy + .reason-copy {
  margin-top: 12px;
}

.home-page .page-intro {
  padding: 76px 0 44px;
}

.home-page .roycroft-bridge {
  padding-bottom: 34px;
}

.home-page .evolution-bridge {
  padding: 32px 0 34px;
}

.home-page .evolution-mantra {
  padding-bottom: 30px;
}

.home-page .about-grid-four {
  padding-top: 34px;
}

.home-page .reason-outro {
  padding: 34px 0 8px;
}

.home-page .closing {
  max-width: 780px;
  padding: 18px 0 96px;
}

.home-page .closing h2,
.home-page .closing p {
  max-width: 680px;
}

.home-page .closing p {
  font-size: 1.05rem;
  line-height: 1.55;
}

.stats-strip p a,
.source-line a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.stat-source {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 4px 8px;
  color: var(--ink);
  background: var(--signal);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}

.stat-source:hover {
  color: #ffffff;
  background: var(--ink);
}

.stats-strip article:hover strong a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.grass-art {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  width: fit-content;
  height: 34px;
  margin: 0 0 10px;
}

.grass-art span {
  display: block;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #5e9d20 22%, #2f6e12 100%);
  border-radius: 999px 999px 0 0;
  transform-origin: bottom center;
}

.grass-art span:nth-child(1) { height: 18px; transform: rotate(-12deg); }
.grass-art span:nth-child(2) { height: 28px; transform: rotate(6deg); }
.grass-art span:nth-child(3) { height: 22px; transform: rotate(-4deg); }
.grass-art span:nth-child(4) { height: 32px; transform: rotate(10deg); }
.grass-art span:nth-child(5) { height: 25px; transform: rotate(-8deg); }
.grass-art span:nth-child(6) { height: 30px; transform: rotate(4deg); }
.grass-art span:nth-child(7) { height: 20px; transform: rotate(-10deg); }
.grass-art span:nth-child(8) { height: 26px; transform: rotate(8deg); }
.grass-art span:nth-child(9) { height: 16px; transform: rotate(-14deg); }
.grass-art span:nth-child(10) { height: 33px; transform: rotate(9deg); }
.grass-art span:nth-child(11) { height: 24px; transform: rotate(-6deg); }
.grass-art span:nth-child(12) { height: 29px; transform: rotate(6deg); }
.grass-art span:nth-child(13) { height: 19px; transform: rotate(-11deg); }
.grass-art span:nth-child(14) { height: 27px; transform: rotate(12deg); }

.program-callout {
  margin: 0 0 10px;
  color: var(--signal);
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1;
}

.california-flag {
  display: inline-block;
  margin-left: 0.28em;
  padding: 0.08em 0.34em;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdfa 0 78%, #cf3e2f 78% 100%);
  border: 1px solid var(--ink);
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 0.72em;
  font-weight: 700;
  vertical-align: middle;
}

.source-line {
  grid-column: 1 / -1;
  padding-top: 8px;
  color: var(--muted);
}

.border-top {
  border-top: 1px solid var(--line);
}

.stack {
  display: grid;
  gap: 12px;
  align-content: start;
}

.stack p {
  margin: 0;
}

.schedule-rhythm {
  margin-top: 10px;
  max-width: 28rem;
}

.sunday-outline-intro {
  margin-bottom: 4px;
}

.sunday-outline {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 24px;
}

.sunday-outline::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 6px;
  width: 2px;
  content: "";
  background: var(--signal);
}

.sunday-step {
  position: relative;
  display: grid;
  gap: 5px;
}

.sunday-subpoint {
  padding-left: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.sunday-step::before {
  position: absolute;
  top: 8px;
  left: -22px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
  background: var(--paper);
}

.sunday-time {
  color: var(--ink);
  font-family: "Orbitron", "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.optional-tag {
  color: var(--muted);
  font-size: 0.94em;
}

.unity-field {
  position: relative;
  min-height: 240px;
  margin-top: 10px;
  background: transparent;
  overflow: visible;
}

.unity-canvas {
  display: block;
  width: 100%;
  height: 240px;
  cursor: crosshair;
}

.list {
  display: grid;
  gap: 32px;
  padding: 18px 0 58px;
}

.plan-page .page-intro {
  position: relative;
  padding-bottom: 78px;
  border-bottom: 4px solid var(--signal);
}

.plan-page .page-intro::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: min(360px, 52vw);
  height: 4px;
  content: "";
  background: var(--ink);
}

.change-manifesto {
  display: grid;
  gap: 30px;
  max-width: 900px;
  margin-top: 34px;
}

.change-line {
  margin: 0;
  color: var(--ink);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.16;
}

.change-line span {
  display: inline;
  padding: 0;
  background: none;
}

.sunrise-line {
  max-width: 820px;
  margin-top: 2px;
}

.campaign-line {
  max-width: 860px;
  font-family: "Orbitron", "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.42rem);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.11em;
  word-spacing: 0.28em;
  line-height: 1.42;
  text-transform: uppercase;
}

.change-points {
  display: grid;
  gap: 16px;
  margin-top: 6px;
}

.change-points p {
  margin: 0;
  color: var(--ink);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.25;
}

.change-points span {
  display: inline-block;
  margin-right: 8px;
  color: var(--signal);
  font-family: "Orbitron", "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.95em;
  font-style: normal;
  font-weight: 800;
}

.plan-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: "Orbitron", "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-section-label {
  display: inline-block;
  padding: 5px 9px;
  color: var(--ink);
  background: var(--signal);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.rocket-badge {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--signal);
  border: 1px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 176, 0, 0.16);
}

.rocket-badge svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transform: rotate(38deg);
}

.plan-page .grid.two {
  position: relative;
  margin-top: 34px;
  background: linear-gradient(90deg, rgba(255, 176, 0, 0.12), transparent 48%);
}

.plan-page .grid.two::before {
  position: absolute;
  top: 58px;
  left: 0;
  width: 72px;
  height: 3px;
  content: "";
  background: var(--signal);
}

.church-work-art {
  position: relative;
  width: 170px;
  height: 136px;
  margin: 2px 0 14px;
}

.church-work-sign,
.church-work-body,
.church-work-roof,
.church-work-door,
.church-work-window,
.church-work-steeple {
  position: absolute;
  display: block;
}

.church-work-sign {
  left: 18px;
  top: 0;
  padding: 6px 10px 5px;
  color: var(--ink);
  background: #9a6732;
  border: 1px solid var(--ink);
  font-family: "Orbitron", "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transform: rotate(-7deg);
}

.church-work-art::before {
  position: absolute;
  left: 92px;
  top: 18px;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle at 35% 35%, #fffbe7 0 18%, #ffcf40 19% 70%, #f2a900 71% 100%);
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.church-work-art::after {
  position: absolute;
  left: 8px;
  right: 18px;
  bottom: 4px;
  height: 12px;
  background: linear-gradient(180deg, #6fb82d 0%, #3d8f1c 100%);
  border-top: 2px solid var(--ink);
  content: "";
}

.church-work-body {
  left: 32px;
  bottom: 14px;
  width: 102px;
  height: 62px;
  background: #ffffff;
  border: 2px solid var(--ink);
}

.church-work-roof {
  left: 22px;
  bottom: 70px;
  width: 0;
  height: 0;
  border-right: 61px solid transparent;
  border-bottom: 34px solid var(--ink);
  border-left: 61px solid transparent;
}

.church-work-roof::after {
  position: absolute;
  left: -56px;
  top: 5px;
  width: 0;
  height: 0;
  border-right: 56px solid transparent;
  border-bottom: 29px solid #ffffff;
  border-left: 56px solid transparent;
  content: "";
}

.church-work-door {
  left: 72px;
  bottom: 14px;
  width: 20px;
  height: 30px;
  background: #d6d0c7;
  border: 2px solid var(--ink);
  border-bottom: 0;
}

.church-work-window {
  bottom: 32px;
  width: 15px;
  height: 18px;
  background:
    linear-gradient(90deg, #ff5d48 0 50%, #ffd23f 50% 100%),
    linear-gradient(180deg, #2258d8 0 50%, #43b649 50% 100%);
  border: 2px solid var(--ink);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.church-work-window-left {
  left: 48px;
}

.church-work-window-right {
  right: 48px;
}

.church-work-window-center {
  left: 74px;
  bottom: 82px;
  width: 16px;
  height: 22px;
}

.church-work-steeple {
  left: 76px;
  bottom: 88px;
  width: 12px;
  height: 28px;
  background: #ffffff;
  border: 2px solid var(--ink);
  border-bottom: 0;
}

.church-work-steeple::before {
  position: absolute;
  left: -5px;
  top: -16px;
  width: 0;
  height: 0;
  border-right: 9px solid transparent;
  border-bottom: 16px solid var(--ink);
  border-left: 9px solid transparent;
  content: "";
}

.backwards-peace {
  width: fit-content;
  margin: 0 0 10px;
  color: var(--signal);
  font-family: "Cardo", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  transform: scaleX(-1) rotate(-12deg);
}

.plan-map {
  padding: 10px 0 26px;
}

.plan-history {
  max-width: 760px;
  padding: 26px 0 34px;
}

.plan-history-figure {
  margin-top: 10px;
}

.plan-warning-note {
  width: fit-content;
  margin: 6px 0 10px;
  color: #c92a2a;
  font-family: "We The People", "Cardo", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.02;
  transform: rotate(-1.4deg);
}

.plan-map-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
}

.plan-map-date {
  margin: 0;
  color: var(--ink);
  font-family: "Orbitron", "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.plan-map-note {
  margin: 0;
  color: #2b2b2b;
  font-family: "Cardo", Georgia, serif;
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 700;
}

.map-marker {
  display: inline-block;
  margin-right: 8px;
  color: var(--signal);
  font-size: 1.15em;
}

.plan-campaign-note {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--ink);
  font-family: "Cardo", Georgia, serif;
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 700;
}

.plan-campaign-kicker {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--ink);
  font-family: "Orbitron", "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-campaign-subnote {
  max-width: 680px;
  margin: 10px 0 0;
  color: #2b2b2b;
}

.name-of-one-section .stack {
  max-width: 460px;
}

.name-of-one-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}

.name-of-one-form label {
  width: 100%;
}

.name-of-one-form input {
  min-width: min(280px, 100%);
  flex: 1 1 260px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font: inherit;
}

.name-of-one-page .page-intro {
  padding-bottom: 40px;
}

.name-ledger {
  min-height: 68vh;
  padding: 34px 0 80px;
}

.name-ledger-stream {
  display: grid;
  gap: 18px;
}

.name-ledger-item {
  margin: 0;
  color: var(--ink);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 3.4rem);
  font-style: italic;
  line-height: 0.98;
  transform: translateX(calc(var(--stagger) * 12px));
}

.name-ledger-empty {
  margin: 0;
  color: var(--muted);
  font-family: "Cardo", Georgia, serif;
  font-size: 1.16rem;
  font-style: italic;
}

.plan-page .list {
  gap: 0;
  padding-top: 0;
}

.plan-toggle {
  position: relative;
  display: block;
  padding: 32px 0 34px 28px;
  border-top: 2px solid var(--ink);
}

.plan-toggle::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 6px;
  content: "";
  background: var(--signal);
}

.plan-toggle summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(110px, 0.22fr) minmax(0, 1fr);
  column-gap: 28px;
  align-items: start;
  list-style: none;
  cursor: pointer;
}

.plan-toggle summary::-webkit-details-marker {
  display: none;
}

.plan-toggle summary::after {
  position: absolute;
  top: 4px;
  right: 4px;
  color: var(--muted);
  font-family: "Orbitron", "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  content: "+";
}

.plan-toggle[open] summary::after {
  content: "-";
}

.plan-page .list .label {
  grid-row: 1 / span 2;
  width: fit-content;
  height: fit-content;
  padding: 4px 8px;
  color: var(--ink);
  background: var(--signal);
  font-size: 1rem;
  font-style: italic;
  text-transform: none;
}

.plan-toggle h2 {
  margin-bottom: 10px;
  font-family: "Cardo", Georgia, serif;
  font-style: italic;
}

.plan-toggle-body {
  margin-left: 138px;
}

.plan-toggle-body p {
  max-width: 720px;
}

.plan-toggle-body .actions {
  margin-top: 14px;
}

.plan-page .grid.three.border-top {
  border-top: 4px solid var(--signal);
}

.plan-page .grid.three article {
  background: linear-gradient(180deg, rgba(255, 176, 0, 0.16), transparent 52%);
}

.trade-school-intro {
  max-width: 940px;
}

.trade-school-mantra {
  padding: 18px 0 6px;
}

.trade-school-mantra p {
  width: fit-content;
  margin: 0;
  color: var(--signal);
  font-family: "We The People", "Cardo", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 0.92;
  transform: rotate(-3.5deg);
}

.trade-school-scroll {
  position: relative;
  max-width: 760px;
  margin-top: 16px;
  padding: 22px 28px 20px;
  border: 1px solid rgba(99, 67, 12, 0.3);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 248, 225, 0.98), rgba(248, 233, 194, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 12px 24px rgba(130, 92, 18, 0.12);
  transform: rotate(-0.9deg);
}

.trade-school-scroll::before,
.trade-school-scroll::after {
  position: absolute;
  top: 14px;
  bottom: 14px;
  width: 18px;
  content: "";
  background: linear-gradient(180deg, #c9973d, #a36c20);
  border: 1px solid rgba(89, 56, 10, 0.4);
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px rgba(255, 221, 145, 0.28);
}

.trade-school-scroll::before {
  left: -9px;
}

.trade-school-scroll::after {
  right: -9px;
}

.trade-school-scroll p {
  width: auto;
  margin: 0;
  color: var(--ink);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(1.18rem, 2.4vw, 1.65rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.25;
  text-wrap: balance;
  transform: none;
}

.trade-school-scroll p + p {
  margin-top: 12px;
}

.mantra-flip {
  position: relative;
  display: inline-block;
  min-width: 6.6ch;
  height: 1.1em;
  vertical-align: baseline;
  color: var(--signal);
}

.mantra-flip span {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: mantra-flip-cycle 12s linear infinite;
}

.mantra-flip span:nth-child(1) {
  animation-delay: 0s;
}

.mantra-flip span:nth-child(2) {
  animation-delay: 3s;
}

.mantra-flip span:nth-child(3) {
  animation-delay: 6s;
}

.mantra-flip span:nth-child(4) {
  animation-delay: 9s;
}

.slow-down {
  display: inline-block;
  color: var(--signal);
  animation: slow-down-drift 3.8s ease-in-out infinite;
}

@keyframes mantra-flip-cycle {
  0%,
  8% {
    opacity: 0;
    transform: translateY(0.35em) rotateX(-70deg);
  }

  12%,
  22% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }

  26%,
  100% {
    opacity: 0;
    transform: translateY(-0.3em) rotateX(70deg);
  }
}

@keyframes slow-down-drift {
  0%,
  100% {
    letter-spacing: 0;
    transform: translateX(0);
  }

  50% {
    letter-spacing: 0.16em;
    transform: translateX(0.06em);
  }
}

.trade-tier-grid {
  display: grid;
  gap: 18px;
}

.trade-tier {
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(255, 176, 0, 0.16), transparent 68%);
  border: 1px solid var(--line);
}

.trade-tier h3 {
  margin-bottom: 10px;
}

.trade-tier ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.trade-tier li + li {
  margin-top: 0.3rem;
}

.trade-school-bullets {
  margin: 12px 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.trade-school-bullets li + li {
  margin-top: 0.45rem;
}

.humans-intro {
  padding-bottom: 30px;
}

.jobs-seed {
  max-width: 760px;
  margin: 0 0 30px;
  padding: 0 0 24px;
}

.jobs-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
  border: 1px solid var(--ink);
}

.jobs-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.jobs-script-wrap {
  margin-top: 14px;
  text-align: center;
}

.jobs-script {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 0.08em 0.34em;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  color: var(--ink);
  font-family: "We The People", "Cardo", Georgia, serif;
  font-size: clamp(6rem, 12vw, 10.65rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0;
  text-align: center;
}

.jobs-script span {
  display: inline-block;
  white-space: nowrap;
}

.jobs-script-accent {
  color: var(--signal);
  transform: translateY(0.02em) scale(1.04);
}

.jobs-script-accent.footnote-wrap {
  position: relative;
  padding-right: 0.14em;
  cursor: help;
  outline: none;
}

.jobs-script-marker {
  position: absolute;
  top: -0.34em;
  right: -0.02em;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.34em;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.jobs-script-popover {
  left: 50%;
  bottom: calc(100% + 16px);
  width: min(260px, 70vw);
  text-align: center;
  transform: translate(-50%, 8px);
}

.jobs-script-popover::after {
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.footnote-wrap:hover .jobs-script-popover,
.footnote-wrap:focus-within .jobs-script-popover {
  transform: translate(-50%, 0);
}

.human-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(142px, 1fr));
  column-gap: 18px;
  row-gap: 22px;
  padding: 8px 0 86px;
}

body.humans-quote-open {
  overflow: hidden;
}

body.humans-quote-open::before {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(2px);
  content: "";
}

.human-card {
  position: relative;
  min-width: 0;
  perspective: 900px;
  cursor: pointer;
  transform: rotate(-0.8deg);
  overflow: visible;
  transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
}

.human-card:nth-child(3n) {
  transform: rotate(0.8deg);
}

.human-card:nth-child(4n) {
  transform: rotate(-1.1deg);
}

.human-card:focus {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

body.humans-quote-open .human-card:not(.is-active) {
  opacity: 0.18;
  filter: grayscale(1);
}

.human-card-inner {
  position: relative;
  aspect-ratio: 1 / 1;
  transform-style: preserve-3d;
  transition: transform 260ms ease;
}

.human-card:focus .human-card-inner,
.human-card:focus-within .human-card-inner,
.human-card.is-flipped .human-card-inner,
.human-card.is-active .human-card-inner {
  transform: rotateY(180deg);
}

.human-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  backface-visibility: hidden;
  border: 1px solid transparent;
}

.human-photo {
  position: absolute;
  inset: 0;
  display: block;
  background: #f6f6f6;
}

.human-photo img {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(100%);
  object-fit: cover;
  transition: filter 180ms ease, transform 180ms ease;
}

.human-card:hover .human-photo img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.tile-initials {
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--signal);
  border: 1px solid var(--ink);
  font-family: "Orbitron", "Space Grotesk", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.human-front h2 {
  position: absolute;
  right: 7px;
  bottom: 7px;
  left: 7px;
  margin: 0;
  padding: 6px 7px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--ink);
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  line-height: 1;
  text-align: center;
}

.human-back {
  display: grid;
  align-content: end;
  gap: 0;
  padding: 11px 10px;
  background: var(--signal);
  border-color: var(--ink);
  transform: rotateY(180deg);
}

.human-back::after {
  justify-self: end;
  margin-top: 6px;
  color: rgba(12, 12, 12, 0.78);
  font-family: "Orbitron", "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  content: "↗";
}

.human-card blockquote {
  margin: 0;
  color: var(--ink);
  font-family: "Cardo", Georgia, serif;
  font-size: 0.74rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.18;
  text-wrap: balance;
}

.human-back .quote-link {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.quote-link {
  color: inherit;
  text-decoration: none;
}

.quote-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.human-card.is-active {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1002;
  width: min(720px, calc(100vw - 44px));
  max-width: 92vw;
  transform: translate(-50%, -50%) rotate(0deg);
  filter: none;
  opacity: 1;
  margin: 0;
}

.human-card.is-active .human-card-inner {
  aspect-ratio: auto;
  width: 100%;
  height: auto;
  min-height: min(72vh, 760px);
  transform: none;
}

.human-card.is-active .human-front {
  display: none;
}

.human-card.is-active .human-back {
  position: relative;
  inset: auto;
  display: grid;
  align-content: center;
  min-height: min(72vh, 760px);
  max-height: 78vh;
  padding: 34px 30px 28px;
  overflow: auto;
  transform: none;
  border: 1px solid var(--ink);
  border-radius: 2px;
  box-shadow: 0 24px 48px rgba(12, 12, 12, 0.2);
  backface-visibility: visible;
}

.human-card.is-active .human-back::after {
  position: absolute;
  top: 12px;
  right: 14px;
  margin-top: 0;
  font-size: 1rem;
  content: "×";
}

.human-card.is-active blockquote {
  max-width: 34ch;
  margin: 0 auto;
  font-size: clamp(1.2rem, 2.35vw, 1.82rem);
  line-height: 1.4;
}

.human-card.is-active .human-back .quote-link {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.donation {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.65fr);
  gap: 32px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, rgba(255, 176, 0, 0.1), transparent 56%);
}

form {
  display: grid;
  gap: 10px;
}

label {
  margin-top: 6px;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.amount-grid button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fafafa;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.amount-grid button.selected {
  color: var(--ink);
  background: var(--signal);
  border-color: var(--ink);
}

.status-message {
  margin: 6px 0 0;
  padding: 12px;
  color: var(--ink);
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

.links a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.site-footer {
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
}

.closing .label {
  color: var(--ink);
  font-family: "We The People", "Cardo", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: none;
  transform: rotate(-4deg);
}

.people-rainbow-bridge {
  display: flex;
  justify-content: center;
  padding: 28px 0 10px;
  overflow: hidden;
}

.people-rainbow {
  position: relative;
  width: min(860px, 92vw);
  height: 340px;
}

.rainbow-band {
  position: absolute;
  left: 50%;
  bottom: 0;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
  box-shadow: 0 10px 26px rgba(12, 12, 12, 0.08);
}

.rainbow-red {
  width: 100%;
  height: 100%;
  background: rgba(225, 68, 68, 0.82);
}

.rainbow-orange {
  width: calc(100% - 44px);
  height: calc(100% - 22px);
  background: rgba(244, 145, 58, 0.84);
}

.rainbow-yellow {
  width: calc(100% - 88px);
  height: calc(100% - 44px);
  background: rgba(255, 196, 39, 0.84);
}

.rainbow-green {
  width: calc(100% - 132px);
  height: calc(100% - 66px);
  background: rgba(84, 170, 79, 0.82);
}

.rainbow-blue {
  width: calc(100% - 176px);
  height: calc(100% - 88px);
  background: rgba(79, 137, 214, 0.82);
}

.rainbow-violet {
  width: calc(100% - 220px);
  height: calc(100% - 110px);
  background: var(--paper);
  border: 16px solid rgba(126, 91, 201, 0.84);
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 22px;
    left: 22px;
    display: none;
    z-index: 20;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .site-nav.open {
    display: flex;
  }

  .hero,
  .page-intro {
    padding: 72px 0 48px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pull-quote {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .spiral-artifact {
    width: min(210px, 60vw);
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .stats-strip,
  .donation {
    grid-template-columns: 1fr;
  }

  .fundraise-model {
    grid-template-columns: 1fr;
  }

  .people-photo-band {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .human-grid {
    grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  }

  .plan-toggle {
    padding-left: 20px;
  }

  .plan-toggle summary {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .plan-toggle-body {
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .site-header,
  .site-footer,
  main {
    padding-inline: 16px;
  }

  .amount-grid {
    grid-template-columns: 1fr 1fr;
  }

  .people-photo-band {
    grid-template-columns: 1fr 1fr;
  }

  .people-photo-note {
    font-size: 1rem;
  }

  .horizon-figure figcaption {
    display: block;
  }

  .photo-credit {
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .people-photo-band {
    grid-template-columns: 1fr;
  }
}
