@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("fonts/JetBrainsMono-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}

:root {
  color-scheme: dark;
  --black: #080806;
  --ink: #11110e;
  --ink-soft: #272722;
  --paper: #e9e3d8;
  --paper-deep: #d9d1c3;
  --white: #f3eee5;
  --muted: #b6b0a6;
  --muted-dark: #68645d;
  --vermilion: #a43a31;
  --vermilion-bright: #d75c49;
  --teal: #4c6870;
  --teal-dark: #263c40;
  --brass: #c0a66b;
  --moss: #b8bda9;
  --coral: #cf745f;
  --cobalt: #263d58;
  --wine: #511f29;
  --line-light: rgba(243, 238, 229, 0.26);
  --line-dark: rgba(17, 17, 14, 0.24);
  --serif: "Cormorant Garamond", "Songti SC", "STSong", Georgia, serif;
  --sans: "Inter", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: #1b1b18;
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h2 {
  font-size: 46px;
  line-height: 1.01;
}

h3 {
  font-size: 24px;
  line-height: 1.08;
}

p {
  font-size: 12px;
  line-height: 1.65;
}

.lead {
  font-size: 15px;
  line-height: 1.62;
}

.eyebrow {
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--brass);
}

.site-reader-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--paper);
  background: rgba(8, 8, 6, 0.95);
  border-bottom: 1px solid rgba(192, 166, 107, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-reader-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  width: min(1120px, calc(100vw - 48px));
  min-height: 62px;
  margin: 0 auto;
  font-family: var(--mono);
  font-size: 8px;
}

.site-reader-nav a {
  color: var(--paper);
  text-decoration: none;
}

.reader-title {
  color: #817c73;
  text-align: center;
}

.reader-actions {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.reader-actions a:last-child {
  padding: 7px 9px;
  color: var(--black);
  background: var(--brass);
}

.reader-progress-track {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: rgba(192, 166, 107, 0.08);
}

.reader-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--vermilion-bright);
  transition: width 120ms linear;
}

.preview-bar {
  display: flex;
  justify-content: space-between;
  width: min(1120px, calc(100vw - 48px));
  margin: 22px auto 14px;
  padding: 11px 0;
  color: var(--brass);
  border-bottom: 1px solid rgba(192, 166, 107, 0.42);
  font-family: var(--mono);
  font-size: 9px;
}

.preview-bar b {
  color: var(--paper);
  font-weight: 300;
}

.issue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 24px 72px;
  overflow-x: hidden;
}

.reader-page-shell {
  position: relative;
  flex: none;
  overflow: hidden;
  background: var(--black);
}

.reader-page-stage {
  position: relative;
  overflow: hidden;
}

.reader-zoom {
  display: none;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 200;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  color: var(--paper);
  background: rgba(8, 8, 6, 0.92);
  border: 1px solid var(--brass);
  border-radius: 0;
  font-family: var(--mono);
  font-size: 18px;
  line-height: 1;
}

.reader-page-shell.is-zoomed {
  border: 1px solid var(--brass);
  overscroll-behavior: contain;
}

.page {
  position: relative;
  width: 1120px;
  height: 792px;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
  break-after: page;
  transform-origin: top left;
}

.page.paper,
.page.signal-page,
.page.opening-page,
.page.router-page,
.page.spark-page,
.page.works-page,
.page.platform-page,
.page.action-page,
.page.closing-page,
.page.nightborne-review {
  color: var(--ink);
  background: var(--paper);
}

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

.page.wine {
  background: var(--wine);
}

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

.page.steel {
  background: var(--teal-dark);
}

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

.page.cobalt {
  background: var(--cobalt);
}

.folio {
  position: absolute;
  z-index: 40;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 38px;
  align-items: center;
  height: 42px;
  padding: 0 46px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 7px;
}

.folio b {
  color: var(--vermilion);
  text-align: right;
  font-size: 9px;
}

.folio.inverse {
  color: var(--paper);
  border-color: var(--line-light);
}

.folio.inverse b {
  color: var(--brass);
}

.page-body {
  position: absolute;
  inset: 42px 0 0;
  padding: 38px 46px 34px;
}

.source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.source-row a,
.text-link {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 7px;
}

.text-link.dark {
  color: var(--ink);
}

.source-pill {
  display: inline-block;
  padding: 8px 10px;
  color: var(--paper);
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 7px;
  text-decoration: none;
}

.source-pill.pale {
  color: var(--brass);
}

.source-pill.dark-pill {
  color: var(--ink);
}

/* 01 Cover */
.cover {
  background: var(--black);
}

.cover-art {
  position: absolute;
  inset: 0;
  object-position: center 47%;
}

.cover-scrim {
  position: absolute;
  inset: 0 52% 0 0;
  z-index: 2;
  background: rgba(8, 8, 6, 0.9);
}

.cover-scrim::after {
  content: "";
  position: absolute;
  top: 0;
  right: -180px;
  bottom: 0;
  width: 180px;
  background: rgba(8, 8, 6, 0.48);
}

.cover-copy {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 4;
  width: 54%;
  padding: 32px 48px 42px;
}

.cover-kicker {
  margin-top: 84px;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 8px;
}

.masthead {
  position: absolute;
  top: 30px;
  right: 48px;
  left: 48px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 11px;
  color: var(--paper);
  border-bottom: 1px solid var(--brass);
  font-family: var(--mono);
  font-size: 10px;
}

.masthead b {
  color: var(--brass);
  font-weight: 300;
}

.cover h1 {
  position: absolute;
  top: 190px;
  left: 48px;
  font-size: 91px;
  line-height: 0.83;
}

.cover h1 em {
  color: var(--brass);
  font-style: italic;
}

.cover-deck {
  position: absolute;
  bottom: 122px;
  left: 48px;
  width: 360px;
  color: #d8d2c8;
  font-size: 15px;
}

.cover-index {
  position: absolute;
  right: 34px;
  bottom: 36px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 24px;
  padding: 11px 14px;
  color: var(--paper);
  background: rgba(8, 8, 6, 0.82);
  font-family: var(--mono);
  font-size: 6px;
}

.cover-index span {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.cover-index b {
  color: var(--brass);
  font-size: 10px;
  font-weight: 300;
}

.cover-source {
  position: absolute;
  bottom: 66px;
  left: 48px;
  z-index: 5;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 7px;
}

.cover-credit {
  position: absolute;
  right: 34px;
  top: 31px;
  z-index: 5;
  color: rgba(243, 238, 229, 0.65);
  font-family: var(--mono);
  font-size: 6px;
  writing-mode: vertical-rl;
}

/* 02 Opening */
.opening-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.86fr;
  grid-template-rows: 1fr 76px;
  gap: 30px 56px;
}

.opening-copy {
  padding-top: 8px;
}

.opening-copy h2 {
  margin-top: 15px;
  font-size: 49px;
}

.opening-copy .lead {
  max-width: 580px;
  margin-top: 28px;
}

.opening-copy > p:not(.eyebrow):not(.lead) {
  max-width: 570px;
  margin-top: 16px;
  color: #4f4c46;
}

.opening-copy blockquote {
  max-width: 570px;
  margin-top: 29px;
  padding-top: 12px;
  color: var(--vermilion);
  border-top: 1px solid var(--vermilion);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.12;
}

.contents {
  border-top: 1px solid var(--ink);
}

.contents a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 9px 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
}

.contents b {
  grid-row: 1 / 3;
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 9px;
}

.contents span {
  font-family: var(--serif);
  font-size: 20px;
}

