@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/bebas-neue-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "GS Display";
  src: url("../fonts/league-gothic-latin.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "GS Condensed";
  src: url("../fonts/roboto-condensed-latin.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "GS Mono";
  src: url("../fonts/geist-mono-latin.woff2") format("woff2");
  font-display: swap;
}

:root {
  --paper: #ded0b5;
  --paper-light: #eadfc9;
  --paper-deep: #bca98d;
  --ink: #130f0b;
  --bone: #eee2c8;
  --muted: #6e6252;
  --rust: #9b3821;
  --rust-dark: #622315;
  --acid: #c7ee0c;
  --line: rgba(19, 15, 11, 0.42);
  --paper-texture: url("../images/paper-seamless.png");
  --paper-texture-size: 130px 56px;
  --display: "GS Display", Impact, "Arial Narrow", sans-serif;
  --body: "GS Condensed", "Arial Narrow", Arial, sans-serif;
  --mono: "GS Mono", monospace;
  --editorial: Georgia, "Times New Roman", serif;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --paper: #1d1a15;
  --paper-light: #28231c;
  --paper-deep: #100f0c;
  --ink: #eee2c8;
  --bone: #eee2c8;
  --muted: #b1a58e;
  --rust: #db5939;
  --rust-dark: #792b19;
  --line: rgba(238, 226, 200, 0.3);
  --paper-texture:
    linear-gradient(rgba(9, 8, 6, 0.78), rgba(9, 8, 6, 0.78)),
    url("../images/paper-seamless.png");
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
}

body::selection {
  background: var(--acid);
  color: #11100c;
}

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

button {
  border: 0;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: -3px;
}

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

.fullpage-app {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--paper);
  background-image: var(--paper-texture);
  background-repeat: repeat;
  background-size: var(--paper-texture-size);
}

