@font-face {
  font-family: "Century Expanded Local";
  src: url("Assets/Century Expanded Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Century Expanded Local";
  src: url("Assets/Century Expanded Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Century Expanded Local";
  src: url("Assets/Century Expanded Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Century Expanded Local";
  src: url("Assets/Century Expanded Italic.otf") format("opentype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Century Expanded Local";
  src: url("Assets/Century Expanded Bold Italic.otf") format("opentype");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Tamrin";
  src: url("Assets/Tamrin Italic.otf") format("opentype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montagna";
  src: url("Assets/MontagnaLTD.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Deutsch Gothic";
  src: url("Assets/Deutsch.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --black: #050505;
  --ink: #111111;
  --paper: #f5f1e8;
  --paper-deep: #e5dac8;
  --muted: #777064;
  --red: #b4282e;
  --gold: #b69155;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.18);
  --max: 1280px;
  --font-body: "Century Expanded Local", "EB Garamond", "Century Schoolbook", Georgia, serif;
  --font-display: "EB Garamond", "Century Expanded Local", Georgia, serif;
  --font-caslon: "Adobe Caslon Pro", "Libre Caslon Text", "Big Caslon", "Caslon", "EB Garamond", Georgia, serif;
  --font-small: "Cardo", "EB Garamond", Georgia, serif;
  --font-thrill: "Tamrin", "Cardo", "EB Garamond", Georgia, serif;
  --font-menu: "Courier Prime", "Courier New", monospace;
  --subtitle-gray: rgba(255, 255, 255, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.45;
}

body.nav-open {
  overflow: hidden;
}

body.email-gate-open {
  overflow: hidden;
}

body.email-gate-open .email-gate {
  position: fixed;
  z-index: 2147483647;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  background: rgba(5, 5, 5, 0);
  color: var(--white);
  transition: background-color 700ms ease, border-color 700ms ease, padding 360ms ease, backdrop-filter 700ms ease;
  backdrop-filter: blur(0);
}

.site-header.is-scrolled,
body.nav-open .site-header {
  padding: 16px 42px;
  background-color: rgba(5, 5, 5, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.blog-page .site-header:not(.is-scrolled),
.post-page .site-header:not(.is-scrolled),
.info-page .site-header:not(.is-scrolled),
.funding-page .site-header:not(.is-scrolled) {
  color: var(--ink);
}

.streaming-page .site-header:not(.is-scrolled) {
  color: var(--white);
}

.documentaries-page .site-header:not(.is-scrolled) {
  color: var(--white);
}

.blog-page.nav-open .site-header,
.post-page.nav-open .site-header,
.info-page.nav-open .site-header,
.funding-page.nav-open .site-header,
.blog-page .site-header.is-scrolled,
.post-page .site-header.is-scrolled,
.info-page .site-header.is-scrolled,
.funding-page .site-header.is-scrolled {
  color: var(--white);
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 800;
}

.brand-lockup {
  flex: 0 0 auto;
  display: grid;
  width: max-content;
  height: clamp(38px, 4.2vw, 58px);
  align-content: center;
}

.brand-title {
  display: block;
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(19px, 1.9vw, 30px);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.brand-subtitle {
  display: grid;
  width: 100%;
  grid-template-columns: 31% 4% 65%;
  column-gap: 0;
  margin-top: 4px;
  color: var(--subtitle-gray);
  font-family: var(--font-menu);
  font-size: clamp(5.2px, 0.54vw, 7.3px);
  font-weight: 400;
  letter-spacing: clamp(0.16em, 0.34vw, 0.42em);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 700ms ease;
}

.site-header.is-scrolled .brand-subtitle,
body.nav-open .site-header .brand-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.blog-page .site-header:not(.is-scrolled) .brand-subtitle,
.post-page .site-header:not(.is-scrolled) .brand-subtitle,
.info-page .site-header:not(.is-scrolled) .brand-subtitle,
.funding-page .site-header:not(.is-scrolled) .brand-subtitle {
  color: var(--muted);
}

.streaming-page .site-header:not(.is-scrolled) .brand-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.brand-subtitle::before {
  content: "";
  grid-column: 2;
}

.brand-subtitle span:first-child {
  grid-column: 1;
}

.brand-subtitle span:last-child {
  grid-column: 3;
  text-align: right;
}

.new-world-header .brand {
  grid-column: 2;
  grid-row: 1;
  gap: 0;
  justify-self: center;
}

.new-world-header .brand-lockup {
  gap: clamp(3px, 0.32vw, 5px);
  height: auto;
  justify-items: center;
}

.new-world-header .brand-title {
  font-family: "Deutsch Gothic", var(--font-display);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.new-world-header .brand-subtitle {
  display: block;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Century Expanded Local", var(--font-body);
  font-size: clamp(11px, 1vw, 15px);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-align: center;
}

.new-world-header .site-nav {
  grid-column: 1 / -1;
  grid-row: 1;
  position: relative;
  display: block;
  width: 100%;
}

.new-world-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.new-world-nav-side {
  position: absolute;
  top: 50%;
  display: flex;
  gap: clamp(18px, 1.6vw, 30px);
  align-items: center;
  transform: translateY(-50%);
}

.new-world-nav-left {
  left: 0;
}

.new-world-nav-right {
  right: 0;
}

.new-world-nav-social {
  gap: 8px;
  padding-right: 0;
  padding-left: clamp(10px, 1vw, 16px);
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.new-world-nav-social a {
  width: 22px;
  height: 22px;
}

.new-world-nav-social .social-substack {
  width: 18px;
}

.new-world-header .site-nav a {
  white-space: nowrap;
}

.new-world-header .site-nav > a:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.new-world-header .site-nav > a:last-child::after {
  background: var(--gold);
}

.brand-flag {
  flex: 0 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(10, 10.3%);
  width: clamp(38px, 4.2vw, 58px);
  aspect-ratio: 5 / 3;
  height: auto;
  overflow: hidden;
  filter: drop-shadow(1px 0 0 rgba(255, 255, 255, 0)) drop-shadow(-1px 0 0 rgba(255, 255, 255, 0)) drop-shadow(0 1px 0 rgba(255, 255, 255, 0)) drop-shadow(0 -1px 0 rgba(255, 255, 255, 0));
  transform-origin: 0 50%;
  transform-style: preserve-3d;
  transition: filter 700ms ease, opacity 700ms ease;
  will-change: transform;
}

.brand-flag::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.16) 24%, rgba(0, 0, 0, 0.2) 47%, rgba(255, 255, 255, 0.1) 72%, rgba(0, 0, 0, 0.18));
  content: "";
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.brand-flag span {
  min-width: 0;
  background-image: url("Assets/criminalsofpurposeflagconq.png");
  background-repeat: no-repeat;
  background-size: 1000% 100%;
  margin-right: -6%;
  transform-origin: center;
  will-change: transform, filter;
}

.brand-flag span:last-child {
  margin-right: 0;
}

.brand-flag span:nth-child(1) {
  background-position: 0% 50%;
}

.brand-flag span:nth-child(2) {
  background-position: 11.111% 50%;
}

.brand-flag span:nth-child(3) {
  background-position: 22.222% 50%;
}

.brand-flag span:nth-child(4) {
  background-position: 33.333% 50%;
}

.brand-flag span:nth-child(5) {
  background-position: 44.444% 50%;
}

.brand-flag span:nth-child(6) {
  background-position: 55.556% 50%;
}

.brand-flag span:nth-child(7) {
  background-position: 66.667% 50%;
}

.brand-flag span:nth-child(8) {
  background-position: 77.778% 50%;
}

.brand-flag span:nth-child(9) {
  background-position: 88.889% 50%;
}

.brand-flag span:nth-child(10) {
  background-position: 100% 50%;
}

.site-header.is-scrolled .brand-flag,
body.nav-open .site-header .brand-flag {
  filter: drop-shadow(1px 0 0 var(--subtitle-gray)) drop-shadow(-1px 0 0 var(--subtitle-gray)) drop-shadow(0 1px 0 var(--subtitle-gray)) drop-shadow(0 -1px 0 var(--subtitle-gray));
}

body.is-scrolling .brand-flag {
  overflow: hidden;
  animation: flagSway 780ms ease-in-out infinite;
}

body.is-scrolling .brand-flag::after {
  opacity: 0.65;
}

body.is-scrolling .brand-flag span {
  animation: flagSliceWave 780ms ease-in-out infinite;
}

body.is-scrolling .brand-flag span:nth-child(1) {
  animation-delay: -225ms;
}

body.is-scrolling .brand-flag span:nth-child(2) {
  animation-delay: -175ms;
}

body.is-scrolling .brand-flag span:nth-child(3) {
  animation-delay: -125ms;
}

body.is-scrolling .brand-flag span:nth-child(4) {
  animation-delay: -75ms;
}

body.is-scrolling .brand-flag span:nth-child(5) {
  animation-delay: -25ms;
}

body.is-scrolling .brand-flag span:nth-child(6) {
  animation-delay: 25ms;
}

body.is-scrolling .brand-flag span:nth-child(7) {
  animation-delay: 75ms;
}

body.is-scrolling .brand-flag span:nth-child(8) {
  animation-delay: 125ms;
}

body.is-scrolling .brand-flag span:nth-child(9) {
  animation-delay: 175ms;
}

body.is-scrolling .brand-flag span:nth-child(10) {
  animation-delay: 225ms;
}

@keyframes flagSway {
  0%,
  100% {
    transform: perspective(140px) rotateY(0deg);
  }

  50% {
    transform: perspective(140px) rotateY(-4deg);
  }
}

@keyframes flagSliceWave {
  0%,
  100% {
    transform: translateY(0) translateZ(0) rotateY(0deg) skewY(0deg) scaleY(1);
  }

  25% {
    transform: translateY(-1px) translateZ(8px) rotateY(-16deg) skewY(2deg) scaleY(1.04);
  }

  50% {
    transform: translateY(1px) translateZ(-5px) rotateY(12deg) skewY(-1.4deg) scaleY(0.97);
  }

  75% {
    transform: translateY(-0.5px) translateZ(5px) rotateY(-9deg) skewY(1deg) scaleY(1.02);
  }
}

.site-nav,
.label,
.kicker,
.button,
.text-link,
.date,
.section-heading p,
.footer-brand {
  font-stretch: condensed;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: clamp(16px, 1.7vw, 30px);
  align-items: center;
  font-family: var(--font-menu);
  font-size: clamp(11px, 0.86vw, 13px);
  font-weight: 400;
}

.site-nav a {
  position: relative;
}

.nav-submenu a {
  white-space: nowrap;
}

.nav-social {
  display: flex;
  gap: 9px;
  align-items: center;
  padding-right: clamp(10px, 1vw, 16px);
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.blog-page .site-header:not(.is-scrolled) .nav-social,
.post-page .site-header:not(.is-scrolled) .nav-social,
.info-page .site-header:not(.is-scrolled) .nav-social,
.funding-page .site-header:not(.is-scrolled) .nav-social {
  border-right-color: rgba(17, 17, 17, 0.2);
}

.nav-social a {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: inherit;
  opacity: 0.76;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.nav-social a:hover {
  color: var(--gold);
  opacity: 1;
  transform: translateY(-2px);
}

.nav-social .social-icon {
  width: 17px;
  height: 17px;
}

.nav-social .social-youtube {
  width: 20px;
}

.nav-social .social-facebook {
  width: 16px;
}

.nav-social .social-fandom {
  width: 18px;
}

.nav-social .social-substack {
  width: 18px;
}

.nav-social .social-imdb {
  width: 23px;
}

.nav-group {
  position: relative;
  padding: 12px 0;
  margin: -12px 0;
}

.nav-group-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: default;
  font: inherit;
  letter-spacing: inherit;
  padding: 0;
  text-transform: inherit;
}

a.nav-group-trigger {
  cursor: pointer;
}

.nav-group-trigger::after {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  min-width: 152px;
  gap: 12px;
  padding: 16px;
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-submenu-featured {
  min-width: 212px;
  gap: 10px;
  padding: 18px;
}

.nav-issue-card {
  display: block;
  width: 150px;
  margin: 0 auto 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.42);
}

.nav-issue-card img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-issue-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  text-align: center;
  white-space: nowrap;
}

.nav-issue-card::after,
.nav-issue-button::after {
  display: none;
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav > a::after,
.nav-submenu a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 100%;
  height: 2px;
  background: var(--red);
  content: "";
  transition: left 180ms ease;
}

.site-nav > a:hover::after,
.nav-submenu a:hover::after {
  left: 0;
}

.site-nav a.has-new-posts::before {
  position: absolute;
  top: -7px;
  right: -9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(180, 40, 46, 0.22);
  content: "";
}

.site-nav a[href="funding.html"],
.site-nav a[href="blog.html"] {
  display: none;
}

.site-nav .nav-store {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  padding: 0 32px 0 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(90deg, #8d6a2e, var(--gold) 54%, #f1ce77);
  color: var(--ink);
  box-shadow:
    inset 0 0 0 1px rgba(5, 5, 5, 0.2),
    0 12px 34px rgba(183, 145, 85, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transform: translateY(0);
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav .nav-store::before {
  position: relative;
  z-index: 1;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
  content: "";
}

.site-nav .nav-store span,
.site-nav .nav-store {
  z-index: 1;
}

.site-nav .nav-store::after {
  position: absolute;
  inset: 0;
  display: block;
  background:
    linear-gradient(120deg, transparent 0 28%, rgba(255, 255, 255, 0.34) 44%, transparent 62%),
    radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.42), transparent 34%);
  content: "";
  opacity: 0.72;
  pointer-events: none;
  transform: translateX(-42%);
  transition: opacity 180ms ease, transform 260ms ease;
}

.site-nav .nav-store:hover {
  border-color: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  box-shadow:
    0 16px 42px rgba(183, 145, 85, 0.48),
    0 0 0 3px rgba(183, 145, 85, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  transform: translateY(-1px);
}

.site-nav .nav-store:hover::after {
  opacity: 1;
  transform: translateX(18%);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 520ms ease;
}

.hero-image.is-active {
  opacity: 1;
}

.hero-image:nth-of-type(2) {
  object-position: center 34%;
}

.hero-image:nth-of-type(3) {
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.32) 54%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.02) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 92vh;
  max-width: var(--max);
  margin: 0 auto;
  padding: 170px 34px 116px;
}

.hero-card-window {
  width: min(100%, 980px);
  overflow: hidden;
}

.hero-card-track {
  display: flex;
  transition: transform 520ms ease;
  will-change: transform;
}

.hero-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding-right: 28px;
}

.hero-card h1 {
  max-width: 980px;
}

.kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.approach-page .kicker,
.blog-page .kicker,
.post-page .kicker,
.info-page .kicker,
.funding-page .kicker {
  color: var(--red);
}

.streaming-page .kicker {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(48px, 7.6vw, 112px);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 34px;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.28;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-actions .button-ghost {
  border-color: rgba(255, 255, 255, 0.66);
  background: transparent;
  color: var(--white);
}

.hero-actions .button-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero-card-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-card-arrow,
.hero-card-dot {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.22);
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-card-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 68px;
  font-size: 26px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-card-arrow-previous {
  left: 28px;
}

.hero-card-arrow-next {
  right: 28px;
}

.hero-card-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-card-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 999px;
  font-size: 0;
}

.hero-card-arrow:hover,
.hero-card-dot:hover,
.hero-card-dot.is-active {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero-card-arrow:active {
  transform: translateY(calc(-50% + 1px));
}

.hero-credit {
  position: absolute;
  right: 34px;
  bottom: 28px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-menu);
  font-size: 11px;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 900;
}

.button-red {
  background: var(--red);
  color: var(--white);
}

.button-red:hover {
  background: var(--white);
  color: var(--ink);
}

.button-yellow {
  background: var(--gold);
  color: var(--ink);
}

.button-yellow:hover {
  background: var(--ink);
  color: var(--white);
}

.button-ghost-dark {
  border: 1px solid rgba(14, 14, 13, 0.42);
  color: var(--ink);
}

.button-ghost-dark:hover {
  background: var(--ink);
  color: var(--white);
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  z-index: 3;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  transform: translateX(-50%);
}

.scroll-cue::before {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 2px;
  height: 12px;
  background: var(--white);
  content: "";
  transform: translateX(-50%);
  animation: scrollPulse 1400ms ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}

.intro-section,
.slate-section,
.dispatch-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 34px;
}

.premiere-banner {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: 30px max(34px, calc((100vw - var(--max)) / 2 + 34px));
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--ink);
  color: var(--white);
}

.premiere-banner .label {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.premiere-banner h2,
.premiere-banner p {
  margin: 0;
}

.premiere-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 54px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.premiere-banner > p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.45;
}

.premiere-banner .text-link {
  color: var(--gold);
  white-space: nowrap;
}

.world-premiere-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  padding: 20px max(34px, calc((100vw - var(--max)) / 2 + 34px));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--red);
  color: var(--white);
}

.world-premiere-banner .label {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.world-premiere-banner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 52px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.official-selection-banner {
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background: var(--red);
  color: var(--white);
}

.official-selection-badge {
  width: clamp(150px, 14vw, 220px);
  filter: invert(1) contrast(1.08);
}

.official-selection-korean {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 800;
  line-height: 1;
}

.official-selection-banner > p {
  color: rgba(255, 255, 255, 0.78);
}

.official-selection-banner .text-link {
  color: var(--white);
}

.feature-facts {
  border-bottom: 1px solid var(--line);
}

.feature-facts-content {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(360px, 1fr);
  gap: 64px;
  align-items: stretch;
  margin-left: max(34px, calc((100vw - var(--max)) / 2 + 34px));
}

.feature-facts-copy {
  padding: 96px 0;
}

.feature-facts-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 34px;
  margin: 56px 0 0;
}

.feature-facts-list div {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.feature-facts-list dt,
.feature-facts-list dd {
  margin: 0;
}

.feature-facts-list dt {
  color: var(--muted);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-facts-list dd {
  font-size: clamp(19px, 1.8vw, 26px);
  line-height: 1.12;
}

.feature-facts-image {
  margin: 0;
  min-width: 0;
}

.feature-facts-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.homepage-photo-gallery {
  padding: 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.homepage-photo-gallery-track {
  display: flex;
  width: max-content;
  animation: homepageGalleryScroll 92s linear infinite;
  padding: 0;
  will-change: transform;
}

.homepage-photo-gallery:hover .homepage-photo-gallery-track,
.homepage-photo-gallery:focus-within .homepage-photo-gallery-track {
  animation-play-state: paused;
}

.homepage-photo-gallery-track figure {
  flex: 0 0 clamp(170px, 16vw, 245px);
  display: grid;
  place-items: center;
  height: clamp(260px, 24vw, 370px);
  margin: 0;
  background: var(--ink);
}

.homepage-photo-gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes homepageGalleryScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image,
  .hero-card-track,
  .new-world-stars-page .new-world-guidelines-bg-image.is-scott,
  .new-world-stars-page .new-world-guidelines-bg-image.is-stars-gateway,
  .new-world-guidelines-bg-image.is-scott,
  .new-world-guidelines-bg-image.is-antarctic,
  .new-world-guidelines-bg-image.is-voyage,
  .new-world-guidelines-bg-image.is-plane {
    animation: none;
    transition: none;
  }

  .homepage-photo-gallery-track {
    width: auto;
    overflow-x: auto;
    animation: none;
    scrollbar-color: var(--red) rgba(17, 17, 17, 0.14);
  }
}

.section-heading {
  display: grid;
  gap: 22px;
}

.section-heading p {
  margin: 0;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading.vertical {
  grid-template-columns: 190px minmax(0, 760px);
  align-items: start;
  border-top: 1px solid var(--ink);
  padding-top: 34px;
}

.section-heading.horizontal {
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: end;
  margin-bottom: 46px;
}

.section-heading.light {
  color: var(--white);
}

.section-heading.light p {
  color: var(--gold);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 68px;
  margin-top: 56px;
}

.intro-grid > p {
  max-width: 700px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.22;
}

#studio .intro-grid {
  grid-template-columns: minmax(160px, 260px) minmax(0, 760px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

#studio .intro-grid > p {
  max-width: 760px;
  margin: 0;
}

.studio-copy {
  max-width: 820px;
}

.studio-copy p {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.34;
}

.studio-copy p + p {
  margin-top: 24px;
}

.studio-medallion {
  width: min(100%, 240px);
  margin: 0;
}

.studio-medallion img {
  width: 100%;
  height: auto;
}

.stats {
  border-top: 1px solid var(--line);
}

.stats div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.stats span {
  color: var(--gold);
  font-family: var(--font-small);
  font-size: 48px;
  font-weight: 700;
}

.stats p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.film-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--black);
  color: var(--white);
}

.film-strip article {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.film-strip img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
  transition: transform 600ms ease, opacity 600ms ease;
}

.film-strip article:hover img {
  opacity: 0.84;
  transform: scale(1.04);
}

.film-strip div {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0));
}

.label,
.date {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.film-strip h3,
.feature-copy h3,
.small-films h3,
.reel-copy h3,
.dispatch-grid h3 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.slate-section {
  background: var(--paper);
}

.slate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 42px;
}

.feature-film {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 620px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.feature-film::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  content: "";
}

.feature-film-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 520px;
  padding: 42px;
}

.feature-copy p:not(.label) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  border-bottom: 1px solid currentColor;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.small-films {
  display: grid;
  gap: 30px;
}

.small-films article {
  border-top: 1px solid var(--ink);
  padding-top: 22px;
}

.small-films img {
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  object-fit: cover;
}

.small-films p:not(.date),
.dispatch-grid p:not(.date) {
  color: var(--muted);
  font-size: 16px;
}

.reel-section {
  padding: 96px 34px;
  background: var(--black);
}

.reel-section .section-heading,
.reel-panel {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.reel-panel {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: var(--black);
}

.reel-panel img,
.reel-panel iframe {
  height: 620px;
}

.reel-panel img {
  object-fit: cover;
  opacity: 0.72;
}

.reel-panel iframe {
  display: block;
  width: 100%;
  border: 0;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 96px;
  height: 68px;
  place-items: center;
  border: 0;
  border-radius: 14px;
  background: var(--red);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--white);
}

.reel-copy {
  position: absolute;
  right: 38px;
  bottom: 34px;
  max-width: 520px;
  padding: 18px 20px;
  background: rgba(5, 5, 5, 0.72);
  color: var(--white);
  text-align: right;
  pointer-events: none;
}

.reel-copy p {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.dispatch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-top: 1px solid var(--ink);
}

.dispatch-grid article {
  padding-top: 26px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr) clamp(94px, 11vw, 150px);
  gap: 42px;
  align-items: end;
  padding: 74px 42px;
  background: var(--black);
  color: var(--white);
}

.site-footer::after {
  position: absolute;
  top: 82px;
  right: clamp(190px, 15vw, 320px);
  z-index: 0;
  width: clamp(230px, 17vw, 340px);
  aspect-ratio: 1545 / 1999;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: url("Assets/new-world-issue-001.png") center / contain no-repeat;
  content: "";
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-badges {
  display: grid;
  gap: 18px;
  justify-self: end;
  align-self: start;
}

.footer-badges img {
  width: clamp(94px, 11vw, 150px);
  aspect-ratio: 1;
  object-fit: contain;
}

.footer-brand {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer-legal {
  max-width: 740px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-menu);
  font-size: 10px;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.footer-copy {
  width: min(1080px, calc(100vw - 84px));
  max-width: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

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

.footer-signup {
  display: grid;
  max-width: 720px;
  gap: 16px;
  margin-top: 30px;
  padding: 24px;
  border: 1px solid rgba(181, 139, 70, 0.46);
  border-left: 5px solid var(--gold);
  background:
    linear-gradient(135deg, rgba(181, 139, 70, 0.16), rgba(181, 139, 70, 0.02) 46%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.footer-signup h2 {
  margin: 0;
  color: var(--white);
  font-family: "Montagna", var(--font-display);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-signup p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.45;
}

.footer-signup-fields {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(170px, 0.64fr) auto;
  gap: 12px;
}

.footer-signup input,
.footer-signup select {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.34);
  color: var(--white);
  font: inherit;
  padding: 0 15px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.footer-signup input:focus,
.footer-signup select:focus {
  outline: 0;
  border-color: rgba(181, 139, 70, 0.9);
  background: rgba(0, 0, 0, 0.54);
  box-shadow: 0 0 0 3px rgba(181, 139, 70, 0.18);
}

.footer-signup select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%);
  background-position: calc(100% - 16px) 20px, calc(100% - 11px) 20px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 34px;
}

.footer-signup input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.footer-signup option {
  color: var(--ink);
}

.footer-signup button {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, #d6b46c, #8f6328);
  color: var(--black);
  cursor: pointer;
  font-family: var(--font-menu);
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 20px;
  text-transform: uppercase;
  transition: filter 180ms ease, transform 180ms ease;
}

.footer-signup button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.footer-signup small,
.email-gate-form small {
  min-height: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-menu);
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1.45;
  text-transform: uppercase;
}

.footer-signup small a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

address {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: end;
  justify-self: start;
  margin-left: clamp(-140px, -6vw, -72px);
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}

.footer-address {
  max-width: 270px;
  font-family: var(--font-menu);
  font-size: 12px;
  line-height: 1.55;
  text-transform: uppercase;
}

address a {
  color: var(--white);
  font-weight: 800;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-social a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.social-icon {
  display: block;
  width: 19px;
  height: 19px;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.social-youtube {
  width: 21px;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.5 6.2a3 3 0 0 0-2.1-2.1C19.5 3.6 12 3.6 12 3.6s-7.5 0-9.4.5A3 3 0 0 0 .5 6.2 31 31 0 0 0 0 12a31 31 0 0 0 .5 5.8 3 3 0 0 0 2.1 2.1c1.9.5 9.4.5 9.4.5s7.5 0 9.4-.5a3 3 0 0 0 2.1-2.1A31 31 0 0 0 24 12a31 31 0 0 0-.5-5.8ZM9.6 15.6V8.4L15.8 12l-6.2 3.6Z'/%3E%3C/svg%3E");
}

.social-instagram {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Zm5 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm5.3-3.4a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2Z'/%3E%3C/svg%3E");
}

.social-facebook {
  width: 18px;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8h3V4h-3c-3.2 0-5 1.9-5 5v3H6v4h3v8h4v-8h3.4l.6-4h-4V9.2c0-.8.3-1.2 1-1.2Z'/%3E%3C/svg%3E");
}

.social-fandom {
  width: 20px;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 2 8 11v26l16 9 16-9V11L24 2Zm0 7 10 6v18l-10 6-10-6V15l10-6Zm-5 8v18h6v-7h8v-5h-8v-3h9v-3H19Z'/%3E%3C/svg%3E");
}

.social-substack {
  width: 20px;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 3h16v2.5H4V3Zm0 4.5h16V10H4V7.5Zm0 4.5h16v9l-8-4-8 4v-9Z'/%3E%3C/svg%3E");
}

.social-x {
  width: 18px;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.4 10.2 22.5 1h-3.1l-6.4 7.3L7.9 1H1.5l8.5 12.1L1.5 23h3.1l6.8-7.8 5.5 7.8h6.4l-8.9-12.8Zm-2.4 2.7-1.4-2L5.4 3.3h1.4l5.1 7.4 1.4 2 5.5 8h-1.4l-5.4-7.8Z'/%3E%3C/svg%3E");
}

.social-bluesky {
  width: 20px;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.3 3.2C8.6 4.9 11 8.4 12 10.2c1-1.8 3.4-5.3 5.7-7 1.7-1.2 4.3-2.2 4.3.8 0 .6-.3 5-0.5 5.8-.6 2.3-2.8 2.9-4.7 2.5 3.4.6 4.3 2.7 2.4 4.8-3.6 3.8-5.2-1-5.6-2.3-.1-.2-.1-.3-.1-.2 0-.1 0 0-.1.2-.4 1.3-2 6.1-5.6 2.3-1.9-2.1-1-4.2 2.4-4.8-1.9.4-4.1-.2-4.7-2.5C5.3 9 5 4.6 5 4c0-3 2.6-2 4.3-.8Z'/%3E%3C/svg%3E");
}

.social-threads {
  width: 18px;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4 2C6.5 2 3 5.8 3 12.1 3 18.2 6.6 22 12.5 22c5.1 0 8.4-2.7 8.4-6.7 0-3.1-1.8-5.1-5.1-5.8-.5-2.4-2-3.7-4.4-3.7-2 0-3.5.9-4.4 2.7l2.3 1.1c.5-1 1.1-1.5 2.1-1.5 1.2 0 1.9.7 2.1 2.1h-1.7c-3.3 0-5.2 1.5-5.2 4 0 2.3 1.8 3.8 4.5 3.8 2.8 0 4.6-1.7 4.9-4.4 1.5.5 2.3 1.4 2.3 2.8 0 2.3-2.2 3.7-5.7 3.7-4.4 0-6.8-2.8-6.8-7.8 0-5.1 2.4-7.9 6.7-7.9 3.3 0 5.4 1.6 6.3 4.9l2.5-.7C20.1 4.3 17 2 12.4 2Zm-1.2 13.6c-1.2 0-2-.6-2-1.5 0-1 .8-1.6 2.5-1.6h1.8c-.2 2-1 3.1-2.3 3.1Z'/%3E%3C/svg%3E");
}

.social-imdb {
  width: 25px;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 96 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h96v40H0V0Zm10 9v22h6V9h-6Zm10 0v22h5V18l3 13h4l3-13v13h5V9h-8l-2 11-2-11h-8Zm25 0v22h10c5 0 8-3 8-8v-6c0-5-3-8-8-8H45Zm6 5h3c2 0 3 1 3 3v6c0 2-1 3-3 3h-3V14Zm17-5v22h6v-2c1 2 3 3 5 3 4 0 7-3 7-8v-6c0-5-3-8-7-8-2 0-4 1-5 2V9h-6Zm6 8c0-1 1-2 3-2s3 1 3 3v5c0 2-1 3-3 3s-3-1-3-2v-7Z'/%3E%3C/svg%3E");
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 0.82), rgba(0, 0, 0, 0.98) 62%),
    rgba(0, 0, 0, 0.98);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 360ms ease, transform 620ms ease;
}

.transition-shadowbox {
  display: grid;
  width: min(18vw, 128px);
  min-width: 64px;
  aspect-ratio: 1;
  place-items: center;
  transform: translateY(12px) scale(0.92);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.transition-shadowbox img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  opacity: 0;
  --transition-outline: var(--subtitle-gray);
  filter: contrast(1.16) brightness(1.05) drop-shadow(1px 0 0 var(--transition-outline)) drop-shadow(-1px 0 0 var(--transition-outline)) drop-shadow(0 1px 0 var(--transition-outline)) drop-shadow(0 -1px 0 var(--transition-outline));
  transform: scale(1.24);
}

body.is-transitioning {
  overflow: hidden;
}

body.is-transitioning .page-transition {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

body.is-transitioning .transition-shadowbox {
  transform: translateY(0) scale(1);
}

body.is-transitioning .transition-shadowbox img {
  animation:
    transitionLogoIn 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards,
    transitionOutlineShift 900ms linear infinite;
}

.email-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100dvh;
  padding: 24px;
  background: rgba(5, 5, 5, 0.76);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.email-gate[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.email-gate-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  width: min(1040px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  transform: translateY(14px) scale(0.98);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.email-gate[aria-hidden="false"] .email-gate-panel {
  transform: translateY(0) scale(1);
}

.email-gate-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.email-gate-media {
  display: grid;
  min-height: 100%;
  place-items: center;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(180, 40, 46, 0.32), rgba(182, 145, 85, 0.18)),
    var(--ink);
}

.email-gate-media iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #000;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.email-gate-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(34px, 6vw, 62px);
}

.email-gate-copy h2 {
  max-width: 460px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 5.6vw, 66px);
  line-height: 0.95;
}

.email-gate-copy p:not(.kicker) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.email-gate-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 10px;
  margin-top: 6px;
}

.email-gate-form input {
  min-width: 0;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  padding: 0 13px;
}

.email-gate-form input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.email-gate-form button {
  border: 0;
  cursor: pointer;
  font-family: var(--font-menu);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.email-gate-form small {
  grid-column: 1 / -1;
}

@keyframes transitionLogoIn {
  0% {
    opacity: 0;
    transform: scale(1.34);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes transitionOutlineShift {
  0%,
  100% {
    --transition-outline: var(--subtitle-gray);
  }

  33% {
    --transition-outline: var(--red);
  }

  66% {
    --transition-outline: var(--gold);
  }
}

.film-page {
  background: var(--black);
  color: var(--white);
}

.film-hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  background: var(--black);
}

.film-hero-image,
.film-hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.film-hero-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
}

.film-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.62) 50%, rgba(0, 0, 0, 0.18) 100%),
    radial-gradient(circle at 72% 48%, rgba(180, 40, 46, 0.22), rgba(0, 0, 0, 0) 42%);
}

.film-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
  gap: clamp(34px, 4.4vw, 68px);
  min-height: 88vh;
  max-width: var(--max);
  align-items: end;
  justify-content: flex-end;
  margin: 0 auto;
  padding: 170px 34px 96px;
}

.film-hero-poster {
  margin: 0;
  width: min(100%, 480px);
  border: 6px solid var(--white);
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.46);
}

