@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #f4f4ef;
  --paper: #080808;
  --soft: #131311;
  --panel: #1a1a17;
  --deep: #030303;
  --line: #34342f;
  --muted: #aaa9a1;
  --signal: #d8ff52;
  --blue: #2f59ff;
  --max: 1200px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  color-scheme: dark;
  font-family: "Poppins", Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--signal);
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.site-header.is-overlay {
  position: absolute;
  inset: 0 0 auto;
  background: transparent;
  color: var(--ink);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.nav {
  width: min(calc(100% - 48px), var(--max));
  min-height: var(--header);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 178px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-header.is-overlay .brand img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  position: relative;
  padding: 28px 0 24px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.wrap {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: min(820px, 88vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--deep);
  color: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.4) 55%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.56), transparent 56%);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  padding: 110px 0 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--signal);
}

.display {
  max-width: 950px;
  margin: 0;
  font-size: 88px;
  font-weight: 900;
  line-height: 0.92;
}

.hero-lead {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.35;
}

.hero-copy {
  max-width: 690px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.signature {
  width: 250px;
  margin-top: 14px;
  filter: brightness(0) invert(1);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button.light {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button.ghost {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.button.signal {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--paper);
}

.section {
  padding: 120px 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: var(--deep);
  color: var(--ink);
}

.section.blue {
  background: var(--blue);
  color: var(--ink);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 64px;
}

.section-title {
  max-width: 850px;
  margin: 0;
  font-size: 72px;
  font-weight: 900;
  line-height: 0.98;
}

.section-copy {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
}

.dark .section-copy,
.blue .section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.movement-grid,
.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.movement-number {
  margin: 0;
  font-size: 176px;
  font-weight: 900;
  line-height: 0.8;
}

.movement-number span {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
}

.documentary-frame {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.documentary-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.documentary-frame::after {
  content: attr(data-caption);
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: 260px;
  padding: 12px 14px;
  background: rgba(8, 8, 8, 0.92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.story-copy {
  display: grid;
  gap: 26px;
}

.together-section {
  overflow: hidden;
}

.together-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 84px;
  align-items: center;
}

.together-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.together-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.together-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: 270px;
  padding: 12px 14px;
  background: rgba(8, 8, 8, 0.92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.together-copy {
  display: grid;
  gap: 30px;
}

.together-note {
  margin: 16px 0 0;
  color: var(--signal);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
}

.belief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.belief {
  min-height: 280px;
  padding: 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.belief small,
.project-number {
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.belief h3,
.project h3,
.note h3 {
  margin: 34px 0 16px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.05;
}

.belief p,
.project p,
.note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

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

.project {
  display: grid;
  grid-template-columns: 80px minmax(230px, 0.55fr) minmax(280px, 1fr) auto;
  gap: 30px;
  align-items: center;
  min-height: 170px;
  border-bottom: 1px solid var(--line);
}

.project-number {
  color: #829bff;
}

.project h3 {
  margin: 0;
  font-size: 27px;
}

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

.project-link {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.project-link:hover {
  transform: translateX(4px);
  background: var(--ink);
  color: var(--paper);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.proof-section {
  background: var(--blue);
}

.proof-section .section-copy {
  color: rgba(255, 255, 255, 0.8);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.proof-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.proof-grid strong {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.proof-grid span {
  max-width: 220px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.evidence-figure {
  position: relative;
  margin: 64px 0 0;
  overflow: hidden;
}

.evidence-figure img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.evidence-figure figcaption,
.photo-pair figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: 330px;
  padding: 12px 14px;
  background: rgba(8, 8, 8, 0.92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.photo-pair {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
  align-items: end;
  margin-top: 72px;
}

.photo-pair figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.photo-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-pair-portrait {
  aspect-ratio: 4 / 5;
}

.photo-pair-portrait img {
  object-position: center top;
}

.photo-pair-wide {
  aspect-ratio: 16 / 10;
}

.couple-travel img {
  object-position: center top;
}

.note {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.note blockquote {
  margin: 0;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.08;
}

.note-meta {
  margin-top: 40px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.article-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.article-card:hover {
  background: var(--ink);
  color: var(--paper);
}

.article-card .note-meta {
  margin: 0 0 48px;
}

.article-card h2,
.article-card h3 {
  margin: 0 0 20px;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.06;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.article-card:hover p,
.article-card:hover .note-meta {
  color: #55554f;
}

.text-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 34px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.article-grid-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-card-featured {
  grid-row: span 2;
  min-height: 680px;
  justify-content: flex-end;
  background: var(--blue);
}

.article-card-featured h2 {
  max-width: 650px;
  font-size: 60px;
}

.article-card-featured .note-meta {
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.72);
}

.article-card-featured p {
  color: rgba(255, 255, 255, 0.8);
}

.invitation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: end;
  min-height: 430px;
  padding: 72px;
  background: var(--panel);
  color: var(--ink);
}

.invitation .section-title {
  max-width: 760px;
}

.invitation p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

.page-hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--deep);
  color: var(--ink);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.08) 70%);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-content {
  padding: 130px 0 54px;
}

.page-hero .display {
  max-width: 1040px;
  font-size: 88px;
}

.move-hero > img {
  object-position: center 54%;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item strong {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-item p {
  max-width: 800px;
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.55;
}

.manifesto {
  max-width: 980px;
  margin: 0;
  font-size: 68px;
  font-weight: 900;
  line-height: 1.08;
}

.manifesto mark {
  background: var(--signal);
  color: var(--paper);
}

.ecosystem-detail {
  display: grid;
  grid-template-columns: 110px minmax(250px, 0.7fr) minmax(300px, 1fr);
  gap: 40px;
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.ecosystem-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.ecosystem-detail h2 {
  margin: 12px 0 0;
  font-size: 44px;
  line-height: 1;
}

.ecosystem-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.ecosystem-detail > div:last-child {
  align-self: start;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-live {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--paper);
}

.status-line {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.access-grid,
.subscribe-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.7fr);
  gap: 90px;
  align-items: start;
}

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

.access-list li {
  padding: 22px 0 22px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.access-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--signal);
  font-weight: 900;
}

.clear-note {
  max-width: 940px;
  padding-left: 34px;
  border-left: 6px solid var(--signal);
}

.clear-note h2 {
  max-width: 800px;
  margin: 0 0 20px;
  font-size: 48px;
  line-height: 1.05;
}

.clear-note p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.invitation-on-color {
  background: transparent;
  padding-right: 0;
  padding-left: 0;
}

.article-site-header {
  position: relative;
}

.article-header {
  padding: 110px 0 72px;
}

.article-wrap {
  width: min(calc(100% - 48px), 820px);
  margin: 0 auto;
}

.article-header h1 {
  margin: 0;
  font-size: 78px;
  font-weight: 900;
  line-height: 0.98;
}

.article-deck {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.6;
}

.back-link {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  text-underline-offset: 5px;
}

.article-image {
  width: min(calc(100% - 48px), var(--max));
  height: 620px;
  margin: 0 auto;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-image-portrait img {
  object-position: center 28%;
}

.article-body {
  padding-top: 84px;
  padding-bottom: 110px;
}

.article-body p {
  margin: 0 0 30px;
  color: #d0d0c8;
  font-size: 18px;
  line-height: 1.9;
}

.article-body .article-intro {
  color: var(--ink);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.55;
}

.article-body blockquote {
  margin: 62px 0;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 43px;
  font-weight: 900;
  line-height: 1.15;
}

.article-inline-image {
  margin: 58px 0;
}

.article-inline-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.article-inline-image figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.article-signoff {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: 62px;
}

.article-signoff img {
  width: 220px;
  filter: brightness(0) invert(1);
}

.article-signoff span {
  padding-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.next-note {
  display: grid;
  gap: 18px;
}

.next-note a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.08;
  text-decoration: none;
}

.next-note a span {
  color: var(--signal);
}

.subscribe-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.contact-grid {
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 24px;
  margin-top: 38px;
}

.contact-detail small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail span {
  font-size: 18px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 44px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid #4f4f48;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(47, 89, 255, 0.25);
  border-color: var(--blue);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--signal);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.legal-page {
  padding: 110px 0 130px;
}

.legal-page h1 {
  margin: 0 0 18px;
  font-size: 78px;
  line-height: 1;
}

.legal-page h2 {
  margin: 54px 0 14px;
  font-size: 28px;
  line-height: 1.2;
}

.legal-page p {
  margin: 0 0 24px;
  color: #d0d0c8;
  font-size: 17px;
  line-height: 1.85;
}

.legal-page a {
  text-underline-offset: 4px;
}

.legal-updated {
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 800;
  text-transform: uppercase;
}

.state-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--deep);
}

.state-content {
  padding: 80px 0;
}

.state-content h1 {
  max-width: 880px;
  margin: 0;
  font-size: 86px;
  font-weight: 900;
  line-height: 0.95;
}

.state-content p {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.state-content .signature {
  margin: 0 0 50px;
}

.form-status {
  min-height: 22px;
  color: var(--ink);
}

.site-footer {
  padding: 58px 0 34px;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  font-size: 22px;
  font-weight: 900;
}

.footer-copy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .display {
    font-size: 72px;
  }

  .section-title {
    font-size: 58px;
  }

  .movement-number {
    font-size: 130px;
  }

  .note blockquote {
    font-size: 32px;
  }

  .page-hero .display {
    font-size: 72px;
  }

  .manifesto {
    font-size: 54px;
  }

  .ecosystem-detail h2 {
    font-size: 38px;
  }

  .nav-links {
    position: fixed;
    inset: var(--header) 0 0;
    display: none;
    align-content: start;
    overflow-y: auto;
    padding: 20px 24px 30px;
    background: var(--paper);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 14px 0;
    font-size: 16px;
  }

  .nav-links a::after {
    bottom: 8px;
  }

  .menu-button {
    display: block;
  }

  .section-head,
  .movement-grid,
  .story-grid,
  .together-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    gap: 30px;
  }

  .movement-grid,
  .story-grid,
  .together-grid,
  .contact-grid {
    gap: 54px;
  }

  .together-photo {
    width: min(100%, 680px);
    aspect-ratio: 5 / 4;
  }

  .project {
    grid-template-columns: 62px minmax(200px, 0.7fr) minmax(260px, 1fr);
  }

  .project-link {
    display: none;
  }

  .invitation {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .ecosystem-detail {
    grid-template-columns: 72px minmax(220px, 0.8fr) minmax(260px, 1fr);
  }

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

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

  .article-card-featured {
    grid-row: auto;
    min-height: 540px;
  }

  .access-grid,
  .subscribe-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .article-header h1 {
    font-size: 64px;
  }

  .photo-pair {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  }
}

@media (max-width: 720px) {
  :root {
    --header: 68px;
  }

  .wrap,
  .nav {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand img {
    width: 150px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.2)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 66%);
  }

  .hero-media {
    object-position: 63% center;
  }

  .hero-content,
  .page-hero .hero-content {
    padding: 110px 0 40px;
  }

  .display {
    font-size: 52px;
  }

  .hero-lead {
    font-size: 19px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 84px 0;
  }

  .section-title {
    font-size: 46px;
  }

  .section-copy {
    font-size: 16px;
  }

  .documentary-frame {
    min-height: 480px;
  }

  .together-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .together-note {
    font-size: 24px;
  }

  .belief-grid,
  .notes-grid {
    grid-template-columns: 1fr;
  }

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

  .proof-grid article {
    min-height: 180px;
  }

  .evidence-figure {
    margin-top: 42px;
  }

  .evidence-figure img {
    aspect-ratio: 4 / 3;
  }

  .photo-pair {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .photo-pair-portrait {
    width: 78%;
  }

  .belief {
    min-height: 230px;
    padding: 28px;
  }

  .project {
    grid-template-columns: 46px 1fr;
    gap: 18px;
    padding: 30px 0;
  }

  .project p {
    grid-column: 2;
  }

  .note {
    min-height: 260px;
    padding: 28px;
  }

  .invitation {
    min-height: 0;
    padding: 42px 28px;
  }

  .page-hero {
    min-height: 600px;
  }

  .page-hero .display {
    font-size: 52px;
  }

  .manifesto {
    font-size: 42px;
  }

  .movement-number {
    font-size: 96px;
  }

  .note blockquote {
    font-size: 28px;
  }

  .ecosystem-detail h2 {
    font-size: 34px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .timeline-item p {
    font-size: 18px;
  }

  .ecosystem-detail {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 42px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px;
  }

  .article-card {
    min-height: 330px;
    padding: 28px;
  }

  .article-card-featured {
    min-height: 470px;
  }

  .article-card-featured h2 {
    font-size: 42px;
  }

  .clear-note h2 {
    font-size: 38px;
  }

  .article-wrap,
  .article-image {
    width: min(calc(100% - 28px), 820px);
  }

  .article-header {
    padding: 80px 0 50px;
  }

  .article-header h1 {
    font-size: 48px;
  }

  .article-deck {
    font-size: 18px;
  }

  .article-image {
    height: 420px;
  }

  .article-body {
    padding-top: 58px;
    padding-bottom: 78px;
  }

  .article-body p {
    font-size: 17px;
  }

  .article-body .article-intro {
    font-size: 23px;
  }

  .article-body blockquote {
    font-size: 34px;
  }

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

  .next-note a {
    font-size: 38px;
  }

  .subscribe-form {
    padding: 28px;
  }

  .legal-page {
    padding: 78px 0 100px;
  }

  .legal-page h1 {
    font-size: 56px;
  }

  .state-content h1 {
    font-size: 54px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