.fullpage-viewport {
  width: 100%;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

.fullpage-viewport::-webkit-scrollbar {
  display: none;
}

.fp-section {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  height: 100dvh;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  isolation: isolate;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 58px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  background-color: var(--paper);
  background-image: var(--paper-texture);
  background-repeat: repeat;
  background-size: var(--paper-texture-size);
}

.brand {
  position: relative;
  z-index: 2;
  height: 57px;
  padding: 0 16px;
  background-color: var(--paper);
  background-image: var(--paper-texture);
  background-repeat: repeat;
  background-size: var(--paper-texture-size);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.header-rule {
  position: relative;
  flex: 1;
  height: 100%;
  background-color: var(--paper);
  background-image: var(--paper-texture);
  background-repeat: repeat;
  background-size: var(--paper-texture-size);
}

.header-rule::before {
  position: absolute;
  top: 50%;
  right: 12px;
  left: 12px;
  height: 1px;
  background: var(--ink);
  content: "";
}

.header-rule i {
  position: absolute;
  top: calc(50% - 4px);
  left: 22%;
  width: 8px;
  height: 8px;
  background: var(--ink);
  transform: rotate(45deg);
}

.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  height: 57px;
  background-color: var(--paper);
  background-image: var(--paper-texture);
  background-repeat: repeat;
  background-size: var(--paper-texture-size);
}

.theme-button,
.menu-button {
  display: grid;
  height: 57px;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.theme-button {
  width: 46px;
  border-left: 1px solid var(--line);
}

.menu-button {
  width: 60px;
}

.theme-button:hover,
.menu-button:hover {
  background: var(--acid);
  color: #11100c;
}

.page-pagination {
  position: fixed;
  z-index: 80;
  top: 58px;
  right: 0;
  bottom: 0;
  display: flex;
  width: 47px;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid var(--ink);
  background-color: var(--paper);
  background-image: var(--paper-texture);
  background-repeat: repeat;
  background-size: var(--paper-texture-size);
}

.pagination-target {
  position: relative;
  width: 30px;
  height: 45px;
  flex: 0 0 auto;
}

.pagination-target::before,
.pagination-target::after {
  position: absolute;
  background: var(--ink);
  content: "";
}

.pagination-target::before {
  top: 10px;
  left: 14px;
  width: 1px;
  height: 28px;
}

.pagination-target::after {
  top: 23px;
  left: 1px;
  width: 28px;
  height: 1px;
}

.pagination-target i {
  position: absolute;
  top: 16px;
  left: 7px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.pagination-target.is-bottom {
  margin-top: auto;
}

.pagination-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pagination-list button {
  position: relative;
  display: grid;
  width: 100%;
  height: 42px;
  place-items: center;
  background: transparent;
  color: color-mix(in srgb, var(--ink) 48%, transparent);
  cursor: pointer;
}

.pagination-list button::after {
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: translateX(-50%);
}

.pagination-list button span {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
}

.pagination-list button em {
  display: none;
}

.pagination-list button:hover,
.pagination-list button.is-active {
  color: var(--ink);
}

.pagination-list button.is-active span {
  font-size: 31px;
}

.pagination-list button.is-active::after {
  width: 17px;
  background: var(--rust);
}

.page-pagination > p {
  display: none;
}

.mission-menu {
  position: fixed;
  z-index: 90;
  inset: 58px 0 0;
  overflow-y: auto;
  padding: 23px 18px 28px;
  background-color: var(--paper);
  background-image:
    linear-gradient(90deg, transparent 49.8%, var(--line) 50%, transparent 50.2%),
    var(--paper-texture);
  background-size: auto, var(--paper-texture-size);
}

.mission-menu > p {
  margin: 0 0 16px;
  color: var(--rust);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.mission-menu > div {
  border-top: 1px solid var(--ink);
}

.mission-menu > div button {
  display: grid;
  width: 100%;
  min-height: 58px;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--ink);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  text-align: left;
  cursor: pointer;
}

.mission-menu > div button:hover {
  padding-left: 10px;
  background: var(--acid);
  color: #11100c;
}

.mission-menu > div span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
}

.mission-menu > div strong {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 700;
  line-height: 0.8;
  text-transform: uppercase;
}

.menu-theme {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  background: transparent;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-section {
  background-color: var(--paper);
  background-image: var(--paper-texture);
  background-size: var(--paper-texture-size);
}

.hero-art {
  position: absolute;
  z-index: -2;
  inset: 58px 47px 44px 0;
  background-image: url("../images/hero-editorial-mobile.webp");
  background-position: 43% center;
  background-size: cover;
  filter: contrast(1.035) saturate(0.92);
}

:root[data-theme="dark"] .hero-art {
  filter: brightness(0.56) contrast(1.16) saturate(0.7);
}

.cut-marks {
  position: absolute;
  z-index: 1;
  inset: 76px 63px 61px 16px;
  pointer-events: none;
}

.cut-marks i {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--ink);
  border-style: solid;
}

.cut-marks i:nth-child(1) {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}

.cut-marks i:nth-child(2) {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
}

.cut-marks i:nth-child(3) {
  right: 0;
  bottom: 0;
  border-width: 0 1px 1px 0;
}

.cut-marks i:nth-child(4) {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px;
}

.hero-title {
  position: absolute;
  z-index: 3;
  right: 62px;
  bottom: 160px;
  left: 16px;
  padding: 0;
  pointer-events: none;
}

.hero-title h1,
.title-text {
  margin: 0;
  color: #1a1a1a;
  font-family: "Bebas Neue", var(--display);
  font-size: clamp(51px, min(15.6vw, 7.6dvh), 72px);
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 0.85;
  text-align: center;
  text-shadow:
    0 0 1px rgba(26, 26, 26, 0.5),
    1px 1px 0 color-mix(in srgb, var(--paper-light) 84%, transparent);
  text-transform: uppercase;
  transform: scaleY(1.35);
  transform-origin: center;
  user-select: none;
  -webkit-text-fill-color: #1a1a1a;
  -webkit-text-stroke: 1.2px
    color-mix(in srgb, var(--paper-light) 92%, transparent);
}

.hero-title span,
.title-text span {
  position: relative;
  display: block;
  text-shadow:
    0 0 1px rgba(26, 26, 26, 0.5),
    1px 1px 0 color-mix(in srgb, var(--paper-light) 84%, transparent);
}

.title-text span::after {
  position: absolute;
  inset: 0;
  color: var(--paper-light);
  content: attr(data-text);
  opacity: 0.22;
  pointer-events: none;
  text-shadow: none;
  -webkit-mask-image: url("../images/grunge-wall.png");
  mask-image: url("../images/grunge-wall.png");
  -webkit-mask-mode: luminance;
  mask-mode: luminance;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
  -webkit-mask-size: 210px 210px;
  mask-size: 210px 210px;
  -webkit-text-fill-color: var(--paper-light);
  -webkit-text-stroke: 0;
}

:root[data-theme="dark"] .title-text {
  color: #e8dcc3;
  -webkit-text-fill-color: #e8dcc3;
  text-shadow:
    0 0 1px rgba(232, 220, 195, 0.4),
    1px 1px 0 rgba(10, 8, 6, 0.85);
  -webkit-text-stroke-color: rgba(10, 8, 6, 0.92);
}

:root[data-theme="dark"] .title-text span::after {
  color: #0b0806;
  -webkit-text-fill-color: #0b0806;
}

.hero-pitch {
  position: absolute;
  z-index: 4;
  top: 77px;
  right: 61px;
  max-width: min(270px, calc(100vw - 94px));
  padding: 8px 10px;
  border-left: 3px solid var(--rust);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.hero-pitch > span {
  display: block;
  margin-bottom: 4px;
  color: var(--rust);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.hero-actions {
  position: absolute;
  z-index: 5;
  right: 62px;
  bottom: 54px;
  left: 16px;
  display: grid;
  gap: 7px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.button-acid {
  background: var(--acid);
  color: #11100c;
}

.button-acid:hover {
  background: #e3ff47;
}

.button-ghost {
  background: color-mix(in srgb, var(--paper) 80%, transparent);
  color: var(--ink);
  backdrop-filter: blur(2px);
}

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

.hero-gameplay-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  justify-self: center;
  padding: 0 8px;
  border-bottom: 1px solid currentColor;
  background: color-mix(in srgb, var(--paper) 60%, transparent);
  color: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(2px);
}

.hero-gameplay-link:hover {
  background: var(--ink);
  color: var(--paper);
}

.scroll-cue {
  display: none;
}

.hero-telemetry {
  position: absolute;
  z-index: 4;
  right: 47px;
  bottom: 0;
  left: 0;
  display: flex;
  height: 44px;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  background-color: var(--paper);
  background-image: var(--paper-texture);
  background-size: var(--paper-texture-size);
}

.hero-telemetry > strong {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  min-width: 104px;
  flex: 0 0 auto;
  place-items: center;
  border-right: 1px solid var(--line);
  background: var(--acid);
  color: #11100c;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.hero-ticker-window {
  min-width: 0;
  height: 100%;
  flex: 1;
  overflow: hidden;
}

.hero-ticker-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: hero-ticker 34s linear infinite;
}

.hero-ticker-group {
  display: flex;
  height: 100%;
  flex: 0 0 auto;
}

.hero-ticker-group button {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  background: transparent;
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.03em;
  white-space: nowrap;
  cursor: pointer;
}

.hero-ticker-group button:hover,
.hero-ticker-group button:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.hero-ticker-group button span {
  color: var(--rust);
}

.hero-ticker-group button em,
.hero-ticker-group button b,
.hero-ticker-group button i {
  font-style: normal;
}

.hero-ticker-group button b {
  color: var(--muted);
  font-weight: 900;
}

.hero-ticker-group button i {
  margin-left: 7px;
  color: var(--rust);
  font-size: 6px;
}

.hero-ticker-window:hover .hero-ticker-track,
.hero-ticker-window:focus-within .hero-ticker-track {
  animation-play-state: paused;
}

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

.panel-shell {
  position: relative;
  width: calc(100% - 47px);
  height: 100%;
  padding: 77px 16px 18px;
}

.panel-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
}

.section-code {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.section-code span,
.section-code p {
  margin: 0;
  color: var(--rust);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.section-code i {
  width: 28px;
  height: 1px;
  background: var(--rust);
}

.section-code.is-inverse span,
.section-code.is-inverse p {
  color: var(--acid);
}

.section-code.is-inverse i {
  background: var(--acid);
}

.panel-heading h2 {
  max-width: 1040px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(47px, 13vw, 74px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.78;
  text-transform: uppercase;
}

.panel-heading h2 span {
  display: block;
  color: var(--rust);
}

.faction-section,
.dossiers-section,
.events-section,
.news-section {
  background-color: var(--paper);
  background-image: var(--paper-texture);
  background-repeat: repeat;
  background-size: var(--paper-texture-size);
}

.faction-grid {
  display: grid;
  gap: 10px;
}

.faction-visual {
  position: relative;
  min-height: 43svh;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #11100c;
}

.faction-visual > img,
.event-stage > img,
.news-image img,
.dossier-image img,
.role-console > img,
.module-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faction-visual > img {
  position: absolute;
  inset: 0;
  filter: grayscale(0.38) sepia(0.18) contrast(1.15);
}

.faction-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(11, 8, 5, 0.95) 100%),
    linear-gradient(90deg, transparent 40%, rgba(122, 34, 18, 0.5));
}

.faction-wash.is-steel {
  background:
    linear-gradient(180deg, transparent 28%, rgba(8, 9, 10, 0.95) 100%),
    linear-gradient(90deg, transparent 40%, rgba(62, 79, 86, 0.52));
}

.faction-copy {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 14px;
  left: 15px;
  color: var(--bone);
}

.faction-copy p {
  margin: 0 0 7px;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 900;
}

.faction-copy h3 {
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: clamp(37px, 10.8vw, 59px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.82;
}

.faction-copy > span {
  display: block;
  max-width: 560px;
  color: rgba(238, 226, 200, 0.72);
  font-family: var(--editorial);
  font-size: 11px;
  line-height: 1.35;
}

.faction-controls {
  border: 1px solid var(--ink);
  background: color-mix(in srgb, var(--paper-light) 92%, transparent);
}

.faction-controls > p {
  display: none;
}

.faction-controls > button {
  display: grid;
  width: 100%;
  min-height: 54px;
  grid-template-columns: 27px 1fr auto;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faction-controls > button.is-active,
.faction-controls > button:hover {
  background: var(--rust-dark);
  color: var(--bone);
}

.faction-controls > button.is-active {
  box-shadow: inset 6px 0 0 var(--acid);
}

.faction-controls > button span {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
}

.faction-controls > button strong {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 700;
  line-height: 0.8;
  text-transform: uppercase;
}

.faction-signal {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  color: var(--rust);
}

.faction-signal > p {
  margin: 0;
}

.faction-signal span,
.faction-signal strong {
  display: block;
}

.faction-signal span {
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.faction-signal strong {
  margin-top: 2px;
  font-size: 12px;
}

.dossier-headline strong,
.dossier-headline span {
  display: block;
  font: inherit;
}

.dossier-headline strong {
  color: var(--ink);
}

.dossier-spread {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 8px;
}

.dossier-plate {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #11100c;
}

.dossier-photo {
  position: relative;
  height: clamp(235px, 32svh, 330px);
  overflow: hidden;
  background: #11100c;
}

.dossier-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  filter: grayscale(0.48) sepia(0.2) contrast(1.25) brightness(0.82);
}

.dossier-halftone {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    color-mix(in srgb, var(--paper-light) 36%, transparent) 0.7px,
    transparent 0.8px
  );
  background-size: 4px 4px;
  mix-blend-mode: screen;
  opacity: 0.32;
  pointer-events: none;
}

.dossier-registration {
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(238, 226, 200, 0.38);
  pointer-events: none;
}

.dossier-registration::before,
.dossier-registration::after {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(238, 226, 200, 0.68);
  border-radius: 50%;
  content: "";
}

.dossier-registration::before {
  top: -9px;
  left: -9px;
}

.dossier-registration::after {
  right: -9px;
  bottom: -9px;
}

.dossier-manifesto {
  position: absolute;
  z-index: 2;
  right: 13px;
  bottom: 14px;
  left: 13px;
  max-width: 580px;
  padding: 8px 9px 6px;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(27px, 7vw, 45px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.82;
}

.dossier-manifesto span {
  display: block;
  color: var(--rust);
}

.dossier-marker {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--bone);
  border-radius: 50%;
  background: rgba(9, 8, 6, 0.8);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
}

.dossier-marker::after {
  position: absolute;
  width: 47px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: rotate(-34deg);
}

.dossier-marker:hover,
.dossier-marker.is-active {
  border-color: var(--acid);
  background: var(--acid);
  color: #11100c;
}

.dossier-marker--sortie {
  top: 66%;
  left: 15%;
}

.dossier-marker--armement {
  top: 43%;
  left: 47%;
}

.dossier-marker--tactique {
  top: 54%;
  left: 68%;
}

.dossier-marker--clan {
  top: 18%;
  left: 80%;
}

.dossier-stamp {
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 18px;
  display: none;
  padding: 7px 10px 5px;
  border: 3px double var(--rust);
  color: var(--rust);
  font-family: var(--display);
  font-size: 28px;
  line-height: 0.72;
  text-align: center;
  transform: rotate(-7deg);
}

.dossier-stamp small {
  display: block;
  margin-top: 5px;
  font-family: var(--mono);
  font-size: 6px;
}

.dossier-plate figcaption {
  min-height: 26px;
  padding: 7px 9px 5px;
  border-top: 1px solid var(--ink);
  background-color: var(--paper-light);
  background-image: var(--paper-texture);
  background-size: var(--paper-texture-size);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 900;
}

.dossier-notes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--ink);
}

.dossier-note {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 46px;
  place-items: center;
  padding: 6px 3px;
  border-right: 1px solid var(--line);
  background: transparent;
  text-align: center;
  cursor: pointer;
}

.dossier-note:last-child {
  border-right: 0;
}

.dossier-note > span {
  font-family: var(--display);
  font-size: 25px;
  line-height: 0.8;
}

.dossier-note > p,
.dossier-note > strong,
.dossier-note > em,
.dossier-note > svg {
  display: none;
}

.dossier-note.is-active {
  background: var(--ink);
  color: var(--paper);
  box-shadow: inset 0 -4px var(--acid);
}

.dossier-mobile-brief {
  min-height: 88px;
  padding: 9px 10px;
  border-left: 5px solid var(--rust);
}

.dossier-mobile-brief p {
  margin: 0 0 4px;
  color: var(--rust);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 900;
}

.dossier-mobile-brief h3 {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: clamp(27px, 8vw, 40px);
  line-height: 0.82;
}

.dossier-mobile-brief > span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-family: var(--editorial);
  font-size: 10px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.dossier-cycle {
  display: none;
  min-height: 33px;
  align-items: center;
  gap: 9px;
  border-block: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 900;
}

.dossier-cycle i {
  flex: 1;
  height: 1px;
  background: var(--ink);
}

.dossier-cycle b {
  color: var(--acid);
  font-size: 20px;
}

.armory-section {
  background:
    linear-gradient(rgba(199, 238, 12, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 238, 12, 0.04) 1px, transparent 1px),
    #0b0a08;
  background-size: 31px 31px;
  color: var(--bone);
}

.panel-heading.is-inverse h2 span {
  color: var(--acid);
}

.armory-grid {
  display: grid;
  gap: 9px;
}

.role-console,
.module-console {
  overflow: hidden;
  border: 1px solid rgba(238, 226, 200, 0.55);
  background: #11100c;
}

.role-console {
  display: grid;
  grid-template-columns: 42% 58%;
  grid-template-rows: 52px 1fr;
}

.role-console > img {
  height: 100%;
  grid-row: 1 / 3;
  filter: grayscale(0.55) sepia(0.17) contrast(1.2);
}

.role-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid rgba(238, 226, 200, 0.35);
}

.role-tabs button,
.module-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: rgba(238, 226, 200, 0.62);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.role-tabs button:first-child {
  border-right: 1px solid rgba(238, 226, 200, 0.28);
}

.role-tabs button.is-active,
.role-tabs button:hover,
.module-tabs button.is-active,
.module-tabs button:hover {
  background: var(--acid);
  color: #11100c;
}

.role-copy {
  padding: 11px;
}

.role-copy p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 7px;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 900;
}