.film-hero-poster img {
  height: auto;
}

.film-hero-copy {
  min-width: 0;
}

.film-hero-copy h1 {
  max-width: 720px;
  font-family: var(--font-small);
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1;
  text-decoration: underline;
  text-decoration-thickness: 0.045em;
  text-underline-offset: 0.12em;
  white-space: nowrap;
}

.film-hero-copy .thrill-title {
  display: grid;
  gap: 0;
  font-family: var(--font-thrill);
  font-style: italic;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal;
}

.thrill-title span {
  display: block;
  line-height: 0.9;
}

.thrill-title span:first-child {
  color: var(--black);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.22);
}

.thrill-title span:last-child {
  margin-left: clamp(30px, 5vw, 76px);
  color: var(--white);
}

.film-hero-copy > p:not(.kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(21px, 2.2vw, 31px);
  line-height: 1.28;
}

.film-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.film-overview,
.film-grid-section,
.film-production {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 34px;
}

.film-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.film-meta-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.36);
  padding-top: 26px;
}

.film-meta-panel dl {
  margin: 24px 0 0;
}

.film-meta-panel div {
  display: grid;
  grid-template-columns: minmax(140px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.film-meta-panel dt,
.film-meta-panel dd {
  margin: 0;
}

.film-meta-panel dt {
  color: var(--gold);
  font-family: var(--font-small);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film-meta-panel dd {
  color: rgba(255, 255, 255, 0.82);
}

.film-story h2,
.film-production h2 {
  max-width: 820px;
  margin-bottom: 28px;
  font-family: var(--font-small);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.film-story h3 {
  margin: 34px 0 12px;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film-story p:not(.label),
.film-production > p {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
  line-height: 1.55;
}

.director-story {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.director-story h2 {
  max-width: 820px;
  margin-bottom: 28px;
  font-family: var(--font-small);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.director-story p:not(.label) {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
  line-height: 1.55;
}

.ensemble-cast {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.ensemble-cast h2 {
  margin-bottom: 42px;
  font-family: var(--font-small);
  font-size: clamp(38px, 5.6vw, 82px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.ensemble-cast-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.ensemble-cast-grid article {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 22px;
}

.ensemble-cast-grid figure {
  margin: 0 0 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.ensemble-cast-grid img {
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.cast-card-michael img {
  object-position: right center;
}

.ensemble-cast-grid h3 {
  margin-bottom: 16px;
  font-family: var(--font-small);
  font-size: clamp(26px, 2.8vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.ensemble-cast-grid p:not(.date) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.45;
}

.featured-cast {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 58px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.featured-cast figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.featured-cast img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.featured-cast h2 {
  margin-bottom: 24px;
  font-family: var(--font-small);
  font-size: clamp(34px, 4.8vw, 68px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.featured-cast p:not(.label) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
  line-height: 1.55;
}

.film-director-profile {
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.film-director-profile figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.film-director-profile img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.film-director-profile h2 {
  margin-bottom: 24px;
  font-family: var(--font-small);
  font-size: clamp(34px, 4.8vw, 68px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.film-director-profile p:not(.label) {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
  line-height: 1.55;
}

.premiere-status {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.premiere-status h2 {
  margin-bottom: 42px;
  font-family: var(--font-small);
  font-size: clamp(38px, 5.6vw, 82px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.premiere-status dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 46px;
  margin: 0;
}

.premiere-status div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: baseline;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 0;
}

.premiere-status dt,
.premiere-status dd {
  margin: 0;
}

.premiere-status dt {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-menu);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premiere-status dd {
  color: var(--gold);
  font-family: var(--font-small);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.credits-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.credits-section figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.credits-section img {
  height: auto;
  object-fit: contain;
}

.credits-section h2 {
  margin-bottom: 34px;
  font-family: var(--font-small);
  font-size: clamp(38px, 5.6vw, 82px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.credits-block {
  margin-top: 34px;
}

.credits-block h3,
.credits-production {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credits-block dl {
  margin: 0;
}

.credits-block div {
  display: grid;
  grid-template-columns: minmax(160px, 0.48fr) minmax(0, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 13px 0;
}

.credits-block dt,
.credits-block dd {
  margin: 0;
}

.credits-block dt {
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credits-block dd {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.25;
}

.credits-production {
  margin-top: 38px;
  color: var(--white);
  font-size: 15px;
}

.film-grid-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.film-grid-section article {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 24px;
}

.film-grid-section h3 {
  margin-bottom: 16px;
  font-family: var(--font-small);
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}

.film-grid-section p:not(.date) {
  color: rgba(255, 255, 255, 0.68);
}

.film-production {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.wiki-page {
  background:
    radial-gradient(circle at 78% 18%, rgba(180, 40, 46, 0.18), transparent 30%),
    radial-gradient(circle at 18% 34%, rgba(182, 145, 85, 0.12), transparent 28%),
    var(--black);
}

.wiki-hub-hero,
.wiki-article-hero {
  position: relative;
  min-height: 74vh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.wiki-hub-hero-image,
.wiki-article-hero-image,
.wiki-hub-hero-shade,
.wiki-article-hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.wiki-hub-hero-image,
.wiki-article-hero-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.52;
}

.wiki-hub-hero-shade,
.wiki-article-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.58) 48%, rgba(5, 5, 5, 0.16)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.02) 58%);
}

.wiki-hub-hero-content,
.wiki-article-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 74vh;
  max-width: var(--max);
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
  padding: 170px 34px 88px;
}

.wiki-hub-hero h1,
.wiki-article-hero h1 {
  max-width: 1040px;
  margin-bottom: 24px;
}

.wiki-article-hero .thrill-title {
  display: grid;
  font-family: var(--font-thrill);
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
}

.wiki-hub-hero p:not(.kicker),
.wiki-article-hero p:not(.kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(21px, 2.3vw, 32px);
  line-height: 1.32;
}

.wiki-worlds,
.wiki-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 34px;
}

.wiki-section-heading {
  display: grid;
  grid-template-columns: 190px minmax(0, 760px);
  gap: 22px;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 34px;
  margin-bottom: 48px;
}

.wiki-section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.wiki-world-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(220px, 0.7fr));
  gap: 28px;
}

.wiki-world-card {
  min-height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.wiki-world-card a,
.wiki-world-card > div {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.wiki-world-card figure {
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.wiki-world-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.84;
  transition: transform 520ms ease, opacity 520ms ease;
}

.wiki-world-card:hover img {
  opacity: 1;
  transform: scale(1.025);
}

.wiki-world-card div {
  padding: 28px;
}

.wiki-world-card h3 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.wiki-world-card p:not(.date) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.48;
}

.wiki-world-card.is-planned {
  display: flex;
  align-items: end;
  border-style: dashed;
  opacity: 0.76;
}

.wiki-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.wiki-infobox {
  position: sticky;
  top: 104px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.wiki-infobox figure {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.wiki-infobox dl {
  margin: 0;
  padding: 20px;
}

.wiki-infobox div {
  display: grid;
  gap: 7px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wiki-infobox div:last-child {
  border-bottom: 0;
}

.wiki-infobox dt,
.wiki-infobox dd {
  margin: 0;
}

.wiki-infobox dt {
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wiki-infobox dd {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.38;
}

.wiki-main {
  min-width: 0;
}

.wiki-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.wiki-toc a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wiki-toc a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.wiki-toc a.is-nested {
  margin-left: 14px;
  opacity: 0.78;
}

.wiki-entry {
  padding: 62px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.wiki-entry:first-of-type {
  padding-top: 0;
}

.wiki-entry h2 {
  max-width: 820px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 68px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.wiki-entry h3 {
  max-width: 760px;
  margin: 34px 0 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.wiki-entry > p:not(.label) {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.55;
}

.wiki-card-grid,
.wiki-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.wiki-mini-card,
.wiki-list-grid section {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 18px;
}

.wiki-mini-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.wiki-mini-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
}

.wiki-mini-card h3,
.wiki-list-grid h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.wiki-mini-card p,
.wiki-list-grid p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

.wiki-timeline {
  display: grid;
  gap: 0;
  max-width: 920px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: wiki-timeline;
}

.wiki-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.48;
  counter-increment: wiki-timeline;
}

.wiki-timeline li::before {
  color: var(--gold);
  content: counter(wiki-timeline, decimal-leading-zero);
  font-family: var(--font-menu);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.wiki-timeline span {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-family: var(--font-menu);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wiki-gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.wiki-gallery-strip img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lore-gallery figure {
  margin: 0;
}

.lore-gallery figcaption {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.4;
}

.lore-page .site-header:not(.is-scrolled) {
  color: var(--white);
}

.lore-search-form {
  display: grid;
  grid-template-columns: minmax(180px, 420px) auto;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.lore-search-form.compact {
  grid-template-columns: 1fr auto;
  margin: 0 0 22px;
}

.lore-search-form input,
.lore-search-form select {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  padding: 0 14px;
}

.lore-search-form.compact button,
.lore-search-form button {
  min-height: 48px;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-menu);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.lore-filmography-section {
  padding-top: 72px;
}

.lore-development-section {
  padding-bottom: 38px;
}

.lore-filmography-grid,
.lore-filmography-list {
  display: grid;
  gap: 22px;
}

.lore-filmography-list {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.lore-development-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.lore-filmography-card {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.055);
}

.lore-filmography-card.is-connected-wiki {
  border-color: rgba(183, 145, 85, 0.46);
  background:
    linear-gradient(90deg, rgba(183, 145, 85, 0.08), rgba(255, 255, 255, 0.045) 36%, rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
}

.lore-filmography-card a {
  position: relative;
  display: flex;
  min-height: 0;
  aspect-ratio: 3 / 4;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: inherit;
}

.lore-filmography-card.is-compact a {
  min-height: 0;
}

.lore-filmography-card figure {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.lore-filmography-card img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.16) contrast(1.08) brightness(0.78);
  transition: transform 500ms ease, filter 500ms ease;
}

.lore-filmography-card figure::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.72) 34%, rgba(5, 5, 5, 0.16) 72%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.56), transparent 50%, rgba(5, 5, 5, 0.2));
  content: "";
}

.lore-filmography-card:hover img,
.lore-filmography-card:focus-within img {
  filter: grayscale(0) contrast(1.08) brightness(0.92);
  transform: scale(1.035);
}

.lore-filmography-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  padding: clamp(16px, 2vw, 24px);
}

.lore-filmography-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
  margin-bottom: 10px;
}

.lore-filmography-head .date,
.lore-filmography-head span,
.lore-filmography-link {
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lore-filmography-card h3 {
  max-width: 780px;
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.lore-filmography-announcement {
  width: fit-content;
  margin: 0 0 12px;
  border-top: 1px solid rgba(183, 145, 85, 0.7);
  padding-top: 7px;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: clamp(12px, 1.15vw, 15px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.18;
  text-transform: uppercase;
}

.lore-filmography-card p:not(.date):not(.lore-filmography-announcement) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(13px, 0.98vw, 15px);
  line-height: 1.36;
}

.lore-filmography-meta {
  display: none;
}

.lore-filmography-link {
  width: fit-content;
  margin-top: 10px;
  border-bottom: 1px solid var(--gold);
  color: var(--white);
}

.lore-filmography-card.is-connected-wiki .lore-filmography-link {
  color: var(--gold);
}

.lore-card-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 0;
}

.lore-card-meta div {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 9px;
}

.lore-card-meta dt,
.lore-card-meta dd {
  margin: 0;
}

.lore-card-meta dt {
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lore-card-meta dd {
  color: rgba(255, 255, 255, 0.76);
}

.lore-filmography-meta {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lore-hero-stats {
  max-width: 560px;
}

.lore-shell {
  grid-template-columns: minmax(250px, 0.28fr) minmax(0, 1fr);
}

.lore-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 20px;
  align-self: start;
}

.lore-sidebar nav {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.lore-sidebar nav a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lore-sidebar nav a:hover,
.lore-sidebar nav a:focus-visible {
  color: var(--gold);
}

.lore-card-list {
  display: grid;
  gap: 16px;
}

.lore-result-card a {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 16px;
}

.lore-result-card img {
  height: 100%;
  min-height: 116px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
}

.lore-result-card span {
  display: grid;
  gap: 7px;
  align-content: start;
}

.lore-result-card small,
.lore-result-card b,
.lore-label-row span,
.lore-spoiler {
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lore-result-card strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}

.lore-result-card em {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  line-height: 1.45;
}

.lore-category-grid,
.lore-pill-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lore-category-grid a,
.lore-pill-list a {
  display: grid;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 0;
}

.lore-category-grid strong,
.lore-pill-list a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.lore-category-grid span {
  color: rgba(255, 255, 255, 0.62);
}

.lore-label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.lore-label-row span,
.lore-spoiler {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(183, 145, 85, 0.42);
  padding: 0 10px;
}

.lore-spoiler {
  width: max-content;
  max-width: 100%;
  margin-top: 12px;
  color: var(--white);
  border-color: rgba(180, 40, 46, 0.72);
  background: rgba(180, 40, 46, 0.2);
}

.lore-infobox {
  position: static;
}

.lore-infobox figcaption {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.lore-infobox-head {
  padding: 18px 20px 0;
}

.lore-infobox-head h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.lore-infobox-head blockquote {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-style: italic;
}

.lore-infobox-group dd {
  display: none;
}

.lore-reference-list {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.lore-home-layout {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(260px, 0.3fr) minmax(0, 1fr);
  gap: 46px;
  margin: 0 auto;
  padding: 82px 34px 104px;
}

.lore-home-main {
  display: grid;
  gap: 42px;
  min-width: 0;
}

.lore-home-welcome {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 34px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 42px;
}

.lore-home-welcome h2,
.lore-home-section h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 800;
  line-height: 1.04;
  text-transform: uppercase;
}

.lore-home-welcome p,
.lore-feature-grid p {
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.62;
}

.lore-home-welcome p + p {
  margin-top: 18px;
}

.lore-home-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 42px;
}

.lore-home-groups,
.lore-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lore-home-group,
.lore-feature-grid article {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 18px;
}

.lore-home-group h3,
.lore-feature-grid h3 {
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lore-home-link-grid {
  display: grid;
  gap: 10px;
}

.lore-home-link-grid a {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding-bottom: 10px;
}

.lore-home-link-grid strong {
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.05;
  text-transform: uppercase;
}

.lore-home-link-grid span {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wiki-site-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.wiki-site-link-group {
  border-top: 1px solid rgba(183, 145, 85, 0.55);
  padding-top: 18px;
}

.wiki-site-link-group h3 {
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wiki-site-link-group ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wiki-site-link-group a {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.35;
}

.wiki-site-link-group a:hover,
.wiki-site-link-group a:focus-visible {
  color: var(--gold);
}

.wiki-home-cast {
  display: grid;
  gap: 28px;
  max-width: 112ch;
}

.wiki-cast-entry {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
}

.wiki-cast-entry img {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.16);
  object-fit: cover;
}

.wiki-cast-entry h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 800;
  line-height: 1.25;
}

.wiki-cast-entry p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
}

.wiki-cast-entry a {
  color: var(--gold);
  font-weight: 700;
}

.wiki-cast-entry a:hover,
.wiki-cast-entry a:focus-visible {
  color: var(--white);
}

.wiki-home-production {
  display: grid;
  gap: 42px;
  max-width: 112ch;
}

.wiki-production-entry h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 800;
  line-height: 1.2;
}

.wiki-production-entry p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
}

.wiki-production-entry p + p {
  margin-top: 18px;
}

.wiki-production-entry a {
  color: var(--gold);
  font-weight: 700;
}

.wiki-production-entry a:hover,
.wiki-production-entry a:focus-visible {
  color: var(--white);
}

.lore-home-infobox {
  position: static;
}

.films-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(183, 143, 78, 0.13), transparent 34%),
    radial-gradient(circle at 82% 44%, rgba(180, 40, 46, 0.13), transparent 30%),
    var(--black);
  color: var(--white);
}

.films-hero {
  display: grid;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(148px, 14vw, 188px) 34px clamp(58px, 7vw, 82px);
}

.films-hero .kicker {
  margin: 0;
}

.films-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 6.2vw, 88px);
  line-height: 0.94;
}

.films-hero > p:not(.kicker) {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.36;
}

.film-history {
  display: grid;
  max-width: var(--max);
  gap: 118px;
  margin: 0 auto;
  padding: 8px 34px 118px;
}

.film-history-entry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  min-height: 680px;
  padding: 44px;
  overflow: hidden;
  border: 1px solid rgba(185, 185, 178, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 5, 0.72);
  box-shadow:
    inset 0 0 80px rgba(0, 0, 0, 0.92),
    0 36px 90px rgba(0, 0, 0, 0.42);
}

.film-history-entry::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(185, 185, 178, 0.16);
  content: "";
  pointer-events: none;
}

.film-history-entry.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
}

.film-history-entry.reverse .film-history-poster {
  order: 2;
}

.film-history-poster,
.film-history-copy {
  position: relative;
  z-index: 2;
}

.film-history-poster {
  display: block;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.film-history-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 700ms ease, opacity 700ms ease;
}

.film-history-poster:hover img {
  transform: scale(1.025);
  opacity: 1;
}

.film-history-copy h2 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(42px, 6.2vw, 96px);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.film-history-copy > p:not(.date) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.48;
}

.film-cast {
  display: grid;
  max-width: 720px;
  gap: 0;
  margin: 34px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.film-cast div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.film-cast dt,
.film-cast dd {
  margin: 0;
}

.film-cast dt {
  color: var(--gold);
  font-family: var(--font-small);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film-cast dd {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.js .film-history-entry {
  opacity: 0;
  transform: translateY(58px);
  transition: opacity 900ms ease, transform 900ms ease;
}

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

.blog-page {
  background: var(--paper);
}

.blog-hero {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 64px;
  align-items: end;
  margin: 0 auto;
  padding: 190px 34px 82px;
  border-bottom: 1px solid var(--ink);
}

.blog-hero h1 {
  margin-bottom: 0;
  font-size: clamp(42px, 6.4vw, 94px);
}

.blog-hero > p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.32;
}

.blog-feature,
.blog-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 34px;
}

.blog-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  min-height: 520px;
  background: var(--black);
  color: var(--white);
}

.blog-feature-card img {
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.blog-feature-card > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
}

.blog-feature-card h2,
.blog-list h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.blog-feature-card p:not(.date),
.blog-list p:not(.date) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 0;
}

.blog-list article {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}

.blog-list a {
  display: block;
}

.blog-list p:not(.date) {
  color: var(--muted);
}

.post-page {
  background: var(--paper);
}

.post-article {
  max-width: 980px;
  margin: 0 auto;
  padding: 180px 34px 96px;
}

.post-header {
  margin-bottom: 42px;
}

.post-header h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6.6vw, 92px);
}

.post-image {
  width: 100%;
  max-height: 620px;
  margin-bottom: 52px;
  object-fit: cover;
}

.post-body {
  max-width: 760px;
}

.post-body p {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.55;
}

.post-back-link {
  margin-top: 20px;
  color: var(--ink);
}

.approach-page {
  background: var(--paper);
}

.founding-document {
  height: clamp(190px, 30vw, 380px);
  overflow: hidden;
  background: var(--paper);
}

.founding-document img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: contrast(1.05) saturate(0.88);
}

.approach-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 34px 86px;
  border-bottom: 1px solid var(--ink);
}

.approach-hero h1 {
  max-width: 1040px;
  margin: 0 0 28px;
  font-size: clamp(44px, 7vw, 104px);
}

.approach-hero > p:not(.kicker) {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.28;
}

.approach-manifesto {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(38px, 5vw, 72px);
  margin: 0 auto;
  padding: 92px 34px;
  border-bottom: 1px solid rgba(14, 14, 13, 0.22);
}

.approach-manifesto .kicker {
  margin-bottom: 26px;
}

.approach-manifesto h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.approach-manifesto-copy {
  display: grid;
  gap: 20px;
  align-content: start;
}

.approach-manifesto-copy p {
  color: var(--muted);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.42;
}

.approach-principles {
  display: grid;
  max-width: var(--max);
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
  padding: 82px 34px;
}

.approach-principles article {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}

.approach-principles h2,
.director-copy h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(31px, 4vw, 58px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.approach-principles p:not(.date),
.director-copy p:not(.label) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.director-profile {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.82fr);
  gap: 64px;
  align-items: center;
  margin: 0 auto;
  padding: 0 34px 96px;
}

.director-image img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: 72% center;
  filter: grayscale(1) contrast(1.25) brightness(0.9);
}

.director-image {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.director-copy {
  max-width: 720px;
}

.info-page {
  background: var(--paper);
}

.info-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 190px 34px 86px;
  border-bottom: 1px solid var(--ink);
}

.info-hero h1 {
  max-width: 1060px;
  margin-bottom: 26px;
  font-size: clamp(44px, 7vw, 104px);
}

.info-hero > p:not(.kicker) {
  max-width: 790px;
  color: var(--muted);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.28;
}

.documentary-hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  align-content: end;
  max-width: none;
  overflow: hidden;
  padding: 190px max(34px, calc((100vw - var(--max)) / 2 + 34px)) 86px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.28) 52%, rgba(5, 5, 5, 0.5)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.08) 46%),
    url("Assets/IMG_2408.png") center / cover no-repeat;
  border-bottom: 0;
  color: var(--white);
}

.documentary-hero .kicker {
  color: rgba(255, 255, 255, 0.72);
}

.documentary-hero h1,
.documentary-hero > p:not(.kicker) {
  max-width: 880px;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.42);
}

.documentary-hero > p:not(.kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.info-grid {
  display: grid;
  max-width: var(--max);
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 0 auto;
  padding: 82px 34px 96px;
}

.info-grid article {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}

.info-grid h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(31px, 4vw, 58px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.info-grid p:not(.date) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.criminals-page {
  background: var(--black);
  color: var(--white);
}

.criminals-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: end;
  width: min(1360px, calc(100% - 56px));
  margin: 0 auto;
  padding: clamp(170px, 18vw, 260px) 0 clamp(84px, 10vw, 140px);
}

.criminals-hero::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.76) 50%, rgba(5, 5, 5, 0.94)),
    url("Assets/criminalsofpurposeflagconq.png") center / cover no-repeat;
  content: "";
  opacity: 0.56;
}

.criminals-hero::after {
  position: absolute;
  right: 0;
  bottom: 72px;
  left: 0;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 145, 85, 0.7), transparent);
  content: "";
}

