:root {
  --ink: #090a08;
  --ink-soft: #11120f;
  --charcoal: #191a16;
  --paper: #d8d4c8;
  --paper-bright: #efede5;
  --paper-dim: #aba89e;
  --ash: #7b7b73;
  --line: rgba(221, 217, 205, 0.2);
  --line-strong: rgba(235, 232, 220, 0.4);
  --blood: #8f251f;
  --blood-bright: #b5382f;
  --brass: #927e55;
  --content: 1180px;
  --serif: "Noto Serif TC", "Songti TC", "STSong", "Times New Roman", serif;
  --sans:
    "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", system-ui, sans-serif;
  --display: "Baskerville", "Songti TC", "STSong", serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px) 0
      0 / 72px 72px,
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px) 0 0 / 72px
      72px,
    var(--ink);
  font-family: var(--serif);
  line-height: 1.9;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  z-index: 100;
  inset: 0 auto 0 0;
  width: 1px;
  margin-left: 22px;
  background: rgba(255, 255, 255, 0.12);
  content: "";
  pointer-events: none;
}

body::after {
  right: 0;
  left: auto;
  margin-right: 22px;
  margin-left: 0;
}

::selection {
  color: var(--paper-bright);
  background: var(--blood);
}

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

a {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--paper-bright);
  outline-offset: 5px;
}

.page-noise {
  position: fixed;
  z-index: 99;
  inset: 0;
  opacity: 0.11;
  background:
    repeating-radial-gradient(
      circle at 31% 47%,
      rgba(255, 255, 255, 0.22) 0 0.45px,
      transparent 0.7px 3px
    ),
    repeating-linear-gradient(
      117deg,
      transparent 0 9px,
      rgba(255, 255, 255, 0.04) 10px,
      transparent 11px 17px
    );
  pointer-events: none;
  mix-blend-mode: soft-light;
}

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

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--blood-bright);
  box-shadow: 0 0 18px rgba(181, 56, 47, 0.7);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 50%;
  padding: 8px 18px;
  color: var(--ink);
  background: var(--paper-bright);
  transform: translate(-50%, -160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.site-header {
  position: fixed;
  z-index: 110;
  top: 18px;
  right: 36px;
  left: 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 64px;
  padding: 10px 18px;
  border: 1px solid rgba(238, 235, 224, 0.14);
  background: rgba(9, 10, 8, 0.82);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(238, 235, 224, 0.25);
  background: rgba(9, 10, 8, 0.94);
}

.archive-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper-bright);
  text-decoration: none;
  line-height: 1.15;
}

.archive-brand b {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
}

.archive-brand small {
  display: block;
  margin-top: 5px;
  color: var(--ash);
  font-family: var(--sans);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
}

.archive-brand__mark {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid var(--paper-dim);
  transform: rotate(45deg);
}

.archive-brand__mark::before,
.archive-brand__mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--paper-dim);
  content: "";
  transform: translate(-50%, -50%);
}

.archive-brand__mark::before {
  width: 44px;
  height: 1px;
}

.archive-brand__mark::after {
  width: 1px;
  height: 44px;
}

.archive-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 28px);
  padding-inline: 24px;
}

.archive-nav a {
  position: relative;
  color: var(--paper-dim);
  font-family: var(--sans);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 140ms ease;
}

.archive-nav a::after {
  position: absolute;
  right: 50%;
  bottom: -9px;
  left: 50%;
  height: 1px;
  background: var(--blood-bright);
  content: "";
  transition:
    right 160ms ease,
    left 160ms ease;
}

.archive-nav a:hover,
.archive-nav a.is-active {
  color: var(--paper-bright);
}

.archive-nav a.is-active::after {
  right: 0;
  left: 0;
}

.archive-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ash);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.status-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blood-bright);
  box-shadow: 0 0 0 5px rgba(181, 56, 47, 0.1);
}

.nav-toggle {
  display: none;
}

.chapter {
  position: relative;
  padding: 140px max(48px, calc((100vw - var(--content)) / 2));
}

.hero {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding-top: 150px;
  padding-bottom: 56px;
  isolation: isolate;
}

.hero-art {
  position: absolute;
  z-index: -3;
  inset: 0;
  overflow: hidden;
  background: #050605;
}

.hero-art::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(9, 10, 8, 0.96) 0%,
      rgba(9, 10, 8, 0.83) 35%,
      rgba(9, 10, 8, 0.46) 68%,
      rgba(9, 10, 8, 0.36) 100%
    ),
    linear-gradient(
      0deg,
      rgba(9, 10, 8, 0.92),
      transparent 42%,
      rgba(9, 10, 8, 0.35)
    );
  content: "";
}