.contents small {
  color: var(--muted-dark);
  font-size: 8px;
}

.opening-meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}

.opening-meta span {
  padding-top: 10px;
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 7px;
}

.opening-meta b {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 9px;
}

/* 03 Week */
.week-layout {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 48px;
}

.week-title {
  padding-top: 12px;
}

.week-title h2 {
  margin-top: 15px;
  font-size: 61px;
}

.week-title h2 em {
  color: var(--brass);
  font-style: italic;
}

.week-title > p:last-of-type {
  max-width: 270px;
  margin-top: 23px;
  color: var(--muted);
}

.week-rule {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  margin-top: 56px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 6px;
}

.week-rule i {
  height: 1px;
  background: var(--brass);
}

.week-rule b {
  color: var(--brass);
  font-weight: 300;
}

.week-list {
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--brass);
}

.week-list li {
  display: grid;
  grid-template-columns: 52px 118px 1fr 38px;
  gap: 10px;
  align-items: center;
  min-height: 73px;
  border-bottom: 1px solid var(--line-light);
}

.week-list time,
.week-list a {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 7px;
}

.week-list b {
  font-family: var(--mono);
  font-size: 8px;
}

.week-list span {
  color: #d5d0c7;
  font-size: 10px;
  line-height: 1.45;
}

.week-list a {
  text-align: right;
}

/* 04 Signal */
.signal-layout {
  position: absolute;
  inset: 42px 0 0;
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
}

.signal-lead {
  padding: 52px 42px;
  color: var(--paper);
  background: var(--ink);
}

.signal-lead h2 {
  margin-top: 142px;
  font-size: 51px;
}

.signal-lead > p:last-child {
  margin-top: 24px;
  color: var(--muted);
}

.signal-stack {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
}

.signal-stack article {
  display: grid;
  grid-template-columns: 116px 220px 1fr 24px;
  gap: 14px;
  align-items: center;
  padding: 0 28px;
  border-bottom: 1px solid var(--line-dark);
}

.signal-stack article:last-child {
  border-bottom: 0;
}

.signal-stack span,
.signal-stack a {
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 7px;
}

.signal-stack b {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.signal-stack p {
  color: #56524c;
  font-size: 9px;
}

.signal-stack a {
  text-decoration: none;
}

/* 05 Report */
.report-layout {
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  grid-template-rows: 1fr 88px;
  gap: 26px 38px;
}

.report-heading {
  padding-top: 8px;
}

.report-heading h2 {
  margin-top: 14px;
  font-size: 58px;
}

.report-heading h2 em {
  color: var(--brass);
  font-style: italic;
}

.report-heading p:not(.eyebrow) {
  margin-top: 25px;
  color: #eadde0;
}

.report-heading .source-pill {
  margin-top: 25px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.metric-grid article {
  display: grid;
  grid-template-rows: 1fr auto auto;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.metric-grid img {
  min-height: 0;
  object-fit: contain;
  background: #f5f1e9;
}

.metric-grid b {
  padding: 15px 14px 0;
  color: var(--vermilion);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.metric-grid p {
  padding: 7px 14px 16px;
  color: #5e5952;
  font-size: 9px;
}

.report-caveat {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 150px repeat(3, 1fr);
  gap: 16px;
  align-items: center;
  padding: 0 18px;
  color: var(--ink);
  background: var(--brass);
}

.report-caveat b {
  font-family: var(--mono);
  font-size: 8px;
}

.report-caveat span {
  padding-left: 14px;
  border-left: 1px solid rgba(17, 17, 14, 0.42);
  font-size: 9px;
  line-height: 1.45;
}

/* 06 Router */
.router-layout {
  display: grid;
  grid-template-columns: 0.52fr 0.48fr;
  grid-template-rows: 1fr 160px;
  gap: 24px 42px;
}

.router-visual {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.router-visual img {
  object-fit: contain;
}

.router-visual figcaption,
.router-chart figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 8px 10px;
  color: var(--paper);
  background: rgba(8, 8, 6, 0.86);
  font-family: var(--mono);
  font-size: 6px;
}

.router-copy {
  padding-top: 7px;
}

.router-copy h2 {
  margin-top: 14px;
  font-size: 49px;
}

.router-copy .lead {
  margin-top: 25px;
}

.router-copy > p:not(.eyebrow):not(.lead) {
  margin-top: 15px;
  color: #514d47;
}

.router-questions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.router-questions span {
  padding: 12px 9px;
  border-right: 1px solid var(--line-dark);
  font-size: 8px;
  line-height: 1.4;
}

.router-questions span:last-child {
  border-right: 0;
}

.router-questions b {
  display: block;
  margin-bottom: 5px;
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 7px;
}

.router-copy .text-link {
  display: inline-block;
  margin-top: 19px;
  color: var(--vermilion);
}

.router-chart {
  position: relative;
  grid-column: 1 / -1;
  overflow: hidden;
  background: #f5f0e7;
}

.router-chart img {
  object-fit: contain;
  object-position: left center;
}

/* 07 SIGGRAPH */
.siggraph-layout {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  grid-template-rows: 1fr 128px;
  gap: 26px 38px;
}

.siggraph-title {
  padding-top: 7px;
}

.siggraph-title h2 {
  margin-top: 14px;
  font-size: 57px;
}

.siggraph-title .lead {
  margin-top: 26px;
}

.siggraph-title > p:not(.eyebrow):not(.lead) {
  margin-top: 15px;
  color: var(--muted);
}

.siggraph-title .source-pill {
  margin-top: 23px;
}

.siggraph-hero {
  position: relative;
  overflow: hidden;
  background: #20211e;
}

.siggraph-hero img {
  object-position: center 42%;
}

.siggraph-hero figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 8px 10px;
  color: var(--brass);
  background: rgba(8, 8, 6, 0.86);
  font-family: var(--mono);
  font-size: 6px;
}

.siggraph-index {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--line-light);
}

.siggraph-index article {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-content: center;
  padding: 0 14px;
  border-right: 1px solid var(--line-light);
}

.siggraph-index article:last-child {
  border-right: 0;
}

.siggraph-index b {
  grid-row: 1 / 3;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 8px;
}

.siggraph-index span {
  font-family: var(--serif);
  font-size: 17px;
}

.siggraph-index p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 7px;
}

/* 08 MotionMaker */
.motion-layout {
  display: grid;
  grid-template-columns: 0.31fr 0.69fr;
  grid-template-rows: 1fr 100px;
  gap: 24px 38px;
}

.motion-heading {
  padding-top: 8px;
}

.motion-heading h2 {
  margin-top: 14px;
  font-size: 48px;
}

.motion-heading > p:not(.eyebrow) {
  margin-top: 24px;
}

.motion-heading .text-link {
  display: inline-block;
  margin-top: 22px;
}

.motion-sequence {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  min-height: 0;
}

.motion-sequence figure {
  position: relative;
  overflow: hidden;
  background: #949988;
}

.motion-sequence figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 8px;
  color: var(--paper);
  background: rgba(8, 8, 6, 0.78);
  font-family: var(--mono);
  font-size: 6px;
}

.motion-layout blockquote {
  position: absolute;
  left: 46px;
  bottom: 36px;
  width: 280px;
  color: var(--vermilion);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.1;
}

