:root {
  --night-950: #050b0c;
  --night-900: #071213;
  --night-850: #0b1818;
  --night-800: #102120;
  --night-700: #19312d;
  --bone-100: #f4eddd;
  --bone-200: #ded4c1;
  --bone-300: #beb4a1;
  --bone-400: #918a7c;
  --gold-300: #e8c46a;
  --gold-400: #cda64d;
  --gold-500: #9e7830;
  --teal-300: #7be1d2;
  --teal-400: #45bcae;
  --verdant-300: #9bcf79;
  --ember-300: #ec9a62;
  --danger-300: #ed8c7b;
  --line: rgba(222, 212, 193, 0.2);
  --line-soft: rgba(222, 212, 193, 0.11);
  --shadow: rgba(0, 0, 0, 0.52);
  --display: "Cinzel", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --editorial: "Spectral", Georgia, serif;
  --page: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(84px, 10vw, 148px);

  /* Compatibility aliases used by the account and admin surfaces. */
  --bg: var(--night-950);
  --surface: var(--night-850);
  --ink: var(--bone-100);
  --ink-dim: var(--bone-300);
  --ink-mut: var(--bone-400);
  --gold: var(--gold-300);
  --verdant: var(--verdant-300);
  --wisp: var(--teal-300);
  --ember: var(--ember-300);
  --border: var(--gold-500);
  --serif: var(--editorial);
  --mono: var(--sans);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  background: var(--night-950);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--night-950);
  color: var(--bone-100);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

p,
h1,
h2,
h3,
figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--bone-100);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h2 {
  font-size: clamp(2.35rem, 5.2vw, 4.8rem);
}

h3 {
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
}

::selection {
  background: var(--gold-300);
  color: var(--night-950);
}

:focus-visible {
  outline: 3px solid var(--teal-300);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.page-width,
.wrap {
  width: min(var(--page), calc(100% - (2 * var(--gutter))));
  margin-inline: auto;
}

.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: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--bone-100);
  color: var(--night-950);
  font-weight: 700;
  transform: translateY(-150%);
}

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

.kicker,
.section-index,
.chapter-number,
.hero-note,
.development-caption,
.dispatch-date,
.capture-slot small,
.capture-slot > p,
.eyebrow,
.muted {
  color: var(--bone-400);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--bone-200);
}

.kicker > span {
  width: 24px;
  height: 1px;
  background: var(--gold-300);
}

.section-index {
  padding-top: 0.55rem;
  color: var(--gold-300);
}

.editorial-lede,
.lede {
  color: var(--bone-200);
  font-family: var(--editorial);
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  line-height: 1.45;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brandmark {
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.brand-name,
.brand .name {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.solid {
  border-color: var(--line-soft);
  background: rgba(5, 11, 12, 0.94);
  backdrop-filter: blur(12px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
}

.site-nav a {
  position: relative;
  color: var(--bone-300);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold-300);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 150ms ease, transform 150ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--bone-100);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav .nav-cta {
  min-height: 40px;
  padding: 8px 15px;
  border: 1px solid rgba(232, 196, 106, 0.62);
  color: var(--gold-300);
}

.site-nav .nav-cta:hover {
  border-color: var(--gold-300);
  background: rgba(232, 196, 106, 0.1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: var(--bone-100);
  cursor: pointer;
}

.nav-toggle > span[aria-hidden] {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 150ms ease;
}

.nav-toggle[aria-expanded="true"] > span[aria-hidden]:nth-of-type(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span[aria-hidden]:nth-of-type(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.button:hover,
.btn:hover {
  transform: translateY(-1px);
}

.button-primary,
.btn-gold {
  border-color: var(--gold-300);
  background: var(--gold-300);
  color: var(--night-950);
}

.button-primary:hover,
.btn-gold:hover {
  border-color: var(--bone-100);
  background: var(--bone-100);
}

.button-secondary,
.btn-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--bone-100);
}

.button-secondary:hover,
.btn-ghost:hover {
  border-color: var(--bone-200);
  background: rgba(244, 237, 221, 0.05);
}

.btn-danger {
  border-color: rgba(237, 140, 123, 0.55);
  background: transparent;
  color: var(--danger-300);
}

.button:disabled,
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--bone-100);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-decoration-color: var(--gold-400);
  text-transform: uppercase;
}

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

/* Campaign landing */
.campaign-hero {
  position: relative;
  display: grid;
  min-height: clamp(740px, 100svh, 980px);
  overflow: hidden;
  isolation: isolate;
}

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

.campaign-hero-art {
  z-index: -3;
}

.campaign-hero-art img {
  object-fit: cover;
  object-position: center center;
}

.campaign-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 11, 12, 0.93) 0%, rgba(5, 11, 12, 0.72) 32%, rgba(5, 11, 12, 0.05) 69%),
    linear-gradient(180deg, rgba(5, 11, 12, 0.3), transparent 28%, transparent 70%, var(--night-950));
}