.criminals-hero-copy,
.criminals-medallion {
  position: relative;
  z-index: 1;
}

.criminals-hero-copy {
  display: grid;
  gap: 24px;
  max-width: 900px;
}

.criminals-hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 136px);
  line-height: 0.86;
}

.criminals-hero-copy > p:not(.kicker) {
  max-width: 840px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.34;
}

.criminals-medallion {
  display: grid;
  justify-items: center;
}

.criminals-medallion img {
  width: min(100%, 360px);
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.54));
}

.criminals-statement {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid rgba(182, 145, 85, 0.46);
  border-bottom: 1px solid rgba(182, 145, 85, 0.28);
}

.criminals-statement h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.96;
}

.criminals-statement > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(21px, 2.2vw, 32px);
  line-height: 1.42;
}

.criminals-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) 0 clamp(88px, 11vw, 148px);
}

.criminals-pillars article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(182, 145, 85, 0.34);
  background: rgba(255, 255, 255, 0.035);
}

.criminals-pillars h2 {
  margin: 28px 0 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 0.98;
}

.criminals-pillars p:not(.date) {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.5;
}

.casting-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 0.8fr);
  gap: 42px;
  align-items: center;
}

.casting-hero h1 {
  max-width: 680px;
  font-size: clamp(38px, 5vw, 72px);
}

.casting-hero-copy > p:not(.kicker) {
  max-width: 790px;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.28;
}

.casting-carousel {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.casting-carousel-frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--black);
}

.casting-carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.casting-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.casting-carousel-slide iframe,
.casting-carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.casting-carousel-slide iframe {
  border: 0;
}

.casting-carousel-slide img {
  object-fit: cover;
}

.casting-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(5, 5, 5, 0.72);
  color: var(--white);
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  padding: 0;
  transform: translateY(-50%);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.casting-carousel-arrow:hover,
.casting-carousel-arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(5, 5, 5, 0.9);
}

.casting-carousel-arrow.previous {
  left: 12px;
}

.casting-carousel-arrow.next {
  right: 12px;
}

.casting-carousel-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  background: rgba(5, 5, 5, 0.72);
  padding: 7px 9px;
  color: var(--white);
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.casting-notice {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 52px;
  margin: 0 auto;
  padding: 82px 34px 48px;
}

.casting-summary {
  align-self: start;
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}

.casting-summary h2,
.casting-body h3 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.casting-summary dl {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
}

.casting-summary dl div,
.casting-body article,
.casting-role-card {
  border-top: 1px solid rgba(17, 17, 17, 0.2);
}

.casting-summary dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 16px 0;
}

.casting-summary dt,
.casting-summary dd {
  margin: 0;
}

.casting-summary dt {
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.casting-summary dd,
.casting-body p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.casting-backstage-link {
  margin-top: 44px;
}

.casting-body {
  display: grid;
  gap: 38px;
}

.casting-body article {
  padding-top: 24px;
}

.casting-body h3 {
  font-size: clamp(28px, 3vw, 46px);
}

.casting-role-section h3 {
  border-left: 6px solid var(--red);
  margin-bottom: 28px;
  padding: 10px 0 10px 18px;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 0.88;
}

.casting-body p + p {
  margin-top: 16px;
}

.casting-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.casting-role-card {
  padding-top: 18px;
}

.casting-role-card button {
  display: flex;
  width: 100%;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.casting-role-card button::after {
  flex: 0 0 auto;
  color: var(--red);
  font-family: var(--font-menu);
  font-size: 22px;
  line-height: 1;
  content: "+";
}

.casting-role-card.is-open button::after {
  content: "-";
}

.casting-role-card strong {
  display: block;
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.casting-role-card small {
  display: block;
  color: var(--muted);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.casting-role-card > p {
  display: none;
  margin-top: 18px;
  padding-right: 28px;
}

.casting-role-card.is-open > p {
  display: block;
}

.casting-apply-cta {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 52px;
  margin: 0 auto;
  padding: 0 34px 110px;
}

.casting-apply-cta .button {
  grid-column: 2;
  justify-self: start;
}

.webmaster-vault {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 34px 96px;
}

.webmaster-gate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 42px;
  align-items: center;
  border: 1px solid rgba(14, 14, 13, 0.16);
  padding: 34px;
  background: rgba(229, 218, 200, 0.45);
}

.webmaster-gate h2,
.hidden-pages-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 68px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.webmaster-gate p:not(.kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.webmaster-password-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(14, 14, 13, 0.22);
  padding: 24px;
  background: var(--paper);
}

.webmaster-password-form label {
  color: var(--muted);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.webmaster-password-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.webmaster-password-form input {
  min-height: 48px;
  border: 1px solid rgba(14, 14, 13, 0.24);
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
  font: inherit;
  padding: 0 14px;
}

.webmaster-error {
  min-height: 20px;
  color: var(--red);
  font-size: 14px;
}

.hidden-pages-panel[hidden],
.webmaster-gate[hidden] {
  display: none;
}

.hidden-pages-panel {
  border-top: 1px solid var(--ink);
  padding-top: 30px;
}

.hidden-pages-heading {
  display: flex;
  gap: 22px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 26px;
}

.hidden-pages-heading .kicker {
  margin-bottom: 6px;
}

.hidden-pages-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hidden-pages-list a {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(14, 14, 13, 0.18);
  padding: 20px;
  color: var(--ink);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hidden-pages-list a:hover {
  border-color: rgba(180, 40, 46, 0.42);
  background: rgba(180, 40, 46, 0.08);
  transform: translateY(-2px);
}

.hidden-pages-list span {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hidden-pages-list small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.webmaster-editor {
  margin-top: 42px;
  border-top: 1px solid rgba(14, 14, 13, 0.24);
  padding-top: 34px;
}

.webmaster-editor-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.webmaster-editor-heading h2 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 68px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.webmaster-editor-heading p:not(.kicker) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.webmaster-editor-actions,
.editor-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.webmaster-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(14, 14, 13, 0.2);
}

.webmaster-tabs button {
  min-height: 44px;
  border: 1px solid rgba(14, 14, 13, 0.22);
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.4);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 16px;
  text-transform: uppercase;
}

.webmaster-tabs button.is-active {
  background: var(--ink);
  color: var(--white);
}

.editor-panel {
  display: none;
  border: 1px solid rgba(14, 14, 13, 0.18);
  background: rgba(229, 218, 200, 0.32);
  padding: 24px;
}

.editor-panel.is-active {
  display: block;
}

.editor-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.editor-form-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editor-form-grid input,
.editor-form-grid textarea {
  width: 100%;
  border: 1px solid rgba(14, 14, 13, 0.22);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font: 16px/1.4 var(--font-body);
  letter-spacing: 0;
  padding: 12px;
  text-transform: none;
}

.editor-form-grid textarea {
  resize: vertical;
}

.editor-wide {
  grid-column: 1 / -1;
}

.editor-list-heading {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin: 4px 0 16px;
}

.editor-list-heading:not(:first-child) {
  margin-top: 32px;
}

.editor-list-heading h3,
.editor-card h4 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.editor-stack {
  display: grid;
  gap: 16px;
}

.editor-card {
  border: 1px solid rgba(14, 14, 13, 0.18);
  background: rgba(255, 255, 255, 0.42);
  padding: 18px;
}

.editor-card-heading {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.editor-preview {
  max-height: 520px;
  overflow: auto;
  border: 1px solid rgba(14, 14, 13, 0.18);
  background: var(--ink);
  color: var(--white);
  font: 13px/1.5 "Courier Prime", monospace;
  padding: 18px;
  white-space: pre-wrap;
}

.editor-status {
  min-height: 24px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
}

.corps-hero {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.32fr);
  gap: 54px;
  align-items: center;
  margin: 0 auto;
  padding: 178px 34px 84px;
  border-bottom: 1px solid var(--ink);
}

.corps-hero h1 {
  max-width: 1040px;
  margin-bottom: 22px;
  font-size: clamp(54px, 8vw, 128px);
}

.corps-hero p:not(.kicker) {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(22px, 2.35vw, 34px);
  line-height: 1.28;
}

.corps-hero img {
  width: min(100%, 260px);
  justify-self: end;
}

.corps-statement {
  max-width: 1040px;
  margin: 0 auto;
  padding: 82px 34px 34px;
}

.corps-statement h2 {
  max-width: 960px;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.corps-statement p:not(.kicker) {
  max-width: 790px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

.corps-statement p + p {
  margin-top: 18px;
}

.corps-grid {
  padding-top: 48px;
}

.michael-page {
  background: var(--paper);
}

.michael-hero {
  display: flex;
  max-width: none;
  flex-direction: column;
  gap: 34px;
  margin: 0 auto;
  padding: 162px 0 0;
  border-bottom: 1px solid var(--ink);
}

.michael-hero > div {
  width: min(calc(100% - 68px), var(--max));
  margin: 0 auto;
}

.michael-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(52px, 7.7vw, 118px);
}

.michael-hero p:not(.kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(22px, 2.25vw, 32px);
  line-height: 1.3;
}

.michael-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.michael-portrait {
  display: grid;
  gap: 0;
  margin: 0;
}

.michael-portrait img {
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.18) brightness(0.92);
}

.michael-portrait figcaption {
  width: min(calc(100% - 68px), var(--max));
  margin: 12px auto 28px;
  color: var(--muted);
  font-family: var(--font-menu);
  font-size: 12px;
  line-height: 1.45;
  text-transform: uppercase;
}

.michael-bio {
  display: block;
  max-width: 1060px;
  margin: 0 auto;
  padding: 82px 34px;
  border-bottom: 1px solid rgba(14, 14, 13, 0.22);
}

.michael-bio > div:first-child {
  max-width: 900px;
  margin-bottom: 28px;
}

.michael-bio h2,
.michael-section-heading h2,
.michael-principles h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 68px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.michael-bio h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.michael-bio-copy {
  display: grid;
  max-width: 820px;
  gap: 18px;
}

.michael-bio-copy p,
.michael-principles p:not(.date),
.michael-gallery p:not(.date) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.michael-publicity {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 34px 96px;
}

.michael-section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.michael-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.michael-gallery article {
  display: grid;
  background: var(--black);
  color: var(--white);
}

.michael-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.michael-gallery article:nth-child(1) img {
  object-position: center;
}

.michael-gallery article:nth-child(2) img {
  object-position: 58% center;
}

.michael-gallery article:nth-child(3) img {
  object-position: center;
}

.michael-gallery div {
  padding: 24px;
}

.michael-gallery h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.michael-gallery .date {
  color: var(--gold);
}

.michael-gallery p:not(.date) {
  color: rgba(255, 255, 255, 0.72);
}

.michael-principles {
  display: grid;
  max-width: var(--max);
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
  padding: 0 34px 96px;
}

.michael-principles article {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}

.contact-hero {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.62fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  margin: 0 auto;
  padding: 168px 34px 78px;
  border-bottom: 1px solid var(--ink);
}

.contact-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(54px, 6.6vw, 96px);
  line-height: 0.9;
}

.contact-hero p:not(.kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.34;
}

.contact-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-left: 5px solid var(--red);
  padding: 28px;
  background: rgba(255, 255, 255, 0.34);
}

.contact-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.contact-card p:not(.date) {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.contact-card a {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 800;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.contact-card span {
  color: var(--muted);
  font-family: var(--font-menu);
  font-size: 18px;
  line-height: 1.5;
}

.contact-panel {
  max-width: var(--max);
  margin: 0 auto;
  padding: 74px 34px 112px;
}

.contact-panel .section-heading {
  gap: 18px;
  max-width: 940px;
  margin-bottom: 42px;
}

.contact-panel .section-heading h2 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.94;
}

.contact-routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.contact-routes article {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  border-top: 1px solid rgba(17, 17, 17, 0.42);
  padding-top: 24px;
}

.contact-routes h2 {
  margin: 16px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.25vw, 34px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.contact-routes p:not(.date) {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.contact-routes a {
  display: inline-block;
  max-width: 100%;
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink);
  font-family: var(--font-menu);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color 180ms ease;
}

.contact-routes a:hover {
  color: var(--red);
}

.book-hero {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  margin: 0 auto;
  padding: 170px 34px 96px;
}

.book-cover {
  display: grid;
  min-height: 620px;
  align-content: space-between;
  padding: 42px 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(circle at 50% 18%, rgba(183, 143, 78, 0.28), transparent 34%),
    var(--black);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  color: var(--white);
  text-align: center;
}

.book-cover span,
.book-cover em {
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.book-cover strong {
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 800;
  line-height: 0.86;
  text-transform: uppercase;
}

.book-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(54px, 8vw, 122px);
}

.book-copy > p:not(.kicker) {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.28;
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.book-details {
  display: grid;
  max-width: var(--max);
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
  padding: 82px 34px 108px;
  border-top: 1px solid var(--ink);
}

.book-details article {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}

.book-details h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 58px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.book-details p:not(.date) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.publishing-hero {
  border-bottom: 1px solid var(--ink);
}

.publication-cover {
  min-height: 560px;
}

.publication-list {
  display: grid;
  max-width: var(--max);
  gap: 0;
  margin: 0 auto;
  padding: 76px 34px 116px;
}

.publication-list .section-heading {
  margin-bottom: 42px;
}

.publication-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.35fr) auto;
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--ink);
  padding: 28px 0;
}

.publication-item:last-child {
  border-bottom: 1px solid var(--ink);
}

.publication-item h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 68px);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.publication-item p:not(.date) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.publication-item dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.publication-item dl div {
  display: grid;
  gap: 4px;
}

.publication-item dt,
.publication-item dd {
  margin: 0;
}

.publication-item dt {
  color: var(--red);
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.publication-item dd {
  color: var(--muted);
}

.publication-item-muted {
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.035), transparent 48%);
}