.role-copy h3,
.module-display h3 {
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: clamp(26px, 7vw, 40px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.8;
}

.role-copy > span,
.module-display > span {
  display: block;
  color: rgba(238, 226, 200, 0.62);
  font-size: 9px;
  line-height: 1.32;
}

.module-console {
  display: grid;
  grid-template-columns: 54px 1fr 34%;
  min-height: 27svh;
}

.module-tabs {
  display: grid;
  border-right: 1px solid rgba(238, 226, 200, 0.32);
}

.module-tabs button {
  min-height: 42px;
  border-bottom: 1px solid rgba(238, 226, 200, 0.25);
}

.module-tabs button span {
  display: none;
}

.module-display {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 11px;
}

.module-display > div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--acid);
}

.module-display > div p {
  margin: 0 0 3px;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 900;
}

.module-display > div strong {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 700;
  line-height: 0.72;
}

.module-display > i {
  height: 4px;
  margin-top: 12px;
  overflow: hidden;
  background: rgba(238, 226, 200, 0.16);
}

.module-display > i b {
  display: block;
  height: 100%;
  background: var(--acid);
}

.module-art {
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(238, 226, 200, 0.32);
}

.module-art img {
  position: absolute;
  inset: 0;
  filter: grayscale(0.55) sepia(0.16) contrast(1.18);
}

.module-art > span {
  position: absolute;
  right: 5px;
  bottom: 6px;
  padding: 4px;
  background: var(--acid);
  color: #11100c;
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 900;
}

.event-console {
  display: grid;
  gap: 8px;
}

.event-stage {
  position: relative;
  min-height: 43svh;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #11100c;
}

.event-stage > img {
  position: absolute;
  inset: 0;
  filter: grayscale(0.36) sepia(0.13) contrast(1.14);
}

.event-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 25%, rgba(8, 7, 5, 0.94) 95%),
    linear-gradient(90deg, rgba(8, 7, 5, 0.45), transparent 70%);
}

.event-copy {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 58px;
  left: 14px;
  color: var(--bone);
}

.event-copy p {
  margin: 0 0 5px;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 900;
}

.event-copy h3 {
  max-width: 760px;
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: clamp(48px, 14vw, 77px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.76;
}

.event-copy > span {
  display: block;
  max-width: 540px;
  color: rgba(238, 226, 200, 0.68);
  font-family: var(--editorial);
  font-size: 10px;
  line-height: 1.35;
}

.event-arrows {
  position: absolute;
  z-index: 3;
  right: 10px;
  bottom: 9px;
  display: flex;
  height: 45px;
  align-items: center;
  border: 1px solid rgba(238, 226, 200, 0.5);
  background: rgba(8, 7, 5, 0.82);
  color: var(--bone);
}

.event-arrows button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.event-arrows button:hover {
  background: var(--acid);
  color: #11100c;
}

.event-arrows span {
  display: grid;
  height: 44px;
  min-width: 48px;
  place-items: center;
  border-inline: 1px solid rgba(238, 226, 200, 0.34);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 900;
}

.event-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--ink);
}

.event-index button {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 58px;
  grid-template-columns: 20px 1fr auto;
  align-content: center;
  gap: 2px 5px;
  padding: 6px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper-light) 92%, transparent);
  text-align: left;
  cursor: pointer;
}

.event-index button:nth-child(even) {
  border-right: 0;
}

.event-index button:nth-child(n + 3) {
  border-bottom: 0;
}

.event-index button:hover,
.event-index button.is-active {
  background: var(--rust-dark);
  color: var(--bone);
}

.event-index button.is-active {
  box-shadow: inset 4px 0 0 var(--acid);
}

.event-index button > span {
  grid-row: 1 / 3;
  grid-column: 1;
  align-self: center;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 900;
}

.event-index button p {
  grid-row: 1;
  grid-column: 2;
  overflow: hidden;
  margin: 0;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-index button p small {
  display: block;
  margin-top: 2px;
  color: var(--rust);
  font-size: 6px;
  line-height: 1;
}

.event-index button.is-active p small,
.event-index button:hover p small {
  color: var(--acid);
}

.event-index button strong {
  grid-row: 2;
  grid-column: 2;
  overflow: hidden;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  line-height: 0.85;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-index__arrow {
  display: grid;
  grid-row: 1 / 3;
  grid-column: 3;
  align-self: center;
  place-items: center;
  font-family: var(--display);
  font-size: 20px;
  font-style: normal;
  line-height: 1;
}

.news-grid {
  display: grid;
  height: min(52svh, 460px);
  min-height: 0;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1.35fr) repeat(2, minmax(92px, 0.6fr));
  gap: 9px;
}

.news-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-columns: minmax(105px, 39%) 1fr;
  overflow: hidden;
  border: 1px solid var(--ink);
  background-color: color-mix(in srgb, var(--paper-light) 74%, transparent);
  color: inherit;
  text-decoration: none;
}

.news-image {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  background: #11100c;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.58) sepia(0.18) contrast(1.18);
  transition: transform 450ms ease;
}

.news-card:hover img {
  transform: scale(1.04);
}

.news-card:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

.news-image > span {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px 6px;
  background-color: var(--paper);
  background-image: var(--paper-texture);
  background-size: var(--paper-texture-size);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 900;
}

.news-image > b {
  position: absolute;
  top: 12px;
  left: -15px;
  padding: 5px 20px;
  border: 2px solid var(--rust);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  color: var(--rust);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: rotate(-8deg);
}

.news-copy {
  align-self: center;
  min-width: 0;
  padding: 9px 10px 10px;
}

.news-copy > p {
  margin: 0 0 5px;
  color: var(--rust);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 900;
}

.news-card h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: clamp(25px, 6.6vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.82;
}

.news-read {
  display: inline-flex;
  margin-top: 9px;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.news-copy > span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 900;
  line-height: 1.35;
}

.news-card > i {
  position: absolute;
  right: 6px;
  bottom: -4px;
  color: color-mix(in srgb, var(--ink) 22%, transparent);
  font-family: var(--display);
  font-size: 38px;
  font-style: normal;
  line-height: 1;
}

.news-card--1 {
  display: block;
}

.news-card--1 .news-image {
  height: 100%;
  border-right: 0;
}

.news-card--1 .news-image::after {
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(transparent, rgba(8, 7, 5, 0.92));
  content: "";
}