.campaign-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 112px;
  padding-bottom: 92px;
}

.campaign-hero h1 {
  max-width: 760px;
  margin-top: 28px;
  font-size: clamp(4rem, 8.8vw, 8rem);
  line-height: 0.9;
  text-wrap: balance;
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}

.hero-lede {
  max-width: 640px;
  margin-top: 30px;
  color: var(--bone-200);
  font-family: var(--editorial);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.5;
  text-wrap: pretty;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.75);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.hero-note {
  margin-top: 28px;
  color: var(--bone-300);
}

.hero-scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 34px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--bone-300);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.premise-section {
  padding-block: var(--section-space);
  background:
    radial-gradient(circle at 75% 30%, rgba(69, 188, 174, 0.08), transparent 32%),
    var(--night-950);
}

.premise-layout,
.section-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 110px);
}

.premise-copy {
  max-width: 900px;
}

.premise-copy h2 {
  max-width: 780px;
}

.premise-copy .editorial-lede {
  max-width: 780px;
  margin-top: 34px;
}

.premise-copy > p:last-child {
  max-width: 660px;
  margin-top: 24px;
  color: var(--bone-400);
}

.chapters {
  background: var(--night-900);
}

.chapter {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(48px, 8vw, 128px);
  align-items: center;
  min-height: 720px;
  padding-block: clamp(76px, 9vw, 128px);
  border-top: 1px solid var(--line-soft);
}

.chapter:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.chapter-reverse .chapter-copy {
  grid-column: 2;
}

.chapter-reverse .chapter-art {
  grid-row: 1;
  grid-column: 1;
}

.chapter-copy h2 {
  margin-top: 20px;
  font-size: clamp(2.7rem, 5vw, 5.25rem);
}

.chapter-copy > p:not(.chapter-number, .chapter-detail) {
  max-width: 600px;
  margin-top: 28px;
  color: var(--bone-300);
  font-size: 1.05rem;
}

.chapter-detail {
  max-width: 560px;
  margin-top: 28px;
  padding-left: 18px;
  border-left: 1px solid var(--gold-400);
  color: var(--bone-200);
  font-family: var(--editorial);
  font-size: 1.1rem;
  font-style: italic;
}

.chapter-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}

.chapter-art::before {
  position: absolute;
  z-index: 0;
  width: min(70%, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(232, 196, 106, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 188, 174, 0.14), transparent 66%);
  content: "";
}

.chapter-art img {
  position: relative;
  z-index: 1;
  width: min(92%, 650px);
  max-height: 530px;
  object-fit: contain;
  filter: drop-shadow(0 35px 28px rgba(0, 0, 0, 0.42));
}

.chapter-art figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--bone-400);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chapter-art-brave::before {
  background: radial-gradient(circle, rgba(236, 154, 98, 0.13), transparent 66%);
}

.system-constellation {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  min-height: 480px;
  background:
    linear-gradient(var(--line-soft), var(--line-soft)) center / 1px 100% no-repeat,
    linear-gradient(90deg, var(--line-soft), var(--line-soft)) center / 100% 1px no-repeat;
}

.system-constellation::before {
  width: 150px;
  border-color: rgba(123, 225, 210, 0.28);
  background: radial-gradient(circle, rgba(123, 225, 210, 0.18), transparent 70%);
}

.system-constellation span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--bone-200);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
}