.hero-art img {
  width: 100%;
  height: 100%;
  filter: saturate(0.72) contrast(1.12) brightness(0.8);
  object-fit: cover;
  object-position: center;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(146, 126, 85, 0.12),
      transparent 27%
    ),
    linear-gradient(110deg, rgba(9, 10, 8, 0.2) 40%, rgba(9, 10, 8, 0.82) 76%),
    repeating-linear-gradient(
      0deg,
      transparent 0 46px,
      rgba(255, 255, 255, 0.022) 47px
    );
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -18vw;
  bottom: -12vw;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(235, 232, 220, 0.05);
  border-radius: 50%;
  box-shadow:
    0 0 0 9vw rgba(235, 232, 220, 0.014),
    0 0 0 18vw rgba(235, 232, 220, 0.01);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.8fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 32px;
  color: var(--paper-dim);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.eyebrow span:first-child {
  padding: 7px 10px;
  border: 1px solid rgba(181, 56, 47, 0.65);
  color: #dfb0ab;
  background: rgba(143, 37, 31, 0.12);
}

.hero-kicker {
  margin: 0 0 4px;
  color: var(--paper-dim);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  letter-spacing: 0.15em;
}

.hero h1 {
  margin: 0;
  line-height: 0.88;
}

.hero-title-latin {
  display: block;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: clamp(5.6rem, 11vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

.hero-title-zh {
  display: block;
  margin-top: 19px;
  color: var(--brass);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0.52em;
}

.hero-lede {
  max-width: 670px;
  margin: 40px 0 0;
  color: var(--paper-dim);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.hero-oath {
  margin: 34px 0 0;
  padding: 0 0 0 24px;
  border-left: 2px solid var(--blood);
  color: var(--paper-bright);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.hero-oath p {
  margin: 0;
}

.file-entry {
  display: inline-flex;
  align-items: center;
  gap: 42px;
  margin-top: 42px;
  padding: 13px 18px;
  border: 1px solid var(--line-strong);
  color: var(--paper-bright);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition:
    color 140ms ease,
    background-color 140ms ease;
}

.file-entry:hover {
  color: var(--ink);
  background: var(--paper-bright);
}

.file-entry span:last-child {
  font-size: 1rem;
}

.hero-emblem {
  position: relative;
  justify-self: center;
  width: min(100%, 520px);
}

.hero-emblem__frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(239, 237, 229, 0.28);
  background: #000;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.55),
    0 0 0 12px rgba(239, 237, 229, 0.02);
  clip-path: polygon(8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%);
}

.hero-emblem__frame::after {
  position: absolute;
  inset: 0;
  border: 15px solid rgba(0, 0, 0, 0.22);
  content: "";
  pointer-events: none;
}

.hero-emblem__frame img {
  width: 100%;
  height: 100%;
  filter: contrast(1.05) brightness(0.96);
  object-fit: cover;
}

.hero-emblem__cross {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 138%;
  height: 52%;
  border: 1px solid rgba(239, 237, 229, 0.28);
  transform: translate(-50%, -50%);
}

.hero-emblem__cross::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 39%;
  height: 265%;
  border: 1px solid rgba(239, 237, 229, 0.28);
  content: "";
  transform: translate(-50%, -50%);
}

.hero-emblem__caption {
  margin: 22px 0 0;
  color: var(--ash);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-align: center;
}

.seal {
  position: absolute;
  z-index: 5;
  padding: 7px 12px;
  border: 2px solid var(--blood-bright);
  color: var(--blood-bright);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1;
  text-transform: uppercase;
}

.seal--upper {
  top: 6%;
  right: -5%;
  transform: rotate(8deg);
}

.seal--lower {
  bottom: 13%;
  left: -7%;
  transform: rotate(-7deg);
}

.dossier-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 64px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dossier-strip div {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.dossier-strip div:first-child {
  padding-left: 0;
}

.dossier-strip div:last-child {
  border-right: 0;
}

.dossier-strip dt,
.arrival-visual dt {
  color: var(--ash);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
}

.dossier-strip dd,
.arrival-visual dd {
  margin: 3px 0 0;
  color: var(--paper-bright);
  font-size: 0.88rem;
}

.dossier-strip .status-denied {
  color: #cf675f;
}

.chapter-heading {
  max-width: 880px;
  margin-bottom: 78px;
}

.chapter-heading--split {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(300px, 1fr);
  gap: 80px;
  align-items: end;
  max-width: none;
}

.chapter-index,
.record-label {
  margin: 0 0 16px;
  color: var(--blood-bright);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.chapter h2 {
  margin: 0;
  color: var(--paper-bright);
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.12;
}

.chapter-summary {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--paper-dim);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.chapter-heading--split .chapter-summary {
  margin: 0;
}

.origin-section {
  overflow: hidden;
  color: var(--charcoal);
  background:
    linear-gradient(rgba(25, 26, 22, 0.035) 1px, transparent 1px) 0 0 / 100%
      32px,
    linear-gradient(90deg, rgba(25, 26, 22, 0.022) 1px, transparent 1px) 0 0 /
      32px 100%,
    var(--paper);
}

.origin-section::before {
  position: absolute;
  top: 80px;
  right: -140px;
  color: rgba(25, 26, 22, 0.045);
  content: "Ⅰ";
  font-family: var(--display);
  font-size: 500px;
  line-height: 1;
}

.origin-section .chapter-index {
  color: var(--blood);
}

.origin-section h2 {
  color: var(--ink);
}

.origin-section .chapter-summary {
  color: #4b4b45;
}

.origin-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(360px, 0.9fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.planet-file {
  position: relative;
  min-height: 650px;
  margin: 0;
  padding: 60px 0 48px;
  border-top: 1px solid rgba(25, 26, 22, 0.3);
  border-bottom: 1px solid rgba(25, 26, 22, 0.3);
}

.planet-file::before,
.planet-file::after {
  position: absolute;
  top: -5px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--charcoal);
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.planet-file::before {
  left: 0;
}

.planet-file::after {
  right: 0;
}

.planet-cutaway {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  width: min(74vw, 510px);
  max-width: 90%;
  aspect-ratio: 1;
  border: 1px solid var(--charcoal);
  background: #151512;
  box-shadow:
    18px 22px 0 rgba(25, 26, 22, 0.08),
    0 30px 70px rgba(25, 26, 22, 0.22);
  transform: translate(-50%, -50%);
  clip-path: polygon(6% 0, 100% 0, 100% 94%, 94% 100%, 0 100%, 0 6%);
}

.planet-cutaway::after {
  position: absolute;
  inset: 0;
  border: 10px solid rgba(216, 212, 200, 0.14);
  box-shadow: inset 0 -60px 90px rgba(9, 10, 8, 0.25);
  content: "";
  pointer-events: none;
}

.planet-cutaway img {
  width: 100%;
  height: 100%;
  filter: saturate(0.7) contrast(1.06);
  object-fit: cover;
}

.planet-file__label {
  position: absolute;
  z-index: 3;
  color: #4b4b45;
  font-family: var(--sans);
  font-size: 0.65rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.planet-file__label span {
  display: block;
  color: var(--blood);
  font-weight: 700;
}

.planet-file__label::after {
  position: absolute;
  top: 50%;
  width: 72px;
  height: 1px;
  background: rgba(25, 26, 22, 0.45);
  content: "";
}

.planet-file__label--surface {
  top: 14%;
  left: 0;
}

.planet-file__label--surface::after {
  left: calc(100% + 12px);
}

.planet-file__label--hive {
  top: 48%;
  right: 0;
  text-align: right;
}

.planet-file__label--hive::after {
  right: calc(100% + 12px);
}

.planet-file__label--core {
  bottom: 15%;
  left: 0;
}

.planet-file__label--core::after {
  left: calc(100% + 12px);
}

.planet-file figcaption,
.helmet-file figcaption {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-align: center;
}

.prose-column {
  font-size: 1.03rem;
}

.prose-column p {
  margin: 0 0 26px;
}

.lead {
  color: var(--paper-bright);
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
  line-height: 1.8;
}

.origin-section .lead {
  color: var(--ink);
}

.classification-note {
  position: relative;
  margin-top: 46px;
  padding: 30px;
  border: 1px solid rgba(25, 26, 22, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.classification-note::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 54px;
  height: 3px;
  background: var(--blood);
  content: "";
}

.classification-note__code {
  display: block;
  margin-bottom: 16px;
  color: var(--blood);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.classification-note p {
  margin: 0;
  font-size: 1.08rem;
}

.classification-note .classification-note__verdict {
  color: var(--blood);
  font-weight: 700;
}

.loyalty-section {
  background:
    linear-gradient(
      90deg,
      transparent 49.95%,
      rgba(255, 255, 255, 0.025) 50%,
      transparent 50.05%
    ),
    var(--ink-soft);
}

.judgment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.judgment-card {
  position: relative;
  min-height: 315px;
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid var(--line);
  background: rgba(239, 237, 229, 0.035);
}

.judgment-card--hostile {
  border-color: rgba(181, 56, 47, 0.35);
  background: rgba(143, 37, 31, 0.06);
}

.judgment-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ash);
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
}

.approval-mark {
  padding: 5px 9px;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-weight: 700;
  transform: rotate(3deg);
}

.approval-mark--denied {
  border-color: var(--blood-bright);
  color: var(--blood-bright);
  transform: rotate(-4deg);
}

.judgment-card h3 {
  margin: 34px 0 16px;
  color: var(--paper-bright);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
}

.judgment-card > p {
  max-width: 610px;
  color: var(--paper-dim);
}

.redaction {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  color: var(--ash);
  font-family: var(--sans);
  font-size: 0.63rem;
}

.redaction i {
  flex: 1;
  max-width: 230px;
  height: 12px;
  background: #020202;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.judgment-card .margin-note {
  position: absolute;
  right: 30px;
  bottom: 14px;
  margin: 0;
  color: rgba(181, 56, 47, 0.7);
  font-size: 0.82rem;
  font-style: italic;
  transform: rotate(-2deg);
}

.rebellion-record {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 100px);
  margin-top: 120px;
  padding-top: 80px;
  border-top: 1px solid var(--line);
}

.rebellion-record__number {
  color: rgba(239, 237, 229, 0.08);
  font-family: var(--display);
  font-size: clamp(9rem, 19vw, 16rem);
  line-height: 0.75;
}

.narrative-art {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-strong);
  background: #020302;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  clip-path: polygon(3% 0, 100% 0, 100% 92%, 97% 100%, 0 100%, 0 8%);
}

.narrative-art::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(2, 3, 2, 0.78), transparent 24%),
    radial-gradient(circle at center, transparent 55%, rgba(2, 3, 2, 0.32));
  content: "";
  pointer-events: none;
}

.narrative-art img {
  width: 100%;
  height: auto;
  filter: saturate(0.72) contrast(1.06);
  object-fit: cover;
}

.narrative-art figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 14px;
  left: 22px;
  color: rgba(239, 237, 229, 0.72);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.narrative-art--declaration {
  margin: 42px 0 50px;
}

.narrative-art--war {
  margin: -16px 0 100px;
}

.narrative-art--war img {
  aspect-ratio: 2.12 / 1;
}

.rebellion-context {
  max-width: 780px;
  color: var(--paper-dim);
}

.declaration {
  margin: 54px 0;
  padding: 0;
  color: var(--paper-bright);
  font-size: clamp(1.45rem, 2.7vw, 2.45rem);
  line-height: 1.55;
}

.declaration p {
  margin: 0 0 7px;
}

.declaration p:nth-child(n + 3) {
  color: var(--paper-dim);
  font-size: 0.64em;
}

.formation-note {
  max-width: 740px;
  color: var(--paper-dim);
}

.atonement-word {
  margin: 28px 0 0;
  color: var(--paper-dim);
  font-size: 1.2rem;
}

.atonement-word b {
  display: block;
  margin-top: 3px;
  color: var(--blood-bright);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 1.1;
}

.war-section {
  overflow: hidden;
  background: #050605;
  isolation: isolate;
}

.war-backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.45;
  background:
    radial-gradient(circle at 85% 74%, rgba(143, 37, 31, 0.2), transparent 25%),
    repeating-linear-gradient(
      150deg,
      transparent 0 150px,
      rgba(235, 232, 220, 0.028) 151px 152px
    );
}

.war-backdrop span {
  position: absolute;
  width: 2px;
  height: 50%;
  background: linear-gradient(var(--line), transparent);
  transform: rotate(var(--angle));
  transform-origin: top;
}

.war-backdrop span:nth-child(1) {
  top: 4%;
  left: 11%;
  --angle: 31deg;
}

.war-backdrop span:nth-child(2) {
  top: 18%;
  left: 42%;
  --angle: -18deg;
}

.war-backdrop span:nth-child(3) {
  top: 39%;
  left: 78%;
  --angle: 28deg;
}

.war-backdrop span:nth-child(4) {
  top: 57%;
  left: 25%;
  --angle: -34deg;
}

.war-backdrop span:nth-child(5) {
  top: 70%;
  left: 62%;
  --angle: 13deg;
}

.chapter-heading--light {
  max-width: none;
}

.war-title-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}