.motion-impact {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.motion-impact span {
  padding: 12px 14px 0;
  border-right: 1px solid var(--line-dark);
  font-size: 8px;
  line-height: 1.45;
}

.motion-impact span:last-child {
  border-right: 0;
}

.motion-impact b {
  display: block;
  margin-bottom: 5px;
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 7px;
}

/* 09 Spark */
.spark-layout {
  display: grid;
  grid-template-columns: 0.54fr 0.46fr;
  grid-template-rows: 1fr 190px 64px;
  gap: 15px 34px;
}

.spark-main {
  position: relative;
  grid-row: 1 / 3;
  overflow: hidden;
}

.spark-main figcaption,
.spark-detail figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 8px 10px;
  color: var(--paper);
  background: rgba(8, 8, 6, 0.82);
  font-family: var(--mono);
  font-size: 6px;
}

.spark-copy {
  padding-top: 6px;
}

.spark-copy h2 {
  margin-top: 14px;
  font-size: 51px;
}

.spark-copy .lead {
  margin-top: 23px;
}

.spark-copy > p:not(.eyebrow):not(.lead) {
  margin-top: 15px;
  color: #514e47;
}

.spark-copy .source-pill {
  margin-top: 20px;
}

.spark-detail {
  position: relative;
  overflow: hidden;
}

.spark-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.spark-flow li {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  border-right: 1px solid var(--line-dark);
}

.spark-flow li:last-child {
  border-right: 0;
}

.spark-flow b {
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 7px;
}

.spark-flow span {
  font-size: 8px;
}

/* 10 Production Stack */
.stack-layout {
  display: grid;
  grid-template-columns: 0.26fr 0.74fr;
  grid-template-rows: 1fr 176px 36px;
  gap: 18px 32px;
}

.stack-heading {
  padding-top: 7px;
}

.stack-heading h2 {
  margin-top: 15px;
  font-size: 47px;
}

.stack-media {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 5px;
  min-height: 0;
}

.stack-media figure {
  position: relative;
  overflow: hidden;
  background: #132226;
}

.stack-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 8px;
  color: var(--brass);
  background: rgba(8, 8, 6, 0.82);
  font-family: var(--mono);
  font-size: 6px;
}

.stack-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--line-light);
}

.stack-list a {
  display: grid;
  grid-template-rows: 25px 1fr 18px;
  padding: 14px 16px;
  border-right: 1px solid var(--line-light);
  text-decoration: none;
}

.stack-list a:last-child {
  border-right: 0;
}

.stack-list b {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 7px;
}

.stack-list span {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.05;
}

.stack-list em {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 6px;
  font-style: normal;
}

.stack-note {
  grid-column: 1 / -1;
  align-self: center;
  color: #d5dfde;
  font-family: var(--mono);
  font-size: 8px;
  text-align: center;
}

/* 11 Nightborne */
.nightborne-layout {
  display: grid;
  grid-template-columns: 0.54fr 0.46fr;
  gap: 42px;
}

.nightborne-poster {
  position: relative;
  height: 678px;
  overflow: hidden;
}

.nightborne-poster img {
  object-position: center center;
}

.nightborne-poster figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 9px 11px;
  color: var(--brass);
  background: rgba(8, 8, 6, 0.88);
  font-family: var(--mono);
  font-size: 7px;
}

.nightborne-copy {
  padding-top: 9px;
}

.nightborne-copy h2 {
  margin-top: 15px;
  font-size: 52px;
}

.nightborne-copy .lead {
  margin-top: 27px;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--line-light);
}

.fact-strip span {
  padding: 13px 9px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: var(--muted);
  font-size: 8px;
}

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

.fact-strip span:nth-child(n + 3) {
  border-bottom: 0;
}

.fact-strip b {
  display: block;
  margin-bottom: 5px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.nightborne-copy > p:not(.eyebrow):not(.lead) {
  margin-top: 22px;
  color: #d1cbc2;
}

.nightborne-copy .source-row {
  margin-top: 25px;
}

/* 12 Nightborne Review */
.review-layout {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  grid-template-rows: 294px 220px 78px;
  gap: 17px 28px;
}

.review-title {
  padding-top: 7px;
}

.review-title h2 {
  margin-top: 14px;
  font-size: 49px;
}

.review-title > p:last-child {
  margin-top: 22px;
  color: #514e48;
}

.review-motion {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.review-motion figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 8px 10px;
  color: var(--paper);
  background: rgba(8, 8, 6, 0.86);
  font-family: var(--mono);
  font-size: 6px;
}

.review-frames {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.review-frames figure {
  position: relative;
  overflow: hidden;
}

.review-frames figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 7px 8px;
  color: var(--paper);
  background: rgba(8, 8, 6, 0.8);
  font-size: 7px;
}

.review-verdict {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.review-verdict span {
  padding: 12px 14px 0;
  border-right: 1px solid var(--line-dark);
  font-size: 8px;
  line-height: 1.45;
}

.review-verdict span:last-child {
  border-right: 0;
}

.review-verdict b {
  display: block;
  margin-bottom: 4px;
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 7px;
}

/* 13 Ozzy Fox */
.ozzy-layout {
  display: grid;
  grid-template-columns: 0.38fr 0.36fr 0.26fr;
  grid-template-rows: 1fr 96px;
  gap: 20px;
}

.ozzy-copy {
  padding-top: 7px;
}

.ozzy-copy h2 {
  margin-top: 14px;
  font-size: 48px;
}

.ozzy-copy .lead {
  margin-top: 25px;
}

.ozzy-copy > p:not(.eyebrow):not(.lead) {
  margin-top: 16px;
}

.ozzy-copy .source-pill {
  margin-top: 23px;
}

.ozzy-main {
  overflow: hidden;
}

.ozzy-main img {
  object-position: center top;
}

.ozzy-evidence {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 5px;
}

.ozzy-evidence figure {
  position: relative;
  overflow: hidden;
}

.ozzy-evidence figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 7px;
  color: var(--paper);
  background: rgba(8, 8, 6, 0.78);
  font-size: 6px;
}

.ozzy-rule {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 0 16px;
  color: var(--paper);
  background: var(--ink);
}

.ozzy-rule b {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 8px;
}

.ozzy-rule span {
  padding-left: 18px;
  border-left: 1px solid rgba(243, 238, 229, 0.3);
  font-size: 9px;
}

/* 14 Festival */
.festival-layout {
  display: grid;
  grid-template-columns: 0.56fr 0.44fr;
  grid-template-rows: 1fr 92px;
  gap: 22px 38px;
}

.festival-hero {
  position: relative;
  overflow: hidden;
}

.festival-hero figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 9px 10px;
  color: var(--brass);
  background: rgba(8, 8, 6, 0.88);
  font-family: var(--mono);
  font-size: 6px;
}

.festival-copy {
  padding-top: 5px;
}

.festival-number {
  margin-top: 22px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 103px;
  line-height: 0.72;
}

.festival-copy h2 {
  margin-top: 20px;
  font-size: 42px;
}

.festival-copy .lead {
  margin-top: 19px;
}

.festival-copy > p:not(.eyebrow):not(.lead) {
  margin-top: 13px;
  color: var(--muted);
}

.festival-copy .source-pill {
  margin-top: 18px;
}

.festival-copy small {
  display: block;
  margin-top: 14px;
  color: #89847b;
  font-size: 7px;
  line-height: 1.45;
}

.festival-axis {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--brass);
}

.festival-axis span {
  padding: 12px 12px 0;
  border-right: 1px solid var(--line-light);
  color: var(--muted);
  font-size: 8px;
}

.festival-axis span:last-child {
  border-right: 0;
}

