:root {
  --ink: #0a0907;
  --ink-soft: #17120d;
  --paper: #efe7d3;
  --paper-deep: #d9cbb0;
  --ash: #a99b81;
  --red: #cf1f16;
  --red-dark: #8c140f;
  --gold: #f0a92f;
  --ember: #ff6a18;
  --line: rgba(239, 231, 211, 0.18);
  --display: Georgia, "Times New Roman", Times, serif;
  --sans: Arial, Helvetica, sans-serif;
  --mono: "Courier New", Courier, monospace;
  --page-x: clamp(1.25rem, 4.5vw, 5rem);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

body.vault-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: var(--red);
  font: 700 0.75rem/1 var(--mono);
  text-decoration: none;
  transition: transform 160ms ease;
}

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

.paper-noise {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    repeating-radial-gradient(circle at 17% 31%, transparent 0 1px, rgba(255, 255, 255, 0.15) 1px 2px),
    repeating-linear-gradient(93deg, transparent 0 3px, rgba(0, 0, 0, 0.035) 3px 4px);
  background-size: 5px 5px, 9px 9px;
  mix-blend-mode: overlay;
}

.ember-field {
  position: fixed;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 700ms ease;
}

.ember-field.is-active {
  opacity: 0.72;
}

.reading-progress {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--ember);
  box-shadow: 0 0 12px var(--ember);
}

.section-shell {
  width: min(100%, 1600px);
  margin-inline: auto;
  padding-inline: var(--page-x);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 5rem;
  padding-inline: var(--page-x);
  color: var(--paper);
  border-bottom: 1px solid transparent;
  transition:
    height 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  height: 4.25rem;
  border-color: rgba(239, 231, 211, 0.12);
  background: rgba(10, 9, 7, 0.86);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  font: 800 0.88rem/1 var(--mono);
  letter-spacing: 0.18em;
  text-decoration: none;
}

.wordmark-logo {
  display: block;
  width: 2.45rem;
  height: 2.45rem;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(240, 169, 47, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 1.5rem rgba(255, 106, 24, 0.18);
}

.wordmark-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 2.6rem);
  font: 700 0.64rem/1 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a,