.war-number {
  margin: 0;
  color: var(--blood);
  font-family: var(--display);
  font-size: clamp(10rem, 24vw, 22rem);
  line-height: 0.68;
  letter-spacing: -0.12em;
  text-shadow: 0 20px 80px rgba(143, 37, 31, 0.22);
}

.war-title-row .chapter-summary {
  margin-top: 24px;
}

.war-timeline {
  position: relative;
  max-width: 900px;
  margin: 70px 0 0 auto;
  padding: 0;
  list-style: none;
}

.war-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 128px;
  width: 1px;
  background: linear-gradient(
    var(--blood),
    var(--line) 12%,
    var(--line) 88%,
    var(--blood)
  );
  content: "";
}

.war-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 42px;
  min-height: 160px;
  padding-bottom: 54px;
}

.war-timeline li::before {
  position: absolute;
  top: 11px;
  left: 123px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--paper-dim);
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.war-year {
  color: var(--blood-bright);
  font-family: var(--sans);
  font-size: 0.67rem;
  letter-spacing: 0.13em;
}

.war-timeline h3 {
  margin: -6px 0 7px;
  color: var(--paper-bright);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 500;
}

.war-timeline p {
  margin: 0;
  color: var(--paper-dim);
}

.collapse-order {
  position: relative;
  margin-top: 100px;
  padding: clamp(36px, 6vw, 78px);
  border: 1px solid rgba(181, 56, 47, 0.45);
  background:
    linear-gradient(135deg, rgba(143, 37, 31, 0.12), transparent 36%),
    rgba(239, 237, 229, 0.025);
}