.stories-page {
  background: #070706;
  color: var(--white);
}

.story-page {
  background: var(--ink);
}

.stories-page .site-header:not(.is-scrolled) {
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
}

.stories-page .site-header:not(.is-scrolled) .brand-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.stories-page .site-header:not(.is-scrolled) .nav-social {
  border-right-color: rgba(255, 255, 255, 0.32);
}

.stories-threshold {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
  color: var(--white);
}

.stories-threshold-image,
.stories-threshold-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.stories-threshold-image {
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.12) brightness(0.62);
  transform: scale(1.05);
  animation: storyThresholdDrift 18s ease-in-out infinite alternate;
}

.stories-threshold-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.36) 56%, rgba(5, 5, 5, 0.74)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.05) 42%);
}

.stories-threshold-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 96vh;
  max-width: var(--max);
  margin: 0 auto;
  padding: 170px 34px 78px;
}

.stories-threshold h1 {
  max-width: 1020px;
  margin-bottom: 10px;
  font-size: clamp(54px, 8vw, 128px);
}

.stories-threshold-subhead {
  margin-bottom: 24px;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: clamp(18px, 1.65vw, 26px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stories-threshold p:not(.kicker):not(.stories-threshold-subhead) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.34;
}

.stories-threshold-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  max-width: 820px;
  margin: 34px 0;
}

.stories-threshold-labels span {
  border-top: 1px solid rgba(183, 145, 85, 0.62);
  padding-top: 8px;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.new-world-hero-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0 0 30px;
}

.new-world-hero-social a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--gold);
  box-shadow: none;
  transition: color 180ms ease, transform 180ms ease;
}

.new-world-hero-social a:hover,
.new-world-hero-social a:focus-visible {
  color: var(--white);
  outline: none;
  transform: translateY(-3px);
}

.new-world-hero-social .social-icon {
  width: 20px;
  height: 20px;
}

.new-world-hero-social .social-substack {
  width: 22px;
}

.new-world-hero-social .social-facebook {
  width: 18px;
}

.new-world-hero-social .new-world-hero-subscribe {
  width: auto;
  min-width: 132px;
  padding: 0 20px;
  border-radius: 0;
  color: var(--white);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow: inset 0 0 0 1px rgba(183, 145, 85, 0.22);
  text-transform: uppercase;
}

.new-world-coming-soon-page {
  background: var(--black);
}

.new-world-top-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-bottom: 1px solid rgba(183, 145, 85, 0.32);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.54), rgba(5, 5, 5, 0));
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-caslon);
  font-size: clamp(14px, 1.25vw, 18px);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.new-world-top-nav a {
  position: relative;
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 0 14px;
  text-align: center;
  transition: background 180ms ease, color 180ms ease;
}

.new-world-top-nav .nav-label-mobile {
  display: none !important;
}

.new-world-top-nav a:hover,
.new-world-top-nav a:focus-visible {
  color: var(--white);
  outline: none;
}

.new-world-top-nav a[aria-current="page"] {
  color: var(--gold);
}

.new-world-top-nav a.has-new-update::after {
  position: absolute;
  top: 17px;
  right: max(18px, 26%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(183, 145, 85, 0.16);
  content: "";
}

.new-world-coming-soon-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
}

.new-world-coming-soon-image,
.new-world-coming-soon-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.new-world-coming-soon-image {
  object-fit: cover;
  filter: grayscale(0.45) contrast(1.18) brightness(0.54);
  transform: scale(1.04);
  animation: storyThresholdDrift 18s ease-in-out infinite alternate;
}

.new-world-coming-soon-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.91), rgba(5, 5, 5, 0.38) 58%, rgba(5, 5, 5, 0.76)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.08) 50%);
}

.new-world-coming-soon-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 28px 46px;
  align-content: end;
  align-items: end;
  min-height: 100vh;
  max-width: var(--max);
  margin: 0 auto;
  padding: 170px 34px 82px;
}

.new-world-coming-soon-intro {
  display: grid;
  justify-items: start;
  min-width: 0;
}

.new-world-coming-soon-content h1 {
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 22px;
  font-family: "Deutsch Gothic", var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.86;
  text-align: center;
  text-transform: uppercase;
}

.new-world-coming-soon-content h1 span {
  display: block;
  white-space: nowrap;
}

.new-world-coming-soon-journal {
  font-family: "Century Expanded Local", var(--font-body);
  font-weight: 500;
  font-size: 0.38em;
  line-height: 1.12;
  letter-spacing: 0.22em;
}

.new-world-coming-soon-intro > p:not(.kicker) {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.34;
}

.new-world-coming-soon-note {
  grid-column: 1;
  display: grid;
  gap: 14px;
  max-width: 660px;
  margin: 0;
}

.new-world-coming-soon-note span {
  display: block;
  width: min(280px, 100%);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(183, 145, 85, 0));
}

.new-world-coming-soon-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: "EB Garamond", var(--font-display);
  font-size: clamp(16px, 1.22vw, 20px);
  line-height: 1.42;
}

.new-world-coming-soon-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.new-world-coming-soon-embed {
  width: min(480px, 100%);
  align-self: end;
  justify-self: end;
}

.new-world-coming-soon-dispatch {
  position: relative;
  max-width: 620px;
  border: 1px solid rgba(183, 145, 85, 0.58);
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(183, 145, 85, 0.13), transparent 38%),
    rgba(5, 5, 5, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
}

.new-world-coming-soon-dispatch::before {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(183, 145, 85, 0.24);
  content: "";
  pointer-events: none;
}

.new-world-preorder-kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 12px !important;
  color: var(--gold) !important;
  font-family: var(--font-menu);
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.new-world-preorder-kicker::after {
  display: block;
  width: 54px;
  height: 1px;
  background: rgba(183, 145, 85, 0.62);
  content: "";
}

.new-world-coming-soon-dispatch h2 {
  margin: 0;
  color: var(--white);
  font-family: "EB Garamond", var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.new-world-coming-soon-dispatch h2 em {
  display: block;
  font-style: italic;
}

.new-world-coming-soon-dispatch h2 span {
  display: block;
  margin-top: 8px;
  font-size: 0.46em;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.new-world-coming-soon-dispatch p {
  margin: 12px 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.45;
}

.new-world-coming-soon-dispatch-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.new-world-coming-soon-dispatch input[type="text"],
.new-world-coming-soon-dispatch input[type="email"] {
  min-width: 0;
  border: 1px solid rgba(183, 145, 85, 0.52);
  border-radius: 0;
  min-height: 48px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font: italic 700 16px var(--font-caslon);
  box-shadow: inset 0 0 0 1px rgba(183, 145, 85, 0.16);
  outline: none;
}

.new-world-coming-soon-dispatch input[type="text"] {
  grid-column: 1 / -1;
}

.new-world-coming-soon-dispatch input[type="text"]::placeholder,
.new-world-coming-soon-dispatch input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.new-world-coming-soon-dispatch input[type="text"]:focus,
.new-world-coming-soon-dispatch input[type="email"]:focus {
  border-color: rgba(255, 255, 255, 0.78);
}

.new-world-coming-soon-dispatch button {
  grid-column: 2;
  grid-row: 2;
  align-self: stretch;
  min-width: 172px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%),
    var(--gold);
  color: var(--black);
  font-family: "EB Garamond", var(--font-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 24px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    inset 0 0 0 1px rgba(5, 5, 5, 0.22),
    0 10px 28px rgba(0, 0, 0, 0.3);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.new-world-coming-soon-dispatch button:hover,
.new-world-coming-soon-dispatch button:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
  outline: none;
  transform: translateY(-2px);
}

.new-world-preorder-reassurance {
  margin: 12px 0 0 !important;
  color: rgba(255, 255, 255, 0.58) !important;
  font-family: var(--font-menu);
  font-size: 11px !important;
  letter-spacing: 0.04em;
  line-height: 1.35 !important;
}

.new-world-campaign-status {
  min-height: 15px;
  margin: 8px 0 0 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  font-family: var(--font-menu);
  font-size: 10px !important;
  letter-spacing: 0.05em;
  line-height: 1.35 !important;
  text-transform: uppercase;
}

.new-world-coming-soon-action-block {
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 8px 0 0;
}

.new-world-coming-soon-action-block > div {
  display: grid;
  gap: 26px;
  justify-items: start;
}

.new-world-coming-soon-social {
  margin: 0;
}

.new-world-coming-soon-links {
  position: relative;
  display: flex;
  width: fit-content;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0;
}

.new-world-coming-soon-links a {
  display: grid;
  min-width: 156px;
  min-height: 48px;
  place-items: center;
  padding: 0 22px;
  border: 1px solid rgba(183, 145, 85, 0.58);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(183, 145, 85, 0.12), transparent 45%),
    rgba(5, 5, 5, 0.56);
  color: var(--white);
  font-family: "EB Garamond", var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, background 180ms ease;
}

.new-world-coming-soon-links a:hover,
.new-world-coming-soon-links a:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(183, 145, 85, 0.18);
  color: var(--white);
  outline: none;
  transform: translateY(-3px);
}

.new-world-coming-soon-progress {
  grid-column: 1 / -1;
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0;
}

.new-world-coming-soon-progress-header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: baseline;
  justify-content: space-between;
}

.new-world-coming-soon-progress h2,
.new-world-coming-soon-progress p {
  margin: 0;
}

.new-world-coming-soon-progress h2 {
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.new-world-coming-soon-progress p {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-caslon);
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
}

.new-world-coming-soon-progress ol {
  --progress-steps: 6;
  --progress-index: 1;
  --progress-fill: 21.2%;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 22px 0 0;
  list-style: none;
}

.new-world-coming-soon-progress ol::before,
.new-world-coming-soon-progress ol::after {
  position: absolute;
  top: 6px;
  left: 0;
  height: 2px;
  content: "";
}

.new-world-coming-soon-progress ol::before {
  right: 0;
  background: rgba(255, 255, 255, 0.18);
}

.new-world-coming-soon-progress ol::after {
  width: var(--progress-fill);
  background: var(--gold);
}

.new-world-coming-soon-progress li {
  position: relative;
  width: max-content;
  max-width: 124px;
  padding-right: 12px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--font-caslon);
  font-size: clamp(13px, 1vw, 16px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

.new-world-coming-soon-progress li:not(:first-child):not(:last-child) {
  text-align: center;
}

.new-world-coming-soon-progress li:nth-child(4),
.new-world-coming-soon-progress li:nth-child(5) {
  max-width: 112px;
}

.new-world-coming-soon-progress li::before {
  position: absolute;
  top: -18px;
  left: 50%;
  z-index: 1;
  width: 1px;
  height: 9px;
  background: rgba(255, 255, 255, 0.32);
  content: "";
  transform: translateX(-50%);
}

.new-world-coming-soon-progress li:first-child {
  text-align: left;
}

.new-world-coming-soon-progress li:first-child::before {
  left: 0;
  transform: none;
}

.new-world-coming-soon-progress li:last-child {
  padding-right: 0;
  text-align: right;
}

.new-world-coming-soon-progress li:last-child::before {
  right: 0;
  left: auto;
  transform: none;
}

.new-world-coming-soon-progress li.is-complete,
.new-world-coming-soon-progress li.is-current {
  color: rgba(255, 255, 255, 0.88);
}

.new-world-coming-soon-progress li.is-complete::before,
.new-world-coming-soon-progress li.is-current::before {
  background: var(--gold);
}

.new-world-coming-soon-progress li.is-current::before {
  width: 2px;
  height: 13px;
  top: -20px;
  box-shadow: none;
}

.new-world-coming-soon-progress li::after {
  position: absolute;
  bottom: calc(100% + 22px);
  left: 50%;
  z-index: 4;
  width: min(260px, 70vw);
  border: 1px solid rgba(183, 145, 85, 0.58);
  padding: 13px 15px 14px;
  background:
    linear-gradient(180deg, rgba(183, 145, 85, 0.12), transparent 48%),
    rgba(8, 8, 8, 0.94);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 18px 34px rgba(0, 0, 0, 0.42);
  color: rgba(255, 255, 255, 0.82);
  content: attr(data-progress-note);
  font-family: var(--font-caslon);
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.32;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.new-world-coming-soon-progress li:hover::after,
.new-world-coming-soon-progress li:focus-visible::after,
.new-world-coming-soon-progress li.is-tooltip-open::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.new-world-coming-soon-progress li:hover,
.new-world-coming-soon-progress li:focus-visible,
.new-world-coming-soon-progress li.is-tooltip-open {
  z-index: 5;
}

.new-world-coming-soon-progress li:first-child::after {
  left: 0;
  transform: translate(0, 8px);
}

.new-world-coming-soon-progress li:first-child:hover::after,
.new-world-coming-soon-progress li:first-child:focus-visible::after,
.new-world-coming-soon-progress li:first-child.is-tooltip-open::after {
  transform: translate(0, 0);
}

.new-world-coming-soon-progress li:last-child::after {
  right: 0;
  left: auto;
  transform: translate(0, 8px);
}

.new-world-coming-soon-progress li:last-child:hover::after,
.new-world-coming-soon-progress li:last-child:focus-visible::after,
.new-world-coming-soon-progress li:last-child.is-tooltip-open::after {
  transform: translate(0, 0);
}

.new-world-submit-banner {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  padding: 14px 0;
}

.new-world-submit-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-caslon);
  font-size: clamp(18px, 1.5vw, 24px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
}

.new-world-submit-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.new-world-submit-banner a {
  display: grid;
  min-width: 132px;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(183, 145, 85, 0.62);
  padding: 0 18px;
  background:
    linear-gradient(180deg, rgba(183, 145, 85, 0.12), transparent 45%),
    rgba(5, 5, 5, 0.56);
  color: var(--white);
  font-family: "EB Garamond", var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, background 180ms ease;
}

.new-world-submit-banner a:hover,
.new-world-submit-banner a:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(183, 145, 85, 0.18);
  color: var(--white);
  outline: none;
  transform: translateY(-2px);
}

.new-world-page-footer,
.new-world-coming-soon-footer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px 16px;
  align-items: center;
  max-width: 900px;
  margin: 10px 0 0;
}

.new-world-page-footer a,
.new-world-coming-soon-footer a {
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.new-world-page-footer a:hover,
.new-world-page-footer a:focus-visible,
.new-world-coming-soon-footer a:hover,
.new-world-coming-soon-footer a:focus-visible {
  color: var(--white);
  outline: none;
}

.new-world-footer-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: flex-end;
}

.new-world-footer-logo-link {
  grid-column: 3;
  justify-self: end;
  display: block;
}

.new-world-coming-soon-button-sigil {
  width: clamp(42px, 3.8vw, 58px);
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.42));
}

.new-world-coming-soon-brand-lockup {
  grid-column: 2;
  display: grid;
  gap: 5px;
  justify-items: end;
  align-self: center;
  max-width: 390px;
  text-align: right;
}

.new-world-coming-soon-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-menu);
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.new-world-footer-social {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  align-self: center;
}

.new-world-footer-social a {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: rgba(255, 255, 255, 0.54);
  transition: color 180ms ease, transform 180ms ease;
}

.new-world-footer-social .social-icon {
  width: 16px;
  height: 16px;
}

.new-world-footer-social .social-substack,
.new-world-footer-social .social-bluesky {
  width: 17px;
}

.new-world-footer-social .social-x {
  width: 15px;
}

.new-world-footer-social a:hover,
.new-world-footer-social a:focus-visible {
  color: var(--gold);
  outline: none;
  transform: translateY(-2px);
}

.new-world-guidelines-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  background: #111111;
  color: var(--white);
}

.new-world-guidelines-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  background: #111111;
  pointer-events: none;
}

.new-world-guidelines-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.72) 48%, rgba(17, 17, 17, 0.54)),
    linear-gradient(180deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.3) 34%, rgba(17, 17, 17, 0.5) 70%, rgba(17, 17, 17, 0.82));
  content: "";
}

.new-world-guidelines-bg-image {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
}

.new-world-guidelines-bg-image.is-scott {
  top: 0;
  transform-origin: 52% 34%;
  animation: guidelinesBackgroundDrift 32s ease-in-out infinite alternate;
  -webkit-mask-image: linear-gradient(180deg, #000 0, #000 72%, rgba(0, 0, 0, 0.7) 86%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0, #000 72%, rgba(0, 0, 0, 0.7) 86%, transparent 100%);
}

.new-world-artists-page .new-world-guidelines-bg {
  display: flex;
  flex-direction: column;
}

.new-world-artists-page .new-world-guidelines-bg-image.is-scott,
.new-world-artists-page .new-world-guidelines-bg-image.is-artists-mountain,
.new-world-artists-page .new-world-guidelines-bg-image.is-antarctic,
.new-world-artists-page .new-world-guidelines-bg-image.is-voyage,
.new-world-artists-page .new-world-guidelines-bg-image.is-plane {
  position: relative;
  top: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  max-width: none;
  margin-top: -8vw;
  animation: none;
  transform: none;
}

.new-world-artists-page .new-world-guidelines-bg-image.is-scott {
  margin-top: 0;
}

.new-world-artists-page .new-world-guidelines-bg-image.is-artists-mountain {
  filter: grayscale(1) contrast(1.22) brightness(0.72);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.45) 14%, #000 30%, #000 76%, rgba(0, 0, 0, 0.58) 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.45) 14%, #000 30%, #000 76%, rgba(0, 0, 0, 0.58) 90%, transparent 100%);
}

.new-world-artists-page .new-world-guidelines-bg-image.is-plane {
  transform-origin: 50% 50%;
}

.new-world-guidelines-bg-image.is-antarctic {
  top: 106vw;
  transform-origin: 48% 50%;
  animation: guidelinesBackgroundDriftReverse 38s ease-in-out infinite alternate;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.45) 16%, #000 32%, #000 72%, rgba(0, 0, 0, 0.55) 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.45) 16%, #000 32%, #000 72%, rgba(0, 0, 0, 0.55) 88%, transparent 100%);
}

.new-world-guidelines-bg-image.is-voyage {
  top: 142vw;
  transform-origin: 50% 48%;
  animation: guidelinesBackgroundDrift 42s ease-in-out infinite alternate;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.45) 16%, #000 32%, #000 72%, rgba(0, 0, 0, 0.55) 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.45) 16%, #000 32%, #000 72%, rgba(0, 0, 0, 0.55) 88%, transparent 100%);
}

.new-world-guidelines-bg-image.is-plane {
  top: auto;
  bottom: 0;
  left: 50%;
  width: 132%;
  max-width: none;
  transform: translateX(-50%);
  transform-origin: 50% 56%;
  animation: guidelinesPlaneDrift 44s ease-in-out infinite alternate;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.45) 16%, #000 32%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.45) 16%, #000 32%, #000 100%);
}

.new-world-stars-page .new-world-guidelines-bg-image.is-scott {
  transform-origin: 52% 38%;
  animation: starsBackgroundDrift 28s ease-in-out infinite alternate;
  -webkit-mask-image: linear-gradient(180deg, #000 0, #000 92%, rgba(0, 0, 0, 0.78) 97%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0, #000 92%, rgba(0, 0, 0, 0.78) 97%, transparent 100%);
}

.new-world-stars-page .new-world-guidelines-bg-image.is-stars-gateway {
  top: 136vw;
  transform-origin: 48% 50%;
  animation: starsGatewayDrift 34s ease-in-out infinite alternate;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.48) 14%, #000 28%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.48) 14%, #000 28%, #000 100%);
}

.new-world-stars-preorder-slim {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  gap: 10px 16px;
  align-items: center;
  max-width: 920px;
  border-top: 1px solid rgba(183, 145, 85, 0.5);
  border-bottom: 1px solid rgba(183, 145, 85, 0.34);
  padding: 16px 18px;
  background: rgba(5, 5, 5, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.new-world-stars-preorder-slim .new-world-preorder-kicker {
  margin: 0 !important;
}

.new-world-stars-preorder-slim h2 {
  margin: 0;
  color: var(--white);
  font-family: "EB Garamond", var(--font-display);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 800;
  line-height: 1;
}

.new-world-stars-preorder-slim h2 em {
  font-style: italic;
}

.new-world-stars-preorder-slim form {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr) auto;
  gap: 10px;
}

.new-world-guidelines-submit-slim > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.new-world-guidelines-submit-slim p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-caslon);
  font-size: clamp(15px, 1.1vw, 18px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.3;
}

.new-world-advertisers-inquiry-slim > div {
  grid-template-columns: 1fr;
  gap: 6px;
}

.new-world-advertisers-inquiry-slim .new-world-copy-email {
  white-space: nowrap;
}

.new-world-advertisers-inquiry-description {
  font-style: normal !important;
}

.new-world-stars-preorder-slim input[type="text"],
.new-world-stars-preorder-slim input[type="email"] {
  min-width: 0;
  min-height: 42px;
  border: 1px solid rgba(183, 145, 85, 0.52);
  border-radius: 0;
  padding: 0 16px;
  background: rgba(5, 5, 5, 0.58);
  color: var(--white);
  font: italic 700 15px var(--font-caslon);
  box-shadow: inset 0 0 0 1px rgba(183, 145, 85, 0.16);
  outline: none;
}

.new-world-stars-preorder-slim input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.new-world-stars-preorder-slim input:focus {
  border-color: rgba(255, 255, 255, 0.78);
}

.new-world-guidelines-submit-slim a,
.new-world-stars-preorder-slim button {
  min-width: 172px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%),
    var(--gold);
  color: var(--black);
  font-family: "EB Garamond", var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 22px;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(5, 5, 5, 0.22);
  text-decoration: none;
  cursor: pointer;
}

.new-world-stars-preorder-slim .new-world-preorder-reassurance {
  grid-column: 1 / -1;
  margin: -2px 0 0 !important;
}

.new-world-stars-page .new-world-guidelines-article {
  border-top: 0;
  padding-top: 0;
}

.new-world-guidelines-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  width: min(1180px, calc(100vw - 44px));
  margin: 0 auto;
  padding: 108px 0 34px;
}