.text-button {
  position: relative;
  padding: 0.5rem 0;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.site-nav a::after,
.text-button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.text-button:hover::after,
.text-button:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(239, 231, 211, 0.28);
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 1.05rem;
  height: 1px;
  margin: 0.32rem auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(20rem, 0.96fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  min-height: 100svh;
  padding: 7.75rem var(--page-x) 2rem;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 74% 45%, rgba(205, 42, 18, 0.22), transparent 28%),
    linear-gradient(110deg, #070605 0%, #110b07 54%, #080706 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(239, 231, 211, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 231, 211, 0.12) 1px, transparent 1px);
  background-size: 7.5vw 7.5vw;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.hero::before {
  content: "B";
  position: absolute;
  right: -0.04em;
  bottom: -0.24em;
  color: rgba(239, 231, 211, 0.018);
  font: 700 clamp(34rem, 64vw, 70rem)/0.74 var(--display);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
  max-width: 54rem;
}

.eyebrow,
.kicker {
  margin: 0;
  color: var(--gold);
  font: 700 0.7rem/1.4 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  margin: 0 0.8rem 0.23rem 0;
  background: currentColor;
}

.hero-title {
  margin: clamp(1.25rem, 3vh, 2.4rem) 0 1.5rem;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.065em;
}

.hero-title span,
.hero-title strong,
.hero-title em {
  display: block;
}

.hero-title span {
  font-size: clamp(2.6rem, 6.3vw, 7rem);
  line-height: 0.88;
}

.hero-title strong {
  margin: 0.16em 0 0.08em 0.56em;
  color: var(--ash);
  font-size: clamp(1.9rem, 4vw, 4.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
}

.hero-title em {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-size: clamp(4.8rem, 11.4vw, 13.6rem);
  font-style: normal;
  font-weight: 700;
  line-height: 0.72;
  text-shadow: 0 0.035em 0 var(--red-dark);
}

.hero-deck {
  max-width: 34rem;
  margin: 2.6rem 0 0;
  color: rgba(239, 231, 211, 0.74);
  font: 400 clamp(1rem, 1.25vw, 1.25rem)/1.6 var(--sans);
}

.hero-deck strong {
  color: var(--paper);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 12rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--gold);
  font: 700 0.68rem/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.primary-action {
  color: var(--ink);
  background: var(--gold);
}

.secondary-action {
  color: var(--paper);
  background: transparent;
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.hero-proof {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.28rem 1rem;
  width: min(100%, 34rem);
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  color: var(--paper);
  background: rgba(239, 231, 211, 0.045);
  border: 1px solid rgba(239, 231, 211, 0.18);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.hero-proof:hover,
.hero-proof:focus-visible {
  background: rgba(239, 231, 211, 0.08);
  border-color: var(--gold);
}

.hero-proof > span {
  grid-row: 1 / 3;
  align-self: stretch;
  display: grid;
  place-items: center;
  min-width: 5.1rem;
  padding: 0.5rem;
  color: var(--ink);
  background: var(--gold);
  font: 800 0.55rem/1.15 var(--mono);
  letter-spacing: 0.1em;
  text-align: center;
}

.hero-proof strong {
  font: 400 1.15rem/1 var(--display);
}

.hero-proof small {
  color: rgba(239, 231, 211, 0.52);
  font: 700 0.57rem/1.35 var(--mono);
  letter-spacing: 0.06em;
}

.hero-proof small b {
  color: var(--gold);
}

.secondary-action:hover {
  color: var(--ink);
  background: var(--gold);
}

.hero-art {
  position: relative;
  z-index: 3;
  min-width: 0;
  justify-self: end;
  width: min(46vw, 44rem);
  aspect-ratio: 1;
  margin-right: -1.5vw;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 9%;
  border: 1px solid rgba(239, 231, 211, 0.16);
  border-radius: 50%;
}

.hero-art::after {
  inset: 18%;
  border-style: dashed;
  animation: rotate-ring 32s linear infinite;
}

.hero-art img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: circle(42% at 50% 50%);
  filter: saturate(0.92) contrast(1.06) drop-shadow(0 2.5rem 3rem rgba(0, 0, 0, 0.55));
}

.hero-art picture {
  display: block;
  width: 100%;
  height: 100%;
}

.phoenix-halo {
  position: absolute;
  z-index: 1;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 24, 0.38), rgba(207, 31, 22, 0.06) 56%, transparent 72%);
  filter: blur(1rem);
  animation: phoenix-pulse 4.5s ease-in-out infinite;
}

.orbit-label {
  position: absolute;
  z-index: 4;
  left: 50%;
  padding: 0.45rem 0.65rem;
  color: var(--paper);
  background: var(--red);
  font: 700 0.58rem/1 var(--mono);
  letter-spacing: 0.17em;
  white-space: nowrap;
}

.orbit-label--top {
  top: 9%;
  transform: translateX(-50%) rotate(-3deg);
}

.orbit-label--bottom {
  bottom: 8%;
  transform: translateX(-50%) rotate(2deg);
}

.hero-foot {
  position: relative;
  z-index: 4;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  color: rgba(239, 231, 211, 0.48);
  font: 700 0.59rem/1 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-foot-line {
  width: clamp(2rem, 8vw, 8rem);
  height: 1px;
  background: rgba(239, 231, 211, 0.24);
}

@keyframes rotate-ring {
  to { transform: rotate(360deg); }
}

@keyframes phoenix-pulse {
  50% { transform: scale(1.08); opacity: 0.68; }
}

.lore-bridge {
  position: relative;
  z-index: 3;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(115deg, transparent 0 72%, rgba(207, 31, 22, 0.13) 72% 100%),
    var(--gold);
  border-block: 1px solid rgba(10, 9, 7, 0.24);
}

.lore-bridge::after {
  content: "$BANCOR";
  position: absolute;
  right: -0.04em;
  bottom: -0.22em;
  color: rgba(10, 9, 7, 0.045);
  font: 800 clamp(10rem, 24vw, 28rem)/0.8 var(--sans);
  letter-spacing: -0.09em;
  pointer-events: none;
}

.lore-bridge-shell {
  position: relative;
  z-index: 1;
  padding-top: clamp(3.5rem, 7vw, 7rem);
  padding-bottom: clamp(3.5rem, 7vw, 7rem);
}

.lore-bridge-title {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.lore-bridge-title p {
  margin: 0;
  color: var(--red-dark);
  font: 800 0.65rem/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lore-bridge-title h2 {
  margin: 0;
  font: 800 clamp(3.3rem, 8.5vw, 9.5rem)/0.78 var(--sans);
  letter-spacing: -0.07em;
}

.lore-bridge-title h2 em {
  color: var(--red-dark);
  font-style: normal;
}

.lore-bridge-story {
  max-width: 72rem;
  margin: clamp(2.2rem, 5vw, 5rem) 0;
  font: 400 clamp(1.5rem, 3vw, 3.55rem)/1.08 var(--display);
  letter-spacing: -0.035em;
}

.lore-bridge-story strong {
  color: var(--red-dark);
}

.lore-beats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid rgba(10, 9, 7, 0.32);
}

.lore-beats span {
  display: block;
  min-height: 7.25rem;
  padding: 1.15rem;
  border-right: 1px solid rgba(10, 9, 7, 0.24);
  font: 800 clamp(0.66rem, 1vw, 0.82rem)/1.25 var(--mono);
  letter-spacing: 0.06em;
}

.lore-beats span:last-child {
  color: var(--paper);
  background: var(--red-dark);
  border-right: 0;
}

.lore-beats small {
  display: block;
  margin-bottom: 2.25rem;
  color: var(--red-dark);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.lore-beats span:last-child small {
  color: var(--gold);
}

.lore-code {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  margin: 1.25rem 0 0;
  padding: 1.15rem 1.25rem;
  color: var(--paper);
  background: var(--ink);
  font: 700 0.65rem/1.25 var(--mono);
  letter-spacing: 0.08em;
}

.lore-code strong {
  color: var(--gold);
}

.section-index {
  display: grid;
  grid-template-columns: 5rem 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(10, 9, 7, 0.18);
  font: 700 0.64rem/1 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-index span {
  color: var(--red);
}

.section-index p {
  margin: 0;
}

.section-index--light {
  border-color: rgba(239, 231, 211, 0.2);
  color: var(--paper);
}

.section-index--light span {
  color: var(--gold);
}

.receipt-section {
  position: relative;
  z-index: 3;
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 10vw, 10rem);
  background: var(--paper);
}

.receipt-stage {
  display: grid;
  grid-template-columns: minmax(20rem, 0.86fr) minmax(20rem, 1.14fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.receipt-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: #1c1811;
  background:
    linear-gradient(93deg, rgba(0, 0, 0, 0.025), transparent 30%),
    #f6efde;
  border: 1px solid #b8a98d;
  box-shadow:
    1.2rem 1.4rem 0 rgba(10, 9, 7, 0.08),
    0 1.5rem 4rem rgba(54, 35, 13, 0.14);
  transform: rotate(-1.1deg);
}

.receipt-card::before {
  content: "ARCHIVED";
  position: absolute;
  right: -1rem;
  top: -1rem;
  padding: 0.7rem 0.9rem;
  color: var(--red);
  border: 3px double var(--red);
  border-radius: 50%;
  font: 800 0.65rem/1 var(--mono);
  letter-spacing: 0.13em;
  transform: rotate(11deg);
}

.receipt-card-head,
.receipt-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font: 700 0.62rem/1.3 var(--mono);
  letter-spacing: 0.1em;
}

.receipt-card-head {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(10, 9, 7, 0.28);
}

.receipt-card-head span {
  color: var(--red);
}

.receipt-article-meta {
  padding: 1.35rem 0 0;
}

.receipt-article-meta span,
.receipt-article-meta strong,
.receipt-article-meta time {
  display: block;
}

.receipt-article-meta span {
  margin-bottom: 0.4rem;
  color: #73664f;
  font: 700 0.58rem/1 var(--mono);
  letter-spacing: 0.11em;
}

.receipt-article-meta strong {
  font: 400 clamp(1.5rem, 2.5vw, 2.4rem)/1 var(--display);
}

.receipt-article-meta time {
  margin-top: 0.35rem;
  color: #73664f;
  font: 700 0.58rem/1.4 var(--mono);
}

.receipt-card blockquote {
  margin: clamp(2.5rem, 5vw, 5rem) 0;
  font: 400 clamp(1.75rem, 3vw, 3.5rem)/1.04 var(--display);
  letter-spacing: -0.04em;
}

.receipt-card-foot {
  align-items: end;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 9, 7, 0.28);
}

.receipt-card-foot div span,
.receipt-card-foot div strong {
  display: block;
}

.receipt-card-foot div span {
  margin-bottom: 0.35rem;
  color: #73664f;
}

.receipt-card-foot a {
  color: var(--red);
  text-align: right;
  text-decoration: none;
}

.receipt-copy h2,
.voice-copy h2 {
  max-width: 48rem;
  margin: 1rem 0 1.75rem;
  font: 400 clamp(2.5rem, 5vw, 6.1rem)/0.92 var(--display);
  letter-spacing: -0.055em;
}

.receipt-copy > p:not(.kicker),
.voice-copy > p:not(.kicker) {
  max-width: 39rem;
  color: #494032;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.65;
}

.receipt-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
  border-block: 1px solid rgba(10, 9, 7, 0.2);
}

.receipt-proof-grid span {
  padding: 1rem 0.8rem;
  border-right: 1px solid rgba(10, 9, 7, 0.16);
  font: 800 0.68rem/1.3 var(--mono);
  letter-spacing: 0.04em;
}

.receipt-proof-grid span:last-child {
  border-right: 0;
}

.receipt-proof-grid small {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--red);
  font-size: 0.52rem;
  letter-spacing: 0.11em;
}

.receipt-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.bancor-origin-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 1rem;
  color: var(--paper);
  background: var(--red);
  border: 1px solid var(--red);
  font: 700 0.6rem/1 var(--mono);
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.bancor-origin-link--secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(10, 9, 7, 0.3);
}

.bancor-origin-link:hover {
  transform: translateY(-1px);
}

.lost-strip {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(10, 9, 7, 0.2);
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 3rem);
}