.collapse-order::before {
  position: absolute;
  top: -1px;
  left: 7%;
  width: 42%;
  height: 3px;
  background: var(--blood-bright);
  content: "";
}

.collapse-order__stamp {
  position: absolute;
  top: 45px;
  right: 50px;
  padding: 8px 12px;
  border: 2px solid var(--blood-bright);
  color: var(--blood-bright);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  transform: rotate(5deg);
}

.collapse-order h3 {
  max-width: 780px;
  margin: 14px 0 50px;
  color: var(--paper-bright);
  font-size: clamp(2.3rem, 4.8vw, 4.8rem);
  font-weight: 500;
  line-height: 1.25;
}

.narrative-art--collapse {
  margin: 0 0 54px;
}

.narrative-art--collapse img {
  aspect-ratio: 2 / 1;
}

.collapse-order__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
  gap: clamp(50px, 8vw, 120px);
}

.collapse-order__grid > div {
  color: var(--paper-dim);
}

.collapse-order__grid blockquote {
  margin: 0;
  color: var(--paper-bright);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
}

.collapse-order__grid blockquote p {
  margin: 0;
}

.collapse-order__grid cite {
  display: block;
  margin-top: 18px;
  color: var(--blood-bright);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.08em;
}

.verdict-section {
  color: var(--charcoal);
  background:
    linear-gradient(110deg, rgba(143, 37, 31, 0.04), transparent 35%),
    var(--paper);
}

