:root {
  --paper: #f2efe6;
  --paper-light: #faf8f1;
  --ink: #123e2f;
  --ink-dark: #082d21;
  --ink-soft: #456157;
  --moss: #8eaa11;
  --acid: #bdd500;
  --line: rgba(18, 62, 47, 0.18);
  --white-line: rgba(248, 247, 239, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 108px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    radial-gradient(rgba(18, 62, 47, 0.11) 0.5px, transparent 0.7px),
    radial-gradient(rgba(18, 62, 47, 0.07) 0.45px, transparent 0.65px);
  background-position:
    0 0,
    8px 9px;
  background-size:
    13px 13px,
    17px 17px;
  mix-blend-mode: multiply;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--ink-dark);
  background: var(--acid);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 94px;
  margin: 0 auto;
  padding: 0 max(4.25rem, calc((100% - 1400px) / 2));
  background: rgba(250, 248, 241, 0.9);
  border-bottom: 1px solid rgba(18, 62, 47, 0.13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-brand {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  width: fit-content;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(1.45rem, 1.8vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.site-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: clamp(2rem, 3.5vw, 4.5rem);
  align-items: center;
  font-size: 0.98rem;
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
}

.desktop-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.site-footer nav a:hover::after,
.site-footer nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  gap: 1.35rem;
  align-items: center;
  justify-self: end;
}

.menu-trigger {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  min-height: 44px;
  padding: 0 1rem;
  color: var(--paper-light);
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.menu-trigger:hover,
.menu-trigger:focus-visible {
  color: var(--ink-dark);
  background: var(--acid);
  transform: translateY(-1px);
}

.menu-trigger i {
  display: grid;
  gap: 3px;
  width: 17px;
}

.menu-trigger b {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.section-menu {
  position: fixed;
  inset: 94px 0 0;
  z-index: 45;
  visibility: hidden;
  overflow: auto;
  padding: 3.4rem max(4.25rem, calc((100% - 1400px) / 2)) 4rem;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(189, 213, 0, 0.19),
      transparent 23%
    ),
    var(--paper-light);
  opacity: 0;
  transform: translateY(-1rem);
  transition:
    visibility 0s linear 240ms,
    opacity 220ms ease,
    transform 220ms ease;
}

.section-menu:target {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.section-menu__inner {
  width: min(100%, 1400px);
  margin: 0 auto;
}

.section-menu__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 1.7rem;
  border-bottom: 1px solid var(--line);
}

.section-menu__heading span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-menu__heading h2 {
  margin: 0.3rem 0 0;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
}

.section-menu__heading > a {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-menu__heading > a i {
  position: relative;
  width: 14px;
  height: 14px;
}

.section-menu__heading > a i::before,
.section-menu__heading > a i::after {
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-menu__heading > a i::before {
  transform: rotate(45deg);
}

.section-menu__heading > a i::after {
  transform: rotate(-45deg);
}

.section-menu ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.section-menu li {
  min-width: 0;
  border-bottom: 1px solid var(--line);
}

.section-menu li:not(:nth-child(3n + 1)) {
  border-left: 1px solid var(--line);
}

.section-menu li a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 116px;
  padding: 1.25rem 1.4rem;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.section-menu li a:hover,
.section-menu li a:focus-visible {
  color: var(--paper-light);
  background: var(--ink);
}

.section-menu li > a > span {
  color: var(--moss);
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: 1.25rem;
}

.section-menu li strong,
.section-menu li small {
  display: block;
}

.section-menu li strong {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-menu li small {
  margin-top: 0.35rem;
  color: var(--ink-soft);
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.section-menu li a:hover small,
.section-menu li a:focus-visible small {
  color: rgba(250, 248, 241, 0.72);
}

.section-menu li .arrow {
  width: 1rem;
  transition: transform 180ms ease;
}

.section-menu li a:hover .arrow,
.section-menu li a:focus-visible .arrow {
  transform: translateX(0.2rem);
}

.section-menu__afterword {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
}

.section-menu__afterword p {
  max-width: 700px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.section-menu__afterword div {
  display: flex;
  gap: 1.4rem;
  white-space: nowrap;
}

.section-menu__afterword a {
  padding-bottom: 0.22rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
}

.arrow {
  width: 1.1rem;
  height: 1.1rem;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.arrow--diagonal {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 23% 18%,
      rgba(255, 255, 255, 0.92),
      transparent 28%
    ),
    var(--paper-light);
  isolation: isolate;
}

.hero__copy {
  position: relative;
  z-index: 4;
  width: min(55%, 780px);
  margin-left: max(4.25rem, calc((100% - 1400px) / 2));
  padding-top: 170px;
}

.eyebrow,
.section-kicker {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 3.2rem;
  height: 2px;
  background: var(--acid);
}

.hero h1,
.territory h2,
.belonging h2,
.missing h2,
.possibility h2,
.communities h2,
.user-path h2,
.wallet h2,
.marketplace h2,
.projects h2,
.manifesto h2,
.voices h2,
.journal h2,
.participate h2,
.rooty h2 {
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 780px;
  margin-top: 1.6rem;
  font-size: clamp(5rem, 7.4vw, 8.6rem);
  line-height: 0.83;
}

.hero__lead {
  max-width: 610px;
  margin: 2rem 0 0;
  font-size: clamp(1.1rem, 1.6vw, 1.42rem);
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  gap: 2.8rem;
  align-items: center;
  margin-top: 2.1rem;
}

.button {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0.25rem 0.3rem 0.25rem 1.8rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(8, 45, 33, 0.14);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 18px 42px rgba(8, 45, 33, 0.23);
}

.button__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-left: 0.25rem;
  color: var(--acid);
  border: 1px solid var(--acid);
  border-radius: 50%;
  place-items: center;
}

.text-link {
  padding-bottom: 0.22rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero__image {
  position: absolute;
  z-index: 2;
  top: 70px;
  right: -6vw;
  width: min(42vw, 650px);
  height: 700px;
  overflow: hidden;
  border: 1px solid rgba(18, 62, 47, 0.7);
  border-radius: 58% 0 0 49%;
  background: var(--ink);
  transform: rotate(4deg);
}

.hero__image-inner {
  position: absolute;
  inset: -4%;
  background:
    linear-gradient(90deg, rgba(8, 45, 33, 0.05), transparent 32%),
    url("assets/hero-roots.webp") center / cover no-repeat;
  transform: rotate(-4deg) scale(1.06);
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero:hover .hero__image-inner {
  transform: rotate(-4deg) scale(1.085);
}

.hero-globe {
  position: absolute;
  z-index: 3;
  right: -6%;
  bottom: -520px;
  left: -5%;
  width: 111%;
  color: var(--ink);
  pointer-events: none;
}

.hero-globe__ocean {
  fill: rgba(250, 248, 241, 0.92);
  stroke: var(--ink);
  stroke-width: 1;
}

.hero-globe__graticule {
  fill: none;
  stroke: rgba(18, 62, 47, 0.13);
  stroke-width: 0.7;
}

.hero-globe__land {
  fill: rgba(18, 62, 47, 0.07);
  stroke: rgba(18, 62, 47, 0.14);
  stroke-width: 0.55;
}

.hero-globe__marker {
  filter: drop-shadow(0 2px 4px rgba(18, 62, 47, 0.12));
}

.marker-ring {
  fill: var(--paper-light);
  stroke: rgba(18, 62, 47, 0.35);
  stroke-width: 1;
}

.hero__map-note {
  position: absolute;
  z-index: 5;
  right: max(4.25rem, calc((100% - 1400px) / 2));
  bottom: 2.1rem;
  margin: 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-shell {
  width: min(100% - 8.5rem, 1400px);
  margin: 0 auto;
}

.initiatives {
  padding-top: 8.5rem;
  padding-bottom: 9rem;
}

.initiatives__heading {
  display: grid;
  grid-template-columns: 1.15fr 0.6fr;
  gap: 8vw;
  align-items: end;
}

.initiatives h2 {
  max-width: 900px;
  margin: 3rem 0 0;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(3.8rem, 5.5vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.initiatives__heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.initiative-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5rem;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  gap: 1px;
}

.initiative-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  padding: 2rem 2rem 2.4rem;
  background: var(--paper-light);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.initiative-card:first-child {
  color: var(--paper-light);
  background:
    radial-gradient(circle at 100% 0, rgba(189, 213, 0, 0.18), transparent 42%),
    var(--ink);
}

.initiative-card:hover,
.initiative-card:focus-visible {
  z-index: 1;
  transform: translateY(-4px);
}

.initiative-card__top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: 0.7;
  text-transform: uppercase;
}

.initiative-card__icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 2.2rem 0 auto;
  overflow: hidden;
  background: rgba(18, 62, 47, 0.07);
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
}

.initiative-card:first-child .initiative-card__icon {
  background: rgba(250, 248, 241, 0.08);
}

.initiative-card__icon img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.initiative-card strong {
  display: block;
  margin-top: 2rem;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(2rem, 2.7vw, 3.3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.initiative-card p {
  max-width: 390px;
  margin: 0.9rem 3rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.initiative-card:first-child p {
  color: rgba(250, 248, 241, 0.68);
}

.initiative-card__arrow {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
}

.alliance-bridge {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  padding: 2.3rem 0;
  border-bottom: 1px solid var(--line);
}

.alliance-bridge > p {
  max-width: 930px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}

.alliance-bridge > p strong {
  color: var(--ink);
}

.alliance-bridge > div {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
}

.argument-dossiers {
  margin-top: 3.5rem;
}

.argument-dossiers .argument-file {
  margin-top: 0;
}

.argument-dossiers .argument-file + .argument-file {
  border-top: 0;
}

.argument-file {
  --argument-line: var(--line);
  --argument-muted: var(--ink-soft);
  margin-top: 3.5rem;
  color: var(--ink);
  border-top: 1px solid var(--argument-line);
  border-bottom: 1px solid var(--argument-line);
}

.argument-file--inverse {
  --argument-line: var(--white-line);
  --argument-muted: rgba(250, 248, 241, 0.64);
  color: var(--paper-light);
}

.argument-file--challenge .argument-file__label small,
.argument-file--challenge .argument-file__count {
  color: var(--moss);
}

.argument-file--challenge.argument-file--inverse .argument-file__label small,
.argument-file--challenge.argument-file--inverse .argument-file__count {
  color: var(--acid);
}

.argument-file summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 88px;
  cursor: pointer;
  list-style: none;
}

.argument-file summary::-webkit-details-marker {
  display: none;
}

.argument-file summary:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 5px;
}

.argument-file__label {
  display: flex;
  gap: 1.3rem;
  align-items: baseline;
}

.argument-file__label small {
  color: var(--argument-muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.argument-file__label strong {
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.argument-file__count {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: var(--argument-muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.argument-file__count i {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid var(--argument-line);
  border-radius: 50%;
}

.argument-file__count i::before,
.argument-file__count i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.argument-file__count i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.argument-file[open] .argument-file__count i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.argument-file__body {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 7vw;
  padding: 3.2rem 0 4rem;
  border-top: 1px solid var(--argument-line);
}

.argument-file__body h3 {
  max-width: 480px;
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.4vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.argument-file__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: argument;
}

.argument-file__body li {
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--argument-muted);
  border-top: 1px solid var(--argument-line);
  font-size: 0.98rem;
  line-height: 1.55;
  counter-increment: argument;
}

.argument-file__body li:first-child {
  padding-top: 0;
  border-top: 0;
}

.argument-file__body li::before {
  color: var(--acid);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  content: counter(argument, decimal-leading-zero);
}

.wallet__grid > .argument-dossiers,
.manifesto__grid > .argument-dossiers {
  grid-column: 1 / -1;
  width: 100%;
}

.belonging {
  padding-top: 8.5rem;
  padding-bottom: 9rem;
}

.belonging__heading,
.projects__intro,
.journal__heading {
  display: grid;
  grid-template-columns: 1.15fr 0.6fr;
  gap: 8vw;
  align-items: end;
}

.belonging h2 {
  max-width: 950px;
  margin-top: 3rem;
  font-size: clamp(3.6rem, 5.3vw, 6.3rem);
  line-height: 0.97;
}

.belonging__heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.belonging__statement {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr;
  gap: 8vw;
  align-items: center;
  margin-top: 5rem;
  padding: 4.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.belonging__statement > p {
  max-width: 900px;
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.1vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.belonging__places {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-content: center;
}

.belonging__places span {
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--paper-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.belonging-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3.5rem;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
}

.belonging-card {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 2rem;
  background: var(--paper-light);
}

.belonging-card > span {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: 0.65;
}

.belonging-card h3 {
  margin: 3.4rem 0 0;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(2.35rem, 3.2vw, 3.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.belonging-card p {
  max-width: 380px;
  margin: 1.3rem 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.62;
}

.belonging__quote {
  max-width: 1100px;
  margin: 5.5rem 0 0;
  padding-left: 2.5rem;
  border-left: 3px solid var(--acid);
}

.belonging__quote p {
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.belonging__quote cite {
  display: block;
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.missing {
  padding: 9rem 0;
  color: var(--paper-light);
  background:
    radial-gradient(circle at 11% 20%, rgba(189, 213, 0, 0.1), transparent 24%),
    var(--ink-dark);
}

.missing__heading {
  display: grid;
  grid-template-columns: 1.15fr 0.6fr;
  gap: 8vw;
  align-items: end;
}

.missing__heading h2 {
  max-width: 950px;
  margin-top: 3rem;
  font-size: clamp(3.7rem, 5.5vw, 6.6rem);
  line-height: 0.94;
}

.missing__heading > p {
  margin: 0;
  color: rgba(250, 248, 241, 0.66);
  font-size: 1.04rem;
  line-height: 1.7;
}

.missing__question {
  display: grid;
  grid-template-columns: 0.42fr 1.25fr 0.48fr;
  gap: 3rem;
  align-items: center;
  margin-top: 5rem;
  padding: 3rem 0;
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

.missing__question > span,
.diagnosis__statement > span {
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.missing__question p {
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 3.3rem);
  line-height: 1.12;
}

.missing__question strong {
  color: var(--acid);
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(1.9rem, 2.6vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.diagnosis {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 9vw;
  align-items: start;
  margin-top: 7rem;
}

.diagnosis__statement h2 {
  max-width: 720px;
  margin: 2rem 0 0;
  font-size: clamp(3.5rem, 5vw, 6rem);
  line-height: 0.96;
}

.diagnosis__statement p {
  max-width: 650px;
  margin: 2rem 0 0;
  color: rgba(250, 248, 241, 0.64);
  font-size: 1.02rem;
  line-height: 1.7;
}

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

.contrast__head,
.contrast__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contrast__head span,
.contrast__row span {
  padding: 1.35rem 1.5rem;
  border-right: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

.contrast__head span {
  color: rgba(250, 248, 241, 0.5);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contrast__row span {
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.8vw, 2rem);
}

.contrast__row span:first-child {
  color: rgba(250, 248, 241, 0.48);
}

.contrast__row span:last-child {
  color: var(--acid);
}

.missing__indictment {
  max-width: 1250px;
  margin: 7rem 0 0;
  padding-top: 3.5rem;
  border-top: 1px solid var(--white-line);
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.1vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.possibility {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.possibility__intro {
  display: grid;
  grid-template-columns: 1.15fr 0.62fr;
  gap: 8vw;
  align-items: end;
  padding-top: 4rem;
}

.possibility__intro h2 {
  max-width: 990px;
  font-size: clamp(3.7rem, 5.5vw, 6.5rem);
  line-height: 0.95;
}

.possibility__intro h2 em {
  color: var(--moss);
  font-style: normal;
}

.possibility__intro > div {
  display: grid;
  gap: 1.3rem;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.7;
}

.possibility__intro p {
  margin: 0;
}

.possibility__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 5rem;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
}

.possibility__columns article {
  padding: 2.3rem;
  background: var(--paper-light);
}

.possibility__columns article > span {
  display: block;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.possibility__columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.possibility__columns li {
  position: relative;
  padding: 1.45rem 0 1.45rem 2.2rem;
  border-bottom: 1px solid var(--line);
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  line-height: 1.2;
}

.possibility__columns li::before {
  position: absolute;
  top: 1.9rem;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  content: "";
  background: var(--acid);
  border-radius: 50%;
}

.possibility__quote {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin: 6rem 0 0;
  padding: 4rem 5rem 3.4rem 6.5rem;
  color: var(--paper-light);
  background: var(--ink);
  border-radius: 2px 80px 2px 2px;
}

.possibility__quote p {
  max-width: 950px;
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(2rem, 3.1vw, 3.6rem);
  line-height: 1.12;
}

.possibility__quote cite {
  font-size: 0.76rem;
  font-style: normal;
  letter-spacing: 0.09em;
  opacity: 0.68;
  text-transform: uppercase;
}

.wallet {
  padding: 9rem 0;
  color: var(--paper-light);
  background:
    radial-gradient(
      circle at 82% 16%,
      rgba(189, 213, 0, 0.16),
      transparent 27%
    ),
    var(--ink);
}

.wallet__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 9vw;
  align-items: center;
}

.wallet h2 {
  max-width: 740px;
  margin-top: 2rem;
  font-size: clamp(3.8rem, 5.6vw, 6.6rem);
  line-height: 0.92;
}

.status-pill {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  margin-top: 2.8rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--white-line);
  border-radius: 999px;
  color: rgba(250, 248, 241, 0.78);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill i {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(189, 213, 0, 0.12);
}

.wallet__copy > p {
  max-width: 670px;
  margin: 1.8rem 0 0;
  color: rgba(250, 248, 241, 0.7);
  font-size: 1.04rem;
  line-height: 1.68;
}

.wallet__copy .wallet__promise {
  color: var(--paper-light);
  font-family: "Iowan Old Style", Baskerville, serif;
  font-size: 1.45rem;
  line-height: 1.42;
}

.wallet__actions {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 2.7rem;
}

.text-link--light {
  color: var(--paper-light);
}

.wallet-preview {
  position: relative;
  padding: 1.2rem;
  color: var(--ink);
  background: var(--paper-light);
  border: 1px solid rgba(250, 248, 241, 0.4);
  border-radius: 30px;
  box-shadow:
    0 48px 90px rgba(3, 22, 16, 0.34),
    0 0 0 12px rgba(250, 248, 241, 0.05);
  transform: rotate(1.2deg);
}

.wallet-preview__bar {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0.55rem 1.2rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wallet-preview__bar span:last-child {
  color: var(--ink-soft);
}

.wallet-preview__balance {
  display: grid;
  gap: 0.7rem;
  padding: 2.4rem 1rem 2rem;
}

.wallet-preview__balance small {
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wallet-preview__balance strong {
  font-family: "Iowan Old Style", Baskerville, serif;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

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

.wallet-coin {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1rem;
  border-bottom: 1px solid var(--line);
}

.wallet-coin__icon {
  display: grid;
  width: 44px;
  height: 44px;
  overflow: hidden;
  background: #e9e5da;
  border-radius: 50%;
  place-items: center;
}

.wallet-coin__icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.wallet-coin strong,
.wallet-coin small {
  display: block;
}

.wallet-coin strong {
  font-family: "Iowan Old Style", Baskerville, serif;
  font-size: 1.15rem;
  font-weight: 500;
}

.wallet-coin small {
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.wallet-coin b {
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}

.wallet-preview__buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 1.2rem 1rem 0.4rem;
}

.wallet-preview__buttons span {
  padding: 0.9rem 0.5rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.territory {
  padding-top: 8.5rem;
  padding-bottom: 9rem;
}

.section-kicker {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.section-kicker--light {
  border-color: var(--white-line);
}

.territory__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 8vw;
  align-items: end;
  padding-top: 4rem;
}

.territory h2,
.projects h2,
.manifesto h2,
.participate h2 {
  font-size: clamp(3.6rem, 5.3vw, 6.3rem);
  line-height: 0.97;
}

.territory h2 em {
  font-weight: 400;
  color: var(--moss);
}

.territory__copy {
  display: grid;
  gap: 1.35rem;
  padding-bottom: 0.5rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.territory__copy p {
  margin: 0;
}

.territory > blockquote {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin: 6rem 0 0;
  padding: 4rem 5rem 3.4rem 6.5rem;
  color: var(--paper-light);
  background: var(--ink);
  border-radius: 2px 80px 2px 2px;
}

.territory > blockquote p {
  max-width: 900px;
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(2rem, 3.1vw, 3.6rem);
  line-height: 1.12;
}

.territory > blockquote cite {
  font-size: 0.76rem;
  font-style: normal;
  letter-spacing: 0.09em;
  opacity: 0.68;
  text-transform: uppercase;
}

.quote-mark {
  position: absolute;
  top: 1.5rem;
  left: 2.4rem;
  color: var(--acid);
  font-family: "Iowan Old Style", Baskerville, serif;
  font-size: 6.5rem;
  line-height: 1;
}

.communities {
  padding: 8.5rem 0 7rem;
  color: var(--paper-light);
  background:
    linear-gradient(160deg, rgba(39, 90, 66, 0.28), transparent 38%),
    var(--ink-dark);
}

.communities__heading,
.projects__intro,
.journal__heading {
  display: grid;
  grid-template-columns: 1.15fr 0.6fr;
  gap: 8vw;
  align-items: end;
}

.communities__heading h2,
.voices h2,
.journal h2 {
  max-width: 850px;
  margin-top: 3rem;
  font-size: clamp(3.6rem, 5.5vw, 6.5rem);
  line-height: 0.95;
}

.communities__heading > p,
.projects__intro > p {
  margin: 0;
  color: rgba(250, 248, 241, 0.66);
  font-size: 1.03rem;
  line-height: 1.65;
}

.map-frame {
  position: relative;
  margin-top: 5rem;
  padding: 1rem 1rem 0;
  overflow: hidden;
  border: 1px solid var(--white-line);
  background:
    radial-gradient(
      circle at 55% 40%,
      rgba(158, 190, 87, 0.13),
      transparent 38%
    ),
    rgba(255, 255, 255, 0.025);
}

.alliance-map {
  display: block;
  width: 100%;
  min-width: 760px;
}

.alliance-map__ocean {
  fill: transparent;
  stroke: rgba(250, 248, 241, 0.25);
  stroke-width: 1;
}

.alliance-map__graticule {
  fill: none;
  stroke: rgba(250, 248, 241, 0.11);
  stroke-width: 0.65;
}

.alliance-map__land {
  fill: rgba(241, 239, 229, 0.11);
  stroke: rgba(250, 248, 241, 0.29);
  stroke-width: 0.55;
}

.map-pin {
  color: var(--paper-light);
}

.map-pin__pulse {
  fill: rgba(250, 248, 241, 0.08);
  stroke: rgba(250, 248, 241, 0.46);
  stroke-width: 1;
  transition:
    r 180ms ease,
    opacity 180ms ease;
}

.map-pin__dot {
  stroke: var(--paper-light);
  stroke-width: 2.5;
}

.map-pin text {
  fill: var(--paper-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  paint-order: stroke;
  stroke: var(--ink-dark);
  stroke-width: 3px;
  stroke-linejoin: round;
  transition: fill 180ms ease;
}

.map-pin:hover .map-pin__pulse,
.map-pin:focus .map-pin__pulse {
  r: 21px;
  opacity: 0.72;
}

.map-pin:hover text,
.map-pin:focus text {
  fill: var(--acid);
}

.map-frame__legend {
  position: absolute;
  right: 1.5rem;
  bottom: 1.4rem;
  display: flex;
  gap: 0.65rem;
  align-items: center;
  padding: 0.65rem 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  background: rgba(8, 45, 33, 0.84);
  text-transform: uppercase;
}

.map-frame__absence {
  max-width: 900px;
  margin: 1.6rem 0 0 auto;
  color: rgba(250, 248, 241, 0.62);
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  line-height: 1.35;
  text-align: right;
}

.legend-dot {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--acid);
  border-radius: 50%;
}

.coin-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 2.5rem;
  border-top: 1px solid var(--white-line);
  border-left: 1px solid var(--white-line);
}

.coin {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  min-height: 82px;
  padding: 0.75rem;
  border-right: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
  transition: background 180ms ease;
}

.coin:hover,
.coin:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.coin__icon {
  display: grid;
  flex: 0 0 auto;
  width: 37px;
  height: 37px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  place-items: center;
}

.coin__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.coin strong,
.coin small {
  display: block;
}

.coin strong {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.coin small {
  margin-top: 0.18rem;
  color: rgba(250, 248, 241, 0.55);
  font-size: 0.63rem;
}

.marketplace {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.marketplace__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  gap: 10vw;
  align-items: start;
  padding-top: 4rem;
}

.marketplace h2 {
  max-width: 920px;
  font-size: clamp(3.8rem, 5.8vw, 6.8rem);
  line-height: 0.93;
}

.marketplace__lead {
  max-width: 760px;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.72;
}

.marketplace__actions {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.marketplace__actions li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 1.2rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
}

.marketplace__actions li > span {
  padding-top: 0.22rem;
  color: var(--moss);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.marketplace__actions strong {
  font-family: "Iowan Old Style", Baskerville, serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.marketplace__actions p {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.projects {
  padding-top: 9rem;
  padding-bottom: 8.5rem;
  background: #e7e2d5;
}

.projects__intro > p {
  color: var(--ink-soft);
}

.projects__intro h2 {
  max-width: 900px;
  margin-top: 3rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 5rem;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
}

.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
  padding: 2rem;
  overflow: hidden;
  background: var(--paper-light);
}

.project-card--accent {
  color: var(--paper-light);
  background:
    radial-gradient(circle at 100% 0, rgba(189, 213, 0, 0.22), transparent 42%),
    var(--ink);
}

.project-card__top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  opacity: 0.7;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(2.5rem, 3.2vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
}

.project-card p {
  max-width: 530px;
  margin: 1.1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

.project-card--accent p {
  color: rgba(250, 248, 241, 0.68);
}

.project-card__arrow {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
}

.forgejo-link {
  display: flex;
  justify-content: space-between;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--ink);
  font-family: "Iowan Old Style", Baskerville, serif;
  font-size: 1.45rem;
}

.manifesto {
  padding: 9rem 0;
  color: var(--paper-light);
  background: #254936;
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10vw;
}

.manifesto__statement {
  position: sticky;
  top: 3rem;
  align-self: start;
}

.manifesto__statement h2 {
  margin-top: 3.2rem;
}

.manifesto__statement > p {
  max-width: 540px;
  margin: 2rem 0 2.5rem;
  color: rgba(250, 248, 241, 0.72);
  font-size: 1.05rem;
  line-height: 1.65;
}

.button--paper {
  padding-right: 1.6rem;
  color: var(--ink);
  background: var(--paper-light);
}

.principles {
  margin: 0;
  padding: 0;
  list-style: none;
}

.principles li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--white-line);
}

.principles li:first-child {
  border-top: 1px solid var(--white-line);
}

.principles span {
  padding-top: 0.55rem;
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.principles p {
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.8vw, 3.1rem);
  line-height: 1.12;
}

.voices {
  padding-top: 8.5rem;
  padding-bottom: 9rem;
}

.voices__heading h2 {
  margin-top: 3rem;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4.5rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.voice-grid figure {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
  margin: 0;
  padding: 2rem;
  background: var(--paper-light);
}

.voice-grid blockquote {
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, serif;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 1.24;
}

.voice-grid figcaption {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2.5rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.voice-grid figcaption span {
  display: grid;
  width: 3rem;
  height: 3rem;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  place-items: center;
}

.journal {
  padding: 8.5rem 0 9rem;
  background: #e7e2d5;
}

.journal__heading {
  align-items: end;
}

.journal__heading h2 {
  margin-top: 3rem;
}

.journal__heading > .text-link {
  justify-self: end;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 4.5rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 580px;
  overflow: hidden;
  background: var(--paper-light);
  transition: transform 220ms ease;
}

.article-card:hover,
.article-card:focus-visible {
  transform: translateY(-6px);
}

.article-card__visual {
  position: relative;
  height: 245px;
  overflow: hidden;
  background: var(--ink);
}

.article-card__visual > span {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  z-index: 2;
  color: var(--paper-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-card__rings {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(250, 248, 241, 0.36);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(250, 248, 241, 0.08),
    0 0 0 90px rgba(250, 248, 241, 0.05);
}

.article-card__visual--2 {
  background: #8d9a67;
}

.article-card__visual--2 .article-card__rings {
  right: auto;
  bottom: -190px;
  left: -60px;
  width: 390px;
  height: 390px;
}

.article-card__visual--3 {
  background:
    linear-gradient(
      120deg,
      transparent 49.5%,
      rgba(250, 248, 241, 0.22) 50%,
      transparent 50.5%
    ),
    #b06950;
  background-size: 26px 26px;
}

.article-card__visual--3 .article-card__rings {
  right: 22%;
  bottom: -170px;
  width: 370px;
  height: 370px;
}

.article-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2rem;
}

.article-card h3 {
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.article-card p {
  margin: 1.1rem 0 2rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.62;
}

.article-card__read {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: auto;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.participate {
  display: grid;
  grid-template-columns: 1.15fr 0.6fr;
  gap: 8vw;
  align-items: end;
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.participate h2 {
  margin-top: 3rem;
}

.participate__copy > p {
  max-width: 700px;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.68;
}

.participate__actions {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.rooty {
  position: relative;
  display: grid;
  min-height: 730px;
  overflow: hidden;
  color: var(--paper-light);
  background:
    radial-gradient(
      circle at 50% 100%,
      rgba(155, 188, 76, 0.2),
      transparent 37%
    ),
    var(--ink-dark);
  place-items: center;
  text-align: center;
}

.rooty__content {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem;
}

.rooty__label {
  display: inline-flex;
  padding: 0.65rem 1.1rem;
  border: 1px solid rgba(250, 248, 241, 0.36);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.rooty p {
  margin: 2.4rem 0 0;
  color: rgba(250, 248, 241, 0.62);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.35;
}

.rooty h2 {
  max-width: 1000px;
  margin: 0.6rem auto 0;
  color: var(--acid);
  font-size: clamp(4.1rem, 7vw, 8rem);
  line-height: 0.92;
}

.rooty small {
  display: block;
  margin-top: 3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 0.62;
  text-transform: uppercase;
}

.rooty__threads {
  position: absolute;
  right: 0;
  bottom: -12%;
  left: 0;
  height: 48%;
  opacity: 0.42;
  background-image:
    radial-gradient(
      ellipse at 20% 100%,
      transparent 55%,
      rgba(189, 213, 0, 0.2) 56%,
      transparent 58%
    ),
    radial-gradient(
      ellipse at 45% 100%,
      transparent 59%,
      rgba(250, 248, 241, 0.12) 60%,
      transparent 61%
    ),
    radial-gradient(
      ellipse at 75% 100%,
      transparent 53%,
      rgba(189, 213, 0, 0.14) 54%,
      transparent 56%
    );
  background-size:
    38% 100%,
    46% 100%,
    34% 100%;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 4.5rem max(4.25rem, calc((100% - 1400px) / 2)) 2.2rem;
  color: var(--paper-light);
  background: #061e17;
}

.site-brand--footer {
  color: var(--paper-light);
  font-size: 1.65rem;
}

.site-brand--footer img {
  width: 50px;
  height: 50px;
}

.site-footer__brand > p {
  margin-top: 1.3rem;
  line-height: 1.75;
}

.site-footer p {
  margin: 0;
  color: rgba(250, 248, 241, 0.52);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.site-footer__explore > strong,
.site-footer__contact > strong {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--acid);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0.85rem 1.8rem;
  justify-content: start;
  font-size: 0.8rem;
}

.site-footer__contact {
  display: grid;
  gap: 1.2rem;
  margin: 0;
  font-style: normal;
}

.site-footer__contact > strong {
  margin-bottom: 0.2rem;
}

.site-footer__contact a {
  display: grid;
  gap: 0.3rem;
  width: fit-content;
}

.site-footer__contact small {
  color: rgba(250, 248, 241, 0.48);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer__contact span {
  padding-bottom: 0.22rem;
  border-bottom: 1px solid rgba(250, 248, 241, 0.58);
  font-size: 0.88rem;
}

.site-footer__contact a:hover span,
.site-footer__contact a:focus-visible span {
  color: var(--acid);
  border-color: var(--acid);
}

.site-footer__base {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(250, 248, 241, 0.14);
}

.site-footer__base a {
  color: rgba(250, 248, 241, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .section-shell {
    width: min(100% - 4rem, 1400px);
  }

  .site-header {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .desktop-nav {
    gap: 1.15rem;
    font-size: 0.78rem;
  }

  .site-brand {
    gap: 0.55rem;
    font-size: 1.45rem;
  }

  .site-brand img {
    width: 36px;
    height: 36px;
  }

  .header-actions {
    gap: 0.8rem;
  }

  .header-cta {
    font-size: 0.72rem;
  }

  .menu-trigger {
    padding: 0 0.85rem;
  }

  .section-menu {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .hero__copy {
    width: 58%;
    margin-left: 2rem;
  }

  .hero__image {
    right: -12vw;
    width: 48vw;
  }

  .coin-rail {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-footer {
    gap: 2.5rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: 100%;
    height: 76px;
    padding: 0 1.25rem;
  }

  .site-brand {
    font-size: 1.45rem;
  }

  .site-brand img {
    width: 38px;
    height: 38px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-trigger {
    min-height: 42px;
  }

  .section-menu {
    inset: 76px 0 0;
    padding: 2rem 1.25rem 3rem;
  }

  .section-menu ol {
    grid-template-columns: 1fr;
  }

  .section-menu li:not(:nth-child(3n + 1)) {
    border-left: 0;
  }

  .section-menu li a {
    min-height: 92px;
    padding-right: 0.4rem;
    padding-left: 0.4rem;
  }

  .section-menu__afterword {
    display: grid;
  }

  .section-menu__afterword div {
    flex-wrap: wrap;
    white-space: normal;
  }

  .hero {
    min-height: 860px;
  }

  .hero__copy {
    width: auto;
    margin: 0 1.25rem;
    padding-top: 160px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(4.1rem, 16vw, 7rem);
  }

  .hero__lead {
    max-width: 520px;
    font-size: 1.05rem;
  }

  .hero__image {
    top: auto;
    right: -22%;
    bottom: 65px;
    width: 74%;
    height: 360px;
    border-radius: 58% 0 0 45%;
    opacity: 0.94;
  }

  .hero-globe {
    right: -30%;
    bottom: -410px;
    left: -30%;
    width: 160%;
  }

  .hero__map-note {
    display: none;
  }

  .hero__actions {
    gap: 1.3rem;
    align-items: flex-start;
  }

  .section-shell {
    width: calc(100% - 2.5rem);
  }

  .territory,
  .initiatives,
  .belonging,
  .possibility,
  .wallet,
  .marketplace,
  .projects,
  .voices,
  .participate {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }

  .territory__grid,
  .initiatives__heading,
  .belonging__heading,
  .missing__heading,
  .possibility__intro,
  .wallet__grid,
  .marketplace__grid,
  .communities__heading,
  .projects__intro,
  .manifesto__grid,
  .journal__heading,
  .participate {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .initiative-teaser {
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
  }

  .initiative-card {
    min-height: 340px;
  }

  .alliance-bridge {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .alliance-bridge > div {
    flex-wrap: wrap;
    white-space: normal;
  }

  .argument-file__body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .belonging__statement,
  .diagnosis {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .missing__question {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .belonging-grid,
  .possibility__columns {
    grid-template-columns: 1fr;
  }

  .territory > blockquote {
    grid-template-columns: 1fr;
    margin-top: 4rem;
    padding: 4rem 2rem 2.5rem;
  }

  .possibility__quote {
    grid-template-columns: 1fr;
    margin-top: 4rem;
    padding: 4rem 2rem 2.5rem;
  }

  .possibility__quote cite {
    justify-self: start;
  }

  .territory > blockquote cite {
    justify-self: start;
  }

  .quote-mark {
    top: 0.8rem;
    left: 1.3rem;
  }

  .communities,
  .wallet,
  .manifesto,
  .journal {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }

  .communities__heading h2,
  .voices h2,
  .journal h2 {
    font-size: clamp(3.4rem, 14vw, 5.4rem);
  }

  .map-frame {
    margin-top: 3.5rem;
    overflow-x: auto;
  }

  .coin-rail {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .wallet__grid {
    gap: 4rem;
  }

  .wallet-preview {
    width: min(100%, 620px);
    margin: 0 auto;
    transform: none;
  }

  .marketplace__grid {
    padding-top: 3rem;
  }

  .project-card {
    min-height: 340px;
  }

  .manifesto__statement {
    position: static;
  }

  .voice-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .voice-grid figure {
    min-height: 280px;
  }

  .article-card {
    min-height: 0;
  }

  .journal__heading > .text-link {
    justify-self: start;
  }

  .rooty {
    min-height: 620px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    justify-items: start;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .site-brand span {
    font-size: 1.25rem;
  }

  .menu-trigger > span {
    display: none;
  }

  .menu-trigger {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .section-menu__heading {
    align-items: center;
  }

  .section-menu__heading h2 {
    font-size: 2.2rem;
  }

  .section-menu__heading > a {
    font-size: 0;
    border-bottom: 0;
  }

  .section-menu__heading > a i {
    width: 20px;
    height: 20px;
  }

  .section-menu__heading > a i::before,
  .section-menu__heading > a i::after {
    top: 9px;
    width: 20px;
  }

  .hero {
    min-height: 860px;
  }

  .eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  .eyebrow span {
    width: 1.6rem;
  }

  .hero h1 {
    font-size: clamp(3.85rem, 18vw, 5.7rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .argument-dossiers,
  .argument-file {
    margin-top: 2.5rem;
  }

  .argument-file summary {
    min-height: 78px;
  }

  .argument-file__label {
    display: grid;
    gap: 0.2rem;
  }

  .argument-file__label strong {
    font-size: 1.25rem;
  }

  .argument-file__count {
    gap: 0.6rem;
    font-size: 0;
  }

  .argument-file__count i {
    width: 32px;
    height: 32px;
  }

  .argument-file__body {
    padding: 2.5rem 0 3rem;
  }

  .argument-file__body li {
    grid-template-columns: 2rem 1fr;
    gap: 0.65rem;
    font-size: 0.93rem;
  }

  .button {
    min-height: 54px;
  }

  .hero__image {
    right: -35%;
    bottom: 70px;
    width: 88%;
    height: 320px;
  }

  .hero-globe {
    bottom: -330px;
  }

  .territory h2,
  .initiatives h2,
  .belonging h2,
  .missing h2,
  .possibility h2,
  .wallet h2,
  .marketplace h2,
  .projects h2,
  .manifesto h2,
  .participate h2 {
    font-size: clamp(3.25rem, 15vw, 4.8rem);
  }

  .territory > blockquote {
    border-radius: 2px 42px 2px 2px;
  }

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

  .project-card {
    min-height: 320px;
  }

  .initiative-card {
    min-height: 320px;
  }

  .wallet__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .wallet-preview {
    padding: 0.75rem;
    border-radius: 20px;
  }

  .wallet-coin {
    grid-template-columns: auto 1fr;
  }

  .wallet-coin b {
    display: none;
  }

  .wallet-preview__buttons {
    gap: 0.35rem;
    padding-right: 0.4rem;
    padding-left: 0.4rem;
  }

  .wallet-preview__buttons span {
    padding: 0.8rem 0.3rem;
    font-size: 0.59rem;
  }

  .coin-rail {
    grid-template-columns: 1fr 1fr;
  }

  .coin {
    min-width: 0;
  }

  .coin small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .principles li {
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
  }

  .rooty h2 {
    font-size: clamp(3.7rem, 17vw, 5.8rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__base {
    display: grid;
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