.festival-axis b {
  display: block;
  margin-bottom: 5px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

/* 15 Works */
.works-layout {
  display: grid;
  grid-template-columns: 0.23fr 0.77fr;
  gap: 34px;
}

.works-heading {
  padding-top: 8px;
}

.works-heading h2 {
  margin-top: 15px;
  font-size: 44px;
}

.works-heading > p:last-child {
  margin-top: 23px;
  color: #55514b;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
}

.works-grid a {
  display: grid;
  grid-template-columns: 0.44fr 0.56fr;
  grid-template-rows: auto auto 1fr auto;
  column-gap: 14px;
  padding: 10px;
  color: var(--ink);
  border: 1px solid var(--line-dark);
  text-decoration: none;
}

.works-grid figure {
  grid-row: 1 / -1;
  min-height: 0;
  overflow: hidden;
}

.works-grid > a > span {
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 6px;
}

.works-grid h3 {
  margin-top: 8px;
  font-size: 20px;
}

.works-grid p {
  margin-top: 10px;
  color: #5a5650;
  font-size: 8px;
}

.works-grid > a > b {
  align-self: end;
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 300;
}

/* 16 Platforms */
.platform-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 132px 1fr 76px;
  gap: 18px 24px;
}

.platform-heading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  grid-template-rows: auto 1fr;
  gap: 0 34px;
}

.platform-heading .eyebrow {
  grid-column: 1 / -1;
}

.platform-heading h2 {
  margin-top: 12px;
  font-size: 44px;
}

.platform-heading > p:last-child {
  align-self: end;
  padding-bottom: 7px;
  color: #56524c;
  font-size: 11px;
}

.platform {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.platform figure {
  overflow: hidden;
}

.platform > div {
  padding: 18px;
}

.platform > div > span {
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 7px;
}

.platform h3 {
  margin-top: 13px;
  font-size: 25px;
}

.platform p {
  margin-top: 17px;
  color: #57534d;
  font-size: 9px;
}

.platform a {
  display: inline-block;
  margin: 20px 12px 0 0;
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 6px;
}

.platform-rule {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 150px 1fr 70px 1fr;
  gap: 16px;
  align-items: center;
  padding: 0 18px;
  color: var(--paper);
  background: var(--ink);
}

.platform-rule b {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 8px;
}

.platform-rule span {
  font-family: var(--serif);
  font-size: 18px;
}

.platform-rule i {
  height: 1px;
  background: var(--brass);
}

/* 17 Regulation */
.regulation-layout {
  display: grid;
  grid-template-columns: 0.43fr 0.57fr;
  grid-template-rows: 1fr 168px 28px;
  gap: 18px 34px;
}

.regulation-copy {
  padding-top: 8px;
}

.regulation-copy h2 {
  margin-top: 15px;
  font-size: 54px;
}

.regulation-copy .lead {
  margin-top: 27px;
}

.regulation-copy .source-pill {
  margin-top: 23px;
}

.regulation-image {
  position: relative;
  overflow: hidden;
}

.regulation-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 8px 10px;
  color: var(--brass);
  background: rgba(8, 8, 6, 0.84);
  font-family: var(--mono);
  font-size: 6px;
}

.delivery-checklist {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 17px 18px;
  color: var(--ink);
  background: var(--paper);
}

.delivery-checklist h3 {
  font-size: 22px;
}

.delivery-checklist ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  list-style: none;
}

.delivery-checklist li {
  padding: 0 12px;
  border-left: 1px solid var(--line-dark);
}

.delivery-checklist b {
  display: block;
  margin-bottom: 7px;
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 7px;
}

.delivery-checklist span {
  font-size: 7px;
  line-height: 1.45;
}

.regulation-note {
  grid-column: 1 / -1;
  align-self: end;
  color: #b7c1cd;
  font-size: 7px;
  text-align: right;
}

/* 18 Seedance */
.seedance-layout {
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 42px;
}

.seedance-visual {
  position: relative;
  height: 678px;
  overflow: hidden;
  background: #131311;
}

.seedance-visual img {
  object-fit: contain;
  object-position: top center;
}

.seedance-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 9px 10px;
  color: var(--brass);
  background: rgba(8, 8, 6, 0.9);
  font-family: var(--mono);
  font-size: 6px;
}

.seedance-copy {
  padding-top: 8px;
}

.seedance-copy h2 {
  margin-top: 14px;
  font-size: 50px;
}

.seedance-copy .lead {
  margin-top: 25px;
}

.status-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.status-board div {
  padding: 15px;
  border-top: 1px solid var(--brass);
  background: #171713;
}

.status-board b {
  display: block;
  margin-bottom: 12px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.status-board span {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  border-top: 1px solid rgba(243, 238, 229, 0.12);
  font-size: 7px;
  line-height: 1.35;
}

.seedance-copy > p:not(.eyebrow):not(.lead) {
  margin-top: 22px;
  color: #d5cfc6;
}

.seedance-copy .source-row {
  margin-top: 24px;
}

/* 19 Actions */
.action-layout {
  display: grid;
  grid-template-columns: 0.58fr 0.42fr;
  grid-template-rows: 94px 1fr;
  gap: 22px 44px;
}

.action-heading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--ink);
}

.action-heading h2 {
  padding-bottom: 12px;
  font-size: 48px;
}

.action-heading .eyebrow {
  order: 2;
  padding-bottom: 18px;
}

.action-list {
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.action-list li {
  display: grid;
  grid-template-columns: 48px 1fr 70px;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  border-bottom: 1px solid var(--line-dark);
}

.action-list > li > b {
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 9px;
}

.action-list h3 {
  font-size: 23px;
}

.action-list p {
  margin-top: 7px;
  color: #59554e;
  font-size: 8px;
}

.action-list em {
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 6px;
  font-style: normal;
  text-align: right;
}

.next-watch {
  padding: 25px;
  color: var(--paper);
  background: var(--ink);
}

.next-watch .eyebrow {
  color: var(--brass);
}

.next-watch a {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
}

.next-watch time {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 7px;
}

.next-watch span {
  font-size: 10px;
  line-height: 1.45;
}

/* 20 Closing */
.closing-layout {
  position: absolute;
  inset: 42px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 52px;
  padding: 0;
}

.closing-thesis {
  padding: 52px 48px;
  color: var(--paper);
  background: var(--ink);
}

.closing-thesis h2 {
  margin-top: 17px;
  font-size: 58px;
}

.closing-thesis ol {
  margin-top: 56px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--brass);
}

.closing-thesis li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
}

.closing-thesis li b {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 8px;
}

.closing-thesis li span {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.15;
}

.source-index {
  padding: 52px 48px;
  background: var(--paper);
}

.source-index h2 {
  margin-top: 14px;
  font-size: 48px;
}

.source-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--ink);
}

.source-columns a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  padding: 16px 8px 16px 0;
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
}

.source-columns a:nth-child(odd) {
  border-right: 1px solid var(--line-dark);
}

.source-columns a:nth-child(even) {
  padding-left: 12px;
}

.source-columns b {
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 7px;
}

.source-columns span {
  font-size: 8px;
  line-height: 1.45;
}

.closing-footer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 0 48px;
  color: var(--paper);
  background: var(--vermilion);
  font-family: var(--mono);
  font-size: 7px;
}

.closing-footer span:nth-child(2) {
  text-align: center;
}

.closing-footer span:last-child {
  text-align: right;
}

@media (max-width: 700px) {
  .site-reader-inner {
    grid-template-columns: 1fr auto;
    width: calc(100vw - 24px);
    min-height: 52px;
  }

  .reader-title {
    display: none;
  }

  .reader-actions {
    gap: 11px;
  }

  .preview-bar {
    width: calc(100vw - 24px);
    margin-top: 14px;
    font-size: 6px;
  }

  .issue {
    gap: 18px;
    padding: 0 10px 50px;
  }

  .reader-zoom {
    display: grid;
  }
}