.verdict-section h2 {
  color: var(--ink);
}

.verdict-section .chapter-summary {
  color: #4b4b45;
}

.transmission {
  border: 1px solid rgba(25, 26, 22, 0.55);
  background: var(--ink);
  box-shadow: 18px 18px 0 rgba(25, 26, 22, 0.07);
}

.transmission__header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ash);
  font-family: var(--sans);
  font-size: 0.61rem;
  letter-spacing: 0.1em;
}

.transmission__body {
  position: relative;
  padding: clamp(38px, 7vw, 80px);
  color: var(--paper-bright);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.6;
}

.transmission__body p {
  margin: 0;
}

.transmission__cursor {
  position: absolute;
  right: 30px;
  bottom: 28px;
  width: 13px;
  height: 23px;
  background: var(--blood-bright);
  animation: terminal-blink 1.1s steps(1) infinite;
}

@keyframes terminal-blink {
  50% {
    opacity: 0;
  }
}

.arrival-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: clamp(60px, 8vw, 120px);
  margin-top: 120px;
  align-items: center;
}

.arrival-visual {
  padding: 36px;
  border: 1px solid rgba(25, 26, 22, 0.28);
}

.arrival-visual__image {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(25, 26, 22, 0.25);
  background: var(--ink);
  clip-path: polygon(4% 0, 100% 0, 100% 93%, 96% 100%, 0 100%, 0 7%);
}

.arrival-visual__image::after {
  position: absolute;
  inset: 0;
  border: 8px solid rgba(216, 212, 200, 0.1);
  box-shadow: inset 0 0 60px rgba(9, 10, 8, 0.3);
  content: "";
  pointer-events: none;
}