.news-card--1 .news-copy {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 8px;
  left: 10px;
  color: var(--bone);
}

.news-card--1 .news-copy > p {
  color: var(--acid);
}

.news-card--1 .news-copy > span {
  color: rgba(238, 226, 200, 0.66);
}

.news-card--1 > i {
  color: rgba(238, 226, 200, 0.22);
}

.clan-band {
  display: grid;
  min-height: 73px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
}

.clan-band > svg {
  color: var(--acid);
}

.clan-band p {
  margin: 0;
  color: rgba(238, 226, 200, 0.63);
  font-family: var(--mono);
  font-size: 6px;
  line-height: 1.4;
}

.clan-band p strong {
  display: block;
  margin-bottom: 3px;
  color: var(--bone);
  font-family: var(--display);
  font-size: 23px;
  line-height: 0.8;
}

.clan-band > button {
  display: none;
}

.join-section {
  background: #090806;
  color: var(--bone);
}

.recruit-backdrop {
  position: absolute;
  z-index: 0;
  inset: 58px 47px 48px 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(7, 6, 4, 0.94) 0%,
      rgba(10, 6, 4, 0.76) 34%,
      rgba(67, 18, 10, 0.68) 67%,
      rgba(112, 31, 15, 0.82) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 6, 4, 0.18) 0%,
      rgba(7, 6, 4, 0.62) 100%
    ),
    url("../images/hero-editorial-mobile.webp");
  background-position: center;
  background-size: cover;
  filter: grayscale(0.24) contrast(1.18) saturate(0.88);
}

.recruit-backdrop::after {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(238, 226, 200, 0.08) 0.6px, transparent 0.8px),
    var(--paper-texture);
  background-size:
    4px 4px,
    var(--paper-texture-size);
  content: "";
  mix-blend-mode: soft-light;
  opacity: 0.24;
}

.recruit-poster {
  position: absolute;
  z-index: 1;
  inset: 58px 47px 48px 0;
  display: grid;
  grid-template-areas:
    "kicker"
    "symbol"
    "copy"
    "action";
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 8px;
  overflow: hidden;
  padding: 13px 16px 11px;
  border-bottom: 1px solid rgba(238, 226, 200, 0.52);
}

.recruit-poster::before {
  position: absolute;
  z-index: -1;
  top: 13%;
  right: -8%;
  width: min(78vw, 520px);
  aspect-ratio: 1;
  border: clamp(18px, 6vw, 48px) solid rgba(166, 55, 30, 0.12);
  border-radius: 50%;
  content: "";
}

.recruit-poster::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  background: repeating-linear-gradient(
    135deg,
    var(--rust) 0 9px,
    transparent 9px 17px
  );
  content: "";
  opacity: 0.82;
}

.recruit-kicker {
  grid-area: kicker;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 900;
}

.recruit-kicker .section-code {
  margin: 0;
}

.recruit-kicker .section-code span,
.recruit-kicker .section-code p {
  color: var(--acid);
}

.recruit-kicker .section-code i {
  background: var(--acid);
}

.recruit-kicker > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recruit-copy {
  grid-area: copy;
  align-self: center;
  min-width: 0;
}

.recruit-platform {
  margin: 0 0 7px;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.recruit-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 15.5vw, 78px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.26);
}

.recruit-copy h2 span {
  display: block;
  white-space: nowrap;
}

.recruit-copy h2 .is-rust {
  color: #b64025;
}

.recruit-order {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(238, 226, 200, 0.56);
}

.recruit-order strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(23px, 7vw, 34px);
  font-weight: 700;
  line-height: 0.86;
}

.recruit-order strong:nth-child(2) {
  color: #c04a2c;
}

.recruit-order p {
  max-width: 440px;
  margin: 7px 0 0;
  color: rgba(238, 226, 200, 0.72);
  font-family: var(--editorial);
  font-size: 10px;
  line-height: 1.25;
}

.recruit-symbol {
  position: relative;
  grid-area: symbol;
  display: grid;
  min-height: 116px;
  place-items: center;
}

.recruit-seal {
  --seal-size: clamp(82px, 25vw, 108px);
  position: relative;
  display: grid;
  width: var(--seal-size);
  place-items: center;
  color: #c04a2c;
  text-align: center;
}

.recruit-seal__core {
  position: relative;
  width: var(--seal-size);
  height: var(--seal-size);
}

.recruit-seal__shield {
  width: 100%;
  height: 100%;
}

.recruit-seal__target {
  position: absolute;
  inset: 23%;
  width: 54%;
  height: 54%;
}

.recruit-seal__ship {
  position: absolute;
  top: 35%;
  left: 39%;
  width: 25%;
  height: 25%;
  transform: rotate(-42deg);
}

.recruit-seal > strong,
.recruit-seal > small {
  font-family: var(--mono);
  font-size: 6px;
  line-height: 1.3;
  white-space: nowrap;
}

.recruit-seal__wing {
  position: absolute;
  top: 43%;
  width: 49px;
  height: 20px;
  border-block: 2px solid currentColor;
}

.recruit-seal__wing.is-left {
  right: calc(100% - 7px);
  transform: skewY(-10deg);
}

.recruit-seal__wing.is-right {
  left: calc(100% - 7px);
  transform: skewY(10deg);
}

.recruit-stamp {
  position: absolute;
  right: 3px;
  bottom: 0;
  padding: 5px 8px;
  border: 3px double #c04a2c;
  color: #d55a37;
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 900;
  text-align: center;
  transform: rotate(-7deg);
}

.recruit-stamp span {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  line-height: 0.8;
}

.recruit-action {
  position: relative;
  grid-area: action;
  padding: 8px;
  border: 1px solid rgba(238, 226, 200, 0.62);
  border-left: 7px solid #b64025;
  background: rgba(7, 6, 4, 0.72);
  backdrop-filter: blur(2px);
}

.recruit-action > p {
  margin: 0 0 6px;
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 900;
}

.recruit-action .button {
  width: 100%;
  text-decoration: none;
}