@media print {
  @page {
    size: A4 landscape;
    margin: 0;
  }

  html,
  body {
    width: 1120px;
    margin: 0;
    background: #fff;
  }

  .site-reader-nav,
  .preview-bar,
  .reader-zoom {
    display: none !important;
  }

  .issue {
    display: block;
    padding: 0;
  }

  .reader-page-shell,
  .reader-page-stage {
    width: 1120px !important;
    height: 792px !important;
    overflow: visible !important;
  }

  .page {
    width: 1120px;
    height: 792px;
    box-shadow: none;
    transform: none !important;
  }
}

/* Issue 004: AI video under real-world pressure */

.brass-page {
  color: var(--ink);
  background: #c8b17b;
}

.snap-page {
  color: #0b0b08;
  background: #f2ec42;
}

.seedance-page {
  color: var(--paper);
  background: #0d1010;
}

.lucy-page {
  color: var(--white);
  background: #4d5f7f;
}

.action-desk-page {
  color: var(--ink);
  background: #dfd8cb;
}

.source-button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  color: var(--paper);
  background: var(--vermilion);
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: 7px;
  text-decoration: none;
}

.source-button.pale {
  color: var(--ink);
  background: var(--brass);
}

.source-button.dark-button {
  color: var(--paper);
  background: var(--ink);
}

.editorial-list {
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.editorial-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 10px;
}

.editorial-list b {
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
}

/* 01 Cover */

.cover-004 {
  background: #050505;
}

.cover-004 .cover-art {
  position: absolute;
  inset: 0;
  object-position: center;
}

.cover-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 4, 3, 0.8) 0%, rgba(4, 4, 3, 0.3) 42%, rgba(4, 4, 3, 0.05) 75%);
}

.cover-004-copy {
  position: absolute;
  z-index: 3;
  top: 46px;
  left: 50px;
  width: 610px;
}

.cover-004 .cover-kicker {
  color: #d4c5a3;
  font-family: var(--mono);
  font-size: 8px;
}

.cover-004 .masthead {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-top: 21px;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0;
}

.cover-004 .masthead span {
  font-weight: 300;
}

.cover-004 .masthead b {
  color: var(--brass);
  font-weight: 500;
}

.cover-004 h1 {
  margin-top: 124px;
  color: #eee8dd;
  font-size: 79px;
  line-height: 0.92;
}

.cover-004 h1 em {
  color: #c5a968;
  font-weight: 400;
}

.cover-004 .cover-deck {
  width: 330px;
  margin-top: 25px;
  color: #d4ccbe;
  font-size: 13px;
}

.cover-004-index {
  position: absolute;
  z-index: 3;
  bottom: 42px;
  left: 50px;
  display: grid;
  grid-template-columns: repeat(4, 105px);
  gap: 10px;
}

.cover-004-index span {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 5px;
  padding-top: 8px;
  color: #d8d0c2;
  border-top: 1px solid rgba(216, 208, 194, 0.42);
  font-family: var(--mono);
  font-size: 7px;
}

.cover-004-index b {
  color: var(--vermilion-bright);
  font-weight: 300;
}

.cover-004 .cover-credit {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 20px;
  color: rgba(236, 230, 220, 0.64);
  font-family: var(--mono);
  font-size: 5px;
}

/* 02 Opener */

.opener-004-layout {
  display: grid;
  grid-template-columns: 1.33fr 0.9fr;
  grid-template-rows: auto 1fr auto;
  gap: 24px 50px;
}

.opener-004-copy {
  padding-top: 6px;
}

.opener-004-copy h2 {
  margin: 14px 0 22px;
  font-size: 57px;
}

.opener-004-copy .lead {
  max-width: 570px;
}

.opener-004-copy > p:not(.eyebrow):not(.lead) {
  max-width: 560px;
  margin-top: 14px;
}

.opener-004-copy blockquote {
  max-width: 530px;
  margin-top: 26px;
  padding: 12px 0 0 24px;
  border-top: 1px solid var(--line-dark);
  border-left: 3px solid var(--vermilion);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.25;
}

.contents-004 {
  border-top: 1px solid var(--line-dark);
}

.contents-004 a {
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  gap: 3px 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
}

.contents-004 a b {
  grid-row: 1 / 3;
  color: var(--vermilion);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.contents-004 a span {
  font-family: var(--mono);
  font-size: 8px;
}

.contents-004 a small {
  color: var(--muted-dark);
  font-size: 8px;
}

.opener-004-meta {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.opener-briefs {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: end;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.opener-briefs article {
  min-height: 108px;
  padding: 14px 24px 12px 0;
  border-right: 1px solid var(--line-dark);
}

.opener-briefs article + article {
  padding-left: 24px;
}

.opener-briefs b {
  display: block;
  margin-bottom: 8px;
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
}

.opener-briefs p {
  font-size: 9px;
}

.opener-004-meta span {
  display: grid;
  gap: 4px;
  padding: 12px 0 0;
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 6px;
}

.opener-004-meta b {
  color: var(--ink);
  font-size: 8px;
  font-weight: 400;
}

/* 03 Timeline */

.week-004-layout {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 48px;
}

.week-004-title {
  padding-top: 14px;
}

.week-004-title h2 {
  margin-top: 18px;
  font-size: 62px;
}

.week-004-title h2 em {
  color: var(--brass);
}

.week-004-key {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 52px;
}

.week-004-key span {
  padding: 9px;
  color: var(--brass);
  border: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 7px;
}

.week-004-list {
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.week-004-list li {
  display: grid;
  grid-template-columns: 66px 135px 1fr 55px;
  gap: 12px;
  align-items: center;
  min-height: 59px;
  border-bottom: 1px solid var(--line-light);
}

.week-004-list time,
.week-004-list a {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 6px;
}

.week-004-list b {
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
}

.week-004-list span {
  color: #c7c1b7;
  font-size: 9px;
  line-height: 1.4;
}

/* 04 Brief */

.brief-004-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 44px;
}

.brief-004-heading h2 {
  margin: 15px 0 14px;
  font-size: 54px;
}

.brief-004-list {
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 17, 14, 0.35);
}

.brief-004-list li {
  display: grid;
  grid-template-columns: 38px 245px 1fr 32px;
  gap: 16px;
  align-items: center;
  min-height: 120px;
  border-bottom: 1px solid rgba(17, 17, 14, 0.35);
}

.brief-004-list li > b {
  color: var(--vermilion);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.brief-004-list h3 {
  font-size: 24px;
}

.brief-004-list p {
  max-width: 330px;
}

.brief-004-list a {
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 8px;
}

/* 05 FLUX 3 hero */

.flux-hero-layout {
  position: absolute;
  inset: 42px 0 0;
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
}

.flux-hero-media {
  position: relative;
  overflow: hidden;
}

.flux-hero-media img {
  object-position: 47% center;
}

.flux-hero-media figcaption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  padding: 7px 9px;
  color: var(--paper);
  background: rgba(8, 8, 6, 0.82);
  font-family: var(--mono);
  font-size: 6px;
}

.flux-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 46px;
  background: #0b0b09;
}

.flux-hero-copy h2 {
  margin: 18px 0 22px;
  font-size: 46px;
}

.flux-hero-copy > p:not(.eyebrow) {
  margin-bottom: 13px;
}

.fact-line {
  display: grid;
  gap: 0;
  margin: 16px 0 22px;
  border-top: 1px solid var(--line-light);
}

.fact-line span {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-light);
  color: #c8c2b8;
  font-size: 8px;
}

