@charset "utf-8";

:root {
  --base-black: #0b0c0e;
  --charcoal: #17191d;
  --charcoal-light: #202228;
  --off-white: #eeece6;
  --gray: #9a9ca2;
  --accent-red: #8f2028;
  --optional-gold: #ad9362;
  --line: rgba(238, 236, 230, 0.14);
  --line-strong: rgba(238, 236, 230, 0.27);
  --header-height: 70px;
  --page-pad: clamp(24px, 5vw, 80px);
  --section-gap: clamp(100px, 14vw, 210px);
  --serif: "Cormorant Garamond", "Noto Serif", Georgia, serif;
  --sans: Pretendard, "SUIT", "Noto Sans KR", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  color: var(--off-white);
  background: var(--base-black);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.018) 50%, transparent 50.1%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.025), transparent 27%);
  background-size: min(25vw, 360px) 100%, 100% 100%;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
::selection { color: var(--off-white); background: var(--accent-red); }
.image-frame.is-missing {
  min-height: clamp(260px, 40vw, 620px);
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, transparent 49.85%, rgba(238,236,230,.07) 50%, transparent 50.15%),
    linear-gradient(45deg, transparent 49.85%, rgba(238,236,230,.07) 50%, transparent 50.15%),
    var(--charcoal);
}
.image-frame.is-missing img { display: none; }
.image-frame { position: relative; overflow: hidden; }
.image-frame img { filter: saturate(.82) brightness(.95) contrast(1.05); }
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11,12,14,0) 52%, rgba(11,12,14,.4) 100%),
    linear-gradient(105deg, rgba(11,12,14,.2), transparent 42%);
}
.image-frame.is-missing::after { display: none; }
.image-frame.is-missing::before {
  content: attr(data-missing-image);
  position: relative;
  z-index: 3;
  max-width: 240px;
  padding: 14px 18px;
  color: var(--gray);
  border: 1px solid var(--line-strong);
  background: rgba(11,12,14,.78);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: .08em;
  text-align: center;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 8px 14px;
  color: var(--base-black);
  background: var(--off-white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid transparent;
  transition: background-color .5s ease, border-color .5s ease;
}
.site-header.is-scrolled {
  background: rgba(11, 12, 14, .82);
  border-color: var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.page-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; overflow: hidden; }
.page-progress i { display: block; width: 100%; height: 100%; background: rgba(143,32,40,.62); transform: scaleX(0); transform-origin: left; will-change: transform; }
.wordmark {
  display: flex;
  gap: .55em;
  align-items: center;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .16em;
  white-space: nowrap;
}
.wordmark i { color: var(--accent-red); font-style: normal; }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.primary-nav a {
  position: relative;
  padding: 23px 0 20px;
  color: var(--gray);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  transition: color .25s ease;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 18px;
  height: 1px;
  background: var(--accent-red);
  transition: right .35s var(--ease);
}
.primary-nav a:hover, .primary-nav a:focus-visible, .primary-nav a.is-active { color: var(--off-white); }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after, .primary-nav a.is-active::after { right: 0; }
.menu-toggle { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 110px);
  padding: calc(var(--header-height) + 55px) var(--page-pad) 85px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--page-pad);
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, var(--line), transparent);
}
.hero-copy { position: relative; z-index: 2; padding-left: clamp(12px, 2vw, 32px); }
.eyebrow, .section-number {
  margin: 0 0 24px;
  color: var(--accent-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.hero-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: -.045em;
}
.hero-title em { color: var(--off-white); font-style: normal; border-bottom: 2px solid var(--accent-red); }
.hero-lead {
  margin: clamp(28px, 4vw, 58px) 0 0;
  padding-left: 22px;
  color: var(--gray);
  border-left: 1px solid var(--accent-red);
  font-size: 18px;
}
.hero-lead strong { color: var(--off-white); font-weight: 500; }
.hero-intro {
  max-width: 510px;
  margin-top: clamp(48px, 7vh, 80px);
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
}
.hero-intro p { margin: 0 0 12px; }
.hero-intro .underlined { margin-top: 28px; color: var(--off-white); }
.hero-visual {
  position: relative;
  width: min(100%, 1000px);
  justify-self: end;
  border: 1px solid var(--line);
  background: var(--charcoal);
  box-shadow: -35px 35px 80px rgba(0,0,0,.32);
}
.hero-visual::after, .ending-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(11,12,14,.38), transparent 42%), linear-gradient(0deg, rgba(11,12,14,.26), transparent 35%);
}
.hero-visual img { aspect-ratio: 4/3; object-fit: cover; transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1.015); transition: transform 1.2s var(--ease), opacity 1.2s var(--ease); }
.hero-visual.is-visible img { transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1); }
.hero-disturbance { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: var(--disturbance, .12); background: radial-gradient(circle at var(--pointer-x, 66%) var(--pointer-y, 42%), transparent 0, rgba(238,236,230,.035) 9%, transparent 24%); transition: opacity .6s ease; }
.scroll-cue {
  position: absolute;
  left: calc(var(--page-pad) + clamp(12px, 2vw, 32px));
  bottom: 25px;
  display: flex;
  gap: 12px;
  color: var(--gray);
  font-size: 9px;
  letter-spacing: .24em;
  animation: cue-pulse 3.2s ease-in-out infinite;
}
.scroll-cue span:last-child { color: var(--accent-red); animation: drift 2s ease-in-out infinite; }
@keyframes drift { 50% { transform: translateY(5px); } }
@keyframes cue-pulse { 0%, 100% { opacity: .4; } 50% { opacity: .8; } }