.lost-strip span {
  color: #776a55;
  font-style: italic;
}

.lost-strip strong {
  color: var(--red);
}

.phoenix-section {
  position: relative;
  z-index: 3;
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(207, 31, 22, 0.12), transparent 50%),
    var(--red-dark);
}

.phoenix-section::before {
  content: "2018";
  position: absolute;
  right: -0.02em;
  bottom: -0.14em;
  color: rgba(239, 231, 211, 0.035);
  font: 700 clamp(14rem, 40vw, 42rem)/0.8 var(--display);
  letter-spacing: -0.09em;
  pointer-events: none;
}

.phoenix-shell {
  position: relative;
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: clamp(5rem, 10vw, 10rem);
}

.phoenix-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.84fr) minmax(20rem, 1.16fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: center;
  padding-top: clamp(4rem, 8vw, 8rem);
}

.cover-frame {
  position: relative;
  margin: 0;
  padding: 0.65rem;
  background: #e9e0ce;
  box-shadow: 1.6rem 1.6rem 0 rgba(31, 3, 1, 0.26);
  transform: rotate(-2deg);
}

.cover-frame img {
  width: 100%;
  height: auto;
}

.cover-frame picture {
  display: block;
  width: 100%;
}

.cover-frame figcaption {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0.25rem 0.1rem;
  color: var(--ink);
  font: 700 0.59rem/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cover-stamp {
  position: absolute;
  right: -2.4rem;
  bottom: 3rem;
  display: grid;
  place-items: center;
  width: 6rem;
  height: 6rem;
  color: var(--gold);
  background: var(--ink);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font: 800 0.64rem/1.25 var(--mono);
  letter-spacing: 0.09em;
  text-align: center;
  transform: rotate(9deg);
}

.phoenix-copy {
  position: relative;
  z-index: 2;
}

.phoenix-copy .kicker {
  color: var(--gold);
}

.phoenix-copy h2 {
  max-width: 49rem;
  margin: 0.5rem 0 1.5rem;
  font: 700 clamp(3.3rem, 7vw, 8.5rem)/0.82 var(--display);
  letter-spacing: -0.065em;
}

.phoenix-lead {
  max-width: 39rem;
  color: rgba(239, 231, 211, 0.7);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.65;
}

.phoenix-clarity {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 2rem 0 0;
  padding: 1rem;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid rgba(10, 9, 7, 0.32);
}

.phoenix-clarity span {
  color: var(--red-dark);
  font: 800 0.53rem/1 var(--mono);
  letter-spacing: 0.1em;
}

.phoenix-clarity strong {
  font: 800 clamp(0.78rem, 1.5vw, 1rem)/1.15 var(--mono);
  letter-spacing: 0.04em;
  text-align: right;
}

.year-lockup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  margin: 3rem 0;
  padding: 1.5rem 0;
  border-block: 1px solid rgba(239, 231, 211, 0.24);
  font: 700 0.58rem/1.4 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.year-lockup span:last-child {
  text-align: right;
}

.year-lockup strong {
  color: var(--gold);
  font: 700 clamp(3.5rem, 7vw, 7.5rem)/0.7 var(--display);
  letter-spacing: -0.06em;
}

.call-response {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(239, 231, 211, 0.25);
  background: rgba(239, 231, 211, 0.2);
}

.call-response div {
  padding: 1.25rem;
  background: rgba(24, 4, 2, 0.5);
}

.call-response span,
.call-response strong {
  display: block;
}

.call-response span {
  margin-bottom: 0.55rem;
  color: rgba(239, 231, 211, 0.55);
  font: 700 0.58rem/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.call-response strong {
  color: var(--gold);
  font: 400 clamp(1.2rem, 2vw, 2rem)/1 var(--display);
}

.source-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-top: 2rem;
}

.source-pair a,
.inline-link,
.arc-source {
  color: var(--gold);
  font: 700 0.65rem/1.3 var(--mono);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.source-pair a:hover,
.inline-link:hover,
.arc-source:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.voice-section {
  position: relative;
  z-index: 3;
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 10vw, 10rem);
  background: #eee5d2;
}

.voice-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(3rem, 8vw, 10rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.inline-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--red);
}