.fact-line b {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
}

/* 06 FLUX architecture */

.flux-architecture-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  grid-template-rows: 1fr 228px;
  gap: 18px 28px;
}

.flux-architecture-copy {
  grid-row: 1 / 3;
}

.flux-architecture-copy h2 {
  margin: 14px 0 20px;
  font-size: 48px;
}

.flux-architecture-copy .lead {
  margin-bottom: 18px;
}

.flux-architecture-copy .editorial-list {
  margin: 22px 0;
}

.flux-architecture-diagram,
.flux-motion {
  position: relative;
  overflow: hidden;
  background: #111;
}

.flux-architecture-diagram img {
  object-fit: contain;
  padding: 18px;
  background: #10110f;
}

.flux-architecture-diagram figcaption,
.flux-motion figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  color: #d4cec2;
  font-family: var(--mono);
  font-size: 6px;
}

.flux-motion img {
  object-position: center 55%;
}

/* 07 FLUX evaluation */

.flux-eval-layout {
  display: grid;
  grid-template-columns: 330px 1fr 240px;
  grid-template-rows: 1fr 225px;
  gap: 18px;
}

.flux-eval-copy {
  grid-row: 1 / 3;
  padding-right: 20px;
}

.flux-eval-copy h2 {
  margin: 16px 0 20px;
  font-size: 48px;
}

.flux-eval-copy > p:not(.eyebrow) {
  margin-bottom: 14px;
}

.caveat-block {
  display: grid;
  gap: 0;
  margin: 22px 0;
  border-top: 1px solid var(--line-light);
}

.caveat-block b,
.caveat-block span {
  padding: 8px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 8px;
}

.caveat-block b {
  color: var(--brass);
  font-family: var(--mono);
  font-weight: 400;
}

.flux-eval-chart {
  grid-column: 2 / 4;
  overflow: hidden;
  background: var(--paper);
}

.flux-eval-chart img {
  object-fit: contain;
}

.flux-eval-chart figcaption,
.flux-eval-frame figcaption {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 6px;
}

.flux-eval-frame {
  position: relative;
  grid-column: 2 / 4;
  overflow: hidden;
}

/* 08 FLUX hands-on */

.flux-test-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.6fr 1fr;
  grid-template-rows: 130px 270px 1fr;
  gap: 16px;
}

.flux-test-heading {
  grid-column: 1 / 4;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--line-dark);
}

.flux-test-heading h2 {
  max-width: 660px;
  text-align: right;
  font-size: 47px;
}

.flux-test-main {
  grid-column: 1 / 3;
  position: relative;
  overflow: hidden;
  background: #141412;
}

.flux-test-main img {
  object-fit: contain;
}

.flux-test-detail {
  position: relative;
  overflow: hidden;
}

.flux-test-main figcaption,
.flux-test-detail figcaption {
  position: absolute;
  right: 10px;
  bottom: 8px;
  left: 10px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 6px;
}

.flux-test-notes {
  grid-column: 1 / 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.flux-test-notes article {
  padding: 13px 15px 0 0;
  border-right: 1px solid var(--line-dark);
}

.flux-test-notes article + article {
  padding-left: 15px;
}

.flux-test-notes b {
  display: block;
  margin-bottom: 6px;
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
}

.flux-test-notes p {
  font-size: 9px;
}

.flux-test-page .source-button {
  position: absolute;
  right: 46px;
  bottom: 18px;
}

/* 09 Pomegranate intro */

.pom-intro-layout {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 38px;
}

.pom-intro-media {
  position: relative;
  overflow: hidden;
}

.pom-intro-media img {
  object-position: center;
}

.pom-intro-media figcaption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 8px 10px;
  color: var(--paper);
  background: rgba(8, 8, 6, 0.86);
  font-family: var(--mono);
  font-size: 6px;
}

.pom-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pom-intro-copy h2 {
  margin: 17px 0 22px;
  font-size: 49px;
}

.pom-intro-copy > p:not(.eyebrow) {
  margin-bottom: 13px;
}

.pom-facts {
  display: grid;
  margin: 8px 0 22px;
  border-top: 1px solid var(--line-light);
}

.pom-facts span {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-light);
  color: #bbb5ab;
  font-size: 8px;
}

.pom-facts b {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
}

/* 10 Pomegranate review */

.pom-review-layout {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1fr;
  grid-template-rows: 128px 320px 1fr;
  gap: 16px;
}

.pom-review-heading {
  grid-column: 1 / 4;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--line-dark);
}

.pom-review-heading h2 {
  max-width: 650px;
  text-align: right;
  font-size: 46px;
}

.pom-eye,
.pom-creature {
  position: relative;
  overflow: hidden;
}

.pom-eye {
  grid-column: 1 / 3;
}

.pom-eye figcaption,
.pom-creature figcaption {
  position: absolute;
  right: 10px;
  bottom: 8px;
  left: 10px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 6px;
}

.pom-review-columns {
  grid-column: 1 / 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
}

.pom-review-columns article {
  padding: 14px 18px 0 0;
  border-right: 1px solid var(--line-dark);
}

.pom-review-columns article + article {
  padding-left: 18px;
}

.pom-review-columns b {
  display: block;
  margin-bottom: 7px;
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
}

.pom-review-columns p {
  font-size: 9px;
}

.pom-review-page .text-link {
  position: absolute;
  right: 46px;
  bottom: 16px;
  color: var(--vermilion);
}

/* 11 Pomegranate workflow */

.pom-workflow-layout {
  display: grid;
  grid-template-columns: 330px 245px 1fr;
  grid-template-rows: 1fr auto;
  gap: 22px;
}

.pom-workflow-copy h2 {
  margin: 15px 0 20px;
  font-size: 47px;
}

.pom-workflow-copy > p:not(.eyebrow) {
  margin-bottom: 14px;
}

.pom-character {
  position: relative;
  overflow: hidden;
}

.pom-character figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 6px;
}

.workflow-river {
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 17, 14, 0.32);
}

.workflow-river li {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  gap: 3px 9px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 17, 14, 0.32);
}

.workflow-river b {
  grid-row: 1 / 3;
  color: var(--vermilion);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.workflow-river span {
  font-size: 10px;
  font-weight: 500;
}

.workflow-river small {
  color: #4f5548;
  font-size: 8px;
}

.pom-workflow-layout blockquote {
  grid-column: 1 / 4;
  padding-top: 15px;
  border-top: 1px solid rgba(17, 17, 14, 0.32);
  font-family: var(--serif);
  font-size: 25px;
  text-align: right;
}

/* 12 Theatrical */

.theatrical-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 38px;
}

.theatrical-image {
  position: relative;
  overflow: hidden;
}

.theatrical-image figcaption {
  position: absolute;
  bottom: 10px;
  left: 12px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 6px;
}

.theatrical-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.theatrical-copy h2 {
  margin: 17px 0 22px;
  font-size: 50px;
}

.theatrical-copy > p:not(.eyebrow) {
  margin-bottom: 13px;
}

.theatrical-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 10px 0 22px;
  padding: 1px;
  list-style: none;
  background: var(--line-light);
}

.theatrical-metrics li {
  display: grid;
  gap: 4px;
  padding: 10px;
  background: var(--cobalt);
}

.theatrical-metrics b {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
}