.paquirri-section {
  padding-block: var(--section-space);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 62%, rgba(155, 207, 121, 0.1), transparent 34%),
    var(--night-950);
}

.section-heading > div > p {
  max-width: 660px;
  margin-top: 26px;
  color: var(--bone-400);
  font-size: 1.05rem;
}

.paquirri-ensemble {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 0;
  min-height: 570px;
  margin-top: 54px;
}

.paquirri-ensemble figure {
  position: relative;
  min-width: 0;
  text-align: center;
}

.paquirri-ensemble figure:nth-child(1) {
  transform: translateX(13%) scale(0.85);
}

.paquirri-ensemble figure:nth-child(3) {
  transform: translateX(-13%) scale(0.85);
}

.paquirri-ensemble figure.featured {
  z-index: 2;
}

.paquirri-ensemble img {
  width: 100%;
  height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 35px 25px rgba(0, 0, 0, 0.48));
}

.paquirri-ensemble figcaption {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.paquirri-ensemble figcaption strong {
  font-family: var(--display);
  font-size: 1.2rem;
}

.paquirri-ensemble figcaption span {
  color: var(--bone-400);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.development-caption {
  margin-top: 52px;
  text-align: center;
}

.proof-section {
  padding-top: var(--section-space);
  background: var(--night-900);
}

.proof-heading {
  padding-bottom: 68px;
}

.capture-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.capture-slot {
  position: relative;
  min-height: 470px;
  padding: clamp(28px, 4vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 35%, rgba(5, 11, 12, 0.93)),
    radial-gradient(circle at 70% 15%, rgba(69, 188, 174, 0.12), transparent 40%),
    #0c1919;
}

.capture-slot + .capture-slot {
  border-left: 1px solid var(--line-soft);
}

.capture-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(222, 212, 193, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 212, 193, 0.1) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(500px) rotateX(52deg) scale(1.35) translateY(-12%);
  transform-origin: center bottom;
}

.capture-slot > p,
.capture-slot h3,
.capture-slot small {
  position: relative;
  z-index: 1;
}

.capture-slot > p {
  display: flex;
  gap: 14px;
  color: var(--gold-300);
}

.capture-slot h3 {
  max-width: 420px;
  margin-top: 250px;
  font-size: clamp(1.55rem, 2.5vw, 2.6rem);
}

.capture-slot small {
  display: block;
  margin-top: 18px;
}

.dispatch-section {
  padding-block: var(--section-space);
  background: var(--night-950);
}

.dispatch-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 9vw, 140px);
}

.dispatch-intro h2 {
  margin-top: 20px;
  font-size: clamp(2.4rem, 4.5vw, 4.25rem);
}

.dispatch-intro .text-link {
  margin-top: 32px;
}

.latest-dispatch {
  align-self: center;
  padding-block: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.latest-dispatch h3 {
  max-width: 720px;
  margin-top: 20px;
  font-size: clamp(2rem, 4vw, 3.75rem);
}

.latest-dispatch > p:not(.dispatch-date) {
  max-width: 650px;
  margin-top: 22px;
  color: var(--bone-300);
}

.latest-dispatch .text-link {
  margin-top: 28px;
}

.focus-section {
  padding-block: 46px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--night-850);
}

.focus-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1.1fr) auto;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}

.focus-layout h2 {
  margin-top: 10px;
  font-size: clamp(1.9rem, 3.3vw, 3.2rem);
}

.focus-progress-line {
  height: 2px;
  overflow: hidden;
  background: var(--line);
}

.focus-progress-line span {
  display: block;
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-400), var(--teal-300));
}

.focus-progress p {
  display: flex;
  gap: 16px;
  align-items: baseline;
  margin-top: 12px;
  color: var(--bone-400);
  font-size: 0.82rem;
}

.focus-progress strong {
  color: var(--bone-100);
  font-family: var(--display);
  font-size: 1.35rem;
}

.waitlist-section {
  position: relative;
  padding-block: clamp(96px, 12vw, 170px);
  overflow: hidden;
  background: #071616;
  isolation: isolate;
}