.new-world-guidelines-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.new-world-guidelines-back {
  grid-column: 1 / -1;
  width: fit-content;
  border-bottom: 1px solid rgba(183, 145, 85, 0.68);
  padding-bottom: 6px;
  color: var(--gold);
  font-family: "EB Garamond", var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.new-world-guidelines-header h1 {
  max-width: 760px;
  margin: 0 0 12px;
  color: var(--white);
  font-family: "EB Garamond", var(--font-display);
  font-size: clamp(42px, 5.5vw, 82px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.new-world-guidelines-header p:not(.kicker) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.42;
}

.new-world-guidelines-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.new-world-guidelines-actions a {
  display: grid;
  min-width: 132px;
  min-height: 46px;
  place-items: center;
  padding: 0 20px;
  border: 1px solid rgba(183, 145, 85, 0.62);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(183, 145, 85, 0.12), transparent 45%),
    rgba(5, 5, 5, 0.56);
  color: var(--white);
  font-family: "EB Garamond", var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  text-transform: uppercase;
}

.new-world-guidelines-date {
  margin-top: 12px !important;
  color: var(--gold) !important;
  font-family: var(--font-menu);
  font-size: 12px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.new-world-guidelines-article {
  display: grid;
  gap: 42px;
  max-width: 920px;
  border-top: 1px solid rgba(183, 145, 85, 0.48);
  padding-top: 42px;
}

.new-world-guidelines-article section {
  display: grid;
  gap: 14px;
}

.new-world-guidelines-article h2,
.new-world-guidelines-article h3,
.new-world-guidelines-article p,
.new-world-guidelines-article ul,
.new-world-guidelines-article ol {
  margin: 0;
}

.new-world-guidelines-article h2 {
  color: var(--white);
  font-family: "EB Garamond", var(--font-display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 800;
  line-height: 1;
}

.new-world-guidelines-article h3 {
  color: rgba(255, 255, 255, 0.9);
  font-family: "EB Garamond", var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.08;
}

.new-world-guidelines-article p,
.new-world-guidelines-article li {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.55;
}

.new-world-guidelines-article ul,
.new-world-guidelines-article ol {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.new-world-guidelines-article a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.new-world-stars-page .new-world-guidelines-article {
  gap: clamp(46px, 6vw, 76px);
}

.new-world-stars-page .new-world-guidelines-article section:not(.new-world-coming-soon-dispatch) {
  gap: 18px;
  max-width: 820px;
}

.new-world-stars-page .new-world-guidelines-article section:not(.new-world-coming-soon-dispatch) + section:not(.new-world-coming-soon-dispatch) {
  border-top: 1px solid rgba(183, 145, 85, 0.32);
  padding-top: clamp(34px, 4vw, 48px);
}

.new-world-stars-page .new-world-guidelines-article h2 {
  margin-bottom: 4px;
  font-size: clamp(38px, 4.2vw, 66px);
  letter-spacing: 0;
}

.new-world-stars-page .new-world-guidelines-article p {
  max-width: 760px;
}

.new-world-stars-label {
  color: var(--gold) !important;
  font-family: var(--font-menu);
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.new-world-stars-lede {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(22px, 2vw, 31px) !important;
  line-height: 1.36 !important;
}

.new-world-stars-cadence {
  max-width: 700px !important;
  margin-top: 8px !important;
  color: rgba(255, 255, 255, 0.86) !important;
  font-family: "EB Garamond", var(--font-display);
  font-size: clamp(24px, 2.4vw, 36px) !important;
  font-weight: 800;
  line-height: 1.18 !important;
}

.new-world-stars-refrain {
  margin-top: 10px !important;
  color: var(--gold) !important;
  font-family: var(--font-menu);
  font-size: clamp(14px, 1.1vw, 17px) !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35 !important;
  text-transform: uppercase;
}

.new-world-stars-specs {
  display: grid;
  gap: 3px;
  width: min(100%, 560px);
  border-left: 1px solid rgba(183, 145, 85, 0.54);
  margin: 6px 0 4px !important;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.9) !important;
  font-family: var(--font-menu);
  font-size: clamp(14px, 0.95vw, 16px) !important;
  line-height: 1.25 !important;
  letter-spacing: 0.02em;
}

.new-world-stars-preorder {
  margin-bottom: clamp(36px, 6vw, 84px);
}

.new-world-stars-footer {
  max-width: 920px;
  margin-top: -28px;
}

.new-world-guidelines-principles {
  display: grid;
  gap: 22px;
  margin-top: 6px;
}

.new-world-guidelines-principles section {
  gap: 8px;
  border-top: 1px solid rgba(183, 145, 85, 0.32);
  padding-top: 18px;
}

.new-world-guidelines-principles h3 {
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.new-world-guidelines-rule {
  color: rgba(255, 255, 255, 0.94) !important;
  font-family: "EB Garamond", var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px) !important;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08 !important;
  text-transform: none;
}

.new-world-artists-tenets {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
}

.new-world-artists-tenets section {
  align-content: start;
}

.new-world-guidelines-submit {
  position: relative;
  max-width: 620px;
  border: 1px solid rgba(183, 145, 85, 0.58);
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(183, 145, 85, 0.13), transparent 38%),
    rgba(5, 5, 5, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
}

.new-world-guidelines-submit::before {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(183, 145, 85, 0.24);
  content: "";
  pointer-events: none;
}

.new-world-guidelines-submit h2 {
  max-width: 480px;
  margin-top: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.95;
  text-transform: uppercase;
}

.new-world-guidelines-submit > p:not(.new-world-preorder-kicker):not(.new-world-preorder-reassurance) {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.45;
}

.new-world-guidelines-submit a {
  display: grid;
  width: fit-content;
  min-width: 172px;
  min-height: 48px;
  place-items: center;
  margin-top: 4px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%),
    var(--gold);
  color: var(--black);
  font-family: "EB Garamond", var(--font-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow:
    inset 0 0 0 1px rgba(5, 5, 5, 0.22),
    0 10px 28px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.new-world-guidelines-submit a:hover,
.new-world-guidelines-submit a:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--black);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
  outline: none;
  transform: translateY(-2px);
}

.new-world-guidelines-social {
  margin: 4px 0 0;
}

.new-world-copy-status {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.new-world-copy-email {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: text;
  user-select: text;
}

.new-world-copy-email:focus-visible {
  outline: 1px solid rgba(183, 145, 85, 0.72);
  outline-offset: 3px;
}

.new-world-updates-page .new-world-guidelines-bg-image.is-scott {
  min-height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.12) brightness(0.42);
  opacity: 0.68;
  -webkit-mask-image: linear-gradient(180deg, #000 0, #000 70%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0, #000 70%, transparent 100%);
}

.new-world-updates-shell {
  max-width: 1180px;
  padding-bottom: 44px;
}

.new-world-updates-header {
  max-width: 920px;
}

.new-world-updates-progress {
  max-width: 920px;
  border-top: 1px solid rgba(183, 145, 85, 0.48);
  border-bottom: 1px solid rgba(183, 145, 85, 0.24);
  padding: 24px 0 22px;
}

.new-world-updates-controls {
  display: grid;
  grid-template-columns: auto minmax(260px, 520px);
  gap: 14px;
  align-items: center;
  max-width: 920px;
  border-top: 1px solid rgba(183, 145, 85, 0.48);
  padding-top: 24px;
}

.new-world-updates-controls label {
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.new-world-updates-controls input {
  min-height: 46px;
  border: 1px solid rgba(183, 145, 85, 0.52);
  border-radius: 0;
  padding: 0 16px;
  background: rgba(5, 5, 5, 0.58);
  color: var(--white);
  font: italic 700 16px var(--font-caslon);
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(183, 145, 85, 0.16);
}

.new-world-updates-controls input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.new-world-updates-controls input:focus {
  border-color: rgba(255, 255, 255, 0.78);
}

.new-world-updates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  max-width: 1120px;
}

.new-world-update-card {
  position: relative;
  min-height: 300px;
  border: 1px solid rgba(183, 145, 85, 0.42);
  background:
    linear-gradient(135deg, rgba(183, 145, 85, 0.11), transparent 40%),
    rgba(5, 5, 5, 0.62);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 18px 44px rgba(0, 0, 0, 0.24);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.new-world-update-card::before {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(183, 145, 85, 0.18);
  content: "";
  pointer-events: none;
}

.new-world-update-card a {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100%;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
}

.new-world-update-card figure {
  margin: calc(clamp(22px, 3vw, 34px) * -1) calc(clamp(22px, 3vw, 34px) * -1) 8px;
  border-bottom: 1px solid rgba(183, 145, 85, 0.28);
  background: rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.new-world-update-card figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.08) brightness(0.82);
  transition: filter 180ms ease, transform 320ms ease;
}

.new-world-update-card.has-image.is-featured figure img {
  aspect-ratio: 21 / 9;
}

.new-world-update-card:hover,
.new-world-update-card:focus-within {
  border-color: rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(183, 145, 85, 0.18), transparent 42%),
    rgba(5, 5, 5, 0.72);
  transform: translateY(-3px);
}

.new-world-update-card:hover figure img,
.new-world-update-card:focus-within figure img {
  filter: saturate(0.95) contrast(1.08) brightness(0.95);
  transform: scale(1.018);
}

.new-world-update-card.is-featured {
  grid-column: span 2;
  min-height: 390px;
}

.new-world-update-card-meta {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.new-world-update-card h2 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-family: "EB Garamond", var(--font-display);
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.new-world-update-card p:not(.new-world-update-card-meta) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.48;
}

.new-world-update-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.new-world-update-card li {
  border-top: 1px solid rgba(183, 145, 85, 0.48);
  padding-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-caslon);
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
}

.new-world-updates-status {
  margin: -10px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.new-world-update-article blockquote {
  margin: 0;
  border-left: 1px solid rgba(183, 145, 85, 0.54);
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "EB Garamond", var(--font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.22;
}

.new-world-update-article code {
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 0.82em;
}

.new-world-update-image {
  width: min(100%, 860px);
  margin: 6px 0;
  border: 1px solid rgba(183, 145, 85, 0.36);
  background: rgba(5, 5, 5, 0.42);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.new-world-update-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.new-world-update-inline-image {
  display: block;
  width: min(100%, 860px);
  height: auto;
  margin: 6px 0;
  border: 1px solid rgba(183, 145, 85, 0.36);
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.new-world-update-image figcaption {
  border-top: 1px solid rgba(183, 145, 85, 0.22);
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-caslon);
  font-size: 14px;
  font-style: italic;
  line-height: 1.35;
}

.new-world-update-rule {
  width: min(100%, 620px);
  height: 1px;
  border: 0;
  margin: 4px 0;
  background: rgba(183, 145, 85, 0.42);
}

.story-enter-link {
  width: fit-content;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes storyThresholdDrift {
  from { transform: scale(1.05) translate3d(-1%, 0, 0); }
  to { transform: scale(1.1) translate3d(1.5%, -1%, 0); }
}

@keyframes starsBackgroundDrift {
  from { transform: scale(1.012) translate3d(-0.45%, 0, 0); }
  to { transform: scale(1.04) translate3d(0.65%, -0.45%, 0); }
}

@keyframes starsGatewayDrift {
  from { transform: scale(1.01) translate3d(0.35%, 0, 0); }
  to { transform: scale(1.035) translate3d(-0.55%, -0.35%, 0); }
}

@keyframes guidelinesBackgroundDrift {
  from { transform: scale(1.01) translate3d(-0.35%, 0, 0); }
  to { transform: scale(1.035) translate3d(0.55%, -0.35%, 0); }
}

@keyframes guidelinesBackgroundDriftReverse {
  from { transform: scale(1.012) translate3d(0.45%, 0, 0); }
  to { transform: scale(1.035) translate3d(-0.5%, -0.3%, 0); }
}

@keyframes guidelinesPlaneDrift {
  from { transform: translateX(-50%) scale(1.01) translate3d(-0.25%, 0, 0); }
  to { transform: translateX(-50%) scale(1.032) translate3d(0.45%, -0.3%, 0); }
}

.issue-archive,
.stories-lore-link {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 34px;
}

.stories-lore-link h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.98;
  text-transform: uppercase;
}

.stories-lore-link p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(19px, 1.8vw, 26px);
  line-height: 1.48;
}

.issue-archive,
.issue-editorial,
.issue-contents {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 34px;
}

.issue-archive {
  max-width: min(1480px, calc(100vw - 68px));
}

.issue-archive .section-heading {
  border-color: rgba(255, 255, 255, 0.18);
}

.issue-archive .section-heading h2 {
  color: var(--white);
}

.issue-shelf {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 38px);
  align-items: stretch;
  border-bottom: 14px solid rgba(183, 145, 85, 0.34);
  padding: 24px 0 38px;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.16);
}

.issue-card {
  height: 100%;
}

.issue-card a {
  display: grid;
  grid-template-columns: calc(max(360px, var(--issue-card-content-height, 360px)) * 0.773) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  height: 100%;
  color: var(--white);
  transform: rotate(-0.6deg);
  transition: transform 180ms ease;
}

.issue-card:nth-child(even) a {
  transform: rotate(0.7deg);
}

.issue-card a:hover,
.issue-card a:focus-visible {
  transform: translateY(-6px) rotate(0deg);
}

.issue-card .issue-cover {
  position: relative;
  width: 100%;
  height: max(360px, var(--issue-card-content-height, 360px));
  align-self: stretch;
  min-height: 0;
  overflow: visible;
  background: transparent;
}

.issue-cover {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.issue-cover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  border: 2px solid var(--white);
  object-fit: contain;
  box-sizing: border-box;
}

.issue-card .issue-cover img {
  position: absolute;
  inset: 0 auto auto 0;
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.issue-cover figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100%;
  align-content: space-between;
  padding: 30px 24px;
  text-align: center;
}

.issue-cover span {
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.issue-cover strong {
  align-self: center;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.issue-cover-placeholder::before {
  align-self: center;
  justify-self: center;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  content: "";
  transform: rotate(45deg);
}

.issue-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 28px;
  background: #0b0b0a;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
  transition: border-color 180ms ease;
}

.issue-card a:hover .issue-card-copy,
.issue-card a:focus-visible .issue-card-copy {
  border-color: rgba(183, 145, 85, 0.72);
}

.issue-card-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 800;
  line-height: 0.94;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.issue-card-copy p {
  margin: 0;
}

.issue-card-copy p:not(.date),
.issue-theme {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.42;
}

.issue-card-copy .publication-metadata {
  gap: 8px;
  margin: 8px 0 0;
}

.issue-card-copy .publication-metadata div {
  gap: 3px;
  padding-top: 8px;
}

.issue-card-copy .publication-metadata dt {
  font-size: 9px;
}

.issue-card-copy .publication-metadata dd {
  font-size: 14px;
  line-height: 1.18;
}

.issue-card-copy .text-link {
  margin-top: auto;
  font-size: 12px;
  line-height: 1.1;
}

.print-publications {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 34px 84px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.print-publications .section-heading {
  grid-template-columns: 190px minmax(720px, 1fr);
}

#print-publications-title {
  white-space: nowrap;
}

.print-publications-intro {
  max-width: 760px;
  margin: -18px 0 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.48;
}

.print-publication-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
  border-bottom: 12px solid rgba(183, 145, 85, 0.26);
  padding: 12px 0 32px;
}

.print-publication-card {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom-width: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 5%, transparent 92%, rgba(0, 0, 0, 0.45)),
    #0b0b0a;
  color: var(--white);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
  transition: border-color 180ms ease, transform 180ms ease;
}

.print-publication-card:has(.print-publication-cover-link:hover),
.print-publication-card:has(.print-publication-cover-link:focus-visible) {
  border-color: rgba(183, 145, 85, 0.72);
  transform: translateY(-6px);
}

.print-publication-cover-link {
  display: block;
  color: inherit;
}

.print-publication-card figure {
  position: relative;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
}

.print-publication-card img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.12) contrast(1.08) brightness(0.84);
}

.print-publication-card figure::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 7%, transparent 88%, rgba(0, 0, 0, 0.42)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.32), transparent 44%);
  content: "";
}

.print-publication-card div {
  padding: 0 clamp(18px, 2.2vw, 26px) clamp(20px, 2.4vw, 28px);
}

.print-publication-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.print-publication-card p:not(.date) {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.38;
}

.print-publication-card .text-link {
  display: inline-block;
  width: fit-content;
  margin-top: 14px;
  color: var(--gold);
  font-size: 11px;
}

.print-publication-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.new-world-contribute-page main {
  background: #080806;
  overflow: hidden;
}

.new-world-contribute-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 56px;
  align-items: end;
  max-width: 1460px;
  min-height: 100svh;
  margin: 0 auto;
  padding: 168px 42px 82px;
  background:
    linear-gradient(180deg, rgba(8, 8, 6, 0.3), rgba(8, 8, 6, 0.92)),
    linear-gradient(90deg, rgba(8, 8, 6, 0.96), rgba(8, 8, 6, 0.7));
  color: var(--white);
}

.new-world-contribute-copy {
  display: grid;
  gap: 28px;
  max-width: 840px;
}

.new-world-contribute-copy h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 6.75rem;
  font-weight: 800;
  line-height: 0.82;
  text-transform: uppercase;
}

.new-world-contribute-deck {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 820px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 28px;
}

.new-world-contribute-deck p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.56;
}

.new-world-contribute-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.new-world-map-plate {
  align-self: center;
  margin: 0;
  border: 1px solid rgba(183, 145, 85, 0.45);
  padding: 18px;
  background: rgba(245, 241, 232, 0.08);
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.42);
}

.new-world-map-plate img {
  aspect-ratio: 1;
  object-fit: contain;
}

.new-world-map-plate figcaption {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 16px;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.new-world-editorial-principles {
  padding: 96px 42px 118px;
  background: var(--paper);
  color: var(--ink);
}

.new-world-section-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(240px, 0.44fr);
  gap: 34px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  padding-bottom: 34px;
}

.new-world-section-heading p {
  margin: 0;
  color: var(--red);
  font-family: var(--font-menu);
  font-size: 12px;
  text-transform: uppercase;
}

.new-world-section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.new-world-section-heading span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.new-world-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 44px auto 0;
  background: rgba(17, 17, 17, 0.2);
  border: 1px solid rgba(17, 17, 17, 0.2);
}

.new-world-principles-grid article {
  display: grid;
  align-content: space-between;
  min-height: 336px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent),
    var(--paper);
}

.new-world-principles-grid span {
  display: block;
  margin-bottom: 48px;
  color: var(--red);
  font-family: var(--font-menu);
  font-size: 11px;
  text-transform: uppercase;
}

.new-world-principles-grid h3 {
  margin: 0 0 15px;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.new-world-principles-grid p {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.98rem;
  line-height: 1.48;
}

.new-world-reading-room {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 52px;
  align-items: center;
  max-width: 1460px;
  margin: 0 auto;
  padding: 104px 42px 118px;
  background: #080806;
  color: var(--white);
}

.new-world-reading-room figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #111;
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.38);
}

.new-world-reading-room img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
}

.new-world-submission-copy {
  display: grid;
  gap: 22px;
}

.new-world-reading-room h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 4.35rem;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.new-world-reading-room p:not(.kicker) {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.14rem;
  line-height: 1.52;
}

.new-world-submission-panel {
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(183, 145, 85, 0.55);
  padding-top: 22px;
}

.new-world-submission-panel span,
.new-world-submission-panel small {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-menu);
  font-size: 11px;
  text-transform: uppercase;
}

.new-world-submission-panel a {
  width: fit-content;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.stories-page .publication-metadata div,
.stories-page .story-meta div {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.stories-page .publication-metadata dd,
.stories-page .story-meta dd {
  color: rgba(255, 255, 255, 0.68);
}

.stories-lore-link {
  display: grid;
  grid-template-columns: minmax(360px, 0.56fr) minmax(0, 0.84fr);
  gap: clamp(18px, 2.6vw, 36px);
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.stories-lore-link img {
  width: min(100%, 720px);
  margin: 0 auto;
  aspect-ratio: 1;
  object-fit: contain;
  border: 0;
  opacity: 0.9;
}

.stories-lore-link .text-link {
  color: var(--gold);
}

.publication-metadata {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 10px 0 4px;
}

.publication-metadata div,
.story-meta div {
  display: grid;
  gap: 5px;
  border-top: 1px solid rgba(17, 17, 17, 0.2);
  padding-top: 10px;
}

.publication-metadata dt,
.story-meta dt {
  color: var(--red);
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.publication-metadata dd,
.story-meta dd {
  margin: 0;
  color: var(--muted);
}

.issue-hero {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
  margin: 0 auto;
  padding: 170px 34px 86px;
  border-bottom: 1px solid var(--ink);
}

.issue-hero .issue-cover {
  min-height: 0;
}

.issue-hero-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(54px, 8vw, 122px);
}

.issue-hero-copy > p:not(.kicker) {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.28;
}

.issue-hero-copy .publication-metadata {
  max-width: 760px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 36px;
}

.issue-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: 16px;
}

.issue-platforms a,
.issue-platforms button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.issue-platforms a:hover,
.issue-platforms a:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.issue-platforms button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.issue-editorial {
  display: grid;
  grid-template-columns: minmax(360px, 0.52fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
}

.issue-editorial .section-heading.vertical {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: 100%;
}

.issue-editorial .section-heading h2 {
  max-width: 320px;
  font-size: clamp(48px, 5vw, 74px);
  line-height: 0.86;
}

.issue-editorial-copy {
  max-width: 780px;
}

.issue-editorial-copy p {
  color: var(--muted);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.48;
}

.issue-editorial-copy p + p {
  margin-top: 24px;
}

.issue-contents .section-heading.horizontal {
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.issue-contents ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-list-item a {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  border-top: 1px solid var(--ink);
  padding: 26px 0;
}

.story-list-item:last-child a {
  border-bottom: 1px solid var(--ink);
}

.story-order,
.story-reading-time {
  color: var(--red);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-list-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.story-list-item em {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-style: normal;
}

.story-list-item small {
  display: block;
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.issue-navigation,
.story-navigation {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.story-article {
  max-width: 1040px;
  margin: 0 auto;
  padding: 176px 34px 96px;
}

.story-header {
  margin-bottom: 46px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 34px;
}

.story-header h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(46px, 7.1vw, 102px);
}

.story-subtitle {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(21px, 2.2vw, 31px);
  line-height: 1.3;
}

.story-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
  margin: 34px 0 0;
}

.story-audio {
  max-width: 860px;
  margin: 44px 0 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  padding: 24px;
}

.story-audio .kicker {
  margin-bottom: 12px;
  color: var(--red);
}

.story-audio h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
}

.story-audio-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.story-audio-button {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  padding: 0 20px;
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.story-audio-button-secondary {
  background: transparent;
  color: var(--white);
}

.story-audio-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.story-audio-status {
  color: #8f8677;
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-image {
  margin: 0 0 54px;
  background: var(--black);
}

.story-image img {
  max-height: 580px;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.08);
}

.story-body {
  max-width: 740px;
  margin: 0 auto;
}

.story-body p {
  margin-bottom: 30px;
  color: var(--white);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.68;
}

.story-body p:first-child::first-letter {
  float: left;
  padding: 0.08em 0.09em 0 0;
  font-family: var(--font-display);
  font-size: 4.6em;
  line-height: 0.78;
}

.story-note,
.story-related {
  max-width: 740px;
  margin: 58px auto 0;
  border-top: 1px solid rgba(17, 17, 17, 0.28);
  padding-top: 22px;
}

.story-note h2,
.story-related h2 {
  margin-bottom: 12px;
  color: var(--red);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-note p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.story-related div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.story-nav-link {
  display: grid;
  gap: 8px;
  min-height: 122px;
  align-content: center;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 18px 0;
}

.story-nav-link span {
  color: var(--red);
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-nav-link strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.story-nav-return {
  text-align: center;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.expedition-hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.expedition-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.38) 58%, rgba(0, 0, 0, 0.14)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.04) 52%);
  content: "";
}

.expedition-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expedition-hero-copy {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 170px 34px 106px;
}

.expedition-hero h1 {
  max-width: 1120px;
}

.expedition-hero-copy > p:not(.kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.28;
}

.expedition-intro {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  margin: 0 auto;
  padding: 92px 34px;
  border-bottom: 1px solid var(--ink);
}

.expedition-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 5.8vw, 88px);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.expedition-intro > p {
  color: var(--muted);
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.44;
}

.expedition-collection {
  display: grid;
  max-width: var(--max);
  gap: 0;
  margin: 0 auto;
  padding: 78px 34px 104px;
}

.expedition-collection .section-heading {
  margin-bottom: 40px;
}

.expedition-object {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--ink);
  padding: 32px 0;
}

.expedition-object:last-child {
  border-bottom: 1px solid var(--ink);
}

.expedition-object figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.expedition-object img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.86);
}