.arrival-visual__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  filter: saturate(0.65) contrast(1.08);
  object-fit: cover;
}

.arrival-visual > p {
  font-size: 1.05rem;
}

.arrival-visual dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(25, 26, 22, 0.28);
}

.arrival-visual dl div {
  padding-right: 12px;
}

.arrival-visual dt {
  color: #64645e;
}

.arrival-visual dd {
  color: var(--ink);
  font-weight: 700;
}

.petition blockquote {
  margin: 30px 0;
  padding-left: 28px;
  border-left: 3px solid var(--blood);
  color: var(--ink);
  font-size: clamp(1.4rem, 2.5vw, 2.05rem);
  line-height: 1.65;
}

.petition blockquote p {
  margin: 0;
}

.petition > p:last-child {
  color: #4b4b45;
}

.decree {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 50px;
  margin-top: 120px;
  padding: clamp(38px, 6vw, 70px);
  border: 2px solid var(--charcoal);
  box-shadow:
    inset 0 0 0 7px var(--paper),
    inset 0 0 0 8px rgba(25, 26, 22, 0.25);
}

.decree__seal {
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  border: 4px double var(--blood);
  border-radius: 50%;
  color: var(--blood);
  transform: rotate(-8deg);
}

.decree__seal span {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 2px solid var(--blood);
  border-radius: 50%;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
}

.decree h3 {
  margin: 5px 0 24px;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
}

.decree ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 8px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.decree li {
  position: relative;
  padding-left: 22px;
}

.decree li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--blood);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.doctrine-section {
  background:
    radial-gradient(
      circle at 12% 62%,
      rgba(146, 126, 85, 0.09),
      transparent 28%
    ),
    var(--ink-soft);
}

.doctrine-layout {
  display: grid;
  grid-template-columns: minmax(460px, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.helmet-file {
  position: relative;
  min-height: 610px;
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(
      90deg,
      transparent 49.8%,
      var(--line) 50%,
      transparent 50.2%
    ),
    linear-gradient(transparent 49.8%, var(--line) 50%, transparent 50.2%),
    rgba(239, 237, 229, 0.02);
}

.helmet-file__image {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  width: min(70%, 420px);
  aspect-ratio: 0.88;
  border: 1px solid var(--line-strong);
  background: #000;
  transform: translate(-50%, -50%);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 90% 100%, 0 100%);
}

.helmet-file__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.15);
  transform-origin: 50% 18%;
}