.waitlist-glow {
  position: absolute;
  z-index: -1;
  right: -15vw;
  bottom: -60%;
  width: 75vw;
  aspect-ratio: 1;
  border: 1px solid rgba(123, 225, 210, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 188, 174, 0.16), transparent 62%);
}

.waitlist-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: clamp(52px, 9vw, 140px);
  align-items: end;
}

.waitlist-layout h2 {
  margin-top: 24px;
  font-size: clamp(3.3rem, 7vw, 7.25rem);
  line-height: 0.94;
}

.waitlist-copy > p:first-child {
  color: var(--bone-200);
  font-family: var(--editorial);
  font-size: 1.25rem;
}

.waitlist-form {
  margin-top: 32px;
}

.waitlist-form > label {
  display: block;
  margin-bottom: 10px;
  color: var(--bone-300);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.waitlist-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
}

.waitlist-fields input {
  min-width: 0;
  min-height: 50px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 0;
  outline: 0;
  background: rgba(5, 11, 12, 0.58);
  color: var(--bone-100);
}

.waitlist-fields input:focus {
  border-color: var(--teal-300);
  box-shadow: inset 0 0 0 1px var(--teal-300);
}

.signup-ok {
  min-height: 1.5em;
  margin-top: 12px;
  color: var(--bone-300);
  font-size: 0.84rem;
}

.signup-ok.is-success {
  color: var(--verdant-300);
}

.signup-ok.is-error {
  color: var(--danger-300);
}

.signup-note {
  margin-top: 4px;
  color: var(--bone-400);
  font-size: 0.72rem;
}

/* Publication and roadmap pages */
.interior-page {
  background:
    radial-gradient(circle at 80% 0, rgba(69, 188, 174, 0.08), transparent 30%),
    var(--night-950);
}

.interior-main {
  min-height: 72svh;
  padding-top: 78px;
}

.publication-hero,
.roadmap-hero,
.account-gateway-hero {
  padding-block: clamp(92px, 11vw, 160px) clamp(72px, 8vw, 112px);
  border-bottom: 1px solid var(--line-soft);
}

.publication-hero-layout,
.roadmap-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: end;
}

.interior-title {
  max-width: 920px;
  margin-top: 20px;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
  line-height: 0.93;
}

.interior-intro {
  max-width: 620px;
  color: var(--bone-300);
  font-family: var(--editorial);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.publication-content,
.roadmap-content {
  padding-block: clamp(74px, 9vw, 130px);
}

.publication-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}

.publication-toolbar a {
  color: var(--bone-400);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.publication-status {
  padding-block: 32px;
  color: var(--bone-400);
}

.publication-status.is-error {
  color: var(--danger-300);
}

.dispatch-list {
  display: grid;
}

.dispatch-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr) auto;
  gap: clamp(26px, 5vw, 74px);
  align-items: start;
  padding-block: 40px;
  border-top: 1px solid var(--line-soft);
}

.dispatch-card:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.dispatch-card time {
  color: var(--bone-400);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dispatch-card-cover {
  grid-row: span 2;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 22px;
  object-fit: cover;
}

.dispatch-card h2 {
  font-size: clamp(1.8rem, 3.7vw, 3.4rem);
}

.dispatch-card p {
  max-width: 720px;
  margin-top: 16px;
  color: var(--bone-300);
}

.dispatch-card > a {
  align-self: center;
}

.publication-entry {
  width: min(860px, 100%);
  margin-inline: auto;
}

.publication-entry-head {
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line-soft);
}