.expedition-object h3 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 64px);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.expedition-object p:not(.date) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.52;
}

.expedition-object dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.expedition-object dl div {
  display: grid;
  gap: 5px;
  border-top: 1px solid rgba(14, 14, 13, 0.18);
  padding-top: 13px;
}

.expedition-object dt,
.expedition-object dd {
  margin: 0;
}

.expedition-object dt {
  color: var(--red);
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expedition-object dd {
  color: var(--muted);
}

.expedition-principles {
  display: grid;
  max-width: var(--max);
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
  padding: 0 34px 116px;
}

.expedition-principles article {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}

.expedition-principles h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 56px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.expedition-principles p:not(.date) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.screenings-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 190px 34px 86px;
  border-bottom: 1px solid var(--ink);
}

.screenings-hero h1 {
  max-width: 1060px;
  margin-bottom: 26px;
  font-size: clamp(44px, 7vw, 104px);
}

.screenings-hero > p:not(.kicker) {
  max-width: 790px;
  color: var(--muted);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.28;
}

.screening-list {
  display: grid;
  max-width: var(--max);
  gap: 0;
  margin: 0 auto;
  padding: 70px 34px 104px;
}

.screening-group-label {
  border-top: 1px solid var(--ink);
  padding: 0 0 18px;
  color: var(--red);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.screening-group-label-secondary {
  margin-top: 28px;
}

.screening-event {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--ink);
  padding: 32px 0;
}

.screening-event:last-child {
  border-bottom: 1px solid var(--ink);
}

.screening-event-empty {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0;
  padding: 42px 0 48px;
}

.screening-event-empty .screening-copy {
  width: 100%;
  max-width: none;
}

.screening-event-empty .screening-copy h2 {
  max-width: none;
}

.screening-event-empty .screening-copy p:not(.date) {
  max-width: none;
}

.screening-event-compact {
  grid-template-columns: 116px minmax(0, 1fr) auto;
  gap: 28px;
  padding: 20px 0;
}

.selection-laurel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 154px;
  padding: 22px 14px;
  color: var(--ink);
  text-align: center;
  text-transform: uppercase;
}

.selection-laurel::before,
.selection-laurel::after {
  position: absolute;
  top: 50%;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 122px;
  font-weight: 800;
  line-height: 0.7;
  transform: translateY(-50%) scaleY(1.18);
}

.selection-laurel::before {
  left: -10px;
  content: "{";
}

.selection-laurel::after {
  right: -10px;
  content: "}";
}

.selection-laurel span,
.selection-laurel small {
  position: relative;
  z-index: 1;
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.selection-laurel strong {
  position: relative;
  z-index: 1;
  margin: 4px 0 2px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 800;
  line-height: 0.9;
}

.screening-event-compact .selection-laurel {
  min-height: 108px;
  padding: 14px 10px;
}

.screening-event-compact .selection-laurel::before,
.screening-event-compact .selection-laurel::after {
  font-size: 82px;
}

.screening-event-compact .selection-laurel span,
.screening-event-compact .selection-laurel small {
  font-size: 9px;
}

.screening-event-compact .selection-laurel strong {
  font-size: clamp(22px, 2.3vw, 34px);
}

.screening-event-compact .screening-copy h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 42px);
}

.screening-event-compact .festival-dates strong {
  font-size: clamp(24px, 2.8vw, 38px);
}

.selection-laurel-image {
  padding: 0;
}

.selection-laurel-image::before,
.selection-laurel-image::after {
  content: none;
}

.selection-laurel-image img {
  display: block;
  width: min(100%, 260px);
  height: auto;
  object-fit: contain;
}

.selection-laurel-empty {
  border: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.04);
}

.selection-laurel-empty::before,
.selection-laurel-empty::after {
  content: none;
}

.selection-laurel-empty img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.screening-date {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-family: var(--font-menu);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screening-date span {
  color: var(--muted);
  font-size: 12px;
}

.screening-date strong {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.9;
}

.screening-copy h2 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 62px);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.screening-copy p:not(.date) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.48;
}

.festival-dates {
  display: grid;
  min-width: 190px;
  gap: 10px;
  justify-items: end;
  text-align: right;
  text-transform: uppercase;
}

.festival-dates span {
  color: var(--muted);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.festival-dates strong {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 0.92;
}

.festival-location {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--muted);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.festival-location span {
  color: inherit;
  font-size: inherit;
}

.festival-location .festival-flag {
  font-family: system-ui, sans-serif;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
}

.festival-site-link {
  color: var(--red);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.streaming-player {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(183, 145, 85, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), var(--black) 42%),
    var(--black);
  color: var(--white);
}

.streaming-entrance {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: clamp(24px, 5vw, 56px) 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(183, 145, 85, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.96)),
    url("Assets/The Thrill of Speed/DSC002812.png");
  background-position: center;
  background-size: cover;
  color: var(--white);
  opacity: 1;
  animation: streamingEntranceBackplate 960ms ease both;
  transition: opacity 720ms ease, visibility 720ms ease, transform 720ms ease;
}

.streaming-entrance::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(183, 145, 85, 0.12), transparent),
    radial-gradient(circle at 50% 45%, transparent 0 18%, rgba(0, 0, 0, 0.34) 54%, rgba(0, 0, 0, 0.74));
  content: "";
  opacity: 0;
  animation: streamingEntranceGlow 1400ms ease 180ms both;
}

.streaming-entrance::after {
  position: absolute;
  right: 0;
  bottom: 16%;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 145, 85, 0.74), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  animation: streamingEntranceLine 1200ms ease 360ms both;
}

.streaming-entrance.is-dismissed {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.018);
}

.streaming-entrance-back {
  position: fixed;
  top: clamp(18px, 3vw, 34px);
  left: clamp(18px, 3vw, 34px);
  z-index: 2;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(183, 145, 85, 0.48);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.52);
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(183, 145, 85, 0.18);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.streaming-entrance-back::before {
  margin-right: 9px;
  content: "<";
}

.streaming-entrance-back:hover,
.streaming-entrance-back:focus-visible {
  border-color: rgba(183, 145, 85, 0.82);
  color: var(--white);
  outline: none;
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.42),
    0 0 0 4px rgba(183, 145, 85, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.streaming-entrance-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: clamp(34px, 5vw, 64px);
  width: min(760px, calc(100% - 44px));
  text-align: center;
}

.streaming-entrance-title {
  max-width: min(860px, 90vw);
  margin: 0;
  color: var(--white);
  font-family: var(--font-thrill);
  font-size: clamp(56px, 8.6vw, 132px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.86;
  text-align: center;
  filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.72));
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  animation: streamingLogoReveal 980ms cubic-bezier(0.16, 1, 0.3, 1) 220ms both;
}

.streaming-entrance-signup {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(620px, 92vw);
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(183, 145, 85, 0.54);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.74), rgba(0, 0, 0, 0.88)),
    rgba(0, 0, 0, 0.76);
  color: var(--white);
  box-shadow:
    0 28px 84px rgba(0, 0, 0, 0.58),
    0 18px 62px rgba(183, 145, 85, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(18px);
  animation: streamingButtonReveal 820ms cubic-bezier(0.16, 1, 0.3, 1) 620ms both;
}

.streaming-entrance-signup h2 {
  margin: 0;
  color: var(--white);
  font-family: "Montagna", var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.streaming-entrance-signup p {
  max-width: 46ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.5;
}

.streaming-entrance-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.5fr) auto;
  gap: 10px;
  align-items: stretch;
}

.streaming-entrance-fields input,
.streaming-entrance-fields select,
.streaming-entrance-fields button {
  min-height: 52px;
  border-radius: 0;
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(183, 145, 85, 0.16);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.streaming-entrance-fields input,
.streaming-entrance-fields select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.streaming-entrance-fields input {
  padding: 0 18px;
}

.streaming-entrance-fields select {
  padding: 0 36px 0 16px;
}

.streaming-entrance-fields option {
  background: var(--black);
  color: var(--white);
}

.streaming-entrance-fields input:focus,
.streaming-entrance-fields select:focus,
.streaming-entrance-fields button:focus-visible {
  outline: none;
  border-color: rgba(183, 145, 85, 0.86);
  box-shadow: 0 0 0 4px rgba(183, 145, 85, 0.18);
}

.streaming-entrance-fields input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.streaming-entrance-fields button {
  min-width: 112px;
  border: 1px solid rgba(183, 145, 85, 0.74);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(90deg, #8d6a2e, var(--gold) 54%, #f1ce77);
  color: var(--ink);
  cursor: pointer;
  box-shadow:
    0 14px 34px rgba(183, 145, 85, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.streaming-entrance-fields button:hover {
  box-shadow:
    0 18px 44px rgba(183, 145, 85, 0.4),
    0 0 0 4px rgba(183, 145, 85, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

@keyframes streamingEntranceBackplate {
  from {
    background-position: 50% 48%;
    filter: saturate(0.75) contrast(0.92);
  }
  to {
    background-position: 50% 50%;
    filter: saturate(1) contrast(1);
  }
}

@keyframes streamingEntranceGlow {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes streamingEntranceLine {
  from {
    opacity: 0;
    transform: scaleX(0.2);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes streamingLogoReveal {
  from {
    opacity: 0;
    letter-spacing: 0.18em;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    letter-spacing: 0;
    transform: translateY(0) scale(1);
  }
}

@keyframes streamingButtonReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .streaming-entrance,
  .streaming-entrance::before,
  .streaming-entrance::after,
  .streaming-entrance-title,
  .streaming-entrance-signup {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.streaming-page.entrance-active {
  overflow: hidden;
}

.streaming-service-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: clamp(34px, 5vw, 78px);
  align-items: end;
  width: min(1460px, calc(100% - 68px));
  margin: 0 auto;
  padding: clamp(132px, 12vw, 184px) 0 clamp(52px, 6vw, 86px);
}

.streaming-service-hero::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.68) 48%, rgba(5, 5, 5, 0.96)),
    url("Assets/the-thrill-of-speed-industrial-hero.png");
  background-position: center;
  background-size: cover;
  content: "";
  opacity: 0.62;
}

.streaming-service-copy,
.streaming-service-card {
  position: relative;
  z-index: 1;
}

.streaming-service-copy {
  display: grid;
  gap: 22px;
  max-width: 960px;
}

.streaming-service-copy h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(58px, 8vw, 128px);
  font-weight: 800;
  line-height: 0.88;
  text-transform: uppercase;
}

.streaming-service-copy > p:not(.kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(19px, 1.75vw, 27px);
  line-height: 1.42;
}

.streaming-service-badges,
.streaming-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.streaming-service-badges span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 5, 5, 0.48);
  color: rgba(255, 255, 255, 0.72);
  padding: 8px 10px;
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.streaming-service-actions .button-ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.streaming-service-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 5, 0.62);
  padding: 14px;
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.52);
}

.streaming-service-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.streaming-service-card dl,
.streaming-service-meta {
  display: grid;
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.streaming-service-card dl div,
.streaming-service-meta div {
  background: rgba(5, 5, 5, 0.58);
  padding: 14px;
}

.streaming-service-card dt,
.streaming-service-card dd,
.streaming-service-meta dt,
.streaming-service-meta dd {
  margin: 0;
}

.streaming-service-card dt,
.streaming-service-meta dt {
  margin-bottom: 7px;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.streaming-service-card dd,
.streaming-service-meta dd {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.3;
}

.streaming-service-watch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: end;
  width: min(1280px, calc(100% - 68px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(42px, 6vw, 74px) 0 0;
}

.streaming-service-watch h2 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 800;
  line-height: 0.94;
  text-transform: uppercase;
}

.streaming-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  width: min(1460px, calc(100% - 68px));
  margin: 0 auto;
  padding: clamp(142px, 14vw, 190px) 0 clamp(58px, 7vw, 92px);
}

.streaming-intro::before {
  position: absolute;
  inset: 0 calc(50% - 50vw) auto;
  z-index: 0;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.76) 54%, rgba(5, 5, 5, 0.94)),
    url("Assets/the-thrill-of-speed-industrial-hero.png");
  background-position: center;
  background-size: cover;
  content: "";
  opacity: 0.46;
}

.streaming-intro::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 145, 85, 0.66), transparent);
  content: "";
}

.streaming-intro-copy,
.streaming-intro-meta,
.streaming-intro-frame {
  position: relative;
  z-index: 1;
}

.streaming-intro-copy {
  display: grid;
  gap: 24px;
  max-width: 960px;
}

.streaming-intro-copy h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 7.8vw, 124px);
  font-weight: 800;
  line-height: 0.88;
  text-transform: uppercase;
}

.streaming-intro-copy > p:not(.kicker) {
  max-width: 860px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.42;
}

.streaming-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.streaming-intro-actions .button-ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.streaming-intro-meta {
  display: grid;
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.streaming-intro-meta div {
  background: rgba(5, 5, 5, 0.58);
  padding: 16px;
}

.streaming-intro-meta dt,
.streaming-intro-meta dd {
  margin: 0;
}

.streaming-intro-meta dt {
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.streaming-intro-meta dd {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.25;
}

.streaming-intro-frame {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 26px;
}

.streaming-intro-frame figure {
  height: clamp(180px, 20vw, 310px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #111;
}

.streaming-intro-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.08);
}

.streaming-intro-frame div {
  display: grid;
  gap: 8px;
  min-width: min(320px, 100%);
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.streaming-video-wrap {
  min-height: auto;
  padding: clamp(56px, 7vw, 92px) 34px clamp(64px, 8vw, 110px);
  background:
    radial-gradient(circle at 50% 0%, rgba(183, 143, 78, 0.16), transparent 38%),
    var(--black);
}

.streaming-player-shell {
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(185, 185, 178, 0.3);
  background: var(--black);
  box-shadow:
    inset 0 0 90px rgba(255, 255, 255, 0.035),
    0 34px 110px rgba(0, 0, 0, 0.52);
}

.streaming-player-topbar,
.streaming-player-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.045);
}

.streaming-player-topbar h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 0.94;
  text-transform: uppercase;
}

.streaming-player-topbar .date {
  margin-bottom: 7px;
}

.streaming-player-topbar > span,
.streaming-player-meta span {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.streaming-player-topbar > span {
  flex: 0 0 auto;
  border: 1px solid rgba(183, 143, 78, 0.54);
  padding: 8px 10px;
  color: var(--gold);
}

.streaming-video-wrap video,
.streaming-embed-wrap iframe,
.streaming-embed-wrap .gumroad-product-embed {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: var(--black);
  object-fit: cover;
}

.streaming-embed-wrap .gumroad-product-embed {
  min-height: min(72vh, 760px);
  aspect-ratio: auto;
}

.streaming-embed-wrap .gumroad-product-embed iframe {
  width: 100%;
  min-height: min(72vh, 760px);
  border: 0;
}

.streaming-player-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.streaming-production-info {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 68px;
  margin: 0 auto;
  padding: 92px 34px 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.streaming-production-info h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.streaming-production-info p {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.48;
}

.streaming-production-info dl {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.streaming-production-info dl div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.streaming-production-info dt,
.streaming-production-info dd {
  margin: 0;
}

.streaming-production-info dt {
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.streaming-production-info dd {
  color: rgba(255, 255, 255, 0.78);
}

.streaming-stills {
  width: min(1460px, calc(100% - 68px));
  margin: 0 auto;
  padding: 0 0 clamp(88px, 11vw, 150px);
}

.streaming-stills .section-heading {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 42px;
}

.streaming-stills .section-heading h2 {
  color: var(--white);
}

.streaming-still-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
  margin-top: 38px;
}

.streaming-still-grid figure {
  min-height: clamp(260px, 28vw, 480px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #111;
}

.streaming-still-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
}

.store-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 190px 34px 70px;
}

.store-hero h1 {
  max-width: 1080px;
  margin-bottom: 26px;
  font-size: clamp(44px, 7vw, 104px);
}

.store-hero > p:not(.kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.28;
}

.store-banners,
.store-inventory {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px;
}

.store-banners {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

.store-banner {
  position: relative;
  display: grid;
  min-height: 440px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.store-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.store-banner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.78));
  content: "";
}

.store-banner > div {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 34px;
}

.store-banner h2 {
  max-width: 620px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 68px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.store-banner p:not(.date) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.45;
}

.store-inventory {
  padding-bottom: 104px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 26px;
  align-items: stretch;
}

.product-card {
  display: grid;
  border-top: 1px solid var(--ink);
  padding-top: 22px;
}

.product-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  height: 100%;
}

.product-card img {
  aspect-ratio: 4 / 5;
  height: auto;
  background: var(--black);
  object-fit: cover;
  transition: opacity 220ms ease, transform 520ms ease;
}

.product-meta {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover img {
  opacity: 0.86;
  transform: translateY(-3px);
}

.product-meta h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.8vw, 40px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.product-meta p:not(.date) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.product-specs li {
  border: 1px solid rgba(14, 14, 13, 0.2);
  padding: 6px 8px;
  color: var(--ink);
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.product-details {
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(14, 14, 13, 0.2);
  color: var(--ink);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-page {
  background: var(--black);
  color: var(--white);
}

.countdown-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  padding: 170px 34px 64px;
}

.countdown-hero-image,
.countdown-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.countdown-hero-image {
  object-fit: cover;
}

.countdown-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.58) 48%, rgba(5, 5, 5, 0.18)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.22), rgba(5, 5, 5, 0.78));
}

.countdown-hero-content {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.countdown-hero h1 {
  max-width: 1040px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 122px);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.countdown-hero-content > p:not(.kicker):not(.countdown-status) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.28;
}

.countdown-clock {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 960px;
  margin: 42px 0 18px;
}

.countdown-clock div {
  display: grid;
  min-height: 150px;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 5, 5, 0.62);
  padding: 20px;
}

.countdown-clock strong {
  display: block;
  font-family: var(--font-menu);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.9;
}

.countdown-clock span {
  margin-top: 16px;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.countdown-status {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-menu);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-details {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 34px 110px;
}

.release-details .section-heading h2,
.release-detail-grid h3 {
  color: var(--white);
}

.release-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.release-detail-grid article {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 22px;
}

.release-detail-grid h3 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.release-detail-grid p:not(.date) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.45;
}

.funding-page {
  background: var(--paper);
}

.funding-hero {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  margin: 0 auto;
  padding: 170px 34px 92px;
}

.funding-media {
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.funding-media img,
.funding-media video {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.funding-media video {
  background: var(--black);
}

.funding-brief h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6.2vw, 92px);
}

.funding-brief > p:not(.kicker) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.32;
}

.funding-progress {
  max-width: 720px;
  margin: 34px 0 28px;
  padding: 24px;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.42);
}

.funding-progress-bar {
  height: 12px;
  overflow: hidden;
  background: rgba(14, 14, 13, 0.16);
}

.funding-progress-bar span {
  display: block;
  height: 100%;
  background: var(--red);
}

.funding-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.funding-stats strong,
.funding-stats span {
  display: block;
}

.funding-stats strong {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 0.9;
}

.funding-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.campaign-story,
.campaign-budget,
.campaign-cta,
.pledge-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 34px;
  border-top: 1px solid var(--ink);
}

.campaign-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.54fr) minmax(0, 1fr);
  gap: 72px;
}

.campaign-story h2,
.campaign-budget h2,
.campaign-cta h2 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 82px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.campaign-story > p,
.campaign-budget li {
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
}

.pledge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pledge-grid article {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--ink);
  padding: 26px;
  background: rgba(255, 255, 255, 0.36);
}

.pledge-grid h3 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.pledge-grid p:not(.date) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.pledge-grid .text-link {
  margin-top: auto;
  color: var(--ink);
}

.campaign-budget {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 56px;
  align-items: center;
}

.campaign-budget img {
  min-height: 420px;
  object-fit: cover;
}

.campaign-budget ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.campaign-budget li {
  border-top: 1px solid rgba(14, 14, 13, 0.22);
  padding-top: 18px;
}

.campaign-cta {
  padding-bottom: 110px;
  text-align: center;
}