.transcript-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(145deg, transparent 0 54%, rgba(207, 31, 22, 0.12) 54% 100%),
    var(--ink-soft);
  box-shadow: 1.5rem 1.5rem 0 rgba(10, 9, 7, 0.09);
}

.transcript-card::after {
  content: "B";
  position: absolute;
  right: -0.1em;
  bottom: -0.25em;
  color: rgba(239, 231, 211, 0.035);
  font: 700 20rem/1 var(--display);
}

.transcript-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font: 700 0.59rem/1 var(--mono);
  letter-spacing: 0.11em;
}

.transcript-topline span:first-child {
  color: var(--gold);
}

.waveform {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  height: 5rem;
  margin: 2.2rem 0;
  opacity: 0.72;
}

.waveform span {
  width: 2px;
  height: 30%;
  background: var(--gold);
}

.waveform span:nth-child(3n) { height: 80%; }
.waveform span:nth-child(4n) { height: 48%; }
.waveform span:nth-child(5n) { height: 100%; }
.waveform span:nth-child(7n) { height: 66%; }

.transcript-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font: 400 clamp(2.5rem, 5vw, 6rem)/0.92 var(--display);
  letter-spacing: -0.055em;
}

.transcript-card > p {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  margin: 1.5rem 0 3rem;
  color: rgba(239, 231, 211, 0.55);
  font-size: 0.8rem;
  line-height: 1.5;
}