.publication-entry-head h1 {
  margin-top: 18px;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.publication-entry-head > p {
  margin-top: 22px;
  color: var(--bone-300);
  font-family: var(--editorial);
  font-size: 1.35rem;
}

.publication-entry-head time {
  display: block;
  margin-top: 22px;
  color: var(--bone-400);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.publication-cover {
  width: min(1080px, 100%);
  margin: 0 auto 58px;
}

.publication-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.publication-cover figcaption,
.publication-entry-body figcaption {
  margin-top: 10px;
  color: var(--bone-400);
  font-size: 0.75rem;
}

.publication-entry-body {
  padding-top: 52px;
  color: var(--bone-200);
  font-family: var(--editorial);
  font-size: 1.17rem;
  line-height: 1.85;
}

.publication-entry-body > * + * {
  margin-top: 1.45em;
}

.publication-entry-body h2,
.publication-entry-body h3 {
  margin-top: 1.65em;
}

.publication-entry-body h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.publication-entry-body h3 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.publication-entry-body a {
  color: var(--teal-300);
}

.publication-entry-body blockquote {
  padding-left: 24px;
  border-left: 1px solid var(--gold-300);
  color: var(--bone-300);
  font-style: italic;
}

.publication-entry-body pre {
  max-width: 100%;
  overflow: auto;
  padding: 20px;
  border-left: 2px solid var(--teal-400);
  background: var(--night-850);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.88rem;
}

.publication-entry-body figure {
  margin-block: 2.4em;
}

.publication-entry-body figure img {
  width: 100%;
  height: auto;
}

.roadmap-summary {
  display: flex;
  gap: 26px;
  align-items: baseline;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.roadmap-summary strong {
  color: var(--gold-300);
  font-family: var(--display);
  font-size: 3rem;
}

.roadmap-summary span {
  color: var(--bone-400);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.roadmap-list {
  display: grid;
}

.roadmap-goal {
  display: grid;
  grid-template-columns: minmax(110px, 0.2fr) minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  padding-block: 48px;
  border-top: 1px solid var(--line-soft);
}

.roadmap-goal:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.roadmap-percent {
  color: var(--gold-300);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.roadmap-goal h2 {
  font-size: clamp(1.65rem, 3vw, 2.7rem);
}

.roadmap-status {
  display: block;
  margin-top: 12px;
  color: var(--teal-300);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.roadmap-copy p {
  color: var(--bone-300);
}

.roadmap-copy p + p {
  margin-top: 14px;
  color: var(--bone-400);
}

.roadmap-bar {
  height: 2px;
  margin-top: 22px;
  background: var(--line-soft);
}

.roadmap-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-400), var(--teal-300));
}

/* Account gateway */
.account-gateway-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: clamp(46px, 8vw, 120px);
  align-items: end;
}

.account-gateway-actions {
  display: grid;
  gap: 18px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.account-gateway-actions a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
  color: var(--bone-200);
  font-family: var(--display);
  font-size: 1.25rem;
  text-decoration: none;
}

.account-gateway-actions a + a {
  border-top: 1px solid var(--line-soft);
}

.account-gateway-note {
  max-width: 720px;
  margin-top: 46px;
  color: var(--bone-400);
}

/* Footer */
.site-footer,
footer {
  padding-top: 70px;
  background: #040909;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-brand > p {
  max-width: 410px;
  margin-top: 18px;
  color: var(--bone-400);
  font-size: 0.84rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-content: start;
  justify-content: flex-end;
}

.footer-nav a {
  color: var(--bone-300);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--gold-300);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-block: 22px;
  border-top: 1px solid var(--line-soft);
  color: var(--bone-400);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Legacy status primitives retained for existing account/admin scripts. */
.chip,
.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--bone-300);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip.done,
.chip.code,
.chip.smoke {
  border-color: rgba(155, 207, 121, 0.35);
  color: var(--verdant-300);
}

.chip.prog {
  border-color: rgba(123, 225, 210, 0.35);
  color: var(--teal-300);
}

.chip.post,
.chip.planned {
  color: var(--bone-400);
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.74rem;
  }

  .chapter {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 48px;
  }

  .capture-slot {
    min-height: 420px;
  }

  .capture-slot h3 {
    margin-top: 210px;
  }
}