.helmet-note {
  position: absolute;
  z-index: 2;
  color: var(--paper-dim);
  font-family: var(--sans);
  font-size: 0.62rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.helmet-note::after {
  position: absolute;
  top: 50%;
  width: 62px;
  height: 1px;
  background: var(--blood-bright);
  content: "";
}

.helmet-note--ears {
  top: 11%;
  right: 4%;
}

.helmet-note--ears::after {
  right: calc(100% + 10px);
}

.helmet-note--mask {
  top: 50%;
  left: 3%;
  text-align: right;
}

.helmet-note--mask::after {
  left: calc(100% + 10px);
}

.helmet-note--seal {
  right: 3%;
  bottom: 14%;
}

.helmet-note--seal::after {
  right: calc(100% + 10px);
}

.doctrine-copy > p:not(.lead) {
  color: var(--paper-dim);
}

.tactical-quote {
  margin: 42px 0 0;
  padding: 22px 0 22px 25px;
  border-left: 2px solid var(--blood);
  color: var(--paper-bright);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.doctrine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 100px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.narrative-art--doctrine {
  margin: 90px 0 0;
}

.narrative-art--doctrine img {
  aspect-ratio: 1.75 / 1;
  object-position: center 45%;
}

.doctrine-card {
  min-height: 280px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.doctrine-card > span {
  color: var(--blood-bright);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.doctrine-card h3 {
  margin: 50px 0 14px;
  color: var(--paper-bright);
  font-size: 1.35rem;
  font-weight: 500;
}

.doctrine-card p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 0.9rem;
}

@media (hover: hover) and (pointer: fine) {
  .doctrine-card:hover {
    background: rgba(239, 237, 229, 0.04);
    transform: translateY(-5px);
  }
}

.initiation {
  display: grid;
  grid-template-columns: 180px minmax(250px, 0.6fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: start;
  margin-top: 100px;
  padding: 45px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.initiation > p {
  margin: 0;
  color: var(--paper-dim);
}

.initiation blockquote {
  margin: 0;
  color: var(--paper-bright);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.5;
}

.initiation blockquote p {
  margin: 0;
}

.creed-section {
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background: #020302;
  isolation: isolate;
}

.creed-section::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(239, 237, 229, 0.08),
      transparent 25%
    ),
    radial-gradient(circle at 50% 50%, transparent, #020302 72%);
  content: "";
}

.creed-cross {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(88vw, 1000px);
  height: min(31vw, 350px);
  border: 1px solid rgba(239, 237, 229, 0.08);
  transform: translate(-50%, -50%);
}

.creed-cross::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34%;
  height: 270%;
  border: 1px solid rgba(239, 237, 229, 0.08);
  content: "";
  transform: translate(-50%, -50%);
}

.creed-content {
  width: min(100%, 880px);
}

.creed-content h2 {
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.creed-emblem {
  display: grid;
  overflow: hidden;
  width: min(78vw, 480px);
  aspect-ratio: 1 / 1;
  place-items: center;
  margin: 60px auto 0;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  clip-path: polygon(7% 0, 100% 0, 100% 93%, 93% 100%, 0 100%, 0 7%);
}

.creed-emblem img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
}

.creed-text {
  max-width: 700px;
  margin: 60px auto 0;
  color: var(--paper-dim);
}

.creed-text p {
  margin: 0 0 15px;
}

.creed-text .creed-command {
  margin-top: 35px;
  color: var(--paper-bright);
  font-size: 1.4rem;
}

.final-oath {
  display: flex;
  flex-direction: column;
  margin: 110px 0 0;
  color: var(--paper-bright);
  font-size: clamp(2.2rem, 5.3vw, 5.2rem);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.final-oath span:nth-child(2) {
  color: var(--brass);
}

.final-oath span:nth-child(3) {
  color: var(--blood-bright);
}

.unending {
  margin: 85px 0 0;
  color: var(--paper-dim);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: 0.08em;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 52px max(48px, calc((100vw - var(--content)) / 2));
  border-top: 1px solid var(--line);
  color: var(--ash);
  background: #020302;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

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

.site-footer .footer-title {
  margin-bottom: 7px;
  color: var(--paper-dim);
  font-weight: 700;
}

.site-footer a {
  align-self: flex-start;
  color: var(--paper-dim);
  text-decoration: none;
  white-space: nowrap;
}

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

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

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

  .archive-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(9, 10, 8, 0.98);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 150ms ease,
      visibility 150ms ease,
      transform 150ms ease;
  }

  .archive-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .archive-nav a {
    padding: 13px;
    text-align: center;
  }

  .archive-nav a::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 10px;
    margin-right: 24px;
    padding: 8px 0;
    border: 0;
    color: var(--paper-dim);
    background: transparent;
    font-family: var(--sans);
    font-size: 0.64rem;
    letter-spacing: 0.09em;
    cursor: pointer;
  }

  .nav-toggle > span:first-child {
    position: relative;
    width: 20px;
    height: 1px;
    background: currentColor;
  }

  .nav-toggle > span:first-child::before,
  .nav-toggle > span:first-child::after {
    position: absolute;
    left: 0;
    width: 20px;
    height: 1px;
    background: currentColor;
    content: "";
  }

  .nav-toggle > span:first-child::before {
    top: -6px;
  }

  .nav-toggle > span:first-child::after {
    top: 6px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
    gap: 50px;
  }

  .dossier-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .dossier-strip div:nth-child(3) {
    border-right: 0;
  }

  .dossier-strip div:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .chapter-heading--split {
    gap: 50px;
  }

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

@media (max-width: 860px) {
  body::before,
  body::after {
    margin-left: 12px;
  }

  body::after {
    margin-right: 12px;
    margin-left: 0;
  }

  .site-header {
    top: 10px;
    right: 18px;
    left: 18px;
  }

  .archive-status {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    margin-right: 0;
  }

  .chapter {
    padding: 110px 28px;
  }

  .hero {
    padding-top: 145px;
    padding-bottom: 42px;
  }

  .hero-art::after {
    background:
      linear-gradient(90deg, rgba(9, 10, 8, 0.88), rgba(9, 10, 8, 0.55)),
      linear-gradient(
        0deg,
        rgba(9, 10, 8, 0.96),
        rgba(9, 10, 8, 0.25) 58%,
        rgba(9, 10, 8, 0.5)
      );
  }

  .hero-art img {
    object-position: 64% center;
  }

  .hero-grid,
  .origin-layout,
  .arrival-layout,
  .doctrine-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero-lede {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-oath {
    display: inline-block;
    text-align: left;
  }

  .hero-emblem {
    width: min(90%, 520px);
    margin-top: 38px;
  }

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

  .dossier-strip div,
  .dossier-strip div:first-child {
    padding: 18px;
  }

  .dossier-strip div:nth-child(2n) {
    border-right: 0;
  }

  .dossier-strip div:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .dossier-strip div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .chapter-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .chapter-heading--split .chapter-summary {
    margin-top: 0;
  }

  .origin-layout {
    gap: 70px;
  }

  .planet-file {
    min-height: 590px;
  }

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

  .rebellion-record {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rebellion-record__number {
    font-size: 9rem;
  }

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

  .war-number {
    font-size: 12rem;
  }

  .war-timeline {
    margin-left: 0;
  }

  .collapse-order__grid {
    grid-template-columns: 1fr;
  }

  .collapse-order__stamp {
    position: static;
    display: inline-block;
    margin-bottom: 30px;
  }

  .arrival-layout {
    margin-top: 80px;
  }

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

  .decree__seal {
    width: 120px;
    height: 120px;
  }

  .decree__seal span {
    width: 82px;
    height: 82px;
    font-size: 3rem;
  }

  .doctrine-layout {
    gap: 70px;
  }

  .initiation {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer {
    padding-right: 28px;
    padding-left: 28px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 58px;
    padding: 8px 12px;
  }

  .archive-brand__mark {
    width: 25px;
    height: 25px;
  }

  .archive-brand b {
    font-size: 0.64rem;
  }

  .archive-brand small {
    font-size: 0.54rem;
  }

  .nav-toggle__label {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0, 0, 0, 0);
  }

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

  .chapter {
    padding: 92px 20px;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 30px;
  }

  .eyebrow {
    flex-direction: column;
    gap: 10px;
  }

  .hero-title-latin {
    font-size: clamp(4.3rem, 22vw, 7rem);
  }

  .hero-title-zh {
    letter-spacing: 0.34em;
  }

  .hero-lede {
    margin-top: 30px;
    font-size: 0.96rem;
  }

  .hero-oath {
    margin-top: 28px;
    font-size: 1rem;
  }

  .file-entry {
    justify-content: space-between;
    width: 100%;
  }

  .seal--upper {
    right: -2%;
  }

  .seal--lower {
    left: -2%;
  }

  .dossier-strip {
    grid-template-columns: 1fr;
  }

  .dossier-strip div,
  .dossier-strip div:first-child {
    padding: 14px 4px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .dossier-strip div:first-child {
    border-top: 0;
  }

  .dossier-strip div:nth-child(3) {
    border-right: 0;
  }

  .chapter-heading {
    margin-bottom: 50px;
  }

  .chapter h2 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .planet-file {
    min-height: 500px;
  }

  .planet-cutaway {
    max-width: 78%;
  }

  .narrative-art figcaption {
    right: 14px;
    bottom: 10px;
    left: 14px;
    font-size: 0.55rem;
  }

  .narrative-art--war {
    margin-bottom: 70px;
  }

  .planet-file__label::after {
    width: 30px;
  }

  .judgment-card {
    padding: 26px 22px;
  }

  .judgment-card__head {
    align-items: flex-start;
  }

  .judgment-card .margin-note {
    position: static;
    margin-top: 25px;
  }

  .declaration {
    font-size: 1.35rem;
  }

  .war-number {
    font-size: 9rem;
  }

  .war-timeline::before {
    left: 0;
  }

  .war-timeline li {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 28px;
  }

  .war-timeline li::before {
    left: -4px;
  }

  .collapse-order {
    padding: 28px 22px;
  }

  .transmission__header {
    flex-direction: column;
    gap: 4px;
  }

  .transmission__body {
    padding: 35px 22px 55px;
    font-size: 1.3rem;
  }

  .arrival-visual {
    padding: 23px 18px;
  }

  .arrival-visual dl {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .decree {
    padding: 30px 22px;
  }

  .decree ul {
    grid-template-columns: 1fr;
  }

  .helmet-file {
    min-height: 480px;
    padding: 18px;
  }

  .helmet-file__image {
    width: 75%;
  }

  .helmet-note::after {
    width: 25px;
  }

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

  .doctrine-card {
    min-height: 230px;
  }

  .creed-emblem {
    width: 90vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .final-oath {
    margin-top: 80px;
    font-size: clamp(2rem, 12vw, 3.6rem);
  }

  .site-footer {
    flex-direction: column;
    gap: 22px;
    padding: 40px 20px;
  }
}

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

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

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