.theatrical-metrics span {
  font-size: 9px;
}

/* 13 Hiring intro */

.hiring-intro-layout {
  position: absolute;
  inset: 42px 0 0;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
}

.hiring-intro-image {
  position: relative;
  overflow: hidden;
}

.hiring-intro-image figcaption {
  position: absolute;
  bottom: 11px;
  left: 14px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 6px;
}

.hiring-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 42px;
  background: #0a0a08;
}

.hiring-intro-copy h2 {
  margin: 17px 0 20px;
  font-size: 52px;
}

.hiring-intro-copy > p:not(.eyebrow) {
  margin-bottom: 12px;
}

.hiring-number {
  display: grid;
  margin: 12px 0 20px;
  padding: 10px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.hiring-number b {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
}

.hiring-number span,
.hiring-number small {
  font-family: var(--mono);
  font-size: 6px;
}

.hiring-number small {
  color: #9f9a91;
  margin-top: 4px;
}

/* 14 Hiring map */

.hiring-map-layout {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1fr;
  grid-template-rows: 124px 305px 1fr;
  gap: 16px;
}

.hiring-map-heading {
  grid-column: 1 / 4;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--line-dark);
}

.hiring-map-heading h2 {
  max-width: 620px;
  text-align: right;
  font-size: 47px;
}

.hiring-disney,
.hiring-netflix {
  position: relative;
  overflow: hidden;
}

.hiring-disney {
  grid-column: 1 / 3;
}

.hiring-disney figcaption,
.hiring-netflix figcaption {
  position: absolute;
  right: 9px;
  bottom: 8px;
  left: 9px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 6px;
}

.hiring-lanes {
  grid-column: 1 / 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hiring-lanes article {
  padding-top: 12px;
  border-top: 1px solid var(--line-dark);
}

.hiring-lanes b {
  display: block;
  margin-bottom: 9px;
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
}

.hiring-lanes span {
  display: inline-block;
  margin: 0 5px 7px 0;
  padding: 5px 7px;
  border: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 6px;
}

.hiring-lanes p {
  font-size: 9px;
}

.hiring-map-page .text-link {
  position: absolute;
  right: 46px;
  bottom: 14px;
  color: var(--vermilion);
}

/* 15 Hiring skills */

.hiring-skills-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.hiring-skills-image {
  position: relative;
  overflow: hidden;
}

.hiring-skills-image figcaption {
  position: absolute;
  bottom: 9px;
  left: 10px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 6px;
}

.hiring-skills-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hiring-skills-copy h2 {
  margin: 16px 0 19px;
  font-size: 46px;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 18px 0;
  padding: 1px;
  background: var(--line-light);
}

.skills-grid span {
  display: grid;
  gap: 4px;
  padding: 9px;
  background: var(--wine);
  font-size: 8px;
}

.skills-grid b {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 400;
}

.hiring-takeaway {
  margin-bottom: 18px;
  padding-left: 15px;
  border-left: 3px solid var(--brass);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.35;
}

/* 16 Snap */

.snap-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 40px;
}

.snap-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 11, 8, 0.35);
}

.snap-visual figcaption {
  position: absolute;
  bottom: 10px;
  left: 12px;
  padding: 6px 8px;
  color: var(--paper);
  background: rgba(8, 8, 6, 0.8);
  font-family: var(--mono);
  font-size: 6px;
}

.snap-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.snap-copy .eyebrow {
  color: #4e3900;
}

.snap-copy h2 {
  margin: 16px 0 21px;
  font-size: 50px;
}

.snap-copy > p:not(.eyebrow) {
  margin-bottom: 13px;
}

.snap-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 9px 0 20px;
  background: rgba(11, 11, 8, 0.35);
}

.snap-split span {
  display: grid;
  gap: 5px;
  padding: 12px;
  background: #f2ec42;
  font-size: 8px;
}

.snap-split b {
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 500;
}

/* 17 Trust */

.trust-layout {
  display: grid;
  grid-template-columns: 315px 250px 1fr;
  grid-template-rows: 1fr 220px;
  gap: 16px;
}

.trust-motion {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
}

.trust-motion img {
  object-position: center;
}

.trust-reveal {
  position: relative;
  overflow: hidden;
}

.trust-motion figcaption,
.trust-reveal figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 5px;
  color: var(--paper);
  background: rgba(8, 8, 6, 0.72);
  font-family: var(--mono);
  font-size: 5px;
}

.trust-copy {
  grid-row: 1 / 3;
  grid-column: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 18px;
}

.trust-copy h2 {
  margin: 16px 0 20px;
  font-size: 46px;
}

.trust-copy > p:not(.eyebrow) {
  margin-bottom: 12px;
}

.trust-rule {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin: 10px 0 17px;
  background: var(--line-light);
}

.trust-rule b,
.trust-rule span {
  padding: 8px;
  background: var(--black);
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 400;
  text-align: center;
}

.trust-rule b {
  color: var(--brass);
}

/* 18 EU */

.eu-layout {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 38px;
}

.eu-page-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
}

.eu-page-shot img {
  object-position: top center;
}

.eu-page-shot figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 7px 9px;
  color: var(--paper);
  background: rgba(8, 8, 6, 0.84);
  font-family: var(--mono);
  font-size: 6px;
}

.eu-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eu-copy h2 {
  margin: 16px 0 19px;
  font-size: 49px;
}

.eu-duties {
  margin: 15px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.eu-duties li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-dark);
}

.eu-duties b {
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
}

.eu-duties span {
  font-size: 8px;
  line-height: 1.45;
}

.legal-note {
  margin-bottom: 16px;
  color: var(--muted-dark);
  font-size: 7px;
}

/* 19 Terms */

.terms-layout {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 38px;
}

.terms-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-light);
}

.terms-visual figcaption {
  position: absolute;
  bottom: 9px;
  left: 10px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 6px;
}

.terms-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.terms-copy h2 {
  margin: 16px 0 19px;
  font-size: 49px;
}

.terms-copy > p:not(.eyebrow) {
  margin-bottom: 12px;
}

.terms-status {
  display: grid;
  margin: 10px 0 18px;
  border-top: 1px solid var(--line-light);
}

.terms-status span {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-light);
  color: #c1bbb0;
  font-size: 8px;
}

.terms-status b {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
}

/* 20 Rights checklist */

.rights-layout {
  display: grid;
  grid-template-columns: 285px 1fr;
  grid-template-rows: 1fr auto;
  gap: 28px 48px;
}

.rights-heading h2 {
  margin: 16px 0 18px;
  font-size: 52px;
}

.rights-checklist {
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.rights-checklist li {
  display: grid;
  grid-template-columns: 38px 290px 1fr;
  gap: 15px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--line-dark);
}