.campaign-cta h2 {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 980px) {
  .site-header,
  .site-header.is-scrolled,
  body.nav-open .site-header {
    padding: 16px 22px;
  }

  .nav-toggle {
    position: relative;
    z-index: 60;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.44);
    background: transparent;
    color: inherit;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 30px 22px 38px;
    background: rgba(5, 5, 5, 0.97);
    font-size: 22px;
  }

  .new-world-header .brand {
    grid-column: 1;
    justify-self: start;
  }

  .new-world-header .nav-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .new-world-header .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    width: auto;
  }

  body.nav-open .new-world-header .site-nav {
    display: flex;
  }

  .new-world-header .site-nav > :nth-child(n) {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    grid-column: auto;
    justify-self: auto;
    transform: none;
  }

  .new-world-nav-side {
    position: static;
    top: auto;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    transform: none;
  }

  .nav-social {
    width: 100%;
    gap: 14px;
    padding-right: 0;
    padding-bottom: 2px;
    border-right: 0;
  }

  .nav-social a {
    width: 30px;
    height: 30px;
  }

  .nav-group,
  .nav-submenu {
    width: 100%;
  }

  .nav-group-trigger {
    cursor: default;
    font-size: inherit;
  }

  .nav-submenu {
    position: static;
    gap: 16px;
    min-width: 0;
    margin-top: 16px;
    padding: 0 0 0 18px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu-featured {
    align-items: flex-start;
  }

  .nav-issue-card {
    width: min(190px, 60vw);
    margin: 0 0 2px;
  }

  .nav-issue-button {
    width: min(220px, 100%);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .hero-content {
    padding-right: 24px;
    padding-left: 24px;
  }

  .section-heading.vertical,
  .section-heading.horizontal,
  .wiki-section-heading,
  .intro-grid,
  .slate-grid,
  .feature-film,
  .site-footer,
  .film-overview,
  .film-production,
  .featured-cast,
  .film-director-profile,
  .credits-section,
  .film-history-entry,
  .film-history-entry.reverse,
  .funding-hero,
  .campaign-story,
  .campaign-budget,
  .screening-event,
  .publication-item,
  .expedition-intro,
  .expedition-object,
  .streaming-production-info,
  .contact-hero,
  .book-hero,
  .blog-hero,
  .blog-feature-card,
  .director-profile,
  .michael-hero,
  .michael-bio,
  .michael-section-heading,
  .corps-hero,
  .webmaster-gate,
  .approach-manifesto,
  .casting-hero,
  .casting-notice,
  .casting-apply-cta,
  .new-world-contribute-hero,
  .new-world-reading-room,
  .new-world-section-heading,
  .new-world-contribute-deck,
  .new-world-principles-grid,
  .expedition-principles,
  .info-grid,
  .wiki-layout,
  .wiki-world-grid,
  .wiki-card-grid,
  .wiki-list-grid,
  .new-world-updates-grid {
    grid-template-columns: 1fr;
  }

  .new-world-update-card.is-featured {
    grid-column: auto;
    min-height: 300px;
  }

  .wiki-infobox {
    position: static;
    max-width: 440px;
  }

  .film-history-entry.reverse .film-history-poster {
    order: 0;
  }

  .film-strip,
  .dispatch-grid,
  .film-grid-section,
  .ensemble-cast-grid,
  .premiere-status dl,
  .store-banners,
  .release-detail-grid,
  .pledge-grid,
  .contact-routes,
  .book-details,
  .blog-list,
  .webmaster-editor-heading,
  .editor-form-grid,
  .approach-principles,
  .hidden-pages-list,
  .michael-gallery,
  .michael-principles,
  .wiki-gallery-strip {
    grid-template-columns: 1fr;
  }

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

  .official-selection-banner {
    grid-template-columns: 1fr;
  }

  .email-gate-panel {
    grid-template-columns: 1fr;
  }

  .email-gate-media {
    min-height: 150px;
    padding: 26px 70px 22px;
  }

  .email-gate-media iframe {
    width: min(100%, 520px);
  }

  .email-gate-form {
    grid-template-columns: 1fr;
  }

  .official-selection-badge {
    width: min(76vw, 286px);
  }

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

  .publication-item {
    align-items: flex-start;
  }

  .publication-item .button {
    justify-self: start;
  }

  .approach-manifesto {
    gap: 32px;
  }

  .approach-manifesto .kicker {
    margin-bottom: 18px;
  }

  .film-strip article,
  .film-strip div {
    min-height: 360px;
  }

  .feature-film {
    min-height: 520px;
  }

  .reel-copy {
    left: 24px;
    right: 24px;
    text-align: left;
  }

  .film-hero-content {
    grid-template-columns: 1fr;
    align-items: end;
    padding-right: 24px;
    padding-left: 24px;
  }

  .film-hero-poster {
    width: min(68vw, 340px);
  }

  .film-hero-copy h1 {
    font-size: clamp(28px, 7.4vw, 56px);
  }

  .films-hero {
    padding-top: 150px;
  }

  .film-history-entry {
    min-height: 0;
    gap: 34px;
    padding: 28px;
  }

  .film-history-entry::before {
    inset: 12px;
  }

  .funding-hero {
    padding-top: 150px;
  }

  .funding-media {
    max-width: 520px;
  }

  .pledge-grid article {
    min-height: 0;
  }

  .criminals-hero,
  .criminals-statement,
  .criminals-pillars {
    grid-template-columns: 1fr;
  }

  .criminals-medallion {
    justify-items: start;
  }

  .criminals-medallion img {
    width: min(260px, 70vw);
  }
}

@media (max-width: 620px) {
  .brand {
    gap: 12px;
  }

  .streaming-entrance-inner {
    gap: 28px;
    width: min(calc(100% - 32px), 520px);
  }

  .streaming-entrance-signup {
    width: 100%;
    padding: 18px;
  }

  .streaming-entrance-back {
    min-height: 38px;
    padding: 0 14px;
    font-size: 11px;
  }

  .streaming-entrance-fields {
    grid-template-columns: 1fr;
  }

  .streaming-entrance-fields button {
    width: 100%;
  }

  .brand-title {
    font-size: clamp(13px, 3.8vw, 17px);
    letter-spacing: 0.04em;
  }

  .brand-lockup {
    width: max-content;
    height: 28px;
  }

  .brand-subtitle {
    margin-top: 3px;
    grid-template-columns: 31% 3.5% 65.5%;
    font-size: 4.2px;
    letter-spacing: 0.13em;
  }

  .brand-flag {
    width: 28px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    min-height: 88vh;
    padding-right: 56px;
    padding-bottom: 92px;
    padding-left: 56px;
  }

  .hero-card-arrow {
    width: 36px;
    height: 54px;
    font-size: 20px;
  }

  .hero-card-arrow-previous {
    left: 12px;
  }

  .hero-card-arrow-next {
    right: 12px;
  }

  .hero-credit {
    right: auto;
    left: 24px;
    bottom: 18px;
  }

  .scroll-cue {
    display: none;
  }

  .approach-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(38px, 12vw, 58px);
  }

  .approach-manifesto {
    gap: 26px;
  }

  .approach-manifesto h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .intro-section,
  .slate-section,
  .dispatch-section,
  .reel-section {
    padding: 70px 22px;
  }

  .feature-facts {
    padding: 0 22px 70px;
  }

  .homepage-photo-gallery {
    padding: 0;
  }

  .premiere-banner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 22px 32px;
  }

  .world-premiere-banner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 22px;
  }

  .world-premiere-banner h2 {
    font-size: clamp(28px, 9vw, 42px);
    line-height: 1.05;
  }

  .premiere-banner h2 {
    font-size: clamp(28px, 9vw, 42px);
    line-height: 1.05;
  }

  .premiere-banner .text-link {
    white-space: normal;
  }

  .feature-facts-copy {
    padding: 70px 0 0;
  }

  .feature-facts-list {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .feature-facts-content {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-left: 0;
  }

  #studio .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .studio-medallion {
    width: min(48vw, 190px);
  }

  .feature-facts-image img {
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .homepage-photo-gallery-track {
    animation-duration: 120s;
  }

  .homepage-photo-gallery-track figure {
    flex-basis: clamp(160px, 68vw, 420px);
    height: min(420px, 112vw);
  }

  .credits-block div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .stats div {
    grid-template-columns: 72px 1fr;
  }

  .film-strip div,
  .feature-copy {
    padding: 26px;
  }

  .reel-panel,
  .reel-panel img,
  .reel-panel iframe {
    min-height: 500px;
    height: 500px;
  }

  .site-footer {
    padding: 58px 22px;
  }

  .site-footer::after {
    display: none;
  }

  .footer-copy {
    width: 100%;
  }

  address {
    margin-left: 0;
  }

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

  .email-gate {
    padding: 14px;
  }

  .email-gate-panel {
    max-height: calc(100vh - 28px);
  }

  .email-gate-copy {
    padding: 28px 22px 30px;
  }

  .email-gate-copy h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .email-gate-copy p:not(.kicker) {
    font-size: 16px;
  }

  .webmaster-gate,
  .webmaster-password-form {
    padding: 22px;
  }

  .webmaster-password-form div {
    grid-template-columns: 1fr;
  }

  .hidden-pages-heading {
    display: grid;
    align-items: start;
  }

  .webmaster-editor-actions,
  .editor-panel-actions,
  .editor-list-heading,
  .editor-card-heading {
    display: grid;
    justify-content: stretch;
  }

  .webmaster-editor-actions .button,
  .editor-panel-actions .button,
  .editor-list-heading .button,
  .editor-card-heading .button {
    width: 100%;
  }

  .editor-panel,
  .editor-card {
    padding: 16px;
  }

  .film-overview,
  .film-grid-section,
  .film-history,
  .film-production,
  .director-story,
  .ensemble-cast,
  .featured-cast,
  .film-director-profile,
  .premiere-status,
  .credits-section,
  .campaign-story,
  .campaign-budget,
  .campaign-cta,
  .pledge-section,
  .blog-feature,
  .blog-list,
  .approach-manifesto,
  .post-article,
  .approach-principles,
  .director-profile,
  .michael-bio,
  .michael-publicity,
  .michael-principles,
  .corps-statement,
  .webmaster-vault,
  .casting-notice,
  .info-grid,
  .wiki-worlds,
  .wiki-layout {
    padding: 68px 22px;
  }

  .wiki-hub-hero,
  .wiki-article-hero,
  .wiki-hub-hero-content,
  .wiki-article-hero-content {
    min-height: 82vh;
  }

  .wiki-mini-card {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .wiki-world-card div {
    padding: 22px;
  }

  .wiki-timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .casting-apply-cta {
    padding: 0 22px 68px;
  }

  .casting-apply-cta .button {
    grid-column: 1;
  }

  .approach-manifesto {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .blog-hero,
  .films-hero,
  .funding-hero,
  .contact-hero,
  .book-hero,
  .approach-hero,
  .michael-hero,
  .corps-hero,
  .info-hero,
  .screenings-hero,
  .store-hero,
  .wiki-hub-hero-content,
  .wiki-article-hero-content {
    padding: 142px 22px 64px;
  }

  .countdown-hero {
    min-height: 100svh;
    padding: 132px 22px 48px;
  }

  .countdown-hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.9)),
      linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.3));
  }

  .countdown-clock {
    gap: 10px;
    margin-top: 30px;
  }

  .countdown-clock div {
    min-height: 112px;
    padding: 14px;
  }

  .release-details {
    padding: 64px 22px 82px;
  }

  .corps-hero img {
    justify-self: start;
    width: min(62vw, 210px);
  }

  .approach-hero {
    padding-top: 58px;
  }

  .documentary-hero {
    min-height: 78vh;
    padding: 142px 22px 64px;
    background-position: 50% center;
  }

  .store-banners,
  .store-inventory,
  .screening-list {
    padding: 22px;
  }

  .screening-event {
    gap: 18px;
    align-items: start;
  }

  .screening-event-empty {
    min-height: 0;
    padding: 32px 0 38px;
  }

  .selection-laurel {
    width: min(220px, 72vw);
    min-height: 132px;
  }

  .selection-laurel::before,
  .selection-laurel::after {
    font-size: 104px;
  }

  .festival-dates {
    min-width: 0;
    justify-items: start;
    text-align: left;
  }

  .screening-event .button {
    width: fit-content;
  }

  .contact-panel {
    padding: 68px 22px;
  }

  .contact-panel .section-heading {
    margin-bottom: 34px;
  }

  .contact-card a {
    font-size: clamp(12px, 5.2vw, 24px);
  }

  .book-cover {
    min-height: 480px;
  }

  .streaming-video-wrap,
  .streaming-production-info {
    padding-right: 22px;
    padding-left: 22px;
  }

  .streaming-service-hero,
  .streaming-service-watch {
    grid-template-columns: 1fr;
    width: min(calc(100% - 44px), 1460px);
  }

  .streaming-service-copy h1 {
    font-size: clamp(46px, 13vw, 84px);
    line-height: 0.92;
  }

  .streaming-service-card {
    width: min(360px, 100%);
  }

  .streaming-service-watch {
    align-items: start;
  }

  .streaming-intro {
    grid-template-columns: 1fr;
    width: min(calc(100% - 44px), 1460px);
    padding-top: 132px;
  }

  .streaming-intro-copy h1 {
    font-size: clamp(48px, 14vw, 86px);
    line-height: 0.9;
  }

  .streaming-intro-frame {
    grid-template-columns: 1fr;
  }

  .streaming-stills {
    width: min(calc(100% - 44px), 1460px);
  }

  .streaming-still-grid {
    grid-template-columns: 1fr;
  }

  .streaming-player-topbar,
  .streaming-player-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .streaming-production-info dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .casting-summary dl div,
  .casting-role-grid {
    grid-template-columns: 1fr;
  }

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

  .funding-stats {
    grid-template-columns: 1fr;
  }

  .funding-progress {
    padding: 18px;
  }

  .film-history {
    gap: 62px;
    padding-top: 0;
  }

  .film-history-entry {
    padding: 22px;
  }

  .film-cast div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .film-hero-copy .thrill-title span:last-child {
    margin-left: 24px;
  }

  .film-hero-copy h1 {
    font-size: clamp(21px, 7vw, 32px);
  }

  .new-world-contribute-hero {
    gap: 34px;
    padding-top: 128px;
    padding-bottom: 62px;
  }

  .new-world-contribute-copy {
    gap: 22px;
  }

  .new-world-contribute-copy h1 {
    font-size: 3.25rem;
    line-height: 0.9;
  }

  .new-world-contribute-deck {
    gap: 18px;
  }

  .new-world-contribute-deck p,
  .new-world-reading-room p:not(.kicker) {
    font-size: 1rem;
  }

  .new-world-editorial-principles {
    padding-top: 62px;
    padding-bottom: 78px;
  }

  .new-world-section-heading h2 {
    font-size: 2.8rem;
  }

  .new-world-principles-grid {
    margin-top: 30px;
  }

  .new-world-principles-grid article {
    min-height: 0;
    padding: 24px;
  }

  .new-world-principles-grid span {
    margin-bottom: 28px;
  }

  .new-world-principles-grid h3 {
    font-size: 1.8rem;
  }

  .new-world-reading-room {
    gap: 30px;
    padding-top: 66px;
    padding-bottom: 78px;
  }

  .new-world-reading-room h2 {
    font-size: 2.7rem;
  }

  .new-world-submission-panel a {
    font-size: 1.45rem;
    overflow-wrap: anywhere;
  }
}


@media (max-width: 980px) {
  .print-publications .section-heading {
    grid-template-columns: 1fr;
  }

  #print-publications-title {
    white-space: normal;
  }

  .lore-home-layout,
  .lore-home-welcome,
  .lore-home-groups,
  .lore-feature-grid {
    grid-template-columns: 1fr;
  }

  .lore-wiki-grid,
  .lore-shell,
  .lore-category-grid,
  .lore-pill-list {
    grid-template-columns: 1fr;
  }

  .lore-sidebar {
    position: static;
  }

  .lore-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
  }

  .issue-card a,
  .issue-hero,
  .issue-editorial {
    grid-template-columns: 1fr;
  }

  .issue-editorial .section-heading.vertical {
    grid-template-columns: 1fr;
  }

  .issue-editorial .section-heading h2 {
    max-width: none;
    font-size: clamp(42px, 12vw, 64px);
    line-height: 0.92;
  }

  .issue-shelf,
  .issue-hero-copy .publication-metadata,
  .story-meta,
  .issue-navigation,
  .story-navigation {
    grid-template-columns: 1fr;
  }

  .issue-card a {
    min-height: 0;
  }

  .issue-card .issue-cover {
    width: min(100%, 210px);
    height: auto;
    justify-self: center;
  }

  .issue-card .issue-cover img {
    position: static;
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .issue-card-copy {
    min-height: 0;
  }

  .stories-lore-link {
    grid-template-columns: 1fr;
  }

  .issue-shelf {
    grid-template-columns: 1fr;
  }

  .print-publication-grid {
    grid-template-columns: 1fr;
  }

  .new-world-contribute-hero,
  .new-world-reading-room,
  .new-world-principles-grid {
    grid-template-columns: 1fr;
  }

  .new-world-contribute-copy h1 {
    font-size: 4.6rem;
  }

  .new-world-reading-room h2 {
    font-size: 3.6rem;
  }

  .new-world-contribute-hero,
  .new-world-reading-room {
    padding-right: 24px;
    padding-left: 24px;
  }

  .new-world-map-plate {
    order: -1;
    width: min(100%, 460px);
    margin: 0 auto;
  }

  .new-world-section-heading {
    align-items: start;
  }

  .new-world-section-heading h2 {
    font-size: 3.5rem;
  }

  .new-world-editorial-principles {
    padding-right: 24px;
    padding-left: 24px;
  }

  .issue-hero .issue-cover {
    min-height: 0;
  }

  .story-list-item a {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .story-reading-time {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .lore-home-layout {
    padding: 68px 22px 86px;
  }

  .lore-home-welcome h2,
  .lore-home-section h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .lore-search-form,
  .lore-search-form.compact,
  .lore-card-meta,
  .lore-sidebar nav,
  .lore-result-card a {
    grid-template-columns: 1fr;
  }

  .lore-result-card img {
    min-height: 190px;
  }

  .stories-hero,
  .stories-threshold-content,
  .issue-hero,
  .story-article,
  .stories-lore-link {
    padding: 142px 22px 64px;
  }

  .issue-archive,
  .issue-editorial,
  .issue-contents {
    padding: 68px 22px;
  }

  .issue-card-copy {
    padding: 26px 22px;
  }

  .stories-threshold h1 {
    font-size: clamp(44px, 14vw, 72px);
  }

  .new-world-coming-soon-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 118px 20px 58px;
    justify-items: center;
  }

  .new-world-coming-soon-content h1 {
    justify-self: center;
    font-size: clamp(42px, 14vw, 74px);
  }

  .new-world-coming-soon-intro > p:not(.kicker) {
    justify-self: center;
    text-align: center;
  }

  .new-world-coming-soon-note {
    justify-self: center;
    text-align: center;
  }

  .new-world-coming-soon-note span {
    margin: 0 auto;
    background: linear-gradient(90deg, rgba(183, 145, 85, 0), var(--gold), rgba(183, 145, 85, 0));
  }

  .new-world-coming-soon-embed {
    width: 100%;
    justify-self: stretch;
  }

  .new-world-coming-soon-dispatch {
    max-width: none;
    padding: 22px 18px;
  }

  .new-world-coming-soon-dispatch h2 {
    font-size: clamp(30px, 11vw, 46px);
  }

  .new-world-coming-soon-dispatch p {
    font-size: 16px;
  }

  .new-world-coming-soon-dispatch-fields {
    display: grid;
    grid-template-columns: 1fr;
  }

  .new-world-coming-soon-dispatch input[type="text"],
  .new-world-coming-soon-dispatch input[type="email"],
  .new-world-coming-soon-dispatch button {
    grid-column: auto;
    grid-row: auto;
    min-height: 48px;
    width: 100%;
  }

  .new-world-coming-soon-action-block {
    text-align: center;
  }

  .new-world-coming-soon-action-block > div {
    justify-items: center;
  }

  .new-world-coming-soon-links,
  .new-world-coming-soon-social {
    justify-content: center;
  }

  .new-world-coming-soon-progress ol {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    width: min(100%, 680px);
    justify-self: center;
    border-left: 0;
    padding: 28px 0 0;
  }

  .new-world-coming-soon-progress ol::before,
  .new-world-coming-soon-progress ol::after {
    display: block;
    top: 10px;
    height: 1px;
    content: "";
  }

  .new-world-coming-soon-progress ol::before {
    right: 0;
  }

  .new-world-coming-soon-progress ol::after {
    width: var(--progress-mobile-fill, var(--progress-fill));
  }

  .new-world-coming-soon-progress li {
    display: block;
    width: auto;
    max-width: none !important;
    border-bottom: 0;
    padding: 0;
    padding-right: 0;
    text-align: center !important;
    font-size: clamp(10px, 2.7vw, 12px);
    line-height: 1.2;
    position: static;
    white-space: normal;
  }

  .new-world-coming-soon-progress li::after,
  .new-world-coming-soon-progress li:first-child::after,
  .new-world-coming-soon-progress li:last-child::after {
    top: calc(100% + 9px);
    right: auto;
    bottom: auto;
    left: var(--mobile-progress-position, 50%);
    width: min(280px, calc(100vw - 44px));
    max-width: none;
    font-size: 14px;
    text-align: center;
    transform: translate(-50%, -4px);
  }

  .new-world-coming-soon-progress li:hover::after,
  .new-world-coming-soon-progress li:focus-visible::after,
  .new-world-coming-soon-progress li.is-tooltip-open::after,
  .new-world-coming-soon-progress li:first-child:hover::after,
  .new-world-coming-soon-progress li:first-child:focus-visible::after,
  .new-world-coming-soon-progress li:first-child.is-tooltip-open::after,
  .new-world-coming-soon-progress li:last-child:hover::after,
  .new-world-coming-soon-progress li:last-child:focus-visible::after,
  .new-world-coming-soon-progress li:last-child.is-tooltip-open::after {
    transform: translate(-50%, 0);
  }

  .new-world-coming-soon-progress li:first-child::after {
    left: 0;
    transform: translate(0, -4px);
  }

  .new-world-coming-soon-progress li:first-child:hover::after,
  .new-world-coming-soon-progress li:first-child:focus-visible::after,
  .new-world-coming-soon-progress li:first-child.is-tooltip-open::after {
    transform: translate(0, 0);
  }

  .new-world-coming-soon-progress li:last-child::after {
    right: 0;
    left: auto;
    transform: translate(0, -4px);
  }

  .new-world-coming-soon-progress li:last-child:hover::after,
  .new-world-coming-soon-progress li:last-child:focus-visible::after,
  .new-world-coming-soon-progress li:last-child.is-tooltip-open::after {
    transform: translate(0, 0);
  }

  .new-world-coming-soon-progress li::before {
    position: absolute;
    top: 6px;
    left: var(--mobile-progress-position, 50%);
    display: block;
    width: 1px;
    height: 9px;
    border: 0;
    background: rgba(255, 255, 255, 0.32);
    content: "";
    transform: translateX(-50%);
  }

  .new-world-coming-soon-progress li:nth-child(1) {
    --mobile-progress-position: 0%;
  }

  .new-world-coming-soon-progress li:nth-child(2) {
    --mobile-progress-position: 20%;
  }

  .new-world-coming-soon-progress li:nth-child(3) {
    --mobile-progress-position: 40%;
  }

  .new-world-coming-soon-progress li:nth-child(4) {
    --mobile-progress-position: 60%;
  }

  .new-world-coming-soon-progress li:nth-child(5) {
    --mobile-progress-position: 80%;
  }

  .new-world-coming-soon-progress li:nth-child(6) {
    --mobile-progress-position: 100%;
  }

  .new-world-coming-soon-progress li:nth-child(1)::before {
    content: "";
  }

  .new-world-coming-soon-progress li:nth-child(2)::before {
    content: "";
  }

  .new-world-coming-soon-progress li:nth-child(3)::before {
    content: "";
  }

  .new-world-coming-soon-progress li:nth-child(4)::before {
    content: "";
  }

  .new-world-coming-soon-progress li:nth-child(5)::before {
    content: "";
  }

  .new-world-coming-soon-progress li:nth-child(6)::before {
    content: "";
  }

  .new-world-coming-soon-progress li.is-complete::before,
  .new-world-coming-soon-progress li.is-current::before {
    background: var(--gold);
  }

  .new-world-coming-soon-progress li.is-current::before {
    top: 4px;
    width: 2px;
    height: 13px;
  }

  .new-world-coming-soon-progress li:last-child {
    border-bottom: 0;
    text-align: center;
  }

  .new-world-coming-soon-progress li:first-child::before {
    right: auto;
    left: 0;
    transform: none;
  }

  .new-world-coming-soon-progress li:last-child::before {
    right: 0;
    left: auto;
    transform: none;
  }

  .new-world-coming-soon-progress-header {
    display: grid;
    justify-content: center;
    justify-items: center;
    text-align: center;
  }

  .new-world-page-footer,
  .new-world-coming-soon-footer,
  .new-world-stars-footer {
    grid-template-columns: 1fr;
  }

  .new-world-coming-soon-brand-lockup,
  .new-world-footer-links,
  .new-world-footer-logo-link {
    grid-column: 1;
    justify-self: center;
    justify-items: center;
    text-align: center;
  }

  .new-world-footer-social {
    grid-column: 1;
    justify-content: center;
  }

  .new-world-guidelines-header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .new-world-top-nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    background: rgba(5, 5, 5, 0.82);
    font-size: clamp(11px, 3.1vw, 13px);
    line-height: 1.1;
    backdrop-filter: blur(12px);
  }

  .new-world-top-nav a {
    min-height: 46px;
    padding: 0 4px;
    white-space: nowrap;
  }

  .new-world-top-nav .nav-label-desktop {
    display: none !important;
  }

  .new-world-top-nav .nav-label-mobile {
    display: inline !important;
  }

  .new-world-top-nav a.has-new-update::after {
    top: 8px;
    right: 12px;
    width: 5px;
    height: 5px;
  }

  .new-world-top-nav .new-world-advertisers-nav-link {
    display: none;
  }

  .new-world-guidelines-shell {
    width: min(100% - 32px, 1180px);
    padding-top: 108px;
    justify-items: center;
  }

  .new-world-stars-preorder-slim,
  .new-world-stars-preorder-slim form,
  .new-world-guidelines-submit-slim > div,
  .new-world-updates-controls {
    grid-template-columns: 1fr;
  }

  .new-world-stars-preorder-slim {
    padding: 15px 14px;
  }

  .new-world-stars-preorder-slim h2 {
    font-size: clamp(19px, 6.4vw, 26px);
    line-height: 1.08;
  }

  .new-world-stars-preorder-slim input[type="text"],
  .new-world-stars-preorder-slim input[type="email"],
  .new-world-updates-controls input {
    width: 100%;
  }

  .new-world-stars-preorder-slim button,
  .new-world-guidelines-submit-slim a {
    width: 100%;
  }

  .new-world-submit-banner {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .new-world-submit-banner-actions {
    justify-content: center;
  }

  .new-world-updates-progress {
    padding-top: 20px;
    padding-bottom: 18px;
  }

  .new-world-updates-controls {
    gap: 8px;
  }

  .new-world-update-card,
  .new-world-update-card.is-featured {
    min-height: 0;
  }

  .new-world-update-card a {
    gap: 12px;
    padding: 20px;
  }

  .new-world-update-card figure {
    margin: -20px -20px 6px;
  }

  .new-world-update-card h2 {
    font-size: clamp(27px, 9vw, 38px);
  }

  .new-world-update-card p:not(.new-world-update-card-meta) {
    font-size: 16px;
  }

  .new-world-update-image,
  .new-world-update-inline-image {
    width: 100%;
  }

  .new-world-guidelines-article {
    justify-self: center;
    justify-items: center;
    width: 100%;
    text-align: center;
  }

  .new-world-guidelines-article section {
    justify-items: center;
    width: 100%;
  }

  .new-world-guidelines-article p,
  .new-world-guidelines-article li {
    max-width: 680px;
  }

  .new-world-guidelines-article ul,
  .new-world-guidelines-article ol {
    width: min(100%, 680px);
    padding-left: 0;
    list-style-position: inside;
  }

  .new-world-stars-page .new-world-guidelines-article {
    gap: 42px;
  }

  .new-world-stars-page .new-world-guidelines-article section:not(.new-world-coming-soon-dispatch) {
    gap: 14px;
    justify-items: center;
  }

  .new-world-stars-page .new-world-guidelines-article h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .new-world-stars-lede {
    font-size: clamp(20px, 6vw, 25px) !important;
  }

  .new-world-stars-cadence {
    font-size: clamp(22px, 7vw, 30px) !important;
  }

  .new-world-stars-specs {
    border-left: 0;
    border-top: 1px solid rgba(183, 145, 85, 0.42);
    border-bottom: 1px solid rgba(183, 145, 85, 0.28);
    margin-right: auto !important;
    margin-left: auto !important;
    padding: 12px 0;
    text-align: center;
  }

  .new-world-artists-tenets {
    grid-template-columns: 1fr;
  }

  .new-world-guidelines-actions {
    justify-content: flex-start;
  }

  .stories-threshold-labels {
    gap: 8px 12px;
  }

  .new-world-hero-social {
    gap: 10px;
    margin-bottom: 28px;
  }

  .new-world-hero-social a {
    width: 42px;
    height: 42px;
  }

  .issue-hero .issue-cover {
    min-height: 390px;
  }

  .issue-hero .issue-cover {
    min-height: 0;
  }

  .publication-metadata {
    grid-template-columns: 1fr;
  }

  .story-list-item a {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .story-reading-time {
    grid-column: 1;
  }

  .story-body p:first-child::first-letter {
    float: none;
    padding: 0;
    font-size: inherit;
    line-height: inherit;
  }

  .new-world-contribute-hero {
    gap: 34px;
    padding-top: 128px;
    padding-bottom: 62px;
  }

  .new-world-contribute-copy h1 {
    font-size: 3.25rem;
    line-height: 0.9;
  }

  .new-world-contribute-deck {
    gap: 18px;
  }

  .new-world-contribute-deck p,
  .new-world-reading-room p:not(.kicker) {
    font-size: 1rem;
  }

  .new-world-editorial-principles {
    padding-top: 62px;
    padding-bottom: 78px;
  }

  .new-world-section-heading h2 {
    font-size: 2.8rem;
  }

  .new-world-principles-grid {
    margin-top: 30px;
  }

  .new-world-principles-grid article {
    min-height: 0;
    padding: 24px;
  }

  .new-world-principles-grid span {
    margin-bottom: 28px;
  }

  .new-world-principles-grid h3 {
    font-size: 1.8rem;
  }

  .new-world-reading-room {
    gap: 30px;
    padding-top: 66px;
    padding-bottom: 78px;
  }

  .new-world-reading-room h2 {
    font-size: 2.7rem;
  }

  .new-world-submission-panel a {
    font-size: 1.45rem;
    overflow-wrap: anywhere;
  }
}

/* Readability tuning for the generated archive systems. */
.lore-page {
  background:
    radial-gradient(circle at 78% 18%, rgba(180, 40, 46, 0.1), transparent 30%),
    radial-gradient(circle at 18% 34%, rgba(182, 145, 85, 0.08), transparent 28%),
    #090807;
}

.lore-page .wiki-hub-hero,
.lore-page .wiki-article-hero {
  min-height: 68vh;
}

.lore-page .wiki-hub-hero-content,
.lore-page .wiki-article-hero-content {
  min-height: 68vh;
  padding-bottom: 72px;
}

.lore-page .wiki-hub-hero h1,
.lore-page .wiki-article-hero h1 {
  max-width: 920px;
  font-size: clamp(42px, 5.8vw, 84px);
  line-height: 0.98;
}

.lore-page .wiki-hub-hero p:not(.kicker),
.lore-page .wiki-article-hero p:not(.kicker) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 1.75vw, 26px);
  line-height: 1.45;
}

