:root {
  color-scheme: light;
  --ink: #15171a;
  --ink-soft: #24272b;
  --paper: #f2f3f2;
  --paper-soft: #fafafa;
  --white: #ffffff;
  --muted: #686d73;
  --line: #d8dadd;
  --gold: rgb(180, 136, 66);
  --gold-light: rgb(180, 136, 66);
  --gold-dark: rgb(180, 136, 66);
  --green: #2e4938;
  --danger: #7c2222;
  --shadow: 0 22px 70px rgb(15 16 18 / 16%);
  --header-h: 0px;
  --font-heading: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --font-hero-title: "Trajan Pro", "Trajan 3", "Marcellus SC", "Times New Roman", serif;
  --roman: var(--font-heading);
  --sans: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

.home-doc {
  scroll-snap-type: y mandatory;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.55 var(--sans);
}

body.no-motion *,
body.no-motion *::before,
body.no-motion *::after {
  animation: none !important;
  transition: none !important;
}

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

a:hover {
  text-decoration: underline;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 500;
}

.section-number,
.section-kicker,
.projection-year,
.projection-wordmark {
  font-family: var(--roman);
  font-weight: 500;
}

h1 {
  margin-bottom: 22px;
  font-size: 6.5rem;
  line-height: .88;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.9rem;
  line-height: .98;
}

.home-page {
  background: var(--ink);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--ink);
}

.skip-link:focus {
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  min-height: 0;
  border-bottom: 0;
  background: transparent;
  color: var(--ink);
  transform: translateX(-50%);
  backdrop-filter: none;
  pointer-events: none;
}

.home-page .site-header {
  position: fixed;
  top: 0;
}

.site-header-inner {
  width: max-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 18px 0 0;
}

.site-header.compact .site-header-inner {
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  margin-right: 0;
  text-decoration: none;
  pointer-events: auto;
}

.brand-logo {
  width: auto;
  height: 48px;
  display: block;
}