.rights-checklist b {
  color: var(--vermilion);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.rights-checklist span {
  font-size: 11px;
  font-weight: 500;
}

.rights-checklist small {
  color: var(--muted-dark);
  font-size: 8px;
  line-height: 1.5;
}

.rights-footer {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 90px repeat(4, 1fr) auto;
  gap: 1px;
  border-top: 1px solid var(--line-dark);
}

.rights-footer > * {
  padding: 10px 8px 0;
  font-family: var(--mono);
  font-size: 6px;
}

.rights-footer span {
  color: var(--muted-dark);
}

.rights-footer b {
  border-left: 1px solid var(--line-dark);
  font-weight: 400;
}

.rights-footer a {
  color: var(--vermilion);
}

/* 21 Seedance */

.seedance-layout {
  position: absolute;
  inset: 42px 0 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.seedance-media {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  min-height: 0;
}

.seedance-shot {
  position: relative;
  overflow: hidden;
}

.seedance-shot img {
  object-position: center;
}

.seedance-shot-jimeng img {
  object-position: center 46%;
}

.seedance-shot-xyq img {
  object-position: center 33%;
}

.seedance-shot figcaption {
  position: absolute;
  bottom: 11px;
  left: 12px;
  padding: 6px 8px;
  color: #d5ff00;
  background: rgba(8, 8, 6, 0.78);
  font-family: var(--mono);
  font-size: 6px;
}

.seedance-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 34px;
}

.seedance-copy .eyebrow,
.seedance-copy .source-button {
  color: #0a0d0d;
  background: #d5ff00;
}

.seedance-copy .eyebrow {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 6px;
}

.seedance-copy h2 {
  margin: 15px 0 17px;
  font-size: 47px;
}

.seedance-copy > p:not(.eyebrow) {
  margin-bottom: 12px;
}

.seedance-watch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 14px;
  margin: 8px 0 20px;
  border-top: 1px solid var(--line-light);
}

.seedance-watch span {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-light);
  color: #bdbdb7;
  font-size: 8px;
}

.seedance-sources {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.seedance-sources .source-button {
  padding: 8px 11px;
}

.seedance-community {
  color: #d5ff00;
}

.seedance-watch b {
  color: #d5ff00;
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 400;
}

/* 22 Bing */

.bing-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-rows: 250px 1fr;
  gap: 16px 28px;
}

.bing-shot {
  grid-column: 1 / 3;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
}

.bing-shot img {
  object-position: top center;
}

.bing-shot figcaption,
.bing-brand figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 5px 7px;
  color: var(--paper);
  background: rgba(8, 8, 6, 0.78);
  font-family: var(--mono);
  font-size: 6px;
}

.bing-brand {
  position: relative;
  overflow: hidden;
}

.bing-copy {
  grid-row: 2;
  padding: 10px 0 0 10px;
}

.bing-copy h2 {
  margin: 14px 0 17px;
  font-size: 47px;
}

.bing-copy > p:not(.eyebrow) {
  margin-bottom: 11px;
}

.bing-copy .source-button {
  margin-top: 5px;
}

/* 23 Lucy */

.lucy-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 38px;
}

.lucy-visual {
  position: relative;
  overflow: hidden;
}

.lucy-visual figcaption {
  position: absolute;
  bottom: 10px;
  left: 11px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 6px;
}

.lucy-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lucy-copy h2 {
  margin: 16px 0 20px;
  font-size: 50px;
}

.lucy-copy > p:not(.eyebrow) {
  margin-bottom: 12px;
}

.lucy-use {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 9px 0 20px;
  background: var(--line-light);
}

.lucy-use span {
  display: grid;
  gap: 4px;
  padding: 9px;
  background: #4d5f7f;
  font-size: 8px;
}

.lucy-use b {
  color: #d4c7f1;
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 400;
}

/* 24 Insta360 */

.insta-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
}

.insta-image {
  position: relative;
  overflow: hidden;
}

.insta-image img {
  object-position: 52% center;
}

.insta-image figcaption {
  position: absolute;
  bottom: 10px;
  left: 11px;
  padding: 6px 8px;
  color: var(--paper);
  background: rgba(8, 8, 6, 0.78);
  font-family: var(--mono);
  font-size: 6px;
}

.insta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.insta-copy h2 {
  margin: 16px 0 20px;
  font-size: 49px;
}

.insta-copy > p:not(.eyebrow) {
  margin-bottom: 12px;
}

.insta-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 8px;
  align-items: center;
  margin: 13px 0 20px;
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 6px;
}

.insta-flow i {
  height: 1px;
  background: var(--line-dark);
}

/* 25 Festivals */

.festival-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 0.92fr;
  grid-template-rows: 115px 270px 1fr;
  gap: 16px;
}

.festival-heading {
  grid-column: 1 / 4;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--line-light);
}

.festival-heading h2 {
  max-width: 640px;
  text-align: right;
  font-size: 47px;
}

.festival-aaff,
.festival-tiaif {
  position: relative;
  overflow: hidden;
}

.festival-aaff img,
.festival-tiaif img {
  object-position: top center;
}

.festival-aaff figcaption,
.festival-tiaif figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 5px 7px;
  color: var(--paper);
  background: rgba(8, 8, 6, 0.8);
  font-family: var(--mono);
  font-size: 5px;
}

.festival-list {
  grid-row: 2 / 4;
  grid-column: 3;
  border-top: 1px solid var(--line-light);
}

.festival-list a {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
}

.festival-list b,
.festival-list em {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
  font-weight: 400;
}

.festival-list span {
  color: #c4beb4;
  font-size: 8px;
  line-height: 1.5;
}

.festival-note {
  grid-column: 1 / 3;
  padding: 16px 0 0 24px;
  border-top: 1px solid var(--line-light);
  border-left: 3px solid var(--brass);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.28;
}

/* 26 Action desk */

.action-desk-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-template-rows: 1fr auto;
  gap: 35px 48px;
}

.action-desk-heading h2 {
  margin: 16px 0 18px;
  font-size: 55px;
}

.action-desk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 1px;
  background: rgba(17, 17, 14, 0.32);
}

.action-desk-grid article {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 24px;
  background: #dfd8cb;
}

.action-desk-grid article > b,
.action-desk-grid article > span {
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
}

.action-desk-grid h3 {
  margin: 29px 0 13px;
  font-size: 28px;
}

.action-desk-grid p {
  font-size: 9px;
}

.action-desk-grid article > span {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--line-dark);
}

.action-desk-footer {
  grid-column: 1 / 3;
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line-dark);
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 6px;
}

.action-desk-footer b {
  color: var(--vermilion);
  font-weight: 400;
}

/* 27 Watch */

.watch-layout {
  display: grid;
  grid-template-columns: 255px 1fr;
  grid-template-rows: 1fr auto;
  gap: 26px 48px;
}

.watch-heading h2 {
  margin: 17px 0;
  font-size: 62px;
}

.watch-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.watch-list li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 6px 10px;
  min-height: 162px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
}

.watch-list li > b {
  grid-row: 1 / 3;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.watch-list span,
.watch-list a {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 6px;
}

.watch-list h3 {
  grid-column: 2 / 4;
  font-size: 25px;
}

.watch-layout blockquote {
  grid-column: 1 / 3;
  padding-top: 13px;
  border-top: 1px solid var(--line-light);
  color: var(--brass);
  font-family: var(--serif);
  font-size: 25px;
  text-align: right;
}

/* 28 Sources */

.sources-004-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-template-rows: 1fr auto auto;
  gap: 18px 42px;
}

.sources-004-heading h2 {
  margin: 14px 0 16px;
  font-size: 52px;
}

.sources-004-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.sources-004-columns > div {
  border-top: 1px solid var(--line-dark);
}

.sources-004-columns a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 7px;
  text-decoration: none;
}

.sources-004-columns b {
  color: var(--vermilion);
  font-family: var(--mono);
  font-weight: 400;
}

.sources-004-columns span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.credits-004 {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 115px 1fr 1fr;
  gap: 18px;
  padding-top: 11px;
  border-top: 1px solid var(--line-dark);
}

.credits-004 b {
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 400;
}

.credits-004 p {
  font-size: 7px;
  line-height: 1.45;
}

.sources-page-004 .closing-footer {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 10px;
  border-top: 1px solid var(--line-dark);
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 6px;
}