.lore-page .wiki-section-heading h2,
.lore-page .wiki-entry h2 {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.06;
}

.lore-page .wiki-entry h3 {
  font-size: clamp(23px, 2.35vw, 34px);
  line-height: 1.1;
}

.lore-page .wiki-entry > p:not(.label),
.lore-page .wiki-timeline li,
.lore-result-card em,
.wiki-world-card p:not(.date),
.wiki-mini-card p,
.wiki-list-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.lore-page .wiki-entry > p:not(.label) {
  max-width: 72ch;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.68;
}

.lore-page .wiki-world-card h3,
.lore-result-card strong,
.lore-category-grid strong,
.lore-pill-list a {
  color: var(--white);
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.05;
}

.lore-page .wiki-world-card h3 {
  color: rgba(255, 255, 255, 0.94);
}

.lore-page .lore-portal-hero {
  min-height: 100vh;
  isolation: isolate;
}

.lore-page .lore-portal-hero .wiki-hub-hero-image {
  opacity: 0.74;
  filter: sepia(0.44) saturate(0.86) contrast(1.1) brightness(0.62);
  object-position: center;
  transform: scale(1.04);
  animation: lorePortalDrift 22s ease-in-out infinite alternate;
}

.lore-page .lore-portal-hero .wiki-hub-hero-shade {
  background:
    radial-gradient(circle at 72% 40%, rgba(182, 145, 85, 0.2), transparent 26%),
    radial-gradient(circle at 16% 72%, rgba(180, 40, 46, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.5) 52%, rgba(5, 5, 5, 0.9)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.14) 48%, rgba(5, 5, 5, 0.68));
}

.lore-portal-atlas {
  position: absolute;
  right: max(24px, 6vw);
  bottom: 7vh;
  z-index: 1;
  width: min(48vw, 680px);
  opacity: 0.28;
  pointer-events: none;
}

.lore-portal-atlas img {
  width: 100%;
  filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.1));
}

.lore-page .lore-portal-hero .wiki-hub-hero-content {
  min-height: 100vh;
  padding-bottom: clamp(72px, 10vh, 124px);
}

.lore-page .lore-portal-hero .wiki-hub-hero-content::before {
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  border: 1px solid rgba(183, 145, 85, 0.72);
  border-radius: 50%;
  background:
    linear-gradient(rgba(183, 145, 85, 0.5), rgba(183, 145, 85, 0.5)) 50% 0 / 1px 100% no-repeat,
    linear-gradient(90deg, rgba(183, 145, 85, 0.5), rgba(183, 145, 85, 0.5)) 0 50% / 100% 1px no-repeat;
  content: "";
  opacity: 0.86;
}

.lore-page .lore-portal-hero h1 {
  max-width: 980px;
  font-size: clamp(58px, 8vw, 128px);
  line-height: 0.9;
}

.lore-page .lore-portal-hero p:not(.kicker) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.84);
}

.lore-portal-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  max-width: 760px;
  margin: 30px 0 0;
}

.lore-portal-signals span {
  border-top: 1px solid rgba(183, 145, 85, 0.7);
  padding-top: 8px;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lore-portal-enter {
  width: fit-content;
  margin-top: 22px;
  border-bottom: 1px solid var(--gold);
  color: var(--white);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes lorePortalDrift {
  from { transform: scale(1.04) translate3d(-1%, 0, 0); }
  to { transform: scale(1.1) translate3d(1.4%, -1%, 0); }
}

@media (max-width: 760px) {
  .lore-development-grid,
  .lore-filmography-list {
    grid-template-columns: 1fr;
  }

  .lore-filmography-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lore-portal-atlas {
    right: -18vw;
    bottom: 28vh;
    width: 88vw;
    opacity: 0.16;
  }

  .lore-page .lore-portal-hero h1 {
    font-size: clamp(48px, 17vw, 76px);
  }

  .lore-page .lore-portal-hero .wiki-hub-hero-content::before {
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
  }
}

.lore-page .wiki-world-card,
.lore-page .wiki-infobox,
.lore-page .wiki-toc a,
.lore-category-grid a,
.lore-pill-list a,
.lore-result-card a,
.lore-sidebar nav a {
  border-color: rgba(255, 255, 255, 0.28);
}

.lore-page .wiki-world-card,
.lore-page .wiki-infobox,
.lore-search-form input,
.lore-search-form select {
  background: rgba(255, 255, 255, 0.075);
}

.lore-card-meta dd,
.wiki-infobox dd,
.lore-sidebar nav a,
.wiki-toc a {
  color: rgba(255, 255, 255, 0.86);
}

.stories-hero h1,
.issue-hero-copy h1,
.story-header h1 {
  max-width: 900px;
  font-size: clamp(42px, 5.8vw, 86px);
  line-height: 1;
}

.stories-hero > p:not(.kicker),
.issue-hero-copy > p:not(.kicker),
.story-subtitle {
  max-width: 760px;
  color: #5d554b;
  font-size: clamp(19px, 1.8vw, 27px);
  line-height: 1.42;
}

.issue-card-copy h2,
.story-list-item strong,
.story-nav-link strong {
  font-size: clamp(25px, 3vw, 44px);
  line-height: 1.06;
}

.issue-card-copy p:not(.date),
.issue-theme,
.story-list-item small,
.story-note p {
  color: #5d554b;
}

.story-body {
  max-width: 70ch;
}

.story-body p {
  color: var(--white);
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.78;
}

.story-meta dd,
.publication-metadata dd {
  color: #5d554b;
}

@media (max-width: 620px) {
  .lore-page .wiki-hub-hero h1,
  .lore-page .wiki-article-hero h1,
  .stories-hero h1,
  .issue-hero-copy h1,
  .story-header h1 {
    font-size: clamp(34px, 10vw, 50px);
    line-height: 1.04;
  }

  .lore-page .wiki-entry h2,
  .lore-page .wiki-section-heading h2 {
    font-size: clamp(27px, 8vw, 38px);
  }

  .story-body p {
    font-size: 18px;
    line-height: 1.72;
  }
}

/* Fandom-inspired structure for individual wiki home pages. */
.lore-wiki-page .wiki-hub-hero {
  min-height: 230px;
  overflow: visible;
}

.lore-wiki-page .wiki-hub-hero-image {
  opacity: 0.64;
}

.lore-wiki-page .wiki-hub-hero-shade {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.9)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.18) 62%, rgba(5, 5, 5, 0.74));
}

.lore-wiki-page .wiki-hub-hero-content {
  min-height: 230px;
  justify-content: center;
  padding: 112px 34px 42px;
}

.lore-wiki-page .wiki-hub-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  text-transform: none;
}

.lore-wiki-page .wiki-hub-hero p:not(.kicker) {
  display: none;
}

.lore-wiki-page .lore-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.lore-wiki-page .lore-hero-stats div {
  min-width: 110px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  padding-top: 8px;
}

.lore-wiki-page .wiki-masthead-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  width: min(100%, 1120px);
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.lore-wiki-page .wiki-masthead-nav {
  display: flex;
  flex: 1 1 580px;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.lore-wiki-page .wiki-masthead-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lore-wiki-page .wiki-masthead-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 100%;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: left 160ms ease;
}

.lore-wiki-page .wiki-masthead-nav a:hover,
.lore-wiki-page .wiki-masthead-nav a:focus-visible {
  color: var(--gold);
}

.lore-wiki-page .wiki-masthead-nav a:hover::after,
.lore-wiki-page .wiki-masthead-nav a:focus-visible::after {
  left: 0;
}

.lore-wiki-page .wiki-masthead-search {
  flex: 0 1 360px;
  margin: 0;
}

.lore-wiki-page .wiki-masthead-search input {
  background: rgba(5, 5, 5, 0.72);
}

.lore-wiki-page .lore-home-layout {
  position: relative;
  z-index: 3;
  max-width: min(1480px, calc(100vw - 68px));
  grid-template-columns: minmax(0, 1fr) minmax(300px, 330px);
  grid-template-areas: "main rail";
  gap: 34px;
  margin: -28px auto 96px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #050505;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  padding: 44px;
}

.lore-wiki-page .lore-sidebar {
  grid-area: rail;
  position: sticky;
  top: 18px;
  align-self: start;
}

.lore-wiki-page .lore-home-main {
  grid-area: main;
  gap: 34px;
}

.lore-wiki-page .lore-home-welcome {
  display: block;
  border-bottom: 0;
  padding-bottom: 18px;
}

.lore-wiki-page .lore-home-welcome .kicker {
  display: none;
}

.lore-wiki-page .lore-home-welcome h2 {
  margin: 0 0 28px;
  font-family: var(--font-small);
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 400;
  line-height: 1.04;
  text-transform: none;
}

.lore-wiki-page .lore-home-welcome p {
  max-width: 86ch;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.65;
}

.lore-wiki-page .wiki-home-synopsis {
  max-width: 86ch;
  margin-top: 54px;
}

.lore-wiki-page .wiki-home-synopsis h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--font-small);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.12;
}

.lore-wiki-page .wiki-home-synopsis p {
  max-width: none;
}

.lore-wiki-page .wiki-home-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.lore-wiki-page .wiki-home-video-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #000;
}

.lore-wiki-page .lore-home-welcome a,
.lore-wiki-page .lore-feature-grid a {
  color: var(--gold);
  font-weight: 700;
}

.lore-wiki-page .lore-home-welcome a:hover,
.lore-wiki-page .lore-home-welcome a:focus-visible,
.lore-wiki-page .lore-feature-grid a:hover,
.lore-wiki-page .lore-feature-grid a:focus-visible {
  color: var(--white);
}

.lore-page .wiki-main p,
.lore-page .wiki-main li,
.lore-page .lore-home-welcome p,
.lore-page .lore-feature-grid p,
.lore-page .lore-result-card em,
.lore-page .wiki-site-link-group a,
.lore-page #timeline .wiki-timeline p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.lore-wiki-page .lore-home-section {
  padding-bottom: 34px;
}

.lore-wiki-page .lore-home-section h2 {
  margin-bottom: 18px;
  font-family: var(--font-small);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.12;
  text-transform: none;
}

.lore-wiki-page #timeline h2 {
  margin-bottom: 22px;
}

.lore-wiki-page #timeline .wiki-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  max-width: none;
  border-left: 2px solid rgba(183, 145, 85, 0.5);
  margin-left: 18px;
  padding-left: 34px;
}

.lore-wiki-page #timeline .wiki-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.lore-wiki-page #timeline .wiki-timeline li::before {
  position: absolute;
  top: 34px;
  left: -45px;
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: #050505;
  box-shadow: 0 0 0 8px rgba(183, 145, 85, 0.12);
  content: "";
}

.lore-wiki-page #timeline .wiki-timeline img {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.16);
  object-fit: cover;
}

.lore-wiki-page #timeline .wiki-timeline li > div {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 0;
}

.lore-wiki-page #timeline .wiki-timeline small {
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.lore-wiki-page #timeline .wiki-timeline span {
  display: block;
  margin: 0;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lore-wiki-page #timeline .wiki-timeline strong {
  color: var(--white);
  font-family: var(--font-small);
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 800;
  line-height: 1.08;
}

.lore-wiki-page #timeline .wiki-timeline p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.lore-wiki-page .lore-home-groups {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.lore-wiki-page .lore-home-umbrella-card {
  display: grid;
  gap: 18px;
  color: var(--gold);
  text-align: center;
}

.lore-wiki-page .lore-home-umbrella-card img {
  aspect-ratio: 1.65 / 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  object-fit: cover;
  transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.lore-wiki-page .lore-home-umbrella-card span {
  display: grid;
  gap: 8px;
}

.lore-wiki-page .lore-home-umbrella-card strong {
  color: var(--gold);
  font-family: var(--font-small);
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.12;
  text-transform: none;
}

.lore-wiki-page .lore-home-umbrella-card em {
  max-width: 30ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-style: normal;
  line-height: 1.42;
}

.lore-wiki-page .lore-home-umbrella-card:hover img,
.lore-wiki-page .lore-home-umbrella-card:focus-visible img {
  border-color: var(--gold);
  opacity: 0.88;
  transform: translateY(-2px);
}

.lore-wiki-page .lore-home-umbrella-card:hover strong,
.lore-wiki-page .lore-home-umbrella-card:focus-visible strong {
  color: var(--white);
}

.lore-wiki-page .lore-home-infobox {
  border-color: rgba(180, 40, 46, 0.78);
  background: #090909;
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(183, 145, 85, 0.6) rgba(255, 255, 255, 0.08);
}

.lore-wiki-page .lore-home-infobox .lore-infobox-head {
  padding: 14px 18px;
  background: var(--red);
}

.lore-wiki-page .lore-home-infobox .date {
  display: none;
}

.lore-wiki-page .lore-home-infobox h2 {
  text-align: center;
  font-family: var(--font-small);
  font-size: 24px;
  text-transform: none;
}

.lore-wiki-page .lore-home-infobox figure {
  border-bottom-color: rgba(180, 40, 46, 0.62);
}

.lore-wiki-page .lore-home-infobox figcaption {
  color: rgba(255, 255, 255, 0.72);
  font-style: italic;
  text-align: center;
}

.lore-wiki-page .lore-home-infobox dt {
  color: rgba(255, 255, 255, 0.92);
}

.lore-wiki-page .lore-home-infobox-credits {
  border-top: 1px solid rgba(180, 40, 46, 0.62);
  padding: 18px;
}

.lore-wiki-page .lore-home-infobox-credits h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lore-wiki-page .lore-home-infobox-credits dl {
  margin: 0;
}

.lore-wiki-page .lore-home-infobox-credits div {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 0;
}

.lore-wiki-page .lore-home-infobox-credits div:first-child {
  border-top: 0;
  padding-top: 0;
}

@media (max-width: 980px) {
  .lore-wiki-page .lore-home-layout {
    max-width: calc(100vw - 44px);
    grid-template-columns: 1fr;
    grid-template-areas:
      "rail"
      "main";
    padding: 28px;
  }

  .lore-wiki-page .lore-sidebar {
    position: static;
  }

  .lore-wiki-page .lore-home-infobox {
    max-height: none;
    overflow: visible;
  }

  .lore-wiki-page .lore-home-groups {
    grid-template-columns: 1fr;
  }

  .lore-wiki-page #timeline .wiki-timeline {
    margin-left: 10px;
    padding-left: 24px;
  }

  .lore-wiki-page #timeline .wiki-timeline li {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .lore-wiki-page #timeline .wiki-timeline li::before {
    left: -34px;
  }

  .lore-wiki-page #timeline .wiki-timeline span,
  .lore-wiki-page #timeline .wiki-timeline p {
    grid-column: 1;
  }

  .wiki-cast-entry {
    grid-template-columns: 1fr;
  }

  .wiki-cast-entry img {
    max-width: 260px;
  }

  .lore-wiki-page .wiki-home-video-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .lore-wiki-page .wiki-hub-hero,
  .lore-wiki-page .wiki-hub-hero-content {
    min-height: 210px;
  }

  .lore-wiki-page .wiki-hub-hero-content {
    padding: 104px 22px 34px;
  }

  .lore-wiki-page .wiki-masthead-tools {
    align-items: stretch;
  }

  .lore-wiki-page .wiki-masthead-nav {
    flex-basis: 100%;
    gap: 10px 14px;
  }

  .lore-wiki-page .wiki-masthead-nav a {
    font-size: 11px;
  }

  .lore-wiki-page .wiki-masthead-search {
    flex-basis: 100%;
  }

  .lore-wiki-page .lore-home-layout {
    max-width: calc(100vw - 22px);
    margin-top: -18px;
    padding: 20px;
  }

  .lore-wiki-page .lore-home-welcome h2 {
    font-size: clamp(36px, 12vw, 52px);
  }
}