@media (max-width: 920px) {
  .site-header.is-scrolled,
  .site-header.solid {
    background: rgba(5, 11, 12, 0.98);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .js .nav-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .js .nav-toggle[aria-expanded="true"] {
    border: 1px solid var(--line);
    background: var(--night-950);
  }

  .js .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    justify-content: safe center;
    gap: 0;
    padding: 100px var(--gutter) 40px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--night-950);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .js .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .js .site-nav a {
    padding-block: 14px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--bone-100);
    font-family: var(--display);
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .js .site-nav a::after {
    display: none;
  }

  .js .site-nav .nav-cta {
    margin-top: 28px;
    border: 1px solid var(--gold-300);
    font-family: var(--sans);
    font-size: 0.82rem;
    text-align: center;
  }

  .chapter,
  .chapter-reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .chapter-reverse .chapter-copy,
  .chapter-reverse .chapter-art {
    grid-row: auto;
    grid-column: auto;
  }

  .chapter-art {
    min-height: 420px;
  }

  .paquirri-ensemble {
    min-height: 450px;
  }

  .paquirri-ensemble img {
    height: 360px;
  }

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

  .capture-slot {
    min-height: 360px;
  }

  .capture-slot + .capture-slot {
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .capture-slot h3 {
    margin-top: 160px;
  }

  .focus-layout {
    grid-template-columns: 1fr 1fr;
  }

  .focus-layout .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .waitlist-layout,
  .publication-hero-layout,
  .roadmap-hero-layout,
  .account-gateway-layout {
    grid-template-columns: 1fr;
  }

  .roadmap-goal {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .roadmap-copy {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 20px;
    --section-space: 82px;
  }

  .site-header {
    min-height: 68px;
  }

  .brand-name,
  .brand .name {
    font-size: 0.8rem;
  }

  .site-nav:not(.is-open) {
    flex-wrap: wrap;
  }

  .campaign-hero {
    min-height: 860px;
  }

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

  .campaign-hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 11, 12, 0.91) 0%, rgba(5, 11, 12, 0.66) 34%, rgba(5, 11, 12, 0.08) 63%, var(--night-950) 100%);
  }

  .campaign-hero-content {
    justify-content: flex-start;
    padding-top: 132px;
    padding-bottom: 260px;
  }

  .campaign-hero h1 {
    margin-top: 22px;
    font-size: clamp(3.35rem, 16vw, 5.5rem);
  }

  .hero-lede {
    max-width: 520px;
    margin-top: 24px;
    font-size: 1.16rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
  }

  .hero-scroll {
    display: none;
  }

  .premise-layout,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .chapter {
    gap: 38px;
    padding-block: 72px;
  }

  .chapter-art {
    min-height: 350px;
  }

  .chapter-art img {
    max-height: 380px;
  }

  .system-constellation {
    min-height: 340px;
  }

  .paquirri-ensemble {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 20px;
  }

  .paquirri-ensemble figure,
  .paquirri-ensemble figure:nth-child(1),
  .paquirri-ensemble figure:nth-child(3) {
    transform: none;
  }

  .paquirri-ensemble figure + figure {
    margin-top: -30px;
  }

  .paquirri-ensemble img {
    height: 390px;
  }

  .proof-heading {
    padding-bottom: 48px;
  }

  .dispatch-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .focus-layout {
    grid-template-columns: 1fr;
  }

  .focus-layout .button {
    grid-column: auto;
  }

  .waitlist-layout h2 {
    font-size: clamp(3.2rem, 16vw, 5.25rem);
  }

  .waitlist-fields {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .waitlist-fields input {
    border-right: 1px solid var(--line);
  }

  .publication-hero,
  .roadmap-hero,
  .account-gateway-hero {
    padding-top: 96px;
  }

  .interior-title {
    font-size: clamp(3.2rem, 15vw, 5.4rem);
  }

  .dispatch-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dispatch-card > a {
    margin-top: 10px;
  }

  .roadmap-goal {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .roadmap-copy {
    grid-column: auto;
  }

  .footer-main,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 440px) {
  .campaign-hero-content {
    padding-top: 112px;
  }

  .campaign-hero h1 {
    font-size: 3.2rem;
  }

  .campaign-hero .kicker {
    max-width: 260px;
  }

  .account-gateway-hero .interior-title {
    font-size: 3.3rem;
    letter-spacing: -0.05em;
  }

  .chapter-art {
    min-height: 300px;
  }

  .paquirri-ensemble img {
    height: 330px;
  }

  .capture-slot {
    min-height: 330px;
  }

  .capture-slot h3 {
    margin-top: 130px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .campaign-hero-shade,
  .waitlist-glow,
  .capture-grid,
  .chapter-art::before {
    display: none;
  }

  .button,
  .btn,
  .site-nav .nav-cta {
    border: 1px solid ButtonText;
  }
}