.join-section.is-visible .recruit-copy h2 {
  animation: recruit-ink-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.join-section.is-visible .recruit-seal {
  animation: recruit-seal-in 420ms cubic-bezier(0.2, 0.9, 0.25, 1.25) 160ms
    both;
}

.join-section.is-visible .recruit-stamp {
  animation: recruit-stamp-hit 180ms steps(2, end) 520ms both;
}

@keyframes recruit-ink-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes recruit-seal-in {
  from {
    opacity: 0;
    transform: scale(0.78) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes recruit-stamp-hit {
  from {
    opacity: 0;
    transform: scale(1.5) rotate(-12deg);
  }
  to {
    opacity: 0.92;
    transform: scale(1) rotate(-7deg);
  }
}

footer {
  position: absolute;
  z-index: 3;
  right: 47px;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  border-top: 1px solid rgba(238, 226, 200, 0.45);
  background: rgba(7, 6, 4, 0.92);
  color: rgba(238, 226, 200, 0.57);
  font-family: var(--mono);
  font-size: 6px;
}

footer button {
  display: none;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--acid);
  cursor: pointer;
}

.recruit-footer {
  border-top-color: rgba(238, 226, 200, 0.42);
  background: rgba(7, 6, 4, 0.96);
  color: rgba(238, 226, 200, 0.58);
}

.recruit-footer button {
  color: var(--acid);
}

@media (max-width: 559px) {
  :root {
    --mobile-pagination-height: calc(
      44px + min(env(safe-area-inset-bottom), 12px)
    );
  }

  .page-pagination {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--mobile-pagination-height);
    flex-direction: row;
    border-top: 1px solid var(--ink);
    border-left: 0;
    padding-bottom: min(env(safe-area-inset-bottom), 12px);
  }

  .pagination-target,
  .page-pagination > p {
    display: none;
  }

  .pagination-list {
    height: 43px;
    flex: 1;
    flex-direction: row;
  }

  .pagination-list button {
    width: auto;
    height: 43px;
    flex: 1;
    border-right: 1px solid color-mix(in srgb, var(--line) 42%, transparent);
  }

  .pagination-list button:last-child {
    border-right: 0;
  }

  .pagination-list button::after {
    bottom: 2px;
  }

  .pagination-list button span {
    font-size: 18px;
  }

  .pagination-list button.is-active span {
    font-size: 24px;
  }

  .panel-shell {
    width: 100%;
    padding-right: 16px;
    padding-bottom: calc(var(--mobile-pagination-height) + 12px);
  }

  .hero-art {
    right: 0;
    bottom: calc(var(--mobile-pagination-height) + 35px);
    background-position: 40% center;
  }

  .cut-marks {
    right: 16px;
    bottom: calc(var(--mobile-pagination-height) + 52px);
  }

  .hero-title {
    right: 13px;
    bottom: calc(var(--mobile-pagination-height) + 142px);
    left: 26%;
  }

  .hero-title h1 {
    font-size: clamp(48px, min(14.8vw, 7.2dvh), 65px);
    line-height: 0.84;
    text-align: right;
  }

  .hero-pitch {
    right: 16px;
    left: 31%;
    max-width: none;
    font-size: 12px;
  }

  .hero-actions {
    right: 16px;
    bottom: calc(var(--mobile-pagination-height) + 43px);
    left: 16px;
    justify-items: stretch;
  }

  .hero-gameplay-link {
    min-height: 28px;
    font-size: 18px;
  }

  .hero-telemetry {
    right: 0;
    bottom: var(--mobile-pagination-height);
    height: 35px;
  }

  .hero-telemetry > strong {
    min-width: 88px;
    font-size: 7px;
  }

  .recruit-backdrop,
  .recruit-poster {
    right: 0;
    bottom: calc(var(--mobile-pagination-height) + 48px);
  }

  footer {
    right: 0;
    bottom: var(--mobile-pagination-height);
  }
}

@media (max-height: 720px) and (max-width: 899px) {
  .panel-shell {
    padding-top: 67px;
    padding-bottom: 52px;
  }

  .panel-heading {
    margin-bottom: 8px;
  }

  .panel-heading h2 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .dossier-photo {
    height: clamp(188px, 29svh, 220px);
    min-height: 0;
  }

  .dossier-plate figcaption {
    display: none;
  }

  .dossier-mobile-brief {
    min-height: 68px;
    padding-block: 7px;
  }

  .dossier-mobile-brief h3 {
    margin-bottom: 3px;
    font-size: clamp(24px, 7vw, 32px);
  }

  .dossier-mobile-brief > span {
    -webkit-line-clamp: 1;
  }

  .news-grid {
    height: min(45svh, 335px);
  }

  .clan-band {
    min-height: 58px;
    margin-top: 7px;
  }

  .clan-band p strong {
    font-size: 20px;
  }

  .recruit-poster {
    gap: 5px;
    padding-block: 8px;
  }

  .recruit-symbol {
    min-height: 92px;
  }

  .recruit-seal {
    --seal-size: 76px;
  }

  .recruit-copy h2 {
    font-size: clamp(44px, 13vw, 65px);
  }

  .recruit-order p {
    display: none;
  }
}

@media (max-height: 720px) and (max-width: 559px) {
  /* Keep the whole allegiance brief above the fixed mobile pagination. */
  .faction-visual {
    min-height: min(36svh, 260px);
  }

  .faction-controls > button {
    min-height: 50px;
  }

  .faction-signal {
    min-height: 44px;
    padding-block: 6px;
  }
}

@media (min-width: 560px) {
  .brand {
    padding-inline: 24px;
    font-size: 38px;
  }

  .page-pagination {
    width: 58px;
  }

  .panel-shell {
    width: calc(100% - 58px);
  }

  .hero-art {
    right: 58px;
  }

  .hero-telemetry,
  footer {
    right: 58px;
  }

  .hero-title {
    right: 78px;
    left: 25px;
  }

  .hero-pitch {
    right: 78px;
  }

  .hero-actions {
    right: 78px;
    left: 25px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel-shell {
    padding-inline: 25px;
  }

  .mission-menu {
    right: 58px;
    left: auto;
    width: min(520px, calc(100% - 58px));
    border-left: 1px solid var(--ink);
  }

  .recruit-backdrop,
  .recruit-poster {
    right: 58px;
  }

  .clan-band {
    grid-template-columns: auto 1fr auto;
  }

  .clan-band > button {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 7px;
    padding: 0 11px;
    border: 1px solid var(--acid);
    background: transparent;
    color: var(--acid);
    font-family: var(--mono);
    font-size: 7px;
    font-weight: 900;
    cursor: pointer;
  }

  footer button {
    display: inline-flex;
  }
}

@media (min-width: 900px) {
  .site-header {
    height: 59px;
  }

  .brand {
    height: 58px;
    padding-inline: 37px;
    font-size: 43px;
  }

  .header-actions,
  .theme-button,
  .menu-button {
    height: 58px;
  }

  .theme-button {
    width: 52px;
  }

  .menu-button {
    width: 71px;
  }

  .page-pagination {
    top: 59px;
    width: 92px;
  }

  .pagination-target {
    width: 44px;
    height: 67px;
  }

  .pagination-target::before {
    top: 11px;
    left: 21px;
    height: 45px;
  }

  .pagination-target::after {
    top: 32px;
    left: 1px;
    width: 42px;
  }

  .pagination-target i {
    top: 22px;
    left: 11px;
    width: 21px;
    height: 21px;
  }

  .pagination-list {
    gap: 4px;
  }

  .pagination-list button {
    height: 54px;
  }

  .pagination-list button span {
    font-size: 29px;
  }

  .pagination-list button.is-active span {
    font-size: 38px;
  }

  .pagination-list button em {
    position: absolute;
    right: calc(100% + 12px);
    display: block;
    padding: 5px 7px;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--mono);
    font-size: 7px;
    font-style: normal;
    font-weight: 900;
    opacity: 0;
    pointer-events: none;
    text-transform: uppercase;
    transform: translateX(6px);
    transition:
      opacity 150ms ease,
      transform 150ms ease;
    white-space: nowrap;
  }

  .pagination-list button:hover em {
    opacity: 1;
    transform: translateX(0);
  }

  .page-pagination > p {
    position: absolute;
    top: 54%;
    display: block;
    margin: 0;
    font-family: var(--mono);
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: center;
    white-space: nowrap;
  }

  .mission-menu {
    inset: 59px 92px 0 auto;
    width: min(570px, calc(100% - 92px));
    padding: 42px 40px;
  }

  .mission-menu > div button {
    min-height: 68px;
  }

  .mission-menu > div strong {
    font-size: 42px;
  }

  .hero-art {
    inset: 59px 92px 49px 0;
    background-image: url("../images/hero-editorial-desktop.webp");
    background-position: center 48%;
  }

  .cut-marks {
    inset: 77px 108px 67px 17px;
  }

  .hero-title {
    top: 14%;
    right: auto;
    bottom: auto;
    left: 37.2%;
    width: min(31vw, 590px);
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .hero-title h1 {
    font-size: clamp(82px, 7.2vw, 130px);
    line-height: 0.85;
    -webkit-text-stroke-width: 1.4px;
  }

  .hero-title h1 span {
    white-space: nowrap;
  }

  .hero-pitch {
    top: auto;
    right: 20.8%;
    bottom: 162px;
    min-width: 295px;
    padding: 8px 12px;
    border-left: 4px solid var(--rust);
    background: color-mix(in srgb, var(--paper) 86%, transparent);
    font-size: 17px;
    line-height: 1.2;
  }

  .hero-actions {
    right: auto;
    bottom: 67px;
    left: 38.2%;
    display: flex;
    width: 41%;
    gap: 20px;
  }

  .hero-actions .button:first-child {
    flex: 1.18;
  }

  .hero-actions .button:last-child {
    flex: 1;
  }

  .hero-gameplay-link {
    min-width: 230px;
    align-self: stretch;
    border: 1px solid var(--ink);
    font-size: 25px;
  }

  .button {
    min-height: 60px;
    font-size: 27px;
  }

  .scroll-cue {
    position: absolute;
    z-index: 5;
    bottom: 63px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    font-family: var(--mono);
    font-size: 7px;
    font-weight: 900;
    writing-mode: vertical-rl;
    cursor: pointer;
  }

  .hero-telemetry {
    right: 92px;
    height: 49px;
  }

  .hero-telemetry > strong {
    min-width: 138px;
    font-size: 9px;
  }

  .hero-ticker-group button {
    gap: 11px;
    padding-inline: 22px;
    font-size: 8px;
  }

  .panel-shell {
    display: flex;
    width: calc(100% - 92px);
    max-width: 1670px;
    height: 100%;
    min-height: 0;
    flex-direction: column;
    margin: 0 auto 0 0;
    padding: clamp(76px, 8vh, 100px) clamp(32px, 4vw, 72px)
      clamp(22px, 4vh, 44px);
  }

  .panel-heading {
    display: grid;
    flex: 0 0 auto;
    grid-template-columns: 190px 1fr;
    align-items: end;
    gap: 22px;
    margin-bottom: clamp(17px, 2.8vh, 32px);
  }

  .panel-heading .section-code {
    margin-bottom: 4px;
  }

  .panel-heading h2 {
    font-size: clamp(70px, 6vw, 112px);
    letter-spacing: -0.035em;
    line-height: 0.88;
  }

  .panel-heading h2 span {
    display: inline;
  }

  .compact-heading h2 {
    font-size: clamp(63px, 5.2vw, 98px);
  }

  .faction-grid {
    height: auto;
    min-height: 0;
    flex: 1;
    grid-template-columns: minmax(0, 2fr) minmax(270px, 0.7fr);
    gap: 0;
  }

  .faction-visual {
    min-height: 0;
  }

  .faction-copy {
    right: 35px;
    bottom: 31px;
    left: 35px;
  }

  .faction-copy p {
    font-size: 9px;
  }

  .faction-copy h3 {
    max-width: 760px;
    font-size: clamp(64px, 5.5vw, 103px);
    line-height: 0.88;
  }

  .faction-copy > span {
    font-size: 13px;
  }

  .faction-controls {
    display: flex;
    flex-direction: column;
    border-left: 0;
  }

  .faction-controls > p {
    display: block;
    margin: 0;
    padding: 13px 17px;
    border-bottom: 1px solid var(--ink);
    color: var(--rust);
    font-family: var(--mono);
    font-size: 8px;
    font-weight: 900;
  }

  .faction-controls > button {
    min-height: 116px;
    flex: 1;
    grid-template-columns: 34px 1fr auto;
    padding: 16px 18px;
  }

  .faction-controls > button strong {
    font-size: clamp(33px, 3vw, 48px);
  }

  .faction-signal {
    min-height: 75px;
    padding-inline: 18px;
  }

  .faction-signal strong {
    font-size: 15px;
  }

  .dossier-headline strong,
  .dossier-headline span {
    display: block !important;
    white-space: nowrap;
  }

  .dossier-spread {
    min-height: 0;
    flex: 1;
    grid-template-columns: minmax(0, 1.65fr) minmax(270px, 0.75fr);
    grid-template-rows: minmax(0, 1fr) 35px;
    gap: 0 clamp(18px, 2.3vw, 38px);
    background-image: linear-gradient(
      90deg,
      transparent 49.94%,
      color-mix(in srgb, var(--line) 30%, transparent) 50%,
      transparent 50.06%
    );
  }

  .dossier-plate {
    grid-row: 1;
    grid-column: 1;
  }

  .dossier-photo {
    height: calc(100% - 29px);
    min-height: 0;
  }

  .dossier-manifesto {
    right: 24px;
    bottom: 23px;
    left: 24px;
    max-width: 660px;
    font-size: clamp(38px, 3.6vw, 66px);
    line-height: 0.88;
  }

  .dossier-stamp {
    display: block;
  }

  .dossier-marker {
    width: 39px;
    height: 39px;
    font-size: 10px;
  }

  .dossier-notes {
    grid-row: 1;
    grid-column: 2;
    align-content: stretch;
    grid-template-columns: 1fr;
    border-block: 0;
  }

  .dossier-note {
    display: grid;
    min-height: 0;
    grid-template-columns: 43px 1fr auto;
    align-content: center;
    place-items: initial;
    gap: 4px 10px;
    padding: clamp(10px, 1.2vw, 18px) 0;
    border-top: 2px solid var(--ink);
    border-right: 0;
    color: var(--ink);
    text-align: left;
  }

  .dossier-note:last-child {
    border-bottom: 2px solid var(--ink);
  }

  .dossier-note:hover,
  .dossier-note.is-active {
    background: transparent;
    color: var(--ink);
    box-shadow: none;
  }

  .dossier-note.is-active {
    border-top-color: var(--rust);
  }

  .dossier-note > span {
    grid-row: 1 / 4;
    align-self: start;
    color: color-mix(in srgb, var(--ink) 26%, transparent);
    font-size: clamp(42px, 4vw, 66px);
  }

  .dossier-note.is-active > span {
    color: var(--rust);
  }

  .dossier-note > p,
  .dossier-note > strong,
  .dossier-note > em,
  .dossier-note > svg {
    display: block;
  }

  .dossier-note > p {
    margin: 0;
    color: var(--rust);
    font-family: var(--mono);
    font-size: 7px;
    font-weight: 900;
  }

  .dossier-note > strong {
    max-width: 390px;
    font-family: var(--display);
    font-size: clamp(25px, 2.05vw, 38px);
    line-height: 0.9;
  }

  .dossier-note > em {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    font-size: 10px;
    font-style: normal;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .dossier-note > svg {
    grid-row: 1 / 4;
    grid-column: 3;
    align-self: center;
    opacity: 0;
  }

  .dossier-note.is-active > svg {
    color: var(--rust);
    opacity: 1;
  }

  .dossier-mobile-brief {
    display: none;
  }

  .dossier-cycle {
    display: flex;
    grid-row: 2;
    grid-column: 1 / 3;
  }

  .armory-grid {
    height: auto;
    min-height: 0;
    flex: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 30px);
  }

  .role-console {
    grid-template-columns: 44% 56%;
    grid-template-rows: 64px 1fr;
  }

  .role-tabs button {
    font-size: 9px;
  }

  .role-copy {
    padding: clamp(18px, 2vw, 31px);
  }

  .role-copy p {
    font-size: 8px;
  }

  .role-copy h3,
  .module-display h3 {
    font-size: clamp(40px, 3.5vw, 66px);
    line-height: 0.89;
  }

  .role-copy > span,
  .module-display > span {
    font-size: 12px;
    line-height: 1.5;
  }

  .module-console {
    grid-template-columns: 86px 1fr 39%;
  }

  .module-tabs button {
    flex-direction: column;
    gap: 5px;
    font-size: 7px;
  }

  .module-tabs button span {
    display: block;
  }

  .module-display {
    padding: clamp(18px, 2vw, 30px);
  }

  .module-display > div p {
    font-size: 8px;
  }

  .module-display > div strong {
    font-size: 78px;
  }

  .event-console {
    height: auto;
    min-height: 0;
    flex: 1;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
    gap: 0;
  }

  .event-stage {
    min-height: 0;
  }

  .event-copy {
    right: 40px;
    bottom: 44px;
    left: 40px;
  }

  .event-copy p {
    font-size: 9px;
  }

  .event-copy h3 {
    font-size: clamp(80px, 7vw, 128px);
    line-height: 0.87;
  }

  .event-copy > span {
    font-size: 12px;
  }

  .event-arrows {
    right: 19px;
    bottom: 18px;
    height: 46px;
  }

  .event-arrows button {
    width: 48px;
    height: 45px;
  }

  .event-arrows span {
    height: 45px;
    min-width: 58px;
  }

  .event-index {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .event-index button {
    min-height: 0;
    grid-template-columns: 31px 1fr auto;
    padding: 12px 15px;
    border-right: 0;
    border-bottom: 1px solid var(--line) !important;
  }

  .event-index button:last-child {
    border-bottom: 0 !important;
  }

  .event-index button p {
    font-size: 8px;
  }

  .event-index button p small {
    margin-top: 4px;
    font-size: 7px;
  }

  .event-index button strong {
    font-size: clamp(26px, 2.3vw, 39px);
  }

  .news-grid {
    height: auto;
    min-height: 0;
    flex: 1;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.78fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 1.5vw, 24px);
  }

  .news-card--1 {
    grid-row: 1 / 3;
    grid-column: 1;
  }

  .news-card--2,
  .news-card--3 {
    grid-column: 2;
  }

  .news-card {
    grid-template-columns: minmax(150px, 43%) 1fr;
  }

  .news-card--1 .news-copy {
    right: 27px;
    bottom: 23px;
    left: 27px;
  }

  .news-copy {
    padding: clamp(14px, 1.5vw, 23px);
  }

  .news-copy > p {
    font-size: 8px;
  }

  .news-card h3 {
    font-size: clamp(30px, 2.45vw, 46px);
    line-height: 0.9;
  }

  .news-card--1 h3 {
    max-width: 720px;
    font-size: clamp(52px, 5vw, 88px);
    line-height: 0.88;
  }

  .news-card > i {
    font-size: 62px;
  }

  .news-read {
    margin-top: 12px;
    font-size: 8px;
  }

  .clan-band {
    min-height: 76px;
    margin-top: clamp(12px, 2vh, 22px);
    padding: 11px 18px;
  }

  .clan-band p {
    font-size: 7px;
  }

  .clan-band p strong {
    font-size: 28px;
  }

  .recruit-backdrop {
    inset: 59px 92px 54px 0;
    background-image:
      linear-gradient(
        90deg,
        rgba(7, 6, 4, 0.95) 0%,
        rgba(10, 6, 4, 0.76) 33%,
        rgba(67, 18, 10, 0.66) 66%,
        rgba(112, 31, 15, 0.84) 100%
      ),
      linear-gradient(
        180deg,
        rgba(7, 6, 4, 0.16) 0%,
        rgba(7, 6, 4, 0.62) 100%
      ),
      url("../images/hero-editorial-desktop.webp");
    background-position: center 48%;
  }

  .recruit-poster {
    inset: 59px 92px 54px 0;
    grid-template-areas:
      "kicker kicker"
      "copy symbol"
      "copy action";
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.62fr);
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: clamp(15px, 2.3vw, 42px);
    padding: clamp(28px, 4.2vh, 52px) clamp(38px, 5vw, 90px)
      clamp(24px, 3.5vh, 44px);
  }

  .recruit-platform {
    font-size: 10px;
  }

  .recruit-copy h2 {
    max-width: 1040px;
    font-size: clamp(88px, 8.6vw, 158px);
  }

  .recruit-order {
    margin-top: clamp(14px, 2vh, 24px);
    padding-top: clamp(12px, 1.6vh, 19px);
  }

  .recruit-order strong {
    font-size: clamp(34px, 3vw, 56px);
  }

  .recruit-order p {
    margin-top: 10px;
    font-size: 13px;
  }

  .recruit-symbol {
    min-height: 0;
  }

  .recruit-seal {
    --seal-size: clamp(185px, 15vw, 270px);
  }

  .recruit-seal__wing {
    width: clamp(70px, 6vw, 115px);
  }

  .recruit-seal > strong,
  .recruit-seal > small {
    font-size: 7px;
  }

  .recruit-stamp {
    right: 1%;
    bottom: 6%;
    padding: 8px 13px;
    font-size: 8px;
  }

  .recruit-stamp span {
    font-size: 26px;
  }

  .recruit-action {
    padding: 13px;
  }

  .recruit-action > p {
    margin-bottom: 9px;
    font-size: 7px;
  }

  .recruit-action .button {
    min-height: 58px;
  }

  footer {
    right: 92px;
    min-height: 54px;
    padding-inline: 28px;
    font-size: 7px;
  }
}

@media (min-width: 1400px) {
  .panel-shell {
    padding-inline: 70px;
  }

  .panel-heading {
    grid-template-columns: 210px 1fr;
  }

  .hero-actions {
    left: 38.3%;
    width: 40.9%;
  }

  .hero-pitch {
    right: 20.8%;
  }
}

@media (max-height: 820px) and (min-width: 900px) {
  .panel-shell {
    padding-top: 70px;
    padding-bottom: 14px;
  }

  .panel-heading {
    margin-bottom: 10px;
  }

  .panel-heading h2 {
    font-size: clamp(50px, 4.7vw, 74px);
  }

  .compact-heading h2 {
    font-size: clamp(48px, 4.35vw, 68px);
  }

  .dossier-note {
    padding-block: 7px;
  }

  .dossier-note > strong {
    font-size: clamp(23px, 1.9vw, 31px);
  }

  .dossier-note > em {
    -webkit-line-clamp: 1;
  }

  .clan-band {
    min-height: 62px;
    margin-top: 9px;
  }

  .recruit-poster {
    gap: 13px 32px;
    padding-block: 18px;
  }

  .recruit-copy h2 {
    font-size: clamp(75px, 7.7vw, 118px);
  }

  .recruit-order {
    margin-top: 10px;
    padding-top: 8px;
  }

  .recruit-order strong {
    font-size: clamp(30px, 2.6vw, 42px);
  }

  .recruit-seal {
    --seal-size: clamp(150px, 13vw, 205px);
  }

  .hero-pitch {
    bottom: 136px;
  }

  .hero-actions {
    bottom: 59px;
  }
}

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

  .hero-ticker-window {
    overflow-x: auto;
  }

  .hero-ticker-track {
    animation: none !important;
  }

  .hero-ticker-group[aria-hidden="true"] {
    display: none;
  }
}

