:root {
  --bg: #080808;
  --surface: #11110f;
  --surface-soft: #151512;
  --text: #f3f1e9;
  --muted: rgba(243, 241, 233, 0.56);
  --faint: rgba(243, 241, 233, 0.34);
  --line: rgba(243, 241, 233, 0.12);
  --line-strong: rgba(243, 241, 233, 0.24);
  --acid: #c8ff38;
  --violet: #b8aaff;
  --max: 1440px;
  --reading: 980px;
  --hero-shift: 0px;
  --hero-shift-reverse: 0px;
  --hero-shift-soft: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 6%, rgba(184, 170, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 16% 38%, rgba(200, 255, 56, 0.045), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "PingFang TC", "Hiragino Sans GB", "Noto Sans CJK SC", "Microsoft YaHei", "Microsoft JhengHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

::selection {
  color: #080808;
  background: var(--acid);
}

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #080808;
  background: var(--acid);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.reading-progress {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.07);
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--acid), var(--violet));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 60;
  top: 2px;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 clamp(20px, 3vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity 260ms ease, background 260ms ease;
}

.brand {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand svg {
  width: 25px;
  height: 25px;
}

.tm {
  margin-left: 2px;
  color: var(--violet);
  font-size: 0.54em;
  vertical-align: super;
}

.header-status,
.back-link {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(200, 255, 56, 0.55);
}

.back-link {
  justify-self: end;
  transition: color 180ms ease;
}

.back-link:hover {
  color: var(--text);
}

.manifesto-hero {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 100svh;
  padding: 142px clamp(20px, 5vw, 78px) 70px;
  overflow: hidden;
  isolation: isolate;
}

.manifesto-hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 36%;
  content: "";
  background: linear-gradient(to top, var(--bg), transparent);
}

.manifesto-hero__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.52;
  filter: saturate(0.58) brightness(0.72) contrast(1.08);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  max-width: var(--max);
  margin-bottom: clamp(30px, 5vw, 72px);
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.manifesto-hero h1 {
  z-index: 2;
  max-width: 1220px;
  margin: 0;
  font-size: clamp(50px, 8.4vw, 132px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.manifesto-hero h1 span {
  display: block;
  transform: translate3d(0, var(--hero-shift), 0);
  will-change: transform;
}

.manifesto-hero h1 span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 241, 233, 0.78);
  transform: translate3d(clamp(14px, 4vw, 64px), var(--hero-shift-reverse), 0);
}

.manifesto-hero h1 span:nth-child(3) {
  transform: translate3d(clamp(0px, 1.6vw, 24px), var(--hero-shift-soft), 0);
}

.hero-chinese {
  z-index: 2;
  margin: clamp(30px, 5vw, 64px) 0 0;
  color: var(--acid);
  font-family: "Songti TC", "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  font-size: clamp(20px, 2.6vw, 36px);
  letter-spacing: 0.18em;
}

.hero-thesis {
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: clamp(18px, 4vw, 72px);
  margin-top: clamp(44px, 7vw, 96px);
  color: var(--muted);
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 28px);
}

.hero-thesis p {
  margin: 0;
}

.begin-link {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 430px);
  margin-top: clamp(40px, 6vw, 76px);
  padding: 17px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.begin-link span:last-child {
  color: var(--acid);
  font-size: 18px;
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  top: 15%;
  right: -9vw;
  width: clamp(300px, 44vw, 700px);
  aspect-ratio: 1;
  opacity: 0.58;
  transform: rotate(-12deg);
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow:
    inset 0 0 100px rgba(184, 170, 255, 0.05),
    0 0 120px rgba(184, 170, 255, 0.04);
}

.orbit-ring::before,
.orbit-ring::after {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px solid rgba(243, 241, 233, 0.08);
  border-radius: 50%;
}

.orbit-ring::after {
  inset: 28%;
}

.orbit-axis {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background: rgba(243, 241, 233, 0.08);
  transform: translate(-50%, -50%);
}