.transcript-card audio {
  display: none;
}

.clip-player,
.clip-source-links {
  position: relative;
  z-index: 2;
}

.clip-player {
  border: 1px solid rgba(240, 169, 47, 0.4);
  background: rgba(10, 9, 7, 0.56);
}

.clip-toggle {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  color: var(--paper);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.clip-toggle:hover,
.clip-toggle:focus-visible {
  background: rgba(240, 169, 47, 0.08);
}

.clip-icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  color: var(--paper);
  background: var(--red);
  border-radius: 50%;
  font-size: 0.72rem;
  line-height: 1;
  box-shadow: 0 0 0 0.35rem rgba(207, 31, 22, 0.12);
}

.clip-copy small,
.clip-copy strong {
  display: block;
}

.clip-copy small {
  margin-bottom: 0.45rem;
  color: var(--gold);
  font: 700 0.54rem/1 var(--mono);
  letter-spacing: 0.1em;
}

.clip-copy strong {
  font: 700 clamp(0.68rem, 1.4vw, 0.86rem)/1.25 var(--mono);
  letter-spacing: 0.07em;
}

.clip-progress {
  height: 3px;
  overflow: hidden;
  background: rgba(239, 231, 211, 0.12);
}

.clip-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
  transition: width 120ms linear;
}

.clip-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1rem;
  color: rgba(239, 231, 211, 0.46);
  font: 700 0.5rem/1 var(--mono);
  letter-spacing: 0.08em;
}

.clip-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  margin-top: 1rem;
}

.clip-source-links a {
  color: var(--gold);
  font: 700 0.57rem/1.35 var(--mono);
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.clip-source-links a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.transcript-card.is-playing .clip-icon {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 0 0 0.45rem rgba(240, 169, 47, 0.12), 0 0 1.2rem rgba(240, 169, 47, 0.32);
}

.transcript-card.is-playing .waveform span {
  animation: waveform-live 720ms ease-in-out infinite alternate;
}

.transcript-card.is-playing .waveform span:nth-child(2n) { animation-delay: -180ms; }
.transcript-card.is-playing .waveform span:nth-child(3n) { animation-delay: -360ms; }

@keyframes waveform-live {
  from { transform: scaleY(0.45); opacity: 0.5; }
  to { transform: scaleY(1); opacity: 1; }
}

.archive-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(10, 9, 7, 0.24);
  border-bottom: 1px solid rgba(10, 9, 7, 0.24);
}

.archive-timeline article {
  position: relative;
  min-height: 14rem;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid rgba(10, 9, 7, 0.16);
}

.archive-timeline article:last-child {
  border-right: 0;
}

.archive-timeline article::before {
  content: "";
  position: absolute;
  top: -0.3rem;
  left: 1.25rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--paper);
  border: 1px solid var(--red);
  border-radius: 50%;
}

.archive-timeline time,
.archive-timeline strong {
  display: block;
  font: 700 0.65rem/1 var(--mono);
  letter-spacing: 0.1em;
}

.archive-timeline time {
  margin-bottom: 3.8rem;
  color: var(--red);
}

.archive-timeline p {
  color: #716550;
  font-size: 0.77rem;
  line-height: 1.5;
}

.archive-timeline .timeline-now {
  color: var(--paper);
  background: var(--red);
}

.archive-timeline .timeline-now::before {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 0.3rem rgba(240, 169, 47, 0.2);
}

.archive-timeline .timeline-now time,
.archive-timeline .timeline-now p {
  color: var(--paper);
}

.homecoming-section {
  position: relative;
  z-index: 3;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 50% 95%, rgba(255, 106, 24, 0.22), transparent 35%),
    var(--ink);
}

.homecoming-rays {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background: repeating-conic-gradient(from 262deg at 50% 92%, transparent 0 8deg, rgba(240, 169, 47, 0.06) 8deg 12deg);
  mask-image: linear-gradient(to bottom, transparent 0 20%, black 100%);
}

.homecoming-shell {
  position: relative;
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 10vw, 10rem);
}

.homecoming-copy {
  max-width: 76rem;
  margin: clamp(5rem, 10vw, 10rem) auto 0;
  text-align: center;
}

.homecoming-copy .kicker {
  display: inline;
  margin-inline: 0.35rem;
  color: rgba(239, 231, 211, 0.48);
}

.homecoming-copy .kicker + .kicker::before {
  content: " / ";
  color: var(--red);
}

.homecoming-copy h2 {
  margin: 1.5rem 0 2rem;
  color: var(--gold);
  font: 700 clamp(4.3rem, 12vw, 13rem)/0.72 var(--display);
  letter-spacing: -0.075em;
  text-shadow: 0 0.03em 0 var(--red-dark);
}

.homecoming-deck {
  max-width: 46rem;
  margin: 0 auto 1.5rem;
  color: rgba(239, 231, 211, 0.66);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
}