.story-section { position: relative; padding: var(--section-gap) var(--page-pad); }
.split-section {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: clamp(52px, 8vw, 130px);
  align-items: start;
}
.section-copy { max-width: 650px; }
.section-title {
  margin: 0;
  font-size: clamp(25px, 2.2vw, 32px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.05em;
}
.section-title span {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--serif);
  letter-spacing: .03em;
}
.prose { margin-top: clamp(40px, 5vw, 72px); color: var(--gray); }
.prose p { margin: 0 0 24px; }
.prose strong { color: var(--off-white); font-weight: 500; }
.statement {
  margin: 46px 0;
  color: var(--off-white);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 300;
  letter-spacing: -.03em;
}
.statement::before { content: "— "; color: var(--accent-red); }
.keyword-stream { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 30px; }
.keyword-stream span, .keyword-stream b {
  padding: 6px 11px;
  color: var(--gray);
  border: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: .14em;
}
.keyword-stream b { color: var(--off-white); border-color: var(--accent-red); font-weight: 600; }
.js-enabled .keyword-stream span, .js-enabled .keyword-stream b { opacity: 0; transform: translateY(6px); transition: opacity .65s var(--ease), transform .65s var(--ease); transition-delay: calc(var(--word-index, 0) * 145ms); }
.js-enabled .keyword-stream.is-activated span { opacity: .46; transform: translateY(0); }
.js-enabled .keyword-stream.is-activated b { opacity: 1; transform: translateY(0); transition-delay: 1s; }
.undead-examples { padding-top: 10px; border-top: 1px solid var(--line); font-size: 15px; }
.final-emphasis { transition-delay: .26s !important; }
.section-image { margin-top: 80px; background: var(--charcoal); border: 1px solid var(--line); }
.section-image img { aspect-ratio: 4/3; object-fit: cover; }
.wide-quote {
  grid-column: 1 / -1;
  position: relative;
  margin: clamp(85px, 12vw, 170px) 0 0;
  padding: clamp(34px, 5vw, 70px) 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 300;
  line-height: 1.24;
  letter-spacing: -.045em;
}
.wide-quote strong { font-weight: 500; }
.wide-quote span {
  position: absolute;
  right: 0;
  bottom: 12px;
  color: var(--accent-red);
  font-size: 9px;
  font-style: normal;
  letter-spacing: .22em;
}

.system-section {
  background-color: #101114;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
}
.section-heading { position: relative; max-width: 980px; margin-bottom: clamp(58px, 8vw, 110px); }
.section-heading::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(143,32,40,.08), transparent 72%);
  pointer-events: none;
}
.section-heading-right::before { left: auto; right: -80px; }
.centered-heading::before { left: 50%; transform: translateX(-50%); }
.system-layout {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 7vw, 120px);
  align-items: center;
}
.system-copy { color: var(--gray); }
.system-copy > p { max-width: 520px; }
.system-copy > p:first-child { color: var(--off-white); font-size: 18px; }
.equations { margin-top: 50px; border-top: 1px solid var(--line-strong); }
.equations p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 12px 2px;
  color: var(--off-white);
  border-bottom: 1px solid var(--line);
  font: 600 12px/1.4 var(--sans);
  letter-spacing: .16em;
}
.equations b { color: var(--accent-red); }
.equations .system-result { color: var(--off-white); }
.js-enabled .equations p { opacity: 0; transform: translateX(-10px); transition: opacity .55s ease, transform .55s var(--ease); transition-delay: calc(var(--sequence-index, 0) * 180ms); }
.js-enabled .equations.is-activated p { opacity: 1; transform: translateX(0); }
.world-judgment { width: min(100%, 850px); margin: 70px 0 0 auto; padding-left: clamp(25px, 4vw, 60px); border-left: 1px solid var(--accent-red); }
.world-judgment strong { color: var(--off-white); font-weight: 500; }
.system-image { max-width: 1000px; justify-self: end; border: 1px solid var(--line); background: var(--charcoal); }
.system-image img { aspect-ratio: 4/3; object-fit: cover; }
.flow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: clamp(65px, 9vw, 125px);
  border: 1px solid var(--line);
  background: var(--line);
}
.flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.6vw, 28px);
  min-height: 120px;
  padding: 25px;
  color: var(--gray);
  background: var(--base-black);
  font-size: 11px;
  letter-spacing: .13em;
}
.flow i { color: #51535a; font-style: normal; }
.flow .error { position: relative; color: var(--accent-red); font-weight: 700; }
.flow .error::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 1px; background: var(--accent-red); transform: scaleX(0); transition: transform .55s var(--ease) .7s; }
.js-enabled .flow-grid.is-activated .flow .error::after { transform: scaleX(1); }
.flow-signal { grid-column: 1 / -1; position: relative; isolation: isolate; }
.flow-signal u { position: absolute; z-index: -1; left: 4%; right: 4%; top: 50%; height: 1px; background: rgba(143,32,40,.45); text-decoration: none; transform: scaleX(0); transform-origin: left; transition: transform 1.2s var(--ease) .35s; }
.js-enabled .flow span, .js-enabled .flow i { opacity: 0; transform: translateY(-5px); transition: opacity .42s ease, transform .42s var(--ease); transition-delay: calc(var(--flow-index, 0) * 115ms); }
.js-enabled .flow-grid.is-activated span, .js-enabled .flow-grid.is-activated i { opacity: 1; transform: translateY(0); }
.js-enabled .flow-grid.is-activated .flow-signal u { transform: scaleX(1); }

.reaper-section { overflow: hidden; }
.section-heading-right { margin-left: auto; text-align: right; }
.roman-field {
  position: absolute;
  top: 5%;
  left: -2%;
  width: 104%;
  color: rgba(238,236,230,.035);
  font: 400 16px/1 var(--serif);
  letter-spacing: .04em;
  white-space: nowrap;
  user-select: none;
  display: flex;
  gap: .12em;
}
.roman-field span { display: inline-block; opacity: .08; }
.js-enabled .roman-field span { opacity: 0; transform: translateY(10px); transition: opacity .65s ease, transform .65s var(--ease); transition-delay: calc(var(--roman-index, 0) * 65ms); }
.js-enabled .roman-field.is-activated span { opacity: .065; transform: translateY(0); }
.reaper-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
}
.reaper-image { max-width: 1000px; border: 1px solid var(--line); background: var(--charcoal); }
.reaper-image img { aspect-ratio: 4/3; object-fit: cover; object-position: center top; }
.reaper-copy { color: var(--gray); }
.metric { display: flex; align-items: center; gap: 25px; margin: 0 0 55px; }
.metric strong { color: var(--off-white); font: 300 18px/1 var(--serif); }
.metric span { color: var(--accent-red); font-size: 13px; line-height: 1.5; letter-spacing: .14em; }
.reaper-copy > p:not(.metric) { max-width: 520px; }
.reaper-copy blockquote {
  margin: 50px 0 0;
  padding: 28px 0 0;
  color: var(--off-white);
  border-top: 1px solid var(--accent-red);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.6;
}
.reaper-copy blockquote strong { font-weight: 500; }