/* Adaptation autonome HTML/CSS/JS — aucun style runtime requis. */
.mission-menu {
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.mission-menu[aria-hidden="true"] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition:
    opacity 160ms ease,
    transform 220ms ease,
    visibility 0s linear 220ms;
}

.mission-menu[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.theme-button svg,
.menu-button svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.content-status {
  width: 100%;
  margin: auto;
  padding: 24px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.content-status.is-error {
  color: var(--rust);
}

.hero-ticker-track > .content-status {
  min-width: 260px;
  color: inherit;
}

.event-console > .content-status,
.news-grid > .content-status {
  grid-column: 1 / -1;
  align-self: center;
}

.recruit-seal__core > span {
  position: absolute;
  display: grid;
  place-items: center;
  color: currentColor;
  font-family: var(--mono);
  line-height: 1;
}

.recruit-seal__core .recruit-seal__shield {
  inset: 0;
  border: 3px solid currentColor;
  border-radius: 25% 25% 48% 48%;
  font-size: 0;
}

.recruit-seal__core .recruit-seal__target {
  inset: 23%;
  font-size: calc(var(--seal-size) * 0.45);
}

.recruit-seal__core .recruit-seal__ship {
  top: 37%;
  left: 39%;
  transform: none;
  font-size: calc(var(--seal-size) * 0.18);
}

/* Lisibilité et iconographie stable sur tous les systèmes */
.ui-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.ui-icon--signal {
  width: 25px;
  height: 25px;
}

.ui-icon--diamond {
  width: 27px;
  height: 27px;
}

.role-copy-icon[hidden] {
  display: none;
}

.recruit-seal__graphic {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.recruit-seal__graphic .seal-ship {
  fill: currentColor;
  stroke-width: 3;
}

@media (min-width: 900px) {
  /* Échelle typographique minimale desktop */
  .section-code span,
  .section-code p {
    font-size: 10px;
    line-height: 1.2;
  }

  .section-code i {
    min-width: 34px;
  }

  .page-pagination > p,
  .pagination-list button em,
  .scroll-cue {
    font-size: 9px;
  }

  .panel-heading h2 {
    line-height: 0.91;
  }

  .hero-title {
    width: min(34vw, 630px);
  }

  .hero-title h1 {
    line-height: 0.89;
  }

  .hero-pitch > span {
    font-size: 10px;
    line-height: 1.2;
  }

  .hero-telemetry > strong,
  .hero-ticker-group button {
    font-size: 11px;
  }

  .hero-ticker-group button {
    gap: 13px;
  }

  /* Slide 2 */
  .faction-copy p,
  .faction-controls > p {
    font-size: 11px;
    line-height: 1.3;
  }

  .faction-copy h3 {
    line-height: 0.92;
  }

  .faction-copy > span {
    max-width: 760px;
    font-size: 15px;
    line-height: 1.45;
  }

  .faction-controls > button span {
    font-size: 11px;
  }

  .faction-controls > button strong {
    line-height: 0.9;
  }

  .faction-signal {
    gap: 13px;
  }

  .faction-signal span {
    font-size: 10px;
    line-height: 1.2;
  }

  .faction-signal strong {
    font-size: 16px;
    line-height: 1.1;
  }

  /* Slide 3 — composition de dossier éditorial */
  .dossier-spread {
    grid-template-columns: minmax(0, 1.55fr) minmax(420px, 0.9fr);
    column-gap: clamp(24px, 2.8vw, 46px);
  }

  .dossier-plate figcaption,
  .dossier-cycle {
    font-size: 10px;
  }

  .dossier-note {
    grid-template-columns: 54px minmax(0, 1fr) 26px;
    grid-template-rows: auto auto auto;
    align-content: center;
    gap: 3px 14px;
    padding: clamp(14px, 1.65vh, 21px) 0;
  }

  .dossier-note > span {
    grid-row: 1 / 4;
    grid-column: 1;
    align-self: start;
    font-size: clamp(48px, 4vw, 68px);
    line-height: 0.86;
  }

  .dossier-note > p {
    grid-row: 1;
    grid-column: 2;
    font-size: 10px;
    line-height: 1.2;
  }

  .dossier-note > strong {
    grid-row: 2;
    grid-column: 2;
    max-width: none;
    font-size: clamp(29px, 2.3vw, 42px);
    line-height: 0.92;
  }

  .dossier-note > em {
    grid-row: 3;
    grid-column: 2;
    max-width: 100%;
    color: color-mix(in srgb, var(--ink) 68%, transparent);
    font-family: var(--editorial);
    font-size: 12px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
  }

  .dossier-note > b {
    display: grid;
    grid-row: 1 / 4;
    grid-column: 3;
    align-self: center;
    place-items: center;
    color: var(--rust);
    font-family: var(--display);
    font-size: 28px;
    font-weight: 400;
  }

  /* Slide 4 — armurerie lisible, sans caractères Unicode */
  .armory-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  }

  .role-console {
    grid-template-columns: 43% 57%;
    grid-template-rows: 74px minmax(0, 1fr);
  }

  .role-tabs button {
    gap: 9px;
    font-size: 12px;
  }

  .role-tabs .ui-icon {
    width: 21px;
    height: 21px;
  }

  .role-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: clamp(25px, 2.6vw, 42px);
  }

  .role-copy p {
    gap: 9px;
    margin-bottom: 12px;
    font-size: 11px;
  }

  .role-copy-icon {
    width: 20px;
    height: 20px;
  }

  .role-copy h3,
  .module-display h3 {
    margin-bottom: 13px;
    font-size: clamp(44px, 3.7vw, 68px);
    line-height: 0.92;
  }

  .role-copy > span,
  .module-display > span {
    color: rgba(238, 226, 200, 0.78);
    font-size: 15px;
    line-height: 1.45;
  }

  .module-console {
    grid-template-columns: 112px minmax(230px, 1fr) minmax(180px, 36%);
  }

  .module-tabs button {
    min-height: 82px;
    gap: 8px;
    padding: 8px 6px;
    font-size: 12px;
    line-height: 1.1;
  }

  .module-tabs .ui-icon {
    width: 23px;
    height: 23px;
  }

  .module-display {
    padding: clamp(24px, 2.5vw, 40px);
  }

  .module-display > div {
    margin-bottom: 8px;
  }

  .module-display > div p {
    font-size: 11px;
  }

  .module-display > div strong {
    font-size: clamp(76px, 6vw, 102px);
    line-height: 0.78;
  }

  .module-display > i {
    height: 6px;
    margin-top: 18px;
  }

  .module-art > span {
    right: 9px;
    bottom: 9px;
    padding: 6px 7px;
    font-size: 10px;
  }

  /* Slide 5 */
  .event-index button {
    grid-template-columns:
      34px minmax(120px, 0.72fr) minmax(0, 1.28fr)
      30px;
    grid-template-rows: 1fr;
    align-items: center;
    column-gap: clamp(10px, 1vw, 18px);
  }

  .event-index button > span {
    grid-row: 1;
    grid-column: 1;
    font-size: 11px;
  }

  .event-copy p,
  .event-index button p {
    font-size: 11px;
    line-height: 1.25;
  }

  .event-index button p {
    grid-row: 1;
    grid-column: 2;
    overflow: visible;
    white-space: normal;
  }

  .event-copy > span {
    max-width: 760px;
    font-size: 15px;
    line-height: 1.45;
  }

  .event-index button p small {
    font-size: 10px;
    line-height: 1.2;
  }

  .event-index button strong {
    grid-row: 1;
    grid-column: 3;
    white-space: normal;
  }

  .event-index__arrow {
    grid-row: 1;
    grid-column: 4;
    justify-self: center;
    font-size: 24px;
  }

  .event-arrows span {
    font-size: 11px;
  }

  /* Slide 6 */
  .news-image > span,
  .news-image > b,
  .news-copy > p {
    font-size: 10px;
  }

  .news-copy > span {
    max-width: 44ch;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
  }

  .news-read,
  .clan-band > button {
    font-size: 11px;
  }

  .clan-band {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
  }

  .clan-band p {
    font-size: 10px;
    line-height: 1.35;
  }

  .clan-band p strong {
    line-height: 0.92;
  }

  .clan-band > button {
    display: block;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid var(--acid);
    color: var(--acid);
    font-family: var(--mono);
    font-weight: 900;
  }

  /* Slide 7 */
  .recruit-kicker,
  .recruit-platform,
  .recruit-seal > strong,
  .recruit-seal > small,
  .recruit-action > p,
  .recruit-footer {
    font-size: 10px;
  }

  .recruit-copy h2 {
    line-height: 0.9;
  }

  .recruit-order strong {
    line-height: 0.92;
  }

  .recruit-order p {
    max-width: 560px;
    font-size: 15px;
    line-height: 1.4;
  }

  .recruit-seal__core {
    display: grid;
    place-items: center;
  }

  .recruit-seal__graphic {
    width: 95%;
    height: 95%;
  }

  .recruit-footer button {
    font-size: 10px;
  }
}

/* Grands écrans et navigateurs dézoomés : exploiter toute la largeur utile */
@media (min-width: 1800px) {
  .panel-shell {
    width: calc(100% - 92px);
    max-width: none;
    padding-top: clamp(82px, 8vh, 112px);
    padding-right: clamp(76px, 4.5vw, 126px);
    padding-bottom: clamp(28px, 4vh, 52px);
    padding-left: clamp(76px, 4.5vw, 126px);
  }

  .panel-heading {
    grid-template-columns: clamp(210px, 12vw, 290px) minmax(0, 1fr);
    gap: clamp(24px, 2vw, 42px);
    margin-bottom: clamp(24px, 3vh, 38px);
  }

  .panel-heading h2 {
    max-width: 1320px;
    font-size: clamp(94px, 5.25vw, 132px);
  }

  .compact-heading h2 {
    font-size: clamp(86px, 4.7vw, 118px);
  }

  .section-code span,
  .section-code p {
    font-size: 11px;
  }

  /* Slide 2 */
  .faction-grid {
    grid-template-columns: minmax(0, 1fr) clamp(430px, 23vw, 590px);
  }

  .faction-copy {
    right: clamp(42px, 3vw, 70px);
    bottom: clamp(38px, 4vh, 68px);
    left: clamp(42px, 3vw, 70px);
  }

  .faction-copy h3 {
    max-width: 1060px;
    font-size: clamp(82px, 5.4vw, 132px);
  }

  .faction-copy > span {
    max-width: 920px;
    font-size: 17px;
  }

  .faction-controls > button strong {
    font-size: clamp(42px, 2.5vw, 60px);
  }

  /* Slide 3 */
  .dossier-spread {
    grid-template-columns: minmax(0, 1.6fr) minmax(560px, 0.82fr);
    column-gap: clamp(38px, 3vw, 68px);
  }

  .dossier-manifesto {
    max-width: 790px;
    font-size: clamp(54px, 3.6vw, 78px);
  }

  .dossier-note {
    grid-template-columns: 68px minmax(0, 1fr) 32px;
    gap: 5px 18px;
    padding-block: clamp(18px, 2vh, 28px);
  }

  .dossier-note > span {
    font-size: clamp(60px, 3.4vw, 80px);
  }

  .dossier-note > p {
    font-size: 11px;
  }

  .dossier-note > strong {
    font-size: clamp(36px, 2.25vw, 50px);
  }

  .dossier-note > em {
    font-size: 14px;
  }

  /* Slide 4 */
  .armory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(26px, 2.2vw, 48px);
  }

  .role-console {
    grid-template-columns: 46% 54%;
    grid-template-rows: 82px minmax(0, 1fr);
  }

  .role-tabs button {
    font-size: 13px;
  }

  .role-copy {
    padding: clamp(34px, 3vw, 58px);
  }

  .role-copy h3,
  .module-display h3 {
    font-size: clamp(56px, 3.5vw, 78px);
  }

  .role-copy > span,
  .module-display > span {
    font-size: 17px;
  }

  .module-console {
    grid-template-columns: 132px minmax(300px, 1fr) minmax(250px, 38%);
  }

  .module-tabs button {
    min-height: 92px;
    font-size: 13px;
  }

  .module-display {
    padding: clamp(34px, 3vw, 58px);
  }

  .module-display > div strong {
    font-size: clamp(92px, 5vw, 120px);
  }

  /* Slide 5 */
  .event-console {
    grid-template-columns: minmax(0, 1fr) clamp(430px, 24vw, 610px);
  }

  .event-copy {
    right: clamp(48px, 3.5vw, 82px);
    bottom: clamp(48px, 5vh, 82px);
    left: clamp(48px, 3.5vw, 82px);
  }

  .event-copy h3 {
    font-size: clamp(104px, 6.6vw, 154px);
  }

  .event-copy > span {
    max-width: 980px;
    font-size: 17px;
  }

  .event-index button {
    padding-inline: clamp(20px, 1.5vw, 32px);
  }

  .event-index button > span {
    font-size: 13px;
  }

  .event-index button p {
    font-size: 13px;
    line-height: 1.35;
  }

  .event-index button p small {
    margin-top: 5px;
    font-size: 12px;
  }

  .event-index button strong {
    font-size: clamp(34px, 2.15vw, 48px);
  }

  .event-index__arrow {
    font-size: 28px;
  }

  /* Slide 6 */
  .news-grid {
    grid-template-columns: minmax(0, 1.52fr) minmax(480px, 0.8fr);
    gap: clamp(20px, 1.6vw, 34px);
  }

  .news-card--1 h3 {
    max-width: 950px;
    font-size: clamp(70px, 4.8vw, 106px);
  }

  .news-card h3 {
    font-size: clamp(38px, 2.25vw, 52px);
  }

  .news-copy > span {
    max-width: 52ch;
    font-size: 12px;
  }

  .clan-band p strong {
    font-size: 34px;
  }
}

/* Ultrawide peu haut : conserver la respiration sans dépasser le viewport. */
@media (min-width: 1800px) and (max-height: 820px) {
  .panel-shell {
    padding-top: 70px;
    padding-bottom: 14px;
  }

  .panel-heading {
    margin-bottom: 12px;
  }

  .panel-heading h2 {
    font-size: clamp(68px, 3.9vw, 92px);
  }

  .compact-heading h2 {
    font-size: clamp(64px, 3.6vw, 86px);
  }

  .dossier-note {
    padding-block: 10px;
  }

  .dossier-note > strong {
    font-size: clamp(30px, 1.8vw, 40px);
  }

  .role-copy h3,
  .module-display h3 {
    font-size: clamp(44px, 2.8vw, 60px);
  }

  .event-copy h3 {
    font-size: clamp(80px, 5.4vw, 118px);
  }
}