.arc-source {
  display: inline-block;
  margin-top: 1rem;
}

.contract-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  max-width: 62rem;
  margin: clamp(4rem, 8vw, 8rem) auto 0;
  padding: 1.5rem;
  border: 1px solid rgba(239, 231, 211, 0.22);
  background: rgba(239, 231, 211, 0.04);
}

.contract-identity > span,
.contract-identity > strong {
  display: block;
  font-family: var(--mono);
}

.contract-identity > span {
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
}

.contract-identity > strong {
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  letter-spacing: 0.07em;
  overflow-wrap: anywhere;
}

.contract-panel p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(239, 231, 211, 0.42);
  font: 400 0.66rem/1.5 var(--mono);
}

.contract-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.contract-actions button,
.contract-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.25rem;
  padding: 0.95rem 1rem;
  font: 800 0.65rem/1 var(--mono);
  letter-spacing: 0.09em;
  text-decoration: none;
}

.contract-actions button {
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(239, 231, 211, 0.28);
}

.contract-actions a {
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold);
}

.contract-actions button:disabled,
.contract-actions a[aria-disabled="true"] {
  opacity: 0.42;
  cursor: not-allowed;
}

.contract-actions a:not([aria-disabled="true"]):hover {
  background: var(--paper);
  border-color: var(--paper);
}

.status-orb {
  width: 0.7rem;
  height: 0.7rem;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0.35rem rgba(240, 169, 47, 0.12), 0 0 1rem var(--gold);
  animation: status-pulse 2.2s ease-out infinite;
}

@keyframes status-pulse {
  50% { box-shadow: 0 0 0 0.65rem rgba(240, 169, 47, 0.02), 0 0 1.4rem var(--gold); }
}

.final-mark {
  display: grid;
  grid-template-columns: minmax(15rem, 29rem) 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 70rem;
  margin: clamp(5rem, 10vw, 10rem) auto 0;
}

.final-mark picture {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 5rem rgba(207, 31, 22, 0.25);
}

.final-mark img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.final-mark span,
.final-mark strong {
  display: block;
}

.final-mark div > span {
  margin-bottom: 1rem;
  color: var(--red);
  font: 800 0.75rem/1 var(--mono);
  letter-spacing: 0.18em;
}

.final-mark strong {
  font: 400 clamp(2.5rem, 5vw, 5.5rem)/0.9 var(--display);
  letter-spacing: -0.055em;
}

.final-mark button {
  position: relative;
  min-width: 10rem;
  margin-top: 2rem;
  padding: 0.9rem 1rem;
  overflow: hidden;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(240, 169, 47, 0.52);
  font: 700 0.62rem/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.copy-success {
  position: absolute;
  inset: 0;
  display: grid !important;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  transform: translateY(105%);
  transition: transform 180ms ease;
}

.final-mark button.is-copied .copy-success {
  transform: none;
}

.closing-manifesto {
  position: relative;
  z-index: 3;
  padding: 1.5rem 0 clamp(5rem, 10vw, 9rem);
  overflow: clip;
  contain: paint;
  background: var(--gold);
}

.closing-track {
  display: flex;
  width: max-content;
  color: var(--red-dark);
  font: 800 clamp(2.5rem, 6vw, 7rem)/1 var(--sans);
  letter-spacing: -0.06em;
  white-space: nowrap;
  animation: ticker-run 24s linear infinite;
}

.closing-track span {
  padding-right: 0.3em;
}

@keyframes ticker-run {
  to { transform: translateX(-50%); }
}

.closing-copy {
  padding-top: clamp(5rem, 10vw, 9rem);
  text-align: center;
}

.closing-copy > p:first-child {
  margin: 0;
  font: 400 clamp(1.5rem, 3vw, 3rem)/1 var(--display);
  font-style: italic;
}

.closing-copy h2 {
  margin: 0.15em 0;
  color: var(--red-dark);
  font: 700 clamp(4rem, 11vw, 12rem)/0.8 var(--display);
  letter-spacing: -0.075em;
}

.closing-copy > p:not(:first-child) {
  max-width: 43rem;
  margin: 1.5rem auto 0;
  color: rgba(10, 9, 7, 0.7);
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  line-height: 1.6;
}

.vault-action {
  margin-top: 2.5rem;
  padding: 1rem 1.25rem;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  font: 700 0.66rem/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease;
}

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

.site-footer {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.6fr 1.4fr auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(3rem, 6vw, 6rem) var(--page-x);
  color: var(--paper);
  background: var(--ink);
}

.footer-mark > span {
  color: var(--gold);
  font: 700 clamp(2.5rem, 5vw, 5.5rem)/0.8 var(--display);
  letter-spacing: -0.06em;
}

.footer-mark p,
.copyright {
  color: rgba(239, 231, 211, 0.42);
  font: 700 0.58rem/1.45 var(--mono);
  letter-spacing: 0.12em;
}

.footer-note {
  max-width: 46rem;
}

.footer-note p {
  margin: 0 0 0.8rem;
  color: rgba(239, 231, 211, 0.48);
  font-size: 0.72rem;
  line-height: 1.6;
}

.copyright {
  margin: 0;
  text-align: right;
  white-space: nowrap;
}

.source-vault {
  width: min(66rem, calc(100% - 2rem));
  max-height: calc(100dvh - 2rem);
  margin: auto;
  padding: 0;
  overflow: auto;
  color: var(--paper);
  background: var(--ink-soft);
  border: 1px solid rgba(239, 231, 211, 0.25);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.7);
}