.turn-section {
  min-height: 105svh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 120px var(--page-pad);
  background: var(--off-white);
  color: var(--base-black);
}
.turn-section::before {
  content: "";
  position: absolute;
  inset: 35px;
  border: 1px solid rgba(11,12,14,.15);
  pointer-events: none;
}
.turn-inner { width: min(100%, 1100px); text-align: center; }
.turn-prelude { margin: 0 0 30px; color: #686a70; }
.turn-section h2 {
  margin: 0;
  font-size: clamp(30px, 2.8vw, 36px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.06em;
}
.turn-section h2 span, .turn-section h2 em { display: block; }
.turn-section h2 em { color: var(--accent-red); font-style: normal; }
.js-enabled .turn-section h2 span, .js-enabled .turn-section h2 em { opacity: 0; transform: translateY(16px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.js-enabled .turn-section h2.is-activated span { opacity: 1; transform: translateY(0); transition-delay: .28s; }
.js-enabled .turn-section h2.is-activated em { opacity: 1; transform: translateY(0); transition-delay: .48s; }
.turn-origin { width: min(100%, 760px); margin: 65px auto 0; color: #64666b; font-size: 15px; }
.turn-origin p { margin: 0 0 14px; }
.turn-explanation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  margin-top: clamp(80px, 10vw, 150px);
  text-align: left;
  color: #55575c;
}
.turn-explanation p { margin: 0; }
.turn-explanation p:last-child { text-align: right; }
.turn-explanation span { color: var(--accent-red); font: 300 0/1 var(--serif); }
.turn-explanation strong { color: var(--base-black); font-weight: 600; }
.turn-warning { margin: 70px auto 0; color: #66686d; font-size: 14px; }

.society-section { border-bottom: 1px solid var(--line); }
.negations { display: flex; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.negations span {
  flex: 1;
  padding: 22px 15px;
  color: var(--gray);
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: 11px;
  letter-spacing: .15em;
}
.negations span i { display: inline-block; width: 0; height: 1px; margin-right: 0; vertical-align: middle; background: var(--accent-red); transition: width .65s var(--ease), margin-right .65s var(--ease); }
.js-enabled .negations span { opacity: 0; transform: translateY(8px); transition: opacity .55s ease, transform .55s var(--ease); transition-delay: calc(var(--negation-index, 0) * 180ms); }
.js-enabled .negations.is-activated span { opacity: 1; transform: translateY(0); }
.js-enabled .negations.is-activated span i { width: 38px; margin-right: 14px; }
.negations span:last-child { border-right: 0; }
.society-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(35px, 7vw, 120px);
  margin: clamp(75px, 9vw, 130px) 0;
  color: var(--gray);
}
.society-grid p { margin: 0; }
.society-grid strong { color: var(--off-white); font-weight: 500; }
.wandering {
  margin: 0;
  color: rgba(238,236,230,.3);
  font: 400 11px/1 var(--sans);
  letter-spacing: .23em;
  text-align: right;
}

.centered-heading { margin-right: auto; margin-left: auto; text-align: center; }
.veil-section { overflow: hidden; }
.veil-image {
  position: relative;
  width: min(1200px, 90vw);
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  background: var(--charcoal);
  box-shadow: 0 45px 100px rgba(0,0,0,.35);
}
.veil-image img { aspect-ratio: 500/341; object-fit: cover; }
.veil-explainer { width: min(100%, 800px); margin: -50px auto 75px; text-align: center; }
.veil-label { position: absolute; z-index: 4; top: 22px; padding: 6px 9px; color: var(--off-white); background: rgba(11,12,14,.55); font-size: 9px; letter-spacing: .16em; }
.veil-label-left { left: 22px; }
.veil-label-right { right: 22px; }
.veil-divider { position: absolute; z-index: 5; top: 0; bottom: 0; left: 50%; width: 1px; background: rgba(238,236,230,.72); pointer-events: none; }
.veil-copy {
  width: min(100%, 1100px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
  margin: clamp(70px, 9vw, 130px) auto 0;
}
.veil-copy blockquote { margin: 0; font-size: clamp(20px, 1.8vw, 26px); line-height: 1.3; letter-spacing: -.035em; }
.veil-copy blockquote strong { font-weight: 500; }
.veil-copy p { margin: 0; color: var(--gray); }

.distortion-section { background: var(--charcoal); }
.distortion-lead { margin: 0 0 85px; font-size: clamp(20px, 1.8vw, 26px); line-height: 1.45; }
.distortion-lead strong { font-weight: 500; }
.distortion-chart { border-top: 1px solid var(--line-strong); }
.chart-row {
  display: grid;
  grid-template-columns: minmax(250px, .35fr) minmax(0, 1fr) 80px;
  gap: 35px;
  align-items: center;
  min-height: 105px;
  border-bottom: 1px solid var(--line);
}
.chart-row > div:first-child { display: flex; align-items: baseline; gap: 20px; }
.chart-row span { color: var(--gray); font-size: 10px; letter-spacing: .12em; }
.chart-row p { margin: 0; font-size: 11px; letter-spacing: .1em; }
.bar { height: 5px; background: rgba(238,236,230,.07); }
.bar i { display: block; width: var(--bar); height: 100%; background: #686a70; transform-origin: left; transition: transform 1.2s var(--ease); }
.js-enabled .chart-row:not(.is-visible) .bar i { transform: scaleX(0); }
.chart-row.best .bar i { background: var(--accent-red); }
.chart-row > b { color: var(--accent-red); font-size: 9px; letter-spacing: .12em; }
.calculation {
  margin: clamp(90px, 12vw, 165px) 0 0 auto;
  max-width: 800px;
  text-align: right;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
  letter-spacing: -.035em;
}
.calculation > span, .calculation strong { display: block; }
.calculation strong { margin-top: 8px; font-weight: 500; }
.calculation strong em { color: var(--accent-red); font-style: normal; }
.calculation small { display: block; margin-top: 30px; color: var(--accent-red); font-size: 10px; letter-spacing: .2em; }
.distortion-explainer { width: min(100%, 850px); margin: -40px 0 80px auto; }

.beings-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(35px, 6vw, 90px); }
.beings-image { align-self: start; max-width: 1000px; border: 1px solid var(--line); background: var(--charcoal); }
.beings-image img { aspect-ratio: 250/171; object-fit: cover; }
.being-cards { display: grid; grid-template-columns: repeat(2, 1fr); }
.being-cards article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  transition: background-color .35s ease, transform .35s var(--ease), box-shadow .35s ease;
}
.being-cards article:nth-child(2n) { border-left: 0; }
.being-cards article:nth-child(n+3) { border-top: 0; }
.being-cards article:hover { background: rgba(238,236,230,.035); transform: translateY(-4px); box-shadow: 0 22px 44px rgba(0,0,0,.35), inset 0 2px 0 var(--accent-red); }
.being-cards span, .overview-grid article > span { color: var(--accent-red); font-size: 9px; letter-spacing: .14em; }
.being-cards h3 { margin: 40px 0 6px; font: 400 clamp(20px, 2vw, 28px)/1 var(--serif); letter-spacing: .08em; }
.being-cards p { margin: 0; color: var(--gray); font-size: 13px; line-height: 1.6; }
.beings-rule {
  max-width: 1050px;
  margin: clamp(80px, 10vw, 145px) auto 0;
  text-align: center;
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.6;
}
.beings-rule strong { font-weight: 500; }

.hunter-section {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 130px var(--page-pad);
  overflow: hidden;
  text-align: center;
  background: linear-gradient(rgba(11,12,14,.77), rgba(11,12,14,.9)), url("../images/06.webp") center/cover no-repeat, var(--charcoal);
}
.hunter-section::after { content: "HUMAN / WITNESS / HUNTER"; position: absolute; bottom: 30px; color: rgba(238,236,230,.2); font-size: 9px; letter-spacing: .28em; }
.hunter-inner { position: relative; z-index: 2; width: min(100%, 900px); }
.hunter-kicker { color: var(--gray); font-size: 18px; }
.hunter-section h2 { margin: 38px 0 60px; font: 500 18px/1 var(--serif); letter-spacing: .12em; }
.hunter-facts { display: flex; justify-content: center; gap: 0; }
.hunter-facts p { margin: 0; padding: 8px 24px; border-right: 1px solid var(--line-strong); color: var(--gray); font-size: 14px; }
.hunter-facts p:last-child { border-right: 0; }
.js-enabled .hunter-facts p { opacity: 0; transform: translateY(10px); transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: calc(var(--hunter-index, 0) * 210ms); }
.js-enabled .hunter-facts.is-activated p { opacity: 1; transform: translateY(0); }
.hunter-section blockquote { margin: 75px 0 0; font-size: clamp(20px, 1.8vw, 26px); line-height: 1.55; }
.hunter-section blockquote strong { font-weight: 500; }
.hunter-explainer { width: min(100%, 720px); margin: 60px auto 0; color: var(--gray); font-size: 14px; }

.arcana-section { background: #101113; }
.arcana-section::before { content: "XIII"; position: absolute; top: 11%; left: 3%; color: rgba(173,147,98,.06); font: 400 16px/1 var(--serif); }
.arcana-image { position: relative; max-width: 1000px; margin: 0 auto 95px; border: 1px solid rgba(173,147,98,.25); background: var(--charcoal); }
.arcana-image img { aspect-ratio: 4/3; object-fit: cover; }
.arcana-explainer { width: min(100%, 850px); margin: -45px auto 80px; text-align: center; }
.arcana-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(30px, 6vw, 90px);
  width: min(100%, 1100px);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 0;
  border-bottom: 0;
  margin-inline: auto;
}
.arcana-list li { position: relative; min-height: 58px; display: grid; grid-template-columns: 48px 1fr; align-items: center; padding: 0 15px; border-left: 1px solid transparent; border-right: 0; border-bottom: 1px solid var(--line); opacity: .42; transition: opacity .28s ease, transform .28s var(--ease), border-color .28s ease, background-color .28s ease; }
.arcana-list li::before { content: ""; position: absolute; left: -2px; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: var(--optional-gold); opacity: 0; transition: opacity .28s ease; }
.arcana-list li:hover, .arcana-list li:focus-within { opacity: 1; transform: translateX(4px); border-left-color: rgba(173,147,98,.45); background: rgba(173,147,98,.035); }
.arcana-list li:hover::before { opacity: 1; }
.arcana-list span { color: var(--optional-gold); font: 400 16px/1 var(--serif); }
.arcana-list b {
  display: block;
  width: auto;
  margin-top: 0;
  font: 400 11px/1.4 var(--serif);
  letter-spacing: .11em;
  writing-mode: horizontal-tb;
}
.js-enabled .arcana-list li { opacity: 0; transform: translateY(8px); transition-delay: calc(var(--arcana-group, 0) * 160ms); }
.js-enabled .arcana-list.is-activated li { opacity: .42; transform: translateY(0); }
.js-enabled .arcana-list.is-activated li:hover { opacity: 1; transform: translateX(4px); }
.arcana-copy { max-width: 900px; margin: clamp(85px, 11vw, 160px) auto 0; text-align: center; }
.arcana-copy blockquote { margin: 0 0 45px; color: var(--optional-gold); font-size: clamp(20px, 1.8vw, 26px); line-height: 1.35; }
.arcana-copy > p { color: var(--gray); }
.arcana-copy .arcana-note { max-width: 650px; margin: 45px auto 0; font-size: 14px; }
.arcana-copy .world-question { margin-top: 80px; color: var(--off-white); }
.arcana-copy .world-question strong { display: inline-block; margin-top: 16px; font-size: clamp(20px, 1.8vw, 26px); font-weight: 500; }

.overview-section { border-top: 1px solid var(--line); }
.overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.overview-grid article { min-height: 280px; padding: clamp(28px, 3vw, 48px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.overview-grid h3 { margin: 55px 0 16px; font: 400 24px/1 var(--serif); letter-spacing: .05em; }
.overview-grid p { margin: 0; color: var(--gray); font-size: 14px; }
.overview-grid strong { color: var(--off-white); font-weight: 500; }
.overview-grid article { transition: background-color .28s ease, border-color .28s ease, transform .28s var(--ease), box-shadow .28s ease; }
.overview-grid article:hover { background: rgba(238,236,230,.025); border-color: var(--line-strong); transform: translateY(-3px); box-shadow: inset 0 2px 0 var(--accent-red); }

.faq-section { padding-top: calc(var(--section-gap) * .8); }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  min-height: 90px;
  display: grid;
  grid-template-columns: 55px 1fr 24px;
  gap: 20px;
  align-items: center;
  padding: 20px 4px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(18px, 2vw, 27px);
  transition: color .25s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--gray); }
.faq-list summary span { color: var(--accent-red); font-size: 10px; letter-spacing: .12em; }
.faq-list summary i { position: relative; width: 20px; height: 20px; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; top: 9px; left: 2px; width: 16px; height: 1px; background: currentColor; transition: transform .35s var(--ease); }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details > div { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .38s var(--ease), opacity .38s ease; }
.faq-list details[open] > div { grid-template-rows: 1fr; }
.faq-list details[open] > div { opacity: 1; }
.faq-list details > div > p { min-height: 0; overflow: hidden; margin: 0; padding: 0 80px 0 79px; color: var(--gray); }
.faq-list details[open] > div > p { padding-bottom: 40px; }

.ending-section { position: relative; min-height: 110svh; display: grid; place-items: center; padding: 130px var(--page-pad); overflow: hidden; }
.ending-image { position: absolute; inset: 0; background: var(--charcoal); }
.ending-image img { width: 100%; height: 100%; object-fit: cover; opacity: var(--ending-opacity, .75); transition: opacity .18s linear; }
.ending-image::after { background: linear-gradient(90deg, rgba(11,12,14,.92) 0%, rgba(11,12,14,.72) 48%, rgba(11,12,14,.4) 100%), linear-gradient(0deg, rgba(11,12,14,.83), transparent 55%); }
.anomaly { position: absolute; z-index: 1; width: clamp(35px, 5vw, 80px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(238,236,230,.2), rgba(143,32,40,.08) 24%, transparent 68%); filter: blur(5px); opacity: 0; transform: scale(.88); transition: opacity 1.6s ease, transform 1.6s var(--ease); }
.ending-image.is-awake .anomaly { opacity: .18; transform: scale(1); }
.anomaly-1 { left: 6%; top: 76%; transition-delay: .35s; }
.anomaly-2 { left: 83%; top: 55%; transition-delay: .8s; }
.anomaly-3 { left: 51%; top: 37%; transition-delay: 1.2s; }
.anomaly-4 { left: 88%; top: 20%; transition-delay: 1.65s; }
.ending-copy { position: relative; z-index: 2; width: min(100%, 1180px); }
.ending-intro { margin: 80px 0 25px; color: var(--gray); }
.ending-copy h2 { margin: 0; font-size: clamp(28px, 2.4vw, 32px); font-weight: 300; line-height: 1.35; letter-spacing: -.04em; }
.ending-copy blockquote { margin: clamp(80px, 10vw, 145px) 0 55px; font-size: clamp(30px, 3.2vw, 38px); line-height: 1.2; letter-spacing: -.045em; }
.ending-copy blockquote strong { font-weight: 500; }
.ending-last { color: var(--gray); }
.archive-button {
  width: min(100%, 340px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 65px;
  padding: 17px 20px;
  border: 1px solid var(--line-strong);
  font-size: 11px;
  letter-spacing: .15em;
  transition: color .35s ease, background-color .35s ease, border-color .35s ease;
}
.archive-button:hover, .archive-button:focus-visible { color: var(--base-black); background: var(--off-white); border-color: var(--off-white); }
.archive-button span { display: inline-block; color: var(--accent-red); font-size: 18px; transition: transform .35s var(--ease); }
.archive-button:hover span, .archive-button:focus-visible span { transform: translate(3px, -3px); }
.site-footer { display: flex; justify-content: space-between; align-items: center; min-height: 100px; padding: 20px var(--page-pad); border-top: 1px solid var(--line); color: var(--gray); font-size: 9px; letter-spacing: .18em; }

.js-enabled .reveal { opacity: 0; transform: translateY(18px); transition: opacity .82s var(--ease), transform .82s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
.js-enabled .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js-enabled .reveal-delay { transition-delay: .18s; }
.js-enabled .reveal-delay-2 { transition-delay: .32s; }
.chart-row:nth-child(2) .bar i { transition-delay: .18s; }
.chart-row:nth-child(3) .bar i { transition-delay: .36s; }
.chart-row:nth-child(2) > b { opacity: 0; transition: opacity .5s ease .95s; }
.chart-row:nth-child(2).is-visible > b { opacity: 1; }

@media (max-width: 1199px) {
  .primary-nav { gap: 18px; }
  .hero { grid-template-columns: 1fr 1fr; }
  .split-section, .system-layout, .reaper-layout, .beings-layout { gap: 45px; }
  .being-cards article { min-height: 175px; padding: 20px; }
  .being-cards h3 { margin-top: 30px; }
  .chart-row { grid-template-columns: 250px 1fr 80px; }
}

@media (max-width: 900px) {
  :root { --header-height: 64px; }
  .wordmark { font-size: 11px; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    border: 0;
    color: var(--off-white);
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 23px; height: 1px; background: currentColor; transition: transform .35s var(--ease); }
  .menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:last-child { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 15px var(--page-pad) 25px;
    background: rgba(11,12,14,.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform .45s var(--ease), visibility .45s;
  }
  .primary-nav.is-open { transform: translateY(0); visibility: visible; }
  .primary-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .primary-nav a:nth-last-child(-n+2) { border-bottom: 0; }
  .primary-nav a::after { bottom: 10px; }
  .hero {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-top: calc(var(--header-height) + 80px);
  }
  .hero-copy { padding-left: 0; }
  .hero-intro { margin-top: 45px; }
  .hero-visual { grid-row: 2; width: 90%; margin-right: -24px; }
  .scroll-cue { display: none; }
  .split-section, .system-layout, .reaper-layout, .beings-layout, .veil-copy { grid-template-columns: 1fr; }
  .section-image { margin-top: 0; }
  .wide-quote { margin-top: 90px; }
  .system-image { order: 2; }
  .section-heading-right { margin-left: 0; text-align: left; }
  .reaper-image { order: 2; }
  .turn-explanation { gap: 25px; }
  .turn-origin { margin-top: 50px; }
  .society-grid { gap: 45px; }
  .veil-copy { gap: 40px; }
  .beings-image { order: 2; }
  .beings-rule br { display: none; }
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .chart-row { grid-template-columns: 220px 1fr 75px; gap: 20px; }
}

@media (max-width: 767px) {
  :root { --page-pad: 22px; --section-gap: 110px; }
  body { font-size: 16px; line-height: 1.78; }
  body::before { display: none; }
  .wordmark { gap: .35em; font-size: 9px; }
  .hero { min-height: auto; padding-bottom: 105px; }
  .hero::before { display: none; }
  .hero-copy { display: contents; }
  .hero .eyebrow { grid-row: 1; margin-bottom: -38px; }
  .hero-title { grid-row: 2; }
  .hero-lead { grid-row: 3; }
  .hero-visual { grid-row: 4; }
  .hero-intro { grid-row: 5; }
  .hero-title { font-size: clamp(29px, 8vw, 36px); line-height: 1.17; }
  .hero-lead { margin-top: 32px; }
  .hero-visual { width: calc(100% + 22px); margin-right: -22px; }
  .hero-intro { font-size: 14px; }
  .section-title { font-size: 25px; }
  .split-section { gap: 48px; }
  .section-image { grid-row: 2; }
  .wide-quote { grid-row: 3; padding: 50px 8px; text-align: left; font-size: 20px; }
  .wide-quote span { right: auto; left: 0; }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-signal { grid-column: auto; }
  .flow { min-height: 105px; padding: 20px 12px; gap: 8px; font-size: 9px; }
  .roman-field { display: none; }
  .metric { margin-bottom: 40px; }
  .reaper-copy blockquote { font-size: 22px; }
  .turn-section { min-height: 100svh; padding: 100px 30px; }
  .turn-section::before { inset: 15px; }
  .turn-explanation { grid-template-columns: 1fr; margin-top: 85px; text-align: left; }
  .turn-explanation span { transform: rotate(90deg); justify-self: center; font-size: 0; }
  .turn-explanation p:last-child { text-align: left; }
  .negations { display: grid; }
  .negations span { border-right: 0; border-bottom: 1px solid var(--line); }
  .negations span:last-child { border-bottom: 0; }
  .society-grid { grid-template-columns: 1fr; }
  .wandering { font-size: 9px; line-height: 1; }
  .world-judgment { margin-top: 55px; padding-left: 20px; }
  .veil-explainer { margin-top: -35px; text-align: left; }
  .veil-image { width: calc(100% + 44px); margin-left: -22px; }
  .veil-copy blockquote { font-size: 20px; }
  .distortion-lead { margin-bottom: 65px; }
  .chart-row { grid-template-columns: 1fr; gap: 15px; min-height: 150px; padding: 25px 0; }
  .chart-row > div:first-child { justify-content: space-between; gap: 10px; }
  .chart-row > b { grid-row: 2; text-align: right; }
  .calculation { text-align: left; }
  .being-cards { grid-template-columns: 1fr; }
  .being-cards article { min-height: 150px; }
  .being-cards article:nth-child(2n) { border-left: 1px solid var(--line); }
  .being-cards article:nth-child(n+2) { border-top: 0; }
  .hunter-section { min-height: 95svh; }
  .hunter-section h2 { margin-bottom: 55px; font-size: 18px; }
  .hunter-facts { display: grid; }
  .hunter-facts p { padding: 5px 0; border-right: 0; }
  .arcana-section::before { display: none; }
  .arcana-image { width: calc(100% + 44px); margin-left: -22px; }
  .arcana-explainer { margin-top: -35px; text-align: left; }
  .arcana-list { grid-template-columns: 1fr; width: 100%; }
  .arcana-copy { text-align: left; }
  .arcana-copy .world-question { margin-top: 65px; }
  .overview-grid { grid-template-columns: 1fr; }
  .overview-grid article { min-height: 230px; }
  .faq-list summary { grid-template-columns: 34px 1fr 22px; gap: 10px; min-height: 82px; font-size: 17px; line-height: 1.5; }
  .faq-list details > div > p { padding-left: 44px; padding-right: 20px; }
  .ending-section { min-height: 100svh; align-items: end; padding-top: 100px; padding-bottom: 90px; }
  .ending-image::after { background: linear-gradient(0deg, rgba(11,12,14,.96) 0%, rgba(11,12,14,.67) 72%, rgba(11,12,14,.4) 100%); }
  .ending-intro { margin-top: 50px; }
  .ending-copy blockquote { margin: 80px 0 45px; }
  .site-footer { align-items: flex-start; gap: 25px; flex-direction: column; padding-top: 35px; padding-bottom: 35px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js-enabled .reveal { opacity: 1; transform: none; }
  .js-enabled .chart-row .bar i { transform: none; }
  .js-enabled .keyword-stream span,
  .js-enabled .keyword-stream b,
  .js-enabled .equations p,
  .js-enabled .flow span,
  .js-enabled .flow i,
  .js-enabled .roman-field span,
  .js-enabled .negations span,
  .js-enabled .hunter-facts p,
  .js-enabled .arcana-list li,
  .js-enabled .turn-section h2 span,
  .js-enabled .turn-section h2 em { opacity: 1; transform: none; }
  .js-enabled .flow-signal u { transform: scaleX(1); }
  .anomaly { display: none; }
}

/* =========================================================
   Restrained layout revision
   Korean carries meaning; English remains a secondary label.
   ========================================================= */
html,
body { width: 100%; max-width: 100%; overflow-x: clip; }

main,
section,
.hero > *,
.story-section > *,
.system-layout > *,
.reaper-layout > *,
.beings-layout > *,
.veil-copy > *,
.overview-grid > *,
.flow-grid > *,
.flow > * { min-width: 0; }

img { width: 100%; max-width: 100%; height: auto; }
figure { margin: 0; }

body { font-size: 16px; line-height: 1.8; }
.site-header { padding-inline: max(28px, calc((100% - 1040px) / 2)); }
.hero {
  width: 100%;
  max-width: 1040px;
  min-height: 100svh;
  margin-inline: auto;
  padding: calc(var(--header-height) + 48px) 28px 72px;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 56px;
}
.hero::before { left: 28px; }
.hero-copy { padding-left: 12px; }
.hero-title { font-size: clamp(34px, 3.2vw, 44px); line-height: 1.2; }
.hero-lead { font-size: 18px; }
.hero-intro { max-width: 520px; font-size: 15px; line-height: 1.75; }
.hero-visual { width: 100%; max-width: 520px; }
.hero-visual img { transform: none; transition: none; }
.hero-visual.is-visible img { transform: none; }
.scroll-cue { left: 40px; }
.scroll-arrow { position: relative; width: 1px; height: 16px; margin-left: 4px; background: var(--accent-red); }
.scroll-arrow::after { content: ""; position: absolute; left: -3px; bottom: 0; width: 6px; height: 6px; border-right: 1px solid var(--accent-red); border-bottom: 1px solid var(--accent-red); transform: rotate(45deg); }

.story-section { width: 100%; padding: 120px 28px; }
.story-section:not(.split-section) > * { width: 100%; max-width: 1040px; margin-right: auto; margin-left: auto; }
.split-section { max-width: 1040px; margin-inline: auto; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); gap: 56px; }
.section-copy, .prose, .system-copy, .reaper-copy { max-width: 600px; }
.section-heading { max-width: 1040px; margin-bottom: 64px; }
.section-heading-right { margin-left: auto; }
.section-number, .eyebrow { font-size: 11px; }
.section-title { font-size: clamp(25px, 2.2vw, 32px); line-height: 1.25; letter-spacing: -.03em; }
.section-title span { display: block; margin-top: 8px; font-size: clamp(14px, 1.3vw, 18px); line-height: 1.3; letter-spacing: .06em; }
.prose { font-size: 16px; line-height: 1.8; }
.statement { margin-block: 36px; font-size: 28px; }
.section-image, .system-image, .reaper-image, .beings-image { width: 100%; max-width: 520px; }
.wide-quote { margin-top: 88px; padding-block: 42px; font-size: clamp(20px, 1.8vw, 26px); }

.system-layout, .reaper-layout, .beings-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; }
.system-image, .reaper-image, .beings-image { justify-self: end; }
.equations { margin-top: 40px; }
.equations p { min-height: 68px; display: grid; grid-template-columns: minmax(0, 1fr) 34px 74px; align-items: center; gap: 14px; padding: 10px 2px; }
.equations p > span { display: flex; flex-direction: column; }
.equations p strong { color: var(--off-white); font-size: 16px; font-weight: 500; letter-spacing: 0; }
.equations p small { margin-top: 2px; color: var(--gray); font-size: 10px; letter-spacing: .14em; }
.equations p > b { color: var(--gray); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-align: right; }
.equations .system-result > b { color: var(--off-white); }
.not-equal, .equals, .turn-connector { position: relative; display: block; width: 28px; height: 20px; opacity: .65; }
.not-equal::before, .not-equal::after, .equals::before, .equals::after, .turn-connector::before, .turn-connector::after { content: ""; position: absolute; left: 2px; width: 24px; height: 1.5px; background: currentColor; }
.not-equal::before, .equals::before, .turn-connector::before { top: 6px; }
.not-equal::after, .equals::after, .turn-connector::after { bottom: 6px; }
.not-equal, .turn-connector { color: var(--gray); background: linear-gradient(105deg, transparent 45%, currentColor 46% 51%, transparent 52%); }
.equals { color: var(--off-white); }
.world-judgment { max-width: 760px !important; margin-top: 56px !important; }

.flow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 72px; }
.flow { min-height: 104px; padding: 24px; flex-wrap: nowrap; gap: 20px; }
.flow-node { display: flex; flex: 0 1 auto; flex-direction: column; align-items: center; text-align: center; }
.flow-node b { color: var(--off-white); font-size: 15px; font-weight: 500; line-height: 1.4; }
.flow-node small { margin-top: 3px; color: var(--gray); font-size: 9px; line-height: 1.35; letter-spacing: .09em; overflow-wrap: anywhere; }
.flow .error b, .flow .error small { color: var(--accent-red); }
.flow .error::after, .flow-signal u { display: none; }
.flow-connector { position: relative; display: block; flex: 1 1 34px; min-width: 20px; max-width: 52px; height: 1.5px; color: rgba(238,236,230,.35); background: currentColor; transform-origin: left; }
.flow-connector::after { content: ""; position: absolute; right: 0; top: 50%; width: 7px; height: 7px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: translateY(-50%) rotate(45deg); }
.flow-connector.error-connector { color: rgba(143,32,40,.8); }
.js-enabled .flow .flow-connector { opacity: 1; transform: scaleX(0); transition: transform .65s var(--ease); transition-delay: calc(var(--flow-index, 0) * 70ms); }
.js-enabled .flow-grid.is-activated .flow .flow-connector { transform: scaleX(1); }

.metric { margin-bottom: 36px; }
.metric strong { font-size: 18px; line-height: 1; }
.metric span { font-size: 13px; }
.reaper-copy blockquote { margin-top: 38px; font-size: 24px; }

.turn-section { min-height: auto; padding: 120px 28px; }
.turn-inner { max-width: 880px; }
.turn-section h2 { font-size: clamp(30px, 2.8vw, 36px); line-height: 1.2; letter-spacing: -.04em; }
.turn-origin { max-width: 600px; }
.turn-explanation { max-width: 780px; margin-inline: auto; margin-top: 64px; }
.turn-explanation .turn-connector { justify-self: center; }
.turn-warning { max-width: 600px; }

.negations { max-width: 1040px; }
.negations span { display: flex; flex-direction: column; align-items: flex-start; padding: 20px 22px; text-align: left; }
.negations span strong { color: var(--off-white); font-size: 16px; font-weight: 500; }
.negations span small { margin-top: 2px; color: var(--gray); font-size: 13px; letter-spacing: .1em; opacity: .6; overflow-wrap: anywhere; }
.negations span i { display: none; }
.society-grid { max-width: 1040px; margin-block: 72px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 56px; }
.wandering { max-width: 1040px; font-size: 10px; }

.veil-explainer { max-width: 600px !important; margin-top: -28px !important; margin-bottom: 56px !important; text-align: left; }
.veil-image { width: 100% !important; max-width: 920px !important; margin-inline: auto !important; box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.veil-label { top: 20px; display: flex; flex-direction: column; padding: 8px 10px; }
.veil-label strong { color: var(--off-white); font-size: 16px; font-weight: 500; line-height: 1.25; }
.veil-label small { margin-top: 1px; color: var(--gray); font-size: 9px; letter-spacing: .13em; }
.veil-divider { background: rgba(238,236,230,.25); }
.veil-copy { max-width: 880px !important; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 56px; margin-top: 64px !important; }
.veil-copy blockquote { font-size: clamp(20px, 1.8vw, 26px); }

.distortion-lead { margin-bottom: 56px; font-size: clamp(20px, 1.8vw, 26px); }
.distortion-explainer { max-width: 760px !important; margin-top: -20px !important; margin-bottom: 64px !important; }
.distortion-chart { max-width: 1040px; }
.chart-row { grid-template-columns: minmax(260px, 340px) minmax(0, 1fr) 72px; gap: 28px; min-height: 108px; }
.chart-row > div:first-child { display: grid; grid-template-columns: 62px minmax(0, 1fr); align-items: start; gap: 16px; }
.chart-row span { padding-top: 3px; font-size: 9px; }
.chart-row p { display: flex; flex-direction: column; color: var(--off-white); font-size: 15px; line-height: 1.5; letter-spacing: 0; }
.chart-row p small { margin-top: 4px; color: var(--gray); font-size: 9px; line-height: 1.35; letter-spacing: .07em; overflow-wrap: anywhere; }
.chart-row > b { display: flex; flex-direction: column; color: var(--accent-red); font-size: 11px; line-height: 1.35; letter-spacing: 0; text-align: right; }
.chart-row > b small { font-size: 8px; letter-spacing: .08em; }
.calculation { max-width: 600px !important; margin-top: 88px !important; font-size: clamp(20px, 1.8vw, 26px); }
.calculation small { font-size: 14px; line-height: 1.55; letter-spacing: 0; }
.calculation small i { color: var(--gray); font-size: 9px; font-style: normal; letter-spacing: .12em; }

.being-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.being-cards article { min-width: 0; min-height: 180px; }
.being-cards h3 { font-size: 22px; }
.beings-context { max-width: 600px !important; margin-top: 64px !important; }
.beings-rule { max-width: 820px !important; margin-top: 72px !important; font-size: clamp(20px, 2.2vw, 28px); }

.hunter-section { min-height: auto; padding: 120px 28px; }
.hunter-inner { max-width: 780px; }
.hunter-section h2 { font-size: 18px; }
.hunter-section blockquote { font-size: clamp(20px, 1.8vw, 26px); }

.arcana-section::before { display: none; }
.arcana-image { width: 100%; max-width: 520px; margin: 0 auto 64px; }
.arcana-explainer { max-width: 600px !important; margin-top: -24px !important; margin-bottom: 56px !important; text-align: left; }
.arcana-list { width: 100%; max-width: 920px !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 48px; }
.arcana-list li { min-width: 0; min-height: 62px; grid-template-columns: 42px minmax(0, 1fr); }
.arcana-list b { min-width: 0; font-size: 11px; overflow-wrap: anywhere; }
.arcana-list b small { display: block; margin-top: 2px; color: var(--gray); font-family: var(--sans); font-size: 12px; font-weight: 400; letter-spacing: 0; }
.js-enabled .arcana-list li { opacity: .65; transform: none; transition-delay: 0ms; }
.arcana-copy { max-width: 700px !important; margin-top: 88px !important; }
.arcana-copy blockquote { font-size: clamp(20px, 1.8vw, 26px); }
.arcana-copy .world-question strong { font-size: clamp(20px, 1.8vw, 26px); }

.overview-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.overview-grid article { min-width: 0; min-height: 230px; padding: 32px; }
.overview-grid h3 { margin-top: 44px; font-size: 24px; }
.ending-section { min-height: 100svh; padding: 120px 28px 160px; }
.ending-image img { opacity: 1; transition: none; }
.ending-copy { max-width: 1040px; }
.ending-copy h2 { font-size: clamp(27px, 2.4vw, 32px); }
.ending-copy blockquote { margin-block: 72px 44px; font-size: clamp(30px, 3.2vw, 38px); }
.archive-button { margin-top: 52px; }

.js-enabled .reveal { transform: translateY(14px); transition-duration: .7s; }
.js-enabled .equations p,
.js-enabled .negations span,
.js-enabled .hunter-facts p,
.js-enabled .arcana-list li,
.js-enabled .turn-section h2 span,
.js-enabled .turn-section h2 em { opacity: inherit; transform: none; transition: none; }

@media (max-width: 1024px) {
  .site-header { padding-inline: 22px; }
  .hero { padding-inline: 22px; gap: 48px; }
  .story-section { padding: 104px 22px; }
  .split-section { gap: 48px; }
  .system-layout, .reaper-layout, .beings-layout { gap: 48px; }
  .hero-title { font-size: clamp(32px, 3.2vw, 42px); }
  .section-title { font-size: clamp(25px, 2.2vw, 30px); }
  .society-grid { gap: 40px; }
  .chart-row { grid-template-columns: minmax(240px, 300px) minmax(0, 1fr) 64px; gap: 22px; }
}

@media (max-width: 767px) {
  body { font-size: 15px; }
  .site-header { padding-inline: 16px; }
  .hero { width: 100%; grid-template-columns: minmax(0, 1fr); padding: calc(var(--header-height) + 64px) 16px 92px; gap: 38px; }
  .hero::before { display: none; }
  .hero .eyebrow { margin-bottom: -26px; }
  .hero-title { font-size: clamp(29px, 8vw, 36px); }
  .hero-visual { width: 100%; max-width: 520px; margin: 0; }
  .story-section { padding: 88px 16px; }
  .split-section, .system-layout, .reaper-layout, .beings-layout, .veil-copy { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .section-title { font-size: 25px; }
  .section-title span { font-size: 15px; }
  .section-image, .system-image, .reaper-image, .beings-image { width: 100%; max-width: 520px; margin: 0; }
  .wide-quote { margin-top: 72px; padding-inline: 0; font-size: 24px; }
  .flow-grid { grid-template-columns: minmax(0, 1fr); }
  .flow-signal { grid-column: auto; }
  .flow { min-height: auto; flex-direction: column; gap: 18px; padding: 26px 18px; }
  .flow-connector { flex: 0 0 26px; width: 1.5px; min-width: 1.5px; max-width: 1.5px; height: 26px; transform-origin: top; }
  .flow-connector::after { top: auto; right: 50%; bottom: 0; transform: translateX(50%) rotate(135deg); }
  .js-enabled .flow .flow-connector { transform: scaleY(0); }
  .js-enabled .flow-grid.is-activated .flow .flow-connector { transform: scaleY(1); }
  .equations p { grid-template-columns: minmax(0, 1fr) 30px 68px; gap: 10px; }
  .turn-section { padding: 96px 16px; }
  .turn-section h2 { font-size: 32px; }
  .turn-explanation { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .turn-explanation .turn-connector { transform: rotate(90deg); }
  .negations { grid-template-columns: minmax(0, 1fr); }
  .negations span { width: 100%; }
  .society-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .veil-explainer { margin-top: -18px !important; }
  .veil-image { width: 100% !important; margin: 0 !important; }
  .veil-label { top: 12px; padding: 6px 7px; }
  .veil-label-left { left: 10px; }
  .veil-label-right { right: 10px; }
  .veil-label strong { font-size: 14px; }
  .veil-copy { gap: 34px; }
  .chart-row { grid-template-columns: minmax(0, 1fr); gap: 16px; min-height: 0; padding: 28px 0; }
  .chart-row > div:first-child { grid-template-columns: 54px minmax(0, 1fr); }
  .chart-row > b { grid-row: auto; text-align: left; }
  .calculation { font-size: 24px; text-align: left; }
  .being-cards { grid-template-columns: minmax(0, 1fr); }
  .hunter-section { padding: 96px 16px; }
  .hunter-section h2 { font-size: 17px; }
  .hunter-facts { grid-template-columns: minmax(0, 1fr); }
  .arcana-image { width: 100%; margin-inline: auto; }
  .arcana-list { width: 100%; grid-template-columns: minmax(0, 1fr); gap: 0; }
  .arcana-copy { text-align: left; }
  .overview-grid { grid-template-columns: minmax(0, 1fr); }
  .ending-section { padding: 96px 16px 128px; }
  .ending-copy blockquote { font-size: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .reveal { opacity: 1; transform: none; transition: none; }
  .js-enabled .keyword-stream span,
  .js-enabled .keyword-stream b,
  .js-enabled .flow .flow-connector,
  .js-enabled .chart-row .bar i { opacity: 1; transform: none; transition: none; }
}