.orbit-axis-x {
  width: 140%;
  height: 1px;
}

.orbit-axis-y {
  width: 1px;
  height: 140%;
}

.orbit-dot {
  position: absolute;
  top: 48%;
  left: 48%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 30px rgba(200, 255, 56, 0.55);
  animation: slow-orbit 24s linear infinite;
}

@keyframes slow-orbit {
  from { transform: rotate(0deg) translateX(clamp(130px, 20vw, 320px)) rotate(0deg); }
  to { transform: rotate(360deg) translateX(clamp(130px, 20vw, 320px)) rotate(-360deg); }
}

.reader-shell {
  display: grid;
  grid-template-columns: minmax(180px, 250px) minmax(0, var(--reading));
  justify-content: space-between;
  gap: clamp(38px, 7vw, 120px);
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 90px 0 150px;
  border-top: 1px solid var(--line);
}

.reader-rail {
  align-self: start;
  position: sticky;
  top: 116px;
  padding-right: 28px;
}

.rail-heading {
  margin-bottom: 24px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.reader-rail li {
  border-bottom: 1px solid var(--line);
}

.reader-rail a {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 8px;
  padding: 14px 0;
  color: var(--muted);
  font-size: 12px;
  transition: color 180ms ease, padding-left 180ms ease;
}

.reader-rail a span {
  color: var(--faint);
  font-variant-numeric: tabular-nums;
}

.reader-rail a:hover,
.reader-rail a.is-active {
  padding-left: 7px;
  color: var(--text);
}

.reader-rail a.is-active span {
  color: var(--acid);
}

.rail-note {
  margin: 28px 0 0;
  color: var(--faint);
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.55;
}

.manifesto-reader {
  min-width: 0;
}

.reader-controls {
  position: sticky;
  z-index: 30;
  top: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-bottom: 36px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 15, 13, 0.86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.language-switcher {
  display: flex;
  gap: 4px;
}

.language-switcher button,
.quiet-toggle {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.03em;
  transition: color 180ms ease, background 180ms ease;
}

.language-switcher button:hover,
.quiet-toggle:hover {
  color: var(--text);
}

.language-switcher button[aria-pressed="true"] {
  color: #080808;
  background: var(--text);
}

.quiet-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quiet-icon {
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.quiet-toggle[aria-pressed="true"] {
  color: var(--acid);
}

.quiet-toggle[aria-pressed="true"] .quiet-icon {
  background: var(--acid);
  box-shadow: 0 0 12px rgba(200, 255, 56, 0.4);
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.chapter {
  scroll-margin-top: 112px;
  padding: clamp(80px, 11vw, 156px) 0;
  border-top: 1px solid var(--line);
}

.reader-controls + .chapter {
  border-top: 0;
  padding-top: 42px;
}

.chapter-heading {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 20px;
  margin-bottom: clamp(54px, 8vw, 104px);
}

.chapter-index {
  padding-top: 7px;
  color: var(--acid);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.14em;
}

.chapter-heading p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chapter-heading h2 {
  margin: 0;
  font-size: clamp(40px, 5.8vw, 78px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.045em;
  word-spacing: 0.025em;
  text-wrap: balance;
}

.text-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 72px);
  padding: clamp(30px, 4vw, 52px) 0;
  border-top: 1px solid var(--line);
}

.text-pair p,
.truth-protocol p,
.less-more p,
.protect-statement p,
.movement-lines p {
  margin: 0 0 1.15em;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", "Songti TC", "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.55;
  text-wrap: pretty;
}

.manifesto-zh {
  color: var(--text);
}

.manifesto-en {
  color: var(--muted);
}

.text-pair .opening {
  font-size: clamp(27px, 3.2vw, 42px);
  line-height: 1.28;
}

.text-pair .declaration {
  margin-top: 1.25em;
  color: var(--text);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.manifesto-callout {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.manifesto-callout span {
  padding: 11px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  font-size: clamp(12px, 1.3vw, 15px);
}

.manifesto-callout span:last-child {
  color: #080808;
  background: var(--acid);
  border-color: var(--acid);
}

.truth-protocol {
  margin: 40px 0;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(200, 255, 56, 0.05), transparent 38%),
    var(--surface);
}

.truth-title {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(25px, 3vw, 40px) !important;
  font-weight: 700;
  line-height: 1.18 !important;
}

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

.truth-grid > div {
  min-height: 190px;
  padding: 24px 26px 20px 0;
  border-bottom: 1px solid var(--line);
}

.truth-grid > div:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.truth-grid > div:nth-child(even) {
  padding-left: 28px;
}

.truth-grid > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.truth-grid > div > span {
  color: var(--acid);
  font-size: 10px;
}

.truth-grid p {
  margin-top: 22px;
  font-size: clamp(18px, 1.8vw, 24px);
}

.less-more {
  margin-top: 42px;
  border-top: 1px solid var(--line-strong);
}

.less-more > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.less-more p {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.25;
}

.less-more strong {
  color: var(--acid);
  font-weight: 500;
}

.protect-statement {
  position: relative;
  margin: 52px 0;
  padding: clamp(34px, 5vw, 70px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.protect-statement::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(200, 255, 56, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(200, 255, 56, 0.025),
    0 0 0 62px rgba(200, 255, 56, 0.018);
}

.protect-statement p {
  position: relative;
  z-index: 1;
  max-width: 790px;
  margin-bottom: 1.5em;
  font-size: clamp(27px, 3.6vw, 52px);
  line-height: 1.23;
  letter-spacing: -0.025em;
}

.protect-statement p:last-child {
  margin: 0 0 0 auto;
}

.protect-statement strong {
  color: var(--text);
}

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

.ownership-grid p {
  min-height: 190px;
  margin: 0;
  padding: clamp(26px, 4vw, 52px);
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  font-size: clamp(32px, 5vw, 66px);
  font-weight: 520;
  line-height: 1;
  letter-spacing: -0.055em;
}

.ownership-grid p:nth-child(3) {
  color: #080808;
  background: var(--acid);
}

.slow-sequence {
  margin-top: 74px;
}

.slow-sequence > div {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.slow-sequence span {
  color: var(--faint);
  font-size: 10px;
}

.slow-sequence strong {
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.movement-lines {
  margin-top: 18px;
  border-top: 1px solid var(--line-strong);
}

.movement-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(34px, 5vw, 62px) 0;
  border-bottom: 1px solid var(--line);
}

.movement-line p {
  margin: 0;
  font-size: clamp(23px, 2.7vw, 37px);
  line-height: 1.32;
}

.movement-line p span,
.movement-line p strong {
  display: block;
}

.movement-line p span {
  color: var(--muted);
}

.movement-line p strong {
  margin-top: 0.55em;
  color: var(--text);
  font-weight: 500;
}

.movement-line:last-child p strong {
  color: var(--acid);
}

.closing {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 92svh;
  padding: 100px clamp(20px, 5vw, 78px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 77% 46%, rgba(184, 170, 255, 0.15), transparent 27rem),
    #090909;
}

.closing::before {
  position: absolute;
  top: 50%;
  right: -10vw;
  width: 52vw;
  min-width: 420px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow:
    0 0 0 4vw rgba(255, 255, 255, 0.01),
    0 0 0 8vw rgba(255, 255, 255, 0.008);
}

.closing-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 40px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.closing-word {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(68px, 11vw, 170px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.closing-word em {
  color: var(--acid);
  font-style: normal;
}

.closing-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 76px;
}

.closing-actions a {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  min-width: min(100%, 280px);
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.closing-actions a:hover {
  color: #080808;
  background: var(--text);
  border-color: var(--text);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 38px clamp(20px, 5vw, 78px) 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html[data-language="zh"] .manifesto-en,
html[data-language="en"] .manifesto-zh {
  display: none;
}

html[data-language="zh"] .text-pair,
html[data-language="en"] .text-pair,
html[data-language="zh"] .truth-title,
html[data-language="en"] .truth-title,
html[data-language="zh"] .less-more > div,
html[data-language="en"] .less-more > div,
html[data-language="zh"] .movement-line,
html[data-language="en"] .movement-line {
  grid-template-columns: minmax(0, 760px);
}

html[data-language="zh"] .text-pair,
html[data-language="zh"] .truth-title,
html[data-language="zh"] .less-more > div,
html[data-language="zh"] .movement-line {
  justify-content: start;
}

html[data-language="en"] .text-pair,
html[data-language="en"] .truth-title,
html[data-language="en"] .less-more > div,
html[data-language="en"] .movement-line {
  justify-content: end;
}

body.quiet-mode {
  background: #050505;
}

body.quiet-mode::before,
body.quiet-mode .hero-orbit {
  opacity: 0;
}

body.quiet-mode .site-header {
  background: rgba(5, 5, 5, 0.92);
}

body.quiet-mode .reader-rail {
  opacity: 0.18;
}

body.quiet-mode .reader-rail:hover,
body.quiet-mode .reader-rail:focus-within {
  opacity: 1;
}

body.quiet-mode .reader-controls {
  border-color: rgba(243, 241, 233, 0.07);
  background: rgba(5, 5, 5, 0.92);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-status {
    display: none;
  }

  .reader-shell {
    grid-template-columns: 1fr;
    width: min(calc(100% - 40px), var(--reading));
  }

  .reader-rail {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand svg {
    width: 28px;
    height: 28px;
  }

  .manifesto-hero {
    min-height: 94svh;
    padding-top: 118px;
  }

  .manifesto-hero h1 {
    font-size: clamp(42px, 13.5vw, 70px);
    line-height: 0.94;
    letter-spacing: -0.045em;
  }

  .manifesto-hero__image {
    object-position: 68% center;
    opacity: 0.36;
  }

  .manifesto-hero h1 span:nth-child(2) {
    transform: translate3d(10px, var(--hero-shift-reverse), 0);
  }

  .manifesto-hero h1 span:nth-child(3) {
    transform: translate3d(0, var(--hero-shift-soft), 0);
  }

  .hero-meta span:last-child {
    display: none;
  }

  .hero-orbit {
    top: 28%;
    right: -48vw;
    width: 94vw;
    opacity: 0.34;
  }

  .hero-thesis {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .reader-shell {
    padding-top: 48px;
  }

  .reader-controls {
    top: 78px;
    align-items: stretch;
    border-radius: 18px;
  }

  .language-switcher {
    flex: 1;
  }

  .language-switcher button {
    flex: 1;
    padding: 0 8px;
  }

  .quiet-label {
    display: none;
  }

  .quiet-toggle {
    width: 40px;
    padding: 0;
    justify-content: center;
  }

  .chapter {
    scroll-margin-top: 96px;
  }

  .chapter-heading {
    grid-template-columns: 38px 1fr;
  }

  .text-pair,
  .truth-title,
  .less-more > div,
  .movement-line {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .truth-grid > div,
  .truth-grid > div:nth-child(odd),
  .truth-grid > div:nth-child(even) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .truth-grid > div:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

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

  .ownership-grid p {
    min-height: 138px;
  }

  .slow-sequence > div {
    grid-template-columns: 38px 1fr;
  }

  .closing-word {
    font-size: clamp(72px, 22vw, 120px);
  }

  footer {
    flex-direction: column;
  }
}

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

  .orbit-dot {
    animation: none;
  }

  .manifesto-hero h1 span {
    transform: none !important;
  }

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

  .reader-rail a,
  .site-header,
  .language-switcher button,
  .quiet-toggle,
  .closing-actions a {
    transition: none;
  }
}