.source-vault::backdrop {
  background: rgba(5, 4, 3, 0.84);
  backdrop-filter: blur(8px);
}

.vault-shell {
  padding: clamp(1.25rem, 4vw, 3rem);
}

.vault-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(239, 231, 211, 0.2);
}

.vault-header span {
  color: var(--gold);
  font: 700 0.62rem/1 var(--mono);
  letter-spacing: 0.13em;
}

.vault-header h2 {
  margin: 0.2rem 0 0;
  font: 700 clamp(2.2rem, 6vw, 5rem)/1 var(--display);
  letter-spacing: -0.06em;
}

.vault-header button {
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(239, 231, 211, 0.25);
  font-size: 1.8rem;
  cursor: pointer;
}

.vault-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
}

.vault-intro p {
  max-width: 35rem;
  margin: 0;
  color: rgba(239, 231, 211, 0.62);
  line-height: 1.55;
}

.vault-intro span {
  color: var(--red);
  font: 700 0.62rem/1 var(--mono);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.source-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.source-list li {
  display: grid;
  grid-template-columns: 3rem 1fr 2.5rem;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(239, 231, 211, 0.13);
}

.source-number {
  color: var(--gold);
  font: 700 0.63rem/1 var(--mono);
}

.source-date {
  margin: 0 0 0.4rem;
  color: var(--red);
  font: 700 0.58rem/1 var(--mono);
  letter-spacing: 0.1em;
}

.source-list h3 {
  margin: 0;
  font: 400 clamp(1.2rem, 2vw, 1.75rem)/1.05 var(--display);
}

.source-list div > p:last-child {
  margin: 0.45rem 0 0;
  color: rgba(239, 231, 211, 0.5);
  font-size: 0.74rem;
  line-height: 1.5;
}

.source-list li > a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--gold);
  border: 1px solid rgba(240, 169, 47, 0.4);
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.source-list li > a:hover {
  color: var(--ink);
  background: var(--gold);
}

.vault-clarifier {
  margin-top: 1rem;
  padding: 1.25rem;
  color: var(--ink);
  background: var(--paper);
}

.vault-clarifier strong {
  color: var(--red);
  font: 700 0.62rem/1 var(--mono);
  letter-spacing: 0.12em;
}

.vault-clarifier p {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
}

.reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.75, 0.25, 1),
    transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 4.25rem;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 0 var(--page-x);
    overflow: hidden;
    color: var(--paper);
    background: rgba(10, 9, 7, 0.98);
    border-bottom: 1px solid rgba(239, 231, 211, 0.14);
    max-height: 0;
    opacity: 0;
    transition:
      max-height 220ms ease,
      opacity 180ms ease,
      padding 220ms ease;
  }

  .site-header.nav-open .site-nav {
    max-height: 24rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    opacity: 1;
  }

  .site-nav a,
  .text-button {
    width: 100%;
    padding: 1rem 0;
    text-align: left;
    border-bottom: 1px solid rgba(239, 231, 211, 0.1);
  }

  .site-nav a::after,
  .text-button::after {
    display: none;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(0.2rem) rotate(45deg);
  }

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

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
    padding-top: 8rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-art {
    justify-self: center;
    width: min(86vw, 39rem);
    margin: -1.2rem auto 0;
  }

  .hero-title em {
    font-size: clamp(5rem, 18vw, 10rem);
  }

  .hero-foot {
    grid-column: 1;
  }

  .receipt-stage,
  .phoenix-layout,
  .voice-grid {
    grid-template-columns: 1fr;
  }

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

  .lore-beats span {
    min-height: 7rem;
    border-bottom: 1px solid rgba(10, 9, 7, 0.24);
  }

  .lore-beats span:nth-child(3) {
    border-right: 0;
  }

  .lore-beats span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .lore-beats span:last-child {
    grid-column: span 2;
  }

  .receipt-card {
    max-width: 44rem;
    margin-inline: auto;
  }

  .phoenix-copy {
    order: -1;
  }

  .cover-frame {
    width: min(34rem, calc(100% - 1.5rem));
    margin-inline: auto;
  }

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

  .archive-timeline article:nth-child(3) {
    border-right: 0;
  }

  .archive-timeline article:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(10, 9, 7, 0.16);
  }

  .site-footer {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .copyright {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --page-x: 1.1rem;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 4rem;
  }

  .site-nav {
    top: 4rem;
  }

  .hero {
    padding-top: 6.75rem;
    padding-bottom: 1.25rem;
  }

  .hero-grid {
    background-size: 20vw 20vw;
  }

  .hero-title {
    margin-top: 1.2rem;
  }

  .hero-title span {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-title strong {
    margin-left: 0.18em;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-title em {
    margin-top: 0.12em;
    font-size: clamp(4.25rem, 20.5vw, 6.55rem);
    line-height: 0.77;
  }

  .hero-deck {
    margin-top: 1.8rem;
    font-size: 0.95rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .primary-action,
  .secondary-action {
    min-width: 0;
    padding: 0.9rem 0.75rem;
    font-size: 0.56rem;
  }

  .hero-art {
    width: min(100%, 33rem);
    margin-top: -0.5rem;
  }

  .orbit-label {
    font-size: 0.48rem;
  }

  .hero-foot {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    margin-top: 0;
    font-size: 0.48rem;
  }

  .hero-foot-line {
    display: none;
  }

  .section-index {
    grid-template-columns: 2.2rem 1fr;
  }

  .wordmark-logo {
    width: 2.25rem;
    height: 2.25rem;
  }

  .hero-proof {
    grid-template-columns: 4.6rem 1fr;
    padding: 0.7rem;
  }

  .hero-proof > span {
    min-width: 0;
  }

  .lore-bridge-title h2 {
    font-size: clamp(3.15rem, 15vw, 5.25rem);
  }

  .lore-bridge-story {
    font-size: clamp(1.45rem, 7.2vw, 2.25rem);
  }

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

  .lore-beats span,
  .lore-beats span:nth-child(3) {
    min-height: 6.5rem;
    border-right: 1px solid rgba(10, 9, 7, 0.24);
    border-bottom: 1px solid rgba(10, 9, 7, 0.24);
  }

  .lore-beats span:nth-child(2n) {
    border-right: 0;
  }

  .lore-beats span:last-child {
    grid-column: 1 / -1;
    min-height: 5.25rem;
    border-right: 0;
    border-bottom: 0;
  }

  .lore-beats small {
    margin-bottom: 1.35rem;
  }

  .lore-code {
    display: grid;
  }

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

  .receipt-proof-grid span {
    border-right: 0;
    border-bottom: 1px solid rgba(10, 9, 7, 0.16);
  }

  .receipt-proof-grid span:last-child {
    border-bottom: 0;
  }

  .receipt-source-links,
  .bancor-origin-link {
    width: 100%;
  }

  .phoenix-clarity {
    grid-template-columns: 1fr;
  }

  .phoenix-clarity strong {
    text-align: left;
  }

  .receipt-stage {
    gap: 3.5rem;
    padding: 3.5rem 0;
  }

  .receipt-card {
    padding: 1.3rem;
  }

  .receipt-card::before {
    right: -0.3rem;
    font-size: 0.5rem;
  }

  .receipt-card blockquote {
    margin: 3rem 0;
    font-size: 1.7rem;
  }

  .receipt-card-foot {
    display: grid;
    gap: 1rem;
  }

  .receipt-card-foot a {
    text-align: left;
  }

  .receipt-copy h2,
  .voice-copy h2 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .lost-strip {
    display: grid;
    gap: 0.5rem;
  }

  .phoenix-copy h2 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .year-lockup {
    grid-template-columns: 1fr 1fr;
  }

  .year-lockup strong {
    grid-row: 1 / 3;
    grid-column: 2;
    font-size: clamp(3.5rem, 20vw, 6rem);
  }

  .year-lockup span:last-child {
    text-align: left;
  }

  .call-response {
    grid-template-columns: 1fr;
  }

  .cover-stamp {
    right: -0.8rem;
    width: 4.7rem;
    height: 4.7rem;
    font-size: 0.5rem;
  }

  .transcript-card blockquote {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

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

  .archive-timeline article,
  .archive-timeline article:nth-child(3) {
    min-height: 12rem;
    border-right: 1px solid rgba(10, 9, 7, 0.16);
    border-bottom: 1px solid rgba(10, 9, 7, 0.16);
  }

  .archive-timeline article:nth-child(2n) {
    border-right: 0;
  }

  .archive-timeline article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .archive-timeline time {
    margin-bottom: 2.3rem;
  }

  .homecoming-copy .kicker {
    display: block;
    margin: 0.35rem 0;
  }

  .homecoming-copy .kicker + .kicker::before {
    display: none;
  }

  .homecoming-copy h2 {
    font-size: clamp(4.2rem, 21vw, 7rem);
  }

  .contract-actions {
    grid-template-columns: 1fr;
  }

  .final-mark {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-mark picture {
    width: min(22rem, 90%);
    margin-inline: auto;
  }

  .closing-copy h2 {
    font-size: clamp(4rem, 20vw, 6.5rem);
  }

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

  .copyright {
    grid-column: auto;
  }

  .vault-intro {
    display: grid;
    gap: 1rem;
  }

  .source-list li {
    grid-template-columns: 2rem 1fr 2.5rem;
    gap: 0.65rem;
  }
}

@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;
  }

  .ember-field {
    display: none;
  }

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