@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/barlow-condensed-700.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/barlow-condensed-800.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/barlow-condensed-900.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: italic;
  font-weight: 700 900;
  font-display: swap;
  src: url("/assets/fonts/barlow-condensed-700-italic.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-400.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-500.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-600.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/manrope-400-700.woff2") format("woff2");
}

:root {
  --ink: #071a2b;
  --ink-2: #0c263b;
  --ink-3: #143750;
  --paper: #f1ead9;
  --paper-deep: #dfd3b9;
  --cloud: #fffaf0;
  --orange: #ff5d2a;
  --orange-dark: #d93e14;
  --amber: #ffbd38;
  --green: #69dc9e;
  --cyan: #81e6ef;
  --grey: #80909a;
  --line: rgba(241, 234, 217, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Manrope", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection {
  color: var(--ink);
  background: var(--amber);
}

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

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

button,
input {
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--amber);
  font-family: var(--mono);
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.status-strip {
  position: relative;
  z-index: 50;
  height: 32px;
  color: var(--ink);
  background: var(--amber);
  border-bottom: 1px solid rgba(7, 26, 43, 0.45);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 32px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}

.status-strip__track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.status-strip__track span {
  display: inline-flex;
  align-items: center;
}

.status-strip__track span::after {
  content: "✦";
  margin: 0 30px;
  font-size: 8px;
}

.status-strip__track i {
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: var(--orange-dark);
  border-radius: 50%;
  animation: blink 1.4s steps(2, end) infinite;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  min-height: 78px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(7, 26, 43, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: min-height 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(7, 26, 43, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.brand__mark {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  border-radius: 50% 50% 50% 8px;
}

.brand__mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.055em;
}

.brand small {
  margin-top: 5px;
  color: rgba(241, 234, 217, 0.56);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.13em;
}

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

.site-nav a {
  position: relative;
  color: rgba(241, 234, 217, 0.72);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav a:hover {
  color: var(--cloud);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  padding: 10px 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.header-cta:hover {
  color: var(--paper);
  background: transparent;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 32px);
  padding: clamp(72px, 8vw, 118px) max(24px, calc((100vw - var(--max)) / 2)) 88px;
  background:
    radial-gradient(circle at 80% 25%, rgba(129, 230, 239, 0.1), transparent 31%),
    linear-gradient(140deg, #071a2b 0%, #09233a 50%, #071a2b 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: 13%;
  right: -8vw;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  content: "";
  background: repeating-radial-gradient(
    circle,
    transparent 0,
    transparent 78px,
    rgba(129, 230, 239, 0.1) 79px,
    transparent 80px
  );
  border: 1px solid rgba(129, 230, 239, 0.13);
  border-radius: 50%;
  opacity: 0.8;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 93, 42, 0.035));
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__grid-lines {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(241, 234, 217, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 234, 217, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero__copy,
.hero__visual,
.boarding-pass {
  position: relative;
  z-index: 2;
}

.hero__copy {
  width: min(58%, 700px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow__tag {
  padding: 4px 7px;
  color: var(--ink);
  background: var(--cyan);
}

.hero h1,
.section-heading h2,
.manifest h2,
.faq h2,
.official h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(64px, 8.8vw, 128px);
}

.hero h1 em {
  display: block;
  color: var(--orange);
  font-style: italic;
}

.hero__lede {
  max-width: 590px;
  margin: 29px 0 0;
  color: rgba(241, 234, 217, 0.8);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(241, 234, 217, 0.38);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.button--primary {
  color: var(--cloud);
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 12px 30px rgba(255, 93, 42, 0.18);
}

.button--primary:hover {
  color: var(--ink);
  background: var(--amber);
  border-color: var(--amber);
  transform: translateY(-3px);
}

.button--ghost:hover {
  background: rgba(241, 234, 217, 0.08);
  border-color: var(--paper);
  transform: translateY(-3px);
}

.play-icon {
  display: grid;
  width: 23px;
  height: 23px;
  padding-left: 2px;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border-radius: 50%;
  font-size: 8px;
}

.hero__note {
  margin: 19px 0 0;
  color: rgba(241, 234, 217, 0.42);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.hero__note span {
  margin-right: 6px;
  color: var(--green);
}

.hero__visual {
  position: absolute;
  top: clamp(100px, 13vw, 170px);
  right: max(24px, calc((100vw - var(--max)) / 2));
  width: min(40vw, 560px);
}

.hero-shot {
  position: relative;
  margin: 0;
  padding: 9px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(2.2deg);
}

.hero-shot::before,
.hero-shot::after {
  position: absolute;
  z-index: 2;
  width: 25px;
  height: 25px;
  content: "";
  border-color: var(--orange);
  border-style: solid;
}

.hero-shot::before {
  top: 18px;
  left: 18px;
  border-width: 2px 0 0 2px;
}

.hero-shot::after {
  right: 18px;
  bottom: 47px;
  border-width: 0 2px 2px 0;
}

.hero-shot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.hero-shot figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 2px 0;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.hero-stamp {
  position: absolute;
  z-index: 4;
  right: -18px;
  bottom: -72px;
  display: grid;
  width: 118px;
  height: 118px;
  align-content: center;
  color: var(--paper);
  background: var(--orange);
  border: 4px double var(--paper);
  border-radius: 50%;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-10deg);
}

.hero-stamp span,
.hero-stamp small {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.hero-stamp strong {
  font-family: var(--display);
  font-size: 37px;
  line-height: 1;
}

.radar {
  position: absolute;
  z-index: -1;
  top: -70px;
  right: -60px;
  width: 180px;
  height: 180px;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(129, 230, 239, 0.18) 50%, transparent 50.5%),
    linear-gradient(transparent 49.5%, rgba(129, 230, 239, 0.18) 50%, transparent 50.5%);
  border: 1px solid rgba(129, 230, 239, 0.24);
  border-radius: 50%;
}

.radar::before,
.radar::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(129, 230, 239, 0.18);
  border-radius: 50%;
  inset: 25%;
}

.radar::after {
  inset: 12%;
}

.radar__sweep {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg, transparent 0 78%, rgba(129, 230, 239, 0.2), transparent 100%);
  border-radius: 50%;
  animation: radar 6s linear infinite;
}

.radar__blip {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
}

.radar__blip--one {
  top: 33%;
  left: 25%;
}

.radar__blip--two {
  right: 22%;
  bottom: 31%;
}

.boarding-pass {
  display: grid;
  grid-template-columns: 1fr 190px;
  width: min(850px, 76%);
  margin-top: clamp(72px, 10vw, 145px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  transform: rotate(-0.7deg);
}

.boarding-pass::before,
.boarding-pass::after {
  position: absolute;
  z-index: 2;
  right: 177px;
  width: 24px;
  height: 24px;
  content: "";
  background: var(--ink);
  border-radius: 50%;
}

.boarding-pass::before {
  top: -12px;
}

.boarding-pass::after {
  bottom: -12px;
}

.boarding-pass__main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 23px 28px;
}

.boarding-pass small,
.boarding-pass strong {
  display: block;
}

.boarding-pass small {
  margin-bottom: 4px;
  color: rgba(7, 26, 43, 0.54);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.boarding-pass strong {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.05;
}

.boarding-pass__stub {
  display: grid;
  gap: 8px;
  padding: 17px 23px;
  align-content: center;
  border-left: 1px dashed rgba(7, 26, 43, 0.35);
}

.boarding-pass__stub strong {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
}

.barcode,
.manifest-card__barcode {
  height: 28px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0 2px,
    transparent 2px 4px,
    var(--ink) 4px 5px,
    transparent 5px 9px
  );
}

.section {
  padding: clamp(88px, 10vw, 150px) max(24px, calc((100vw - var(--max)) / 2));
}

.briefing,
.requirements,
.faq {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 189, 56, 0.18), transparent 24%),
    var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2,
.manifest h2,
.faq h2,
.official h2 {
  max-width: 850px;
  font-size: clamp(48px, 6.2vw, 86px);
}

.section-heading p {
  max-width: 470px;
  margin: 0;
  color: rgba(7, 26, 43, 0.64);
  font-size: 14px;
}

.section-heading--light p {
  color: rgba(241, 234, 217, 0.62);
}

.kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading--light .kicker,
.manifest .kicker,
.official .kicker {
  color: var(--amber);
}

.status-board {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.status-board__header,
.status-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.45fr;
  align-items: center;
  gap: 28px;
}

.status-board__header {
  min-height: 38px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.status-board__header,
.status-row {
  padding-right: 22px;
  padding-left: 22px;
}

.status-row {
  min-height: 70px;
  border-bottom: 1px solid rgba(7, 26, 43, 0.22);
}

.status-row:last-child {
  border-bottom: 0;
}

.status-row > span:first-child {
  font-size: 14px;
}

.status-row strong {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.status-row a,
.status-row > span:last-child {
  justify-self: end;
  color: rgba(7, 26, 43, 0.55);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-row a {
  border-bottom: 1px solid currentColor;
  transition: color 150ms ease;
}

.status-row a:hover {
  color: var(--orange-dark);
}

.status-row .muted {
  color: rgba(7, 26, 43, 0.58);
}

.dot {
  width: 8px;
  height: 8px;
  margin-right: 12px;
  background: var(--grey);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(128, 144, 154, 0.15);
}

.dot--amber {
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 93, 42, 0.15);
}

.dot--green {
  background: #1f9d61;
  box-shadow: 0 0 0 4px rgba(31, 157, 97, 0.15);
}

.briefing-note {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(720px, 100%);
  margin: 28px 0 0 auto;
  padding: 17px 21px;
  color: var(--paper);
  background: var(--orange-dark);
  transform: rotate(-0.4deg);
}

.briefing-note__icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
}

.briefing-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.gameplay {
  background:
    linear-gradient(rgba(7, 26, 43, 0.9), rgba(7, 26, 43, 0.98)),
    url("/assets/images/dear-passengers-header.jpg") center / cover fixed;
}

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

.role-card {
  grid-column: span 5;
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(241, 234, 217, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.role-card:hover {
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-6px) rotate(-0.5deg);
}

.role-card--wide {
  grid-column: span 7;
}

.role-card:nth-child(2) {
  margin-top: 72px;
}

.role-card:nth-child(3) {
  margin-top: -22px;
}

.role-card--danger {
  color: var(--paper);
  background: var(--orange-dark);
}

.role-card__image {
  position: relative;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
}

.role-card__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(7, 26, 43, 0.28), transparent 45%);
  pointer-events: none;
}

.role-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.role-card:hover .role-card__image img {
  transform: scale(1.035);
}

.role-card__body {
  position: relative;
  min-height: 190px;
  padding: 28px 31px 32px;
}

.role-card__number {
  display: block;
  margin-bottom: 28px;
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.role-card--danger .role-card__number {
  color: var(--amber);
}

.role-card h3 {
  margin: 0 0 11px;
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 49px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.role-card p {
  max-width: 510px;
  margin: 0;
  color: rgba(7, 26, 43, 0.67);
  font-size: 13px;
}

.role-card--danger p {
  color: rgba(241, 234, 217, 0.78);
}

.manifest {
  position: relative;
  background: #0a2034;
  overflow: hidden;
}

.manifest::before {
  position: absolute;
  right: -130px;
  bottom: -220px;
  width: 620px;
  height: 620px;
  content: "";
  background: repeating-radial-gradient(circle, transparent 0 70px, rgba(129, 230, 239, 0.08) 71px 72px);
  border-radius: 50%;
}

.manifest__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(65px, 8vw, 120px);
  align-items: center;
}

.manifest__copy > p {
  max-width: 520px;
  margin: 27px 0;
  color: rgba(241, 234, 217, 0.64);
  font-size: 15px;
}

.manifest__promise {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  max-width: 520px;
  padding: 15px 17px;
  border: 1px solid rgba(129, 230, 239, 0.2);
  background: rgba(129, 230, 239, 0.04);
}

.manifest__promise span {
  color: var(--green);
  font-weight: 700;
}

.manifest__promise p {
  margin: 0;
  color: rgba(241, 234, 217, 0.62);
  font-size: 11px;
}

.text-link {
  display: inline-flex;
  gap: 16px;
  margin-top: 27px;
  color: var(--amber);
  border-bottom: 1px solid rgba(255, 189, 56, 0.38);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.manifest-card {
  position: relative;
  min-height: 420px;
  padding: 38px;
  color: var(--ink);
  background:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(7, 26, 43, 0.06) 32px),
    var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.manifest-card::before,
.manifest-card::after {
  position: absolute;
  left: 22px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 347px 0 var(--ink);
}

.manifest-card::before {
  top: 30px;
}

.manifest-card::after {
  top: 46px;
  background: none;
  box-shadow: 0 315px 0 var(--ink);
}

.manifest-card__top,
.manifest-card__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.manifest-card__top {
  margin-bottom: 38px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--ink);
  font-family: var(--display);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.manifest-card__top strong {
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 11px;
}

.manifest-card__row {
  grid-template-columns: 110px 1fr auto;
  min-height: 63px;
  border-bottom: 1px solid rgba(7, 26, 43, 0.25);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.manifest-card__blocks {
  display: flex;
  gap: 5px;
}

.manifest-card__blocks i {
  display: block;
  width: 18px;
  height: 18px;
  border: 1px dashed rgba(7, 26, 43, 0.42);
}

.manifest-card__meter {
  height: 7px;
  background: rgba(7, 26, 43, 0.13);
}

.manifest-card__meter i {
  display: block;
  width: 38%;
  height: 100%;
  background: repeating-linear-gradient(90deg, var(--orange-dark) 0 8px, transparent 8px 11px);
  opacity: 0.5;
}

.manifest-card__stamp {
  position: absolute;
  right: 36px;
  bottom: 63px;
  padding: 8px 12px;
  color: var(--orange-dark);
  border: 3px double var(--orange-dark);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  line-height: 0.95;
  text-align: center;
  transform: rotate(-8deg);
  opacity: 0.75;
}

.manifest-card__barcode {
  position: absolute;
  bottom: 34px;
  left: 38px;
  width: 145px;
  height: 24px;
}

.trailer {
  background: var(--ink);
}

.video-shell {
  position: relative;
  padding: 13px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.video-shell::before,
.video-shell::after {
  position: absolute;
  z-index: 2;
  width: 70px;
  height: 70px;
  content: "";
  border: 2px solid var(--orange);
  pointer-events: none;
}

.video-shell::before {
  top: 28px;
  left: 28px;
  border-width: 2px 0 0 2px;
}

.video-shell::after {
  right: 28px;
  bottom: 51px;
  border-width: 0 2px 2px 0;
}

.video-shell__label {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-shell__label {
  position: absolute;
  z-index: 3;
  top: 32px;
  right: 34px;
  padding: 6px 9px;
  color: var(--paper);
  background: rgba(7, 26, 43, 0.8);
  backdrop-filter: blur(8px);
}

.video-shell__label span {
  margin-right: 7px;
  color: #ff513d;
}

.video-shell__frame {
  position: relative;
  padding-bottom: 56.25%;
  background: #020b12;
  overflow: hidden;
}

.video-shell__frame iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  inset: 0;
}

.video-poster {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0;
  color: var(--paper);
  background: #020b12;
  border: 0;
  cursor: pointer;
  inset: 0;
  overflow: hidden;
}

.video-poster::after {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, rgba(7, 26, 43, 0.8), rgba(7, 26, 43, 0.12) 68%);
  inset: 0;
  transition: background 220ms ease;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease;
}

.video-poster__action {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(28px, 6vw, 80px);
  display: flex;
  gap: 18px;
  align-items: center;
  text-align: left;
  transform: translateY(-50%);
}

.video-poster__action i {
  display: grid;
  width: clamp(58px, 7vw, 86px);
  height: clamp(58px, 7vw, 86px);
  padding-left: 5px;
  place-items: center;
  color: var(--paper);
  background: var(--orange);
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.32);
  font-size: clamp(16px, 2vw, 25px);
  font-style: normal;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.video-poster__action strong,
.video-poster__action small {
  display: block;
}

.video-poster__action strong {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.video-poster__action small {
  margin-top: 9px;
  color: rgba(241, 234, 217, 0.68);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.video-poster:hover::after {
  background: linear-gradient(90deg, rgba(7, 26, 43, 0.72), rgba(7, 26, 43, 0.04) 76%);
}

.video-poster:hover img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.video-poster:hover .video-poster__action i {
  color: var(--ink);
  background: var(--amber);
  transform: scale(1.07);
}

.specs {
  display: grid;
  grid-template-columns: 240px 1fr;
  border: 3px solid var(--ink);
}

.specs__side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  padding: 30px;
  color: var(--paper);
  background: var(--ink);
}

.specs__side span,
.specs__side small {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.specs__side strong {
  font-family: var(--display);
  font-size: 90px;
  font-weight: 900;
  line-height: 0.8;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.specs__list {
  margin: 0;
  padding: 20px 35px;
}

.specs__list div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 30px;
  min-height: 62px;
  align-items: center;
  border-bottom: 1px solid rgba(7, 26, 43, 0.24);
}

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

.specs dt {
  color: rgba(7, 26, 43, 0.54);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.specs dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.gallery {
  display: grid;
  grid-template-columns: 0.78fr 0.64fr 1.1fr;
  gap: 0;
  color: var(--paper);
  background: var(--orange-dark);
}

.gallery figure {
  position: relative;
  min-height: 410px;
  margin: 0;
  overflow: hidden;
}

.gallery figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(7, 26, 43, 0.8), transparent 55%);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery figure:hover img {
  transform: scale(1.045);
}

.gallery figcaption {
  position: absolute;
  z-index: 2;
  bottom: 25px;
  left: 27px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.gallery__statement {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background:
    linear-gradient(rgba(7, 26, 43, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 43, 0.08) 1px, transparent 1px),
    var(--orange-dark);
  background-size: 34px 34px;
}

.gallery__statement span,
.gallery__statement small {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.gallery__statement strong {
  margin: 20px 0;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.85;
}

.faq {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 9vw, 130px);
}

.faq__heading {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq__heading p {
  max-width: 350px;
  margin-top: 28px;
  color: rgba(7, 26, 43, 0.58);
  font-size: 13px;
}

.faq__list {
  border-top: 3px solid var(--ink);
}

.faq details {
  border-bottom: 1px solid rgba(7, 26, 43, 0.28);
}

.faq summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 86px;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(22px, 2.3vw, 31px);
  font-weight: 700;
  line-height: 1;
  list-style: none;
  text-transform: uppercase;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 16px;
  transition: color 180ms ease, background 180ms ease, transform 220ms ease;
}

.faq details[open] summary span {
  color: var(--ink);
  background: var(--orange);
  transform: rotate(45deg);
}

.faq details p {
  max-width: 680px;
  margin: -5px 52px 28px 0;
  color: rgba(7, 26, 43, 0.68);
  font-size: 13px;
}

.official {
  position: relative;
  background:
    radial-gradient(circle at 10% 70%, rgba(129, 230, 239, 0.08), transparent 25%),
    var(--ink);
  overflow: hidden;
}

.official::after {
  position: absolute;
  top: 50%;
  right: -100px;
  width: 400px;
  height: 1px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 -55px 0 rgba(129, 230, 239, 0.15), 0 55px 0 rgba(129, 230, 239, 0.15);
  transform: rotate(-25deg);
}

.official__panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.official__panel > div > p {
  max-width: 490px;
  margin-top: 28px;
  color: rgba(241, 234, 217, 0.58);
  font-size: 14px;
}

.official__links {
  border-top: 1px solid rgba(241, 234, 217, 0.38);
}

.official__links a {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 80px;
  border-bottom: 1px solid rgba(241, 234, 217, 0.2);
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}

.official__links a:hover {
  padding: 0 17px;
  color: var(--ink);
  background: var(--amber);
}

.official__links span {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--orange);
}

.official__links a:hover span {
  color: var(--orange-dark);
}

.official__links strong {
  font-family: var(--display);
  font-size: 26px;
  text-transform: uppercase;
}

.official__links i {
  font-family: var(--mono);
  font-style: normal;
}

.site-footer {
  padding: 50px max(24px, calc((100vw - var(--max)) / 2));
  color: rgba(241, 234, 217, 0.55);
  background: #04111d;
  border-top: 1px solid rgba(241, 234, 217, 0.14);
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.brand--footer {
  color: var(--paper);
}

.back-to-top {
  color: var(--paper);
  border-bottom: 1px solid rgba(241, 234, 217, 0.35);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.site-footer__bottom {
  margin-top: 42px;
  padding-top: 25px;
  border-top: 1px solid rgba(241, 234, 217, 0.12);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.03em;
  line-height: 1.6;
  text-transform: uppercase;
}

.site-footer__bottom p {
  max-width: 680px;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes blink {
  50% { opacity: 0.2; }
}

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

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    gap: 20px;
  }

  .nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    gap: 7px;
    color: var(--paper);
    background: transparent;
    border: 1px solid var(--line);
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-last-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px max(24px, calc((100vw - var(--max)) / 2)) 20px;
    background: rgba(7, 26, 43, 0.98);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .header-cta {
    justify-self: end;
  }

  .hero__copy {
    width: 60%;
  }

  .hero__visual {
    width: 40vw;
  }

  .boarding-pass {
    width: 88%;
  }

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

  .manifest__panel {
    grid-template-columns: 1fr 1fr;
    gap: 55px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__statement {
    grid-column: span 1;
  }

  .gallery__wide {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 92px;
  }

  .status-strip {
    height: 28px;
    line-height: 28px;
  }

  .site-header {
    min-height: 68px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
  }

  .nav-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .hero {
    min-height: auto;
    padding: 68px 20px 78px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 76px);
  }

  .hero__lede {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .hero__visual {
    position: relative;
    top: auto;
    right: auto;
    width: 92%;
    margin: 57px 0 0 auto;
  }

  .hero-stamp {
    right: auto;
    bottom: -55px;
    left: -28px;
    width: 95px;
    height: 95px;
  }

  .hero-stamp strong {
    font-size: 29px;
  }

  .radar {
    top: -45px;
    right: -35px;
    width: 120px;
    height: 120px;
  }

  .boarding-pass {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 95px;
  }

  .boarding-pass::before,
  .boarding-pass::after {
    display: none;
  }

  .boarding-pass__main {
    grid-template-columns: 1fr 1fr;
    gap: 19px 15px;
    padding: 21px;
  }

  .boarding-pass__stub {
    display: none;
  }

  .section {
    padding: 82px 20px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .manifest h2,
  .faq h2,
  .official h2 {
    font-size: clamp(40px, 11.5vw, 58px);
  }

  .status-board__header {
    display: none;
  }

  .status-board {
    border-top-width: 2px;
    border-bottom-width: 2px;
  }

  .status-row {
    grid-template-columns: 1fr;
    gap: 5px;
    align-items: start;
    min-height: 0;
    padding: 18px 4px;
  }

  .status-row a,
  .status-row > span:last-child {
    display: none;
  }

  .status-row > span:first-child {
    color: rgba(7, 26, 43, 0.55);
    font-family: var(--mono);
    font-size: 8px;
    text-transform: uppercase;
  }

  .status-row strong {
    font-size: 11px;
  }

  .briefing-note {
    margin-top: 22px;
    transform: none;
  }

  .gameplay {
    background-attachment: scroll;
  }

  .role-grid {
    display: block;
  }

  .role-card,
  .role-card:nth-child(2),
  .role-card:nth-child(3) {
    margin: 0 0 18px;
  }

  .role-card__body {
    min-height: 0;
    padding: 24px;
  }

  .role-card__number {
    margin-bottom: 20px;
  }

  .role-card h3 {
    font-size: 38px;
  }

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

  .manifest-card {
    min-height: 390px;
    padding: 28px 25px;
    transform: rotate(0.6deg);
  }

  .manifest-card::before,
  .manifest-card::after {
    display: none;
  }

  .manifest-card__row {
    grid-template-columns: 86px 1fr auto;
    gap: 10px;
    font-size: 8px;
  }

  .manifest-card__blocks i:nth-child(n+5) {
    display: none;
  }

  .manifest-card__stamp {
    right: 25px;
  }

  .video-shell {
    padding: 7px;
  }

  .video-shell__label {
    top: 16px;
    right: 17px;
  }

  .video-shell::before,
  .video-shell::after {
    display: none;
  }

  .specs {
    grid-template-columns: 1fr;
    border-width: 2px;
  }

  .specs__side {
    min-height: auto;
    padding: 20px;
    flex-direction: row;
    align-items: center;
  }

  .specs__side strong {
    font-size: 46px;
    writing-mode: initial;
    transform: none;
  }

  .specs__side small {
    text-align: right;
  }

  .specs__list {
    padding: 10px 20px;
  }

  .specs__list div {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 0;
    padding: 15px 0;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery figure,
  .gallery__statement {
    min-height: 320px;
  }

  .gallery__statement,
  .gallery__wide {
    grid-column: span 1;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq__heading {
    position: static;
  }

  .faq summary {
    min-height: 76px;
    font-size: 23px;
  }

  .official__panel {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .official__links a {
    min-height: 70px;
  }

  .site-footer__top,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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