.site-nav,
.header-sign,
.menu-toggle,
.mobile-nav {
  display: none !important;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgb(0 0 0 / 64%);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.site-nav a:hover {
  color: var(--ink);
  text-decoration: none;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.menu-toggle {
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid rgb(0 0 0 / 20%);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  font: 600 .94rem/1 var(--sans);
  text-align: center;
  text-decoration: none;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.button:hover {
  text-decoration: none;
}

.button:focus-visible,
.floating-learn-cta:focus-visible,
.mobile-sign-cta:focus-visible {
  outline: 3px solid rgb(21 23 26 / 82%);
  outline-offset: 3px;
}

.button-gold {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: none;
  color: var(--white);
}

.button-gold:hover {
  border-color: rgb(21 23 26 / 80%);
  background: rgb(21 23 26 / 80%);
}

.button-gold:active {
  transform: none;
  box-shadow: none;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-ghost {
  border-color: rgb(255 255 255 / 35%);
  background: transparent;
  color: var(--white);
}

.button-ghost:hover {
  border-color: rgb(255 255 255 / 50%);
  background: rgb(255 255 255 / 10%);
}

.hero .button-ghost {
  border-width: 1px;
}

.button-ghost-dark {
  border-color: rgb(0 0 0 / 30%);
  background: transparent;
  color: var(--ink);
}

.button-ghost-dark:hover {
  border-color: rgb(0 0 0 / 60%);
  background: rgb(0 0 0 / 5%);
}

.header-sign {
  min-height: 40px;
  padding: 11px 16px;
  border-radius: 0;
  font-size: .875rem;
}

.site-header .button-ghost-dark {
  min-height: 40px;
  padding: 11px 16px;
  border-radius: 0;
  font-size: .875rem;
}

.button-disabled {
  width: 100%;
  border-color: #cfc7b8;
  background: #e7ddcc;
  box-shadow: none;
  color: #756858;
  cursor: not-allowed;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 88px 5vw 112px;
  background: var(--paper-soft);
  color: var(--ink);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: none;
}

.hero-shade {
  background: none;
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: clamp(76px, 9vh, 108px);
  z-index: 2;
  width: min(calc(100% - 40px), 460px);
  max-width: 760px;
  transform: translateX(-50%);
}

.hero-title {
  max-width: 750px;
  color: var(--ink);
  font-family: var(--font-hero-title);
  font-size: clamp(4.1rem, 8.4vw, 8.7rem);
  font-weight: 400;
  line-height: .92;
  text-transform: none;
}

.section-number,
.section-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 1rem;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 660px;
  color: rgb(21 23 26 / 76%);
  font-size: 1.25rem;
}

.hero-actions {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 0;
}

.hero-actions .button {
  min-height: 60px;
  min-width: 168px;
  padding: 18px 30px;
  font-size: 1.05rem;
}

.hero-actions .button-gold {
  display: none;
}

@keyframes fixed-learn-cue {
  0%,
  100% {
    opacity: .56;
    translate: 0 0;
  }
  50% {
    opacity: 1;
    translate: 0 4px;
  }
}

.quote-section,
.pressure-section,
.faq-section,
.sign-main > section {
  padding: 94px 5vw;
}

.home-page main > section {
  height: calc(100svh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.home-page main > section:last-child {
  scroll-snap-stop: normal;
}

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

.slide-stars {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding-block: clamp(52px, 9svh, 94px);
  background: #101214;
  color: var(--white);
}

.slide-stars::before,
.projection-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.slide-stars::before {
  background-image: url("slide-02-freedom-monument-bg.png");
}

.slide-stars::after,
.projection-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.slide-stars::after {
  background:
    linear-gradient(90deg, rgb(14 15 17 / 68%) 0%, rgb(14 15 17 / 34%) 46%, rgb(14 15 17 / 14%) 100%),
    linear-gradient(0deg, rgb(6 7 8 / 28%) 0%, transparent 42%);
}

.quote-layout,
.pressure-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: start;
}

.quote-layout > *,
.pressure-layout > *,
.faq-layout > * {
  min-width: 0;
}

.section-intro {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.statement {
  margin: 0;
  padding: 34px 0 0;
  border-top: 3px solid var(--gold);
}

.statement-only {
  position: relative;
  z-index: 2;
  width: min(100%, 1020px);
  padding: 0;
  border-top: 0;
}

.statement-only blockquote {
  max-width: 920px;
}

.slide-stars .statement-only blockquote {
  font-size: clamp(2.15rem, min(4vw, 6.6svh), 4.85rem);
}

.slide-stars .section-kicker {
  color: var(--gold);
}

.statement-attribution {
  margin: 22px 0 0;
}

.statement blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 4.85rem);
  font-weight: 500;
  line-height: .98;
  text-shadow: 0 8px 34px rgb(0 0 0 / 48%);
}

.statement blockquote p {
  margin-bottom: .45em;
}

.statement blockquote p:last-child {
  margin-bottom: 0;
}

.statement figcaption {
  margin-top: 22px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pressure-section {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.projection-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(420px, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #101214;
}

.projection-section::before {
  background-image: url("slide-03-freedom-monument-migrants-bg.png");
}

.projection-section::after {
  background:
    linear-gradient(90deg, rgb(18 6 9 / 72%) 0%, rgb(16 18 20 / 38%) 46%, rgb(16 18 20 / 20%) 100%),
    linear-gradient(0deg, rgb(6 7 8 / 30%) 0%, transparent 42%);
}

.projection-copy,
.projection-chart {
  position: relative;
  z-index: 2;
}

.projection-copy h2 {
  max-width: 760px;
  font-size: clamp(3.6rem, 7vw, 7.4rem);
  line-height: .88;
  text-transform: uppercase;
}

.projection-copy .section-intro {
  max-width: 640px;
}

.pressure-section .section-intro {
  color: rgb(255 255 255 / 74%);
}

.projection-chart {
  min-width: 0;
  padding: clamp(16px, 2vw, 28px);
}

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

.projection-grid-line {
  fill: none;
  stroke: rgb(255 255 255 / 12%);
  stroke-width: 1;
}

.projection-area {
  fill: url("#projection-fill");
}

.projection-curve {
  fill: none;
  stroke: url("#projection-line");
  stroke-linecap: round;
  stroke-width: 13;
  filter: drop-shadow(0 0 18px rgb(180 136 66 / 42%));
}

.projection-point {
  fill: var(--danger);
  stroke: var(--gold-light);
  stroke-width: 5;
}

.projection-point-end {
  fill: var(--gold-light);
  filter: drop-shadow(0 0 18px rgb(180 136 66 / 72%));
}

.projection-year {
  fill: rgb(255 255 255 / 70%);
  font-size: 48px;
  text-anchor: middle;
}

.projection-year-end {
  fill: var(--gold-light);
  font-size: 82px;
}

.projection-wordmark {
  fill: rgb(180 136 66 / 58%);
  font-size: 34px;
  text-anchor: end;
  letter-spacing: .16em;
}

.projection-axis-label,
.projection-scale,
.projection-value {
  font-family: var(--font-body);
}

.projection-axis-label {
  fill: rgb(255 255 255 / 80%);
  font-size: 23px;
  font-weight: 600;
}

.projection-scale {
  fill: rgb(255 255 255 / 48%);
  font-size: 24px;
  font-weight: 600;
  text-anchor: end;
}

.projection-value {
  fill: var(--white);
  font-size: 32px;
  font-weight: 700;
  paint-order: stroke;
  stroke: rgb(16 18 20 / 80%);
  stroke-width: 8px;
  text-anchor: middle;
}

.projection-value-end {
  fill: var(--gold-light);
  font-size: 42px;
}

.projection-note {
  max-width: 620px;
  margin: -8px 0 0 auto;
  color: rgb(255 255 255 / 58%);
  font-size: .9rem;
  text-align: right;
}

.evidence-grid {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.evidence-grid article {
  padding: 20px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
  background: rgb(255 255 255 / 6%);
}

.evidence-grid span,
.sign-grid span,
.sign-status span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.evidence-grid strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--roman);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

.evidence-grid p {
  margin: 12px 0 0;
  color: rgb(255 255 255 / 72%);
}

.data-note {
  margin: 18px 0 0;
  color: rgb(255 255 255 / 58%);
  font-size: .82rem;
}

.data-note span {
  color: rgb(255 255 255 / 82%);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.pressure-visual {
  position: relative;
  min-height: 620px;
  border-left: 1px solid rgb(255 255 255 / 14%);
  background:
    radial-gradient(circle at 62% 40%, rgb(180 136 66 / 26%), transparent 30%),
    linear-gradient(160deg, rgb(255 255 255 / 8%), transparent);
}

.pressure-line {
  position: absolute;
  right: 12%;
  left: 12%;
  height: 38px;
  transform-origin: right center;
  border: 1px solid rgb(180 136 66 / 42%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgb(180 136 66 / 74%));
  animation: pressure-pulse 5.4s ease-in-out infinite;
}

.line-a {
  top: 28%;
}

.line-b {
  top: 46%;
  animation-delay: .7s;
}

.line-c {
  top: 64%;
  animation-delay: 1.4s;
}

.pressure-core {
  position: absolute;
  right: 8%;
  top: 50%;
  width: 190px;
  transform: translateY(-50%);
  display: grid;
  gap: 10px;
}

.pressure-core span {
  padding: 13px 14px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 8px;
  background: rgb(10 11 12 / 72%);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes pressure-pulse {
  0%,
  100% {
    opacity: .5;
    transform: scaleX(.84);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.faq-section {
  background: var(--paper-soft);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.quick-points {
  max-width: 650px;
  margin: 22px 0;
  padding-left: 20px;
}

.quick-points li {
  margin: 11px 0;
}

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

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.18;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 400;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 24px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 5vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .86rem;
  scroll-snap-align: end;
  scroll-snap-stop: normal;
}

.site-footer p {
  max-width: 780px;
  margin: 0;
}

.floating-learn-cta,
.mobile-sign-cta {
  display: block;
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom));
  left: auto;
  z-index: 90;
  transform: none;
  width: 168px;
  min-height: 50px;
  padding: 15px 18px;
  box-shadow: none;
  border-radius: 999px;
  font-size: .98rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.floating-learn-cta {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgb(21 23 26 / 30%);
  background: rgb(250 250 250 / 92%);
  box-shadow: none;
  color: rgb(21 23 26 / 88%);
  text-decoration: none;
  text-shadow: none;
  pointer-events: auto;
  backdrop-filter: none;
  transition: opacity .16s ease, visibility .16s ease, background-color .16s ease, border-color .16s ease, color .16s ease, transform .2s ease;
}

.floating-learn-cta:hover {
  border-color: rgb(21 23 26 / 60%);
  background: var(--white);
  box-shadow: none;
  color: var(--ink);
  text-decoration: none;
}

.floating-learn-cta.is-on-hero {
  border-color: rgb(21 23 26 / 30%);
  background: rgb(250 250 250 / 92%);
  box-shadow: none;
}

.floating-learn-cta.is-on-hero:hover {
  border-color: rgb(21 23 26 / 60%);
  background: var(--white);
  box-shadow: none;
}

.floating-learn-cta:active {
  transform: translateX(-50%);
  box-shadow: none;
}

.floating-learn-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.floating-learn-cta-icon {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: rgb(21 23 26 / 70%);
  transform: rotate(45deg) translateY(-7px);
  animation: fixed-learn-cue 1.8s ease-in-out infinite;
}

.mobile-sign-cta {
  right: clamp(24px, 3vw, 42px);
  border: 1px solid var(--ink);
  background: var(--ink);
  box-shadow: none;
  color: var(--white);
  pointer-events: auto;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .2s ease;
}

.mobile-sign-cta:hover {
  border-color: rgb(21 23 26 / 80%);
  background: rgb(21 23 26 / 80%);
  text-decoration: none;
}

.mobile-sign-cta:active {
  box-shadow: none;
}

.mobile-sign-cta.show {
  transform: none;
  pointer-events: auto;
}

.sign-page {
  background: var(--paper-soft);
}

.sign-main {
  max-width: 1240px;
  margin: 0 auto;
}

.sign-hero {
  padding-top: 112px !important;
}

.sign-hero h1 {
  max-width: 880px;
  color: var(--ink);
}

.sign-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.22rem;
}

.sign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 0 !important;
}

.sign-grid article {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.sign-grid h2 {
  font-size: 1.82rem;
  line-height: 1.08;
}

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

.process-panel {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 42px;
  background: var(--ink);
  color: var(--white);
}

.process-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
  background: rgb(255 255 255 / 6%);
}

.process-list b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--ink);
}

.sign-status {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  gap: 28px;
  align-items: center;
}

.sign-status h2,
.sign-status p {
  max-width: 720px;
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .floating-learn-cta-icon {
    animation: none !important;
  }
}

@media (max-width: 1050px) {
  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3rem;
  }

  .quote-layout,
  .pressure-layout,
  .faq-layout,
  .projection-section,
  .process-panel,
  .sign-status {
    grid-template-columns: 1fr;
  }

  .projection-section {
    align-content: center;
    gap: 22px;
  }

  .projection-copy h2 {
    max-width: 840px;
  }

  .projection-chart {
    width: min(100%, 760px);
    margin: 0 auto;
    padding: 0;
  }

  .pressure-visual {
    min-height: 380px;
    border-left: 0;
    border-top: 1px solid rgb(255 255 255 / 14%);
  }

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

  .sign-grid article {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  html {
    --header-h: 0px;
    scroll-padding-top: 0;
  }

  body {
    padding-bottom: 150px;
  }

  .site-header-inner {
    padding-top: 14px;
  }

  .floating-learn-cta,
  .mobile-sign-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    right: 16px;
    left: 16px;
    width: auto;
    min-height: 58px;
    padding: 18px;
    font-size: 1rem;
  }

  .floating-learn-cta {
    bottom: calc(14px + env(safe-area-inset-bottom));
    transform: none;
  }

  .floating-learn-cta:active {
    transform: none;
  }

  .mobile-sign-cta {
    bottom: calc(86px + env(safe-area-inset-bottom));
    transform: translateY(calc(100% + 88px));
    pointer-events: none;
  }

  .mobile-sign-cta.show {
    transform: none;
    pointer-events: auto;
  }

  .brand-logo {
    height: 40px;
    max-width: 218px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero {
    min-height: calc(100svh - var(--header-h));
    align-items: end;
    padding: 52px 20px 92px;
    background: #050504;
  }

  .hero-image {
    object-fit: cover;
    object-position: center;
  }

  .hero-shade {
    background: none;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(3.25rem, 15vw, 5.05rem);
    line-height: .94;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-actions .button {
    display: inline-flex;
    min-height: 58px;
    min-width: 0;
    padding: 18px 24px;
    font-size: 1rem;
  }

  .hero-actions .button-gold {
    display: none;
  }

  .hero-content {
    bottom: 74px;
    width: calc(100% - 40px);
  }

  .quote-section,
  .pressure-section,
  .faq-section,
  .sign-main > section {
    padding: 64px 20px;
  }

  .home-page main > section {
    min-height: calc(100svh - var(--header-h));
  }

  .slide-stars {
    align-items: center;
    padding-top: clamp(34px, 7svh, 56px);
    padding-bottom: clamp(32px, 6svh, 42px);
  }

  .slide-stars::before {
    background-image: url("slide-02-freedom-monument-bg-no-fade-mobile.png");
  }

  .projection-section::before {
    background-image: url("slide-03-freedom-monument-migrants-bg-no-fade-mobile.png");
  }

  .slide-stars::before,
  .projection-section::before {
    background-size: cover;
  }

  .slide-stars::after,
  .projection-section::after {
    display: none;
  }

  .statement-only blockquote {
    max-width: 100%;
  }

  .statement blockquote {
    font-size: clamp(2.05rem, 9.2vw, 3.35rem);
    line-height: .97;
  }

  .slide-stars .statement-only blockquote {
    font-size: clamp(1.72rem, min(8.4vw, 5.2svh), 3.05rem);
  }

  .slide-stars .statement-only blockquote,
  .projection-copy .section-intro,
  .projection-note {
    width: fit-content;
    padding: .24em .32em .3em;
    border-radius: 6px;
    background: rgb(10 11 12 / 58%);
  }

  .projection-section {
    align-content: center;
    padding-top: 48px;
    padding-bottom: 42px;
  }

  .projection-copy h2 {
    font-size: clamp(2.55rem, 12vw, 4.35rem);
  }

  .projection-copy .section-intro {
    font-size: .98rem;
  }

  .projection-year {
    font-size: 56px;
  }

  .projection-year-end {
    font-size: 92px;
  }

  .projection-note {
    max-width: 100%;
    margin-top: -4px;
    font-size: .82rem;
    text-align: left;
  }

  .faq-section {
    align-items: stretch;
  }

  .faq-layout {
    height: 100%;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 16px;
    overflow: hidden;
  }

  .faq-layout > div:first-child {
    min-height: 0;
  }

  .quick-points {
    max-height: 24vh;
    margin: 14px 0;
    overflow: auto;
    padding-right: 4px;
    font-size: .92rem;
  }

  .quick-points li {
    margin: 7px 0;
  }

  .faq-list {
    min-height: 0;
    overflow: auto;
    padding-right: 2px;
  }

  .pressure-line {
    right: 4%;
    left: 4%;
  }

  .pressure-core {
    right: 20px;
    width: 156px;
  }

  .evidence-grid strong {
    font-size: 2.35rem;
  }

  .faq-list summary {
    font-size: 1.25rem;
  }

  .site-footer {
    display: block;
    padding: 24px 20px;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 14px;
  }

  .sign-hero {
    padding-top: 76px !important;
  }

  .sign-hero p {
    font-size: 1.06rem;
  }

  .process-list li {
    grid-template-columns: 38px 1fr;
    padding: 13px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.78rem;
  }

  h2 {
    font-size: 2rem;
  }

  .button {
    width: 100%;
  }

  .pressure-core {
    width: 135px;
  }

  .statement blockquote {
    font-size: clamp(2rem, 10.5vw, 3.1rem);
  }

  .slide-stars .statement-only blockquote {
    font-size: clamp(1.55rem, min(8vw, 4.9svh), 2.65rem);
  }

  .projection-copy h2 {
    font-size: 2.32rem;
  }

  .projection-note {
    display: none;
  }
}
