:root {
  color-scheme: dark;
  --bg: #050607;
  --bg-2: #090d10;
  --panel: rgba(9, 14, 17, 0.88);
  --panel-2: rgba(13, 20, 24, 0.96);
  --line: rgba(208, 165, 79, 0.28);
  --line-soft: rgba(255, 255, 255, 0.11);
  --gold: #d8a84f;
  --gold-2: #f1c875;
  --text: #f4f0e8;
  --muted: #a8abb0;
  --muted-2: #70767d;
  --danger: #cf5f5f;
  --success: #67bc7a;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.46);
  --max: 1560px;
  --container-gutter: clamp(24px, 2.8vw, 64px);
  --header: 72px;
  --font-display: "Bahnschrift Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  --font-body: "Segoe UI", Arial, sans-serif;
  --card-hover-zoom-scale: 1.06;
  --card-hover-zoom-duration: 350ms;
  --card-image-opacity: 1;
  --hud-primary: #8f7a52;
  --hud-secondary: #4a7178;
  --hud-line-intensity: 0.18;
  --hud-frame-opacity: 0.24;
  --hud-line-percent: 18%;
  --hud-frame-percent: 24%;
  --hud-corner-cut: 6px;
  --hud-corner-size: 18px;
  --hud-corner-radius: 8px;
  --ui-card-radius: 8px;
  --ui-button-radius: 6px;
  --section-copy-padding-x: 34px;
}

@property --hud-scan-y {
  syntax: "<length>";
  inherits: true;
  initial-value: -120vh;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(42, 55, 61, 0.4), transparent 35rem),
    linear-gradient(180deg, #020304 0%, #071013 55%, #020303 100%);
  font-family: var(--font-body);
  line-height: 1.62;
}

body.admin-view {
  background: #040606;
}

.hud-scan-effect {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hud-scan-height, 16vh);
  pointer-events: none;
  z-index: 12;
  opacity: var(--hud-scan-opacity, 0.12);
  mix-blend-mode: var(--hud-scan-blend-mode, screen);
  contain: layout;
  overflow: visible;
  isolation: isolate;
  background: none;
}

.hud-scan-effect::before,
.hud-scan-effect::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.hud-scan-effect::before {
  z-index: 0;
  top: 0;
  height: 100vh;
  opacity: var(--hud-scan-grid-opacity, 0.55);
  background-image:
    repeating-linear-gradient(90deg,
      color-mix(in srgb, var(--hud-scan-grid-color, var(--hud-scan-color, #d8a84f)) 42%, transparent) 0 var(--hud-scan-grid-line-width, 1px),
      transparent var(--hud-scan-grid-line-width, 1px) var(--hud-scan-grid-size, 42px)),
    repeating-linear-gradient(180deg,
      color-mix(in srgb, var(--hud-scan-grid-color, var(--hud-scan-color, #d8a84f)) 34%, transparent) 0 var(--hud-scan-grid-line-width, 1px),
      transparent var(--hud-scan-grid-line-width, 1px) var(--hud-scan-grid-size, 42px));
  background-position:
    0 0,
    0 0;
  background-size: var(--hud-scan-grid-size, 42px) var(--hud-scan-grid-size, 42px);
  -webkit-mask-image: linear-gradient(180deg,
    transparent 0,
    transparent calc(var(--hud-scan-y, -120vh) + var(--hud-scan-grid-offset-y, 0px) - var(--hud-scan-grid-trail-height, 28vh)),
    rgba(0, 0, 0, 0.18) calc(var(--hud-scan-y, -120vh) + var(--hud-scan-grid-offset-y, 0px) - var(--hud-scan-grid-trail-height, 28vh) + var(--hud-scan-grid-fade-distance, 14vh)),
    #000 calc(var(--hud-scan-y, -120vh) + var(--hud-scan-grid-offset-y, 0px) + var(--hud-scan-height, 16vh)),
    transparent calc(var(--hud-scan-y, -120vh) + var(--hud-scan-grid-offset-y, 0px) + var(--hud-scan-height, 16vh) + 1px),
    transparent 100%),
    linear-gradient(90deg,
    rgba(0, 0, 0, var(--hud-scan-grid-side-mask-opacity, 0.7)) 0%,
    rgba(0, 0, 0, var(--hud-scan-grid-side-mask-opacity, 0.7)) var(--hud-scan-grid-side-fade-left-start, 14.1%),
    rgba(0, 0, 0, var(--hud-scan-grid-center-mask-opacity, 0.28)) var(--hud-scan-grid-center-zone-start, 27%),
    rgba(0, 0, 0, var(--hud-scan-grid-center-mask-opacity, 0.28)) var(--hud-scan-grid-center-zone-end, 73%),
    rgba(0, 0, 0, var(--hud-scan-grid-side-mask-opacity, 0.7)) var(--hud-scan-grid-side-fade-right-end, 85.9%),
    rgba(0, 0, 0, var(--hud-scan-grid-side-mask-opacity, 0.7)) 100%);
  mask-image: linear-gradient(180deg,
    transparent 0,
    transparent calc(var(--hud-scan-y, -120vh) + var(--hud-scan-grid-offset-y, 0px) - var(--hud-scan-grid-trail-height, 28vh)),
    rgba(0, 0, 0, 0.18) calc(var(--hud-scan-y, -120vh) + var(--hud-scan-grid-offset-y, 0px) - var(--hud-scan-grid-trail-height, 28vh) + var(--hud-scan-grid-fade-distance, 14vh)),
    #000 calc(var(--hud-scan-y, -120vh) + var(--hud-scan-grid-offset-y, 0px) + var(--hud-scan-height, 16vh)),
    transparent calc(var(--hud-scan-y, -120vh) + var(--hud-scan-grid-offset-y, 0px) + var(--hud-scan-height, 16vh) + 1px),
    transparent 100%),
    linear-gradient(90deg,
    rgba(0, 0, 0, var(--hud-scan-grid-side-mask-opacity, 0.7)) 0%,
    rgba(0, 0, 0, var(--hud-scan-grid-side-mask-opacity, 0.7)) var(--hud-scan-grid-side-fade-left-start, 14.1%),
    rgba(0, 0, 0, var(--hud-scan-grid-center-mask-opacity, 0.28)) var(--hud-scan-grid-center-zone-start, 27%),
    rgba(0, 0, 0, var(--hud-scan-grid-center-mask-opacity, 0.28)) var(--hud-scan-grid-center-zone-end, 73%),
    rgba(0, 0, 0, var(--hud-scan-grid-side-mask-opacity, 0.7)) var(--hud-scan-grid-side-fade-right-end, 85.9%),
    rgba(0, 0, 0, var(--hud-scan-grid-side-mask-opacity, 0.7)) 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hud-scan-effect::after {
  z-index: 1;
  top: 0;
  height: var(--hud-scan-height, 16vh);
  transform: translate3d(0, var(--hud-scan-y, calc(0px - var(--hud-scan-travel-height, var(--hud-scan-height, 16vh)) - 2rem)), 0);
  will-change: transform;
  background:
    linear-gradient(90deg, transparent 0%, color-mix(in srgb, var(--hud-scan-color, #d8a84f) 12%, transparent) 48%, color-mix(in srgb, #ffffff 8%, transparent) 50%, color-mix(in srgb, var(--hud-scan-color, #d8a84f) 12%, transparent) 52%, transparent 100%),
    linear-gradient(180deg,
      transparent 0%,
      color-mix(in srgb, var(--hud-scan-color, #d8a84f) 24%, transparent) var(--hud-scan-edge-start, 17%),
      color-mix(in srgb, #ffffff var(--hud-scan-center-percent, 38%), var(--hud-scan-color, #d8a84f)) 50%,
      color-mix(in srgb, var(--hud-scan-color, #d8a84f) 24%, transparent) var(--hud-scan-edge-end, 83%),
      transparent 100%);
  -webkit-mask-image: linear-gradient(90deg,
    #000 0%,
    #000 var(--hud-scan-center-fade-left-start, 10%),
    rgba(0, 0, 0, var(--hud-scan-center-mask-opacity, 0.2)) var(--hud-scan-center-zone-start, 27.5%),
    rgba(0, 0, 0, var(--hud-scan-center-mask-opacity, 0.2)) var(--hud-scan-center-zone-end, 72.5%),
    #000 var(--hud-scan-center-fade-right-end, 90%),
    #000 100%);
  mask-image: linear-gradient(90deg,
    #000 0%,
    #000 var(--hud-scan-center-fade-left-start, 10%),
    rgba(0, 0, 0, var(--hud-scan-center-mask-opacity, 0.2)) var(--hud-scan-center-zone-start, 27.5%),
    rgba(0, 0, 0, var(--hud-scan-center-mask-opacity, 0.2)) var(--hud-scan-center-zone-end, 72.5%),
    #000 var(--hud-scan-center-fade-right-end, 90%),
    #000 100%);
}

.hud-scan-effect[data-direction="up"]::before {
  -webkit-mask-image: linear-gradient(180deg,
    transparent 0,
    transparent calc(var(--hud-scan-y, 120vh) + var(--hud-scan-grid-offset-y, 0px) - 1px),
    #000 calc(var(--hud-scan-y, 120vh) + var(--hud-scan-grid-offset-y, 0px)),
    rgba(0, 0, 0, 0.18) calc(var(--hud-scan-y, 120vh) + var(--hud-scan-grid-offset-y, 0px) + var(--hud-scan-height, 16vh) + var(--hud-scan-grid-trail-height, 28vh) - var(--hud-scan-grid-fade-distance, 14vh)),
    transparent calc(var(--hud-scan-y, 120vh) + var(--hud-scan-grid-offset-y, 0px) + var(--hud-scan-height, 16vh) + var(--hud-scan-grid-trail-height, 28vh)),
    transparent 100%),
    linear-gradient(90deg,
    rgba(0, 0, 0, var(--hud-scan-grid-side-mask-opacity, 0.7)) 0%,
    rgba(0, 0, 0, var(--hud-scan-grid-side-mask-opacity, 0.7)) var(--hud-scan-grid-side-fade-left-start, 14.1%),
    rgba(0, 0, 0, var(--hud-scan-grid-center-mask-opacity, 0.28)) var(--hud-scan-grid-center-zone-start, 27%),
    rgba(0, 0, 0, var(--hud-scan-grid-center-mask-opacity, 0.28)) var(--hud-scan-grid-center-zone-end, 73%),
    rgba(0, 0, 0, var(--hud-scan-grid-side-mask-opacity, 0.7)) var(--hud-scan-grid-side-fade-right-end, 85.9%),
    rgba(0, 0, 0, var(--hud-scan-grid-side-mask-opacity, 0.7)) 100%);
  mask-image: linear-gradient(180deg,
    transparent 0,
    transparent calc(var(--hud-scan-y, 120vh) + var(--hud-scan-grid-offset-y, 0px) - 1px),
    #000 calc(var(--hud-scan-y, 120vh) + var(--hud-scan-grid-offset-y, 0px)),
    rgba(0, 0, 0, 0.18) calc(var(--hud-scan-y, 120vh) + var(--hud-scan-grid-offset-y, 0px) + var(--hud-scan-height, 16vh) + var(--hud-scan-grid-trail-height, 28vh) - var(--hud-scan-grid-fade-distance, 14vh)),
    transparent calc(var(--hud-scan-y, 120vh) + var(--hud-scan-grid-offset-y, 0px) + var(--hud-scan-height, 16vh) + var(--hud-scan-grid-trail-height, 28vh)),
    transparent 100%),
    linear-gradient(90deg,
    rgba(0, 0, 0, var(--hud-scan-grid-side-mask-opacity, 0.7)) 0%,
    rgba(0, 0, 0, var(--hud-scan-grid-side-mask-opacity, 0.7)) var(--hud-scan-grid-side-fade-left-start, 14.1%),
    rgba(0, 0, 0, var(--hud-scan-grid-center-mask-opacity, 0.28)) var(--hud-scan-grid-center-zone-start, 27%),
    rgba(0, 0, 0, var(--hud-scan-grid-center-mask-opacity, 0.28)) var(--hud-scan-grid-center-zone-end, 73%),
    rgba(0, 0, 0, var(--hud-scan-grid-side-mask-opacity, 0.7)) var(--hud-scan-grid-side-fade-right-end, 85.9%),
    rgba(0, 0, 0, var(--hud-scan-grid-side-mask-opacity, 0.7)) 100%);
}

.hud-scan-effect[data-grid="off"]::before {
  display: none;
}

.hud-scan-effect[data-width="content"] {
  left: max(16px, calc((100vw - var(--max)) / 2));
  right: max(16px, calc((100vw - var(--max)) / 2));
}

body.admin-view .hud-scan-effect,
body.maintenance-view .hud-scan-effect {
  display: none !important;
}

.hud-side-panels-effect {
  --hud-side-content-width: min(var(--max), calc(100vw - 48px));
  --hud-side-free-space: max(0px, calc((100vw - var(--hud-side-content-width)) / 2 - var(--hud-side-content-gap, 20px) - var(--hud-side-edge-offset, 0px)));
  --hud-side-responsive-width: min(var(--hud-side-panel-width, 220px), 45vw, var(--hud-side-free-space));
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
  contain: layout paint;
}

.hud-side-panel {
  position: absolute;
  top: calc((100vh - var(--hud-side-panel-height, 100vh)) / 2);
  bottom: auto;
  height: var(--hud-side-panel-height, 100vh);
  width: var(--hud-side-responsive-width);
  overflow: hidden;
  opacity: 1;
  filter:
    var(--hud-side-glow-near-filter, drop-shadow(0 0 var(--hud-side-glow-near-radius, 3px) rgba(248, 213, 139, 0.16)))
    var(--hud-side-glow-wide-filter, drop-shadow(0 0 var(--hud-side-glow-wide-radius, 10px) rgba(248, 213, 139, 0.06)));
}

.hud-side-panel-left {
  left: var(--hud-side-edge-offset, 0px);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 var(--hud-side-center-fade-start, 58%), transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 var(--hud-side-center-fade-start, 58%), transparent 100%);
}

.hud-side-panel-right {
  right: var(--hud-side-edge-offset, 0px);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 var(--hud-side-center-fade-start, 58%), transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 var(--hud-side-center-fade-start, 58%), transparent 100%);
}

.hud-side-panels-effect[data-left="off"] .hud-side-panel-left,
.hud-side-panels-effect[data-right="off"] .hud-side-panel-right {
  display: none;
}

.hud-side-panel::before,
.hud-side-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  background-color: var(--hud-side-image-color, var(--hud-side-color, #d8a84f));
  mix-blend-mode: screen;
  -webkit-mask-image: var(--hud-side-image, linear-gradient(transparent, transparent));
  mask-image: var(--hud-side-image, linear-gradient(transparent, transparent));
  -webkit-mask-repeat: repeat-y;
  mask-repeat: repeat-y;
  -webkit-mask-position: left var(--hud-side-image-offset-y, 0px);
  mask-position: left var(--hud-side-image-offset-y, 0px);
  -webkit-mask-size: var(--hud-side-image-size-x, 100%) var(--hud-side-image-size-y, auto);
  mask-size: var(--hud-side-image-size-x, 100%) var(--hud-side-image-size-y, auto);
  mask-mode: luminance;
}

.hud-side-panel::before {
  inset: 0;
  opacity: var(--hud-side-blueprint-opacity, 0.03);
}

.hud-side-panel::after {
  inset: 0;
  opacity: var(--hud-side-scan-opacity, 0.45);
  filter:
    brightness(var(--hud-side-scan-brightness, 1))
    brightness(var(--hud-side-glow-energy, 1));
  -webkit-mask-image:
    var(--hud-side-image, linear-gradient(transparent, transparent)),
    linear-gradient(180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.18) var(--hud-side-mask-tail-start, 14%),
      rgba(0, 0, 0, 0.72) var(--hud-side-mask-tail-mid, 47%),
      #000 var(--hud-side-mask-peak-start, 59%),
      #000 var(--hud-side-mask-peak-end, 80%),
      transparent 100%);
  mask-image:
    var(--hud-side-image, linear-gradient(transparent, transparent)),
    linear-gradient(180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.18) var(--hud-side-mask-tail-start, 14%),
      rgba(0, 0, 0, 0.72) var(--hud-side-mask-tail-mid, 47%),
      #000 var(--hud-side-mask-peak-start, 59%),
      #000 var(--hud-side-mask-peak-end, 80%),
      transparent 100%);
  -webkit-mask-repeat: repeat-y, no-repeat;
  mask-repeat: repeat-y, no-repeat;
  -webkit-mask-size:
    var(--hud-side-image-size-x, 100%) var(--hud-side-image-size-y, auto),
    100% var(--hud-side-mask-height, 42vh);
  mask-size:
    var(--hud-side-image-size-x, 100%) var(--hud-side-image-size-y, auto),
    100% var(--hud-side-mask-height, 42vh);
  -webkit-mask-position:
    left var(--hud-side-image-offset-y, 0px),
    0 calc(var(--hud-scan-y, -120vh) - var(--hud-side-tail-length, 18vh) + var(--hud-side-reveal-offset, 0vh));
  mask-position:
    left var(--hud-side-image-offset-y, 0px),
    0 calc(var(--hud-scan-y, -120vh) - var(--hud-side-tail-length, 18vh) + var(--hud-side-reveal-offset, 0vh));
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  mask-mode: luminance, alpha;
  will-change: mask-position;
}

.hud-side-panels-effect[data-direction="up"] .hud-side-panel::after {
  -webkit-mask-image:
    var(--hud-side-image, linear-gradient(transparent, transparent)),
    linear-gradient(0deg,
      transparent 0%,
      rgba(0, 0, 0, 0.18) var(--hud-side-mask-tail-start, 14%),
      rgba(0, 0, 0, 0.72) var(--hud-side-mask-tail-mid, 47%),
      #000 var(--hud-side-mask-peak-start, 59%),
      #000 var(--hud-side-mask-peak-end, 80%),
      transparent 100%);
  mask-image:
    var(--hud-side-image, linear-gradient(transparent, transparent)),
    linear-gradient(0deg,
      transparent 0%,
      rgba(0, 0, 0, 0.18) var(--hud-side-mask-tail-start, 14%),
      rgba(0, 0, 0, 0.72) var(--hud-side-mask-tail-mid, 47%),
      #000 var(--hud-side-mask-peak-start, 59%),
      #000 var(--hud-side-mask-peak-end, 80%),
      transparent 100%);
  -webkit-mask-position:
    left var(--hud-side-image-offset-y, 0px),
    0 calc(var(--hud-scan-y, -120vh) + var(--hud-side-reveal-offset, 0vh));
  mask-position:
    left var(--hud-side-image-offset-y, 0px),
    0 calc(var(--hud-scan-y, -120vh) + var(--hud-side-reveal-offset, 0vh));
}

.hud-side-panels-effect[data-scan="off"] .hud-side-panel::after {
  display: none;
  animation: none;
}

.hud-side-panels-effect[data-mirror-right="on"] .hud-side-panel-right {
  transform: scaleX(-1);
  transform-origin: center center;
}

body.admin-view .hud-side-panels-effect,
body.maintenance-view .hud-side-panels-effect {
  display: none !important;
}

@media (max-width: 900px) {
  .hud-scan-effect {
    opacity: calc(var(--hud-scan-opacity, 0.12) * 0.6);
  }

  .hud-scan-effect::before {
    opacity: var(--hud-scan-grid-mobile-opacity, 0.3);
  }

  .hud-scan-effect::after {
    -webkit-mask-image: linear-gradient(90deg,
      #000 0%,
      rgba(0, 0, 0, var(--hud-scan-mobile-center-mask-opacity, 0.12)) 18%,
      rgba(0, 0, 0, var(--hud-scan-mobile-center-mask-opacity, 0.12)) 82%,
      #000 100%);
    mask-image: linear-gradient(90deg,
      #000 0%,
      rgba(0, 0, 0, var(--hud-scan-mobile-center-mask-opacity, 0.12)) 18%,
      rgba(0, 0, 0, var(--hud-scan-mobile-center-mask-opacity, 0.12)) 82%,
      #000 100%);
  }

  .hud-side-panels-effect {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hud-scan-effect {
    display: none !important;
    animation: none !important;
  }

  .hud-side-panels-effect {
    display: none !important;
  }
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(216, 168, 79, 0.35);
}

body {
  font-family: var(--typo-globalBody-font-family, var(--font-body));
  font-style: var(--typo-globalBody-font-style, normal);
  font-weight: var(--typo-globalBody-font-weight, 400);
  font-size: var(--typo-globalBody-font-size-desktop, inherit);
  letter-spacing: var(--typo-globalBody-letter-spacing, normal);
  word-spacing: var(--typo-globalBody-word-spacing, normal);
  line-height: var(--typo-globalBody-line-height, 1.62);
  text-transform: var(--typo-globalBody-text-transform, none);
  text-align: var(--typo-globalBody-text-align, inherit);
  color: var(--typo-globalBody-color, var(--text));
  opacity: var(--typo-globalBody-opacity, 1);
  text-shadow: var(--typo-globalBody-text-shadow, none);
  -webkit-text-stroke: var(--typo-globalBody-outline-width, 0) var(--typo-globalBody-outline-color, transparent);
  paint-order: stroke fill;
  animation: var(--typo-globalBody-animation, none) 520ms ease both;
}

h1,
h2,
h3,
h4,
.section-title,
.sub-title,
.article-title {
  font-family: var(--typo-globalHeadings-font-family, var(--font-display));
  font-style: var(--typo-globalHeadings-font-style, normal);
  font-weight: var(--typo-globalHeadings-font-weight, 400);
  font-size: var(--typo-globalHeadings-font-size-desktop, inherit);
  letter-spacing: var(--typo-globalHeadings-letter-spacing, normal);
  word-spacing: var(--typo-globalHeadings-word-spacing, normal);
  line-height: var(--typo-globalHeadings-line-height, 1);
  text-transform: var(--typo-globalHeadings-text-transform, uppercase);
  text-align: var(--typo-globalHeadings-text-align, inherit);
  color: var(--typo-globalHeadings-color, var(--gold));
  opacity: var(--typo-globalHeadings-opacity, 1);
  text-shadow: var(--typo-globalHeadings-text-shadow, none);
  -webkit-text-stroke: var(--typo-globalHeadings-outline-width, 0) var(--typo-globalHeadings-outline-color, transparent);
  paint-order: stroke fill;
  animation: var(--typo-globalHeadings-animation, none) 520ms ease both;
}

.hero-slogan,
.hero-content,
.hero-content p {
  font-family: var(--typo-heroTexts-font-family, inherit);
  font-style: var(--typo-heroTexts-font-style, normal);
  font-weight: var(--typo-heroTexts-font-weight, inherit);
  font-size: var(--typo-heroTexts-font-size-desktop, inherit);
  letter-spacing: var(--typo-heroTexts-letter-spacing, normal);
  word-spacing: var(--typo-heroTexts-word-spacing, normal);
  line-height: var(--typo-heroTexts-line-height, normal);
  text-transform: var(--typo-heroTexts-text-transform, none);
  text-align: var(--typo-heroTexts-text-align, center);
  color: var(--typo-heroTexts-color, inherit);
  opacity: var(--typo-heroTexts-opacity, 1);
  text-shadow: var(--typo-heroTexts-text-shadow, none);
  -webkit-text-stroke: var(--typo-heroTexts-outline-width, 0) var(--typo-heroTexts-outline-color, transparent);
  paint-order: stroke fill;
  animation: var(--typo-heroTexts-animation, none) 520ms ease both;
}

.sub-hero .sub-title,
.sub-hero .sub-lead {
  font-family: var(--typo-pageHeaderTexts-font-family, inherit);
  font-style: var(--typo-pageHeaderTexts-font-style, normal);
  font-weight: var(--typo-pageHeaderTexts-font-weight, inherit);
  font-size: var(--typo-pageHeaderTexts-font-size-desktop, inherit);
  letter-spacing: var(--typo-pageHeaderTexts-letter-spacing, normal);
  word-spacing: var(--typo-pageHeaderTexts-word-spacing, normal);
  line-height: var(--typo-pageHeaderTexts-line-height, normal);
  text-transform: var(--typo-pageHeaderTexts-text-transform, none);
  text-align: var(--typo-pageHeaderTexts-text-align, inherit);
  color: var(--typo-pageHeaderTexts-color, inherit);
  opacity: var(--typo-pageHeaderTexts-opacity, 1);
  text-shadow: var(--typo-pageHeaderTexts-text-shadow, none);
  -webkit-text-stroke: var(--typo-pageHeaderTexts-outline-width, 0) var(--typo-pageHeaderTexts-outline-color, transparent);
  paint-order: stroke fill;
  animation: var(--typo-pageHeaderTexts-animation, none) 520ms ease both;
}

.section-title,
.section-kicker,
.home-destination-article h2,
.legal-section h2 {
  font-family: var(--typo-sectionTitles-font-family, inherit);
  font-style: var(--typo-sectionTitles-font-style, normal);
  font-weight: var(--typo-sectionTitles-font-weight, inherit);
  font-size: var(--typo-sectionTitles-font-size-desktop, inherit);
  letter-spacing: var(--typo-sectionTitles-letter-spacing, normal);
  word-spacing: var(--typo-sectionTitles-word-spacing, normal);
  line-height: var(--typo-sectionTitles-line-height, normal);
  text-transform: var(--typo-sectionTitles-text-transform, uppercase);
  text-align: var(--typo-sectionTitles-text-align, inherit);
  color: var(--typo-sectionTitles-color, inherit);
  opacity: var(--typo-sectionTitles-opacity, 1);
  text-shadow: var(--typo-sectionTitles-text-shadow, none);
  -webkit-text-stroke: var(--typo-sectionTitles-outline-width, 0) var(--typo-sectionTitles-outline-color, transparent);
  paint-order: stroke fill;
  animation: var(--typo-sectionTitles-animation, none) 520ms ease both;
}

.card,
.feature,
.timeline-item,
.secret-card,
.value-card,
.benefit,
.quick-card {
  font-family: var(--typo-cards-font-family, inherit);
  font-style: var(--typo-cards-font-style, normal);
  font-weight: var(--typo-cards-font-weight, inherit);
  font-size: var(--typo-cards-font-size-desktop, inherit);
  letter-spacing: var(--typo-cards-letter-spacing, normal);
  word-spacing: var(--typo-cards-word-spacing, normal);
  line-height: var(--typo-cards-line-height, normal);
  text-transform: var(--typo-cards-text-transform, none);
  text-align: var(--typo-cards-text-align, inherit);
  color: var(--typo-cards-color, inherit);
  opacity: var(--typo-cards-opacity, 1);
  text-shadow: var(--typo-cards-text-shadow, none);
  -webkit-text-stroke: var(--typo-cards-outline-width, 0) var(--typo-cards-outline-color, transparent);
  paint-order: stroke fill;
  animation: var(--typo-cards-animation, none) 520ms ease both;
}

.btn,
button,
.nav-link {
  font-family: var(--typo-buttons-font-family, inherit);
  font-style: var(--typo-buttons-font-style, normal);
  font-weight: var(--typo-buttons-font-weight, inherit);
  font-size: var(--typo-buttons-font-size-desktop, inherit);
  letter-spacing: var(--typo-buttons-letter-spacing, normal);
  word-spacing: var(--typo-buttons-word-spacing, normal);
  line-height: var(--typo-buttons-line-height, normal);
  text-transform: var(--typo-buttons-text-transform, uppercase);
  text-align: var(--typo-buttons-text-align, inherit);
  color: var(--typo-buttons-color, inherit);
  opacity: var(--typo-buttons-opacity, 1);
  text-shadow: var(--typo-buttons-text-shadow, none);
  -webkit-text-stroke: var(--typo-buttons-outline-width, 0) var(--typo-buttons-outline-color, transparent);
  paint-order: stroke fill;
  animation: var(--typo-buttons-animation, none) 520ms ease both;
}

.site-footer,
.footer-links,
.footer-social,
.hidden-admin-trigger {
  font-family: var(--typo-footer-font-family, inherit);
  font-style: var(--typo-footer-font-style, normal);
  font-weight: var(--typo-footer-font-weight, inherit);
  font-size: var(--typo-footer-font-size-desktop, inherit);
  letter-spacing: var(--typo-footer-letter-spacing, normal);
  word-spacing: var(--typo-footer-word-spacing, normal);
  line-height: var(--typo-footer-line-height, normal);
  text-transform: var(--typo-footer-text-transform, none);
  text-align: var(--typo-footer-text-align, inherit);
  color: var(--typo-footer-color, inherit);
  opacity: var(--typo-footer-opacity, 1);
  text-shadow: var(--typo-footer-text-shadow, none);
  -webkit-text-stroke: var(--typo-footer-outline-width, 0) var(--typo-footer-outline-color, transparent);
  paint-order: stroke fill;
  animation: var(--typo-footer-animation, none) 520ms ease both;
}

.field,
.admin-input,
.admin-textarea,
.admin-select,
.contact-form,
.community-form-panel {
  font-family: var(--typo-forms-font-family, inherit);
  font-style: var(--typo-forms-font-style, normal);
  font-weight: var(--typo-forms-font-weight, inherit);
  font-size: var(--typo-forms-font-size-desktop, inherit);
  letter-spacing: var(--typo-forms-letter-spacing, normal);
  word-spacing: var(--typo-forms-word-spacing, normal);
  line-height: var(--typo-forms-line-height, normal);
  text-transform: var(--typo-forms-text-transform, none);
  text-align: var(--typo-forms-text-align, inherit);
  color: var(--typo-forms-color, inherit);
  opacity: var(--typo-forms-opacity, 1);
  text-shadow: var(--typo-forms-text-shadow, none);
  -webkit-text-stroke: var(--typo-forms-outline-width, 0) var(--typo-forms-outline-color, transparent);
  paint-order: stroke fill;
}

.news-layout,
.news-row,
.article-body,
.article-meta {
  font-family: var(--typo-news-font-family, inherit);
  font-style: var(--typo-news-font-style, normal);
  font-weight: var(--typo-news-font-weight, inherit);
  font-size: var(--typo-news-font-size-desktop, inherit);
  letter-spacing: var(--typo-news-letter-spacing, normal);
  word-spacing: var(--typo-news-word-spacing, normal);
  line-height: var(--typo-news-line-height, normal);
  text-transform: var(--typo-news-text-transform, none);
  text-align: var(--typo-news-text-align, inherit);
  color: var(--typo-news-color, inherit);
  opacity: var(--typo-news-opacity, 1);
  text-shadow: var(--typo-news-text-shadow, none);
  -webkit-text-stroke: var(--typo-news-outline-width, 0) var(--typo-news-outline-color, transparent);
  paint-order: stroke fill;
  animation: var(--typo-news-animation, none) 520ms ease both;
}

.cookie-banner,
.cookie-modal {
  font-family: var(--typo-cookies-font-family, inherit);
  font-style: var(--typo-cookies-font-style, normal);
  font-weight: var(--typo-cookies-font-weight, inherit);
  font-size: var(--typo-cookies-font-size-desktop, inherit);
  letter-spacing: var(--typo-cookies-letter-spacing, normal);
  word-spacing: var(--typo-cookies-word-spacing, normal);
  line-height: var(--typo-cookies-line-height, normal);
  text-transform: var(--typo-cookies-text-transform, none);
  text-align: var(--typo-cookies-text-align, inherit);
  color: var(--typo-cookies-color, inherit);
  opacity: var(--typo-cookies-opacity, 1);
  text-shadow: var(--typo-cookies-text-shadow, none);
  -webkit-text-stroke: var(--typo-cookies-outline-width, 0) var(--typo-cookies-outline-color, transparent);
  paint-order: stroke fill;
}

.legal-content,
.legal-section,
.toc {
  font-family: var(--typo-legal-font-family, inherit);
  font-style: var(--typo-legal-font-style, normal);
  font-weight: var(--typo-legal-font-weight, inherit);
  font-size: var(--typo-legal-font-size-desktop, inherit);
  letter-spacing: var(--typo-legal-letter-spacing, normal);
  word-spacing: var(--typo-legal-word-spacing, normal);
  line-height: var(--typo-legal-line-height, normal);
  text-transform: var(--typo-legal-text-transform, none);
  text-align: var(--typo-legal-text-align, inherit);
  color: var(--typo-legal-color, inherit);
  opacity: var(--typo-legal-opacity, 1);
  text-shadow: var(--typo-legal-text-shadow, none);
  -webkit-text-stroke: var(--typo-legal-outline-width, 0) var(--typo-legal-outline-color, transparent);
  paint-order: stroke fill;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-down {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes zoom {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  background: rgba(1, 2, 3, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.global-music-player {
  position: fixed;
  top: calc(var(--header) + 10px);
  right: 18px;
  z-index: 60;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  max-width: calc(100vw - 36px);
  gap: 6px;
  min-height: 42px;
  padding: 4px 6px;
  box-sizing: border-box;
  border: 1px solid rgba(216, 168, 79, 0.58);
  border-radius: 5px;
  background: rgba(4, 8, 11, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(12px);
}

.global-music-player button {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(216, 168, 79, 0.72);
  background: rgba(216, 168, 79, 0.08);
  color: var(--gold-2);
}

.global-music-player > .music-player-toggle {
  grid-column: 1;
  grid-row: 1;
}

.global-music-player > .music-player-toggle,
.global-music-player > .music-player-volume-control,
.global-music-player > .music-player-collapse {
  align-self: end;
}

.global-music-player button:hover,
.global-music-player button:focus-visible {
  background: rgba(216, 168, 79, 0.22);
  color: var(--text);
}

.music-player-content {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  flex: 1 1 auto;
  min-width: 0;
  width: min(238px, 32vw);
  gap: 3px;
}

.music-player-track {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.music-player-track strong {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music-player-track span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.music-player-seek-row {
  display: grid;
  grid-template-columns: auto minmax(72px, 1fr) auto auto;
  align-items: center;
  gap: 5px;
}

.music-player-progress {
  width: 100%;
  min-width: 0;
  accent-color: var(--gold-2);
}

.music-player-time {
  min-width: 31px;
  color: var(--muted);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.music-player-seek-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.global-music-player .music-player-seek-button {
  width: 30px;
  height: 30px;
  border-color: rgba(216, 168, 79, 0.72);
  font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
  font-size: 14px;
  font-variant-emoji: text;
}

.music-player-spectrum {
  grid-column: 1 / -1;
  grid-row: 2;
  display: block;
  width: 100%;
  height: 12px;
  opacity: 0.85;
}

.music-player-volume-control {
  position: relative;
  display: flex;
  grid-column: 3;
  grid-row: 1;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  overflow: visible;
}

.music-player-volume {
  position: absolute;
  right: 50%;
  bottom: 100%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 96px;
  padding: 5px 0;
  border: 1px solid rgba(216, 168, 79, 0.58);
  border-radius: 4px;
  background: rgba(4, 8, 11, 0.88);
  opacity: 0;
  pointer-events: none;
  transform: translateX(50%) translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.music-player-volume::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 8px;
  content: "";
}

.music-player-volume-control:hover .music-player-volume,
.music-player-volume-control:focus-within .music-player-volume {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(50%) translateY(0);
  visibility: visible;
}

.music-player-volume input {
  width: 18px;
  height: 82px;
  accent-color: var(--gold-2);
  direction: rtl;
  writing-mode: vertical-lr;
}

.music-player-collapse {
  grid-column: 4;
  grid-row: 1;
  width: 30px;
  height: 30px;
  border-color: rgba(216, 168, 79, 0.48);
  font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
  font-size: 18px;
  font-variant-emoji: text;
}

.global-music-player.is-collapsed .music-player-seek-row,
.global-music-player.is-collapsed .music-player-seek-actions,
.global-music-player.is-collapsed .music-player-spectrum,
.global-music-player.is-collapsed .music-player-volume-control {
  display: none;
}

.global-music-player.is-collapsed .music-player-content {
  width: min(172px, 34vw);
}

.global-music-player audio {
  display: none;
}

.admin-music-inline-player {
  position: relative;
  top: auto;
  right: auto;
  z-index: 1;
  width: min(100%, 620px);
  margin: 8px 0 12px;
}

.admin-music-track-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.admin-music-track {
  padding: 18px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.018);
}

.admin-music-track .split-head {
  align-items: center;
  margin-bottom: 14px;
}

.admin-music-track h3 {
  margin: 0;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 16px;
}

.admin-audio-field {
  grid-column: 1 / -1;
}

.admin-audio-preview {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 520px);
  max-width: 100%;
  margin: 8px 0 12px;
  pointer-events: auto;
  touch-action: auto;
}

body.admin-view .site-header,
body.maintenance-view .site-header {
  display: none;
}

.brand {
  display: inline-flex;
  grid-column: 1;
  align-items: center;
  width: 174px;
  min-width: 136px;
}

.brand img {
  width: 100%;
  aspect-ratio: 16 / 5.6;
  object-fit: cover;
  object-position: center;
}

.main-nav {
  display: flex;
  grid-column: 2;
  width: max-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 8px;
}

.site-header[data-nav-align="left"] .main-nav {
  justify-self: start;
}

.site-header[data-nav-align="center"] .main-nav {
  position: absolute;
  grid-column: 1 / -1;
  left: 50%;
  transform: translateX(-50%);
}

.site-header[data-nav-align="right"] .main-nav {
  justify-self: end;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 15px;
  color: #d7d9dc;
  font-family: var(--font-display);
  font-size: 17px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--gold-2);
}

.nav-link.is-active::after {
  transform: scaleX(1);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #d1d4d6;
}

.header-tools {
  grid-column: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex: 0 0 auto;
  color: var(--muted);
  font: 600 12px/1 var(--font-display);
  letter-spacing: 0.04em;
}

.language-switcher-button {
  min-width: 25px;
  min-height: 28px;
  padding: 0 4px;
  color: var(--muted);
  font: inherit;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.language-switcher-button:hover,
.language-switcher-button:focus-visible,
.language-switcher-button.is-active {
  color: var(--gold-2);
  border-color: var(--line);
  background: rgba(216, 168, 79, 0.08);
  outline: 0;
}

.language-switcher-divider {
  color: var(--line);
  user-select: none;
}

.site-search,
.admin-search {
  position: relative;
  flex: 0 1 260px;
  min-width: 180px;
}

.site-search {
  grid-column: 3;
  width: 260px;
}

.search-input {
  width: 100%;
  min-height: 38px;
  padding: 0 42px 0 14px;
  color: #e8ecef;
  font: 600 13px/1 var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0;
  background: rgba(5, 9, 11, 0.76);
  border: 1px solid rgba(216, 168, 79, 0.22);
  border-radius: 6px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.search-input::placeholder {
  color: rgba(209, 212, 214, 0.58);
}

.search-input:focus {
  border-color: rgba(216, 168, 79, 0.62);
  background: rgba(7, 12, 15, 0.94);
  box-shadow: 0 0 0 3px rgba(216, 168, 79, 0.08);
}

.search-submit {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: transparent;
  border: 0;
  border-radius: 5px;
  transform: translateY(-50%);
  cursor: pointer;
}

.search-submit:hover {
  background: rgba(216, 168, 79, 0.12);
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 95;
  width: min(390px, calc(100vw - 32px));
  max-height: min(520px, 70vh);
  overflow: auto;
  padding: 8px;
  background: rgba(3, 6, 8, 0.98);
  border: 1px solid rgba(216, 168, 79, 0.24);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.56);
}

.search-result,
.search-empty {
  display: grid;
  width: 100%;
  gap: 4px;
  padding: 11px 12px;
  color: #e5e8ea;
  text-align: left;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 6px;
}

.search-result {
  cursor: pointer;
}

.search-result:hover,
.search-result:focus {
  background: rgba(216, 168, 79, 0.1);
  outline: 0;
}

.search-result-type {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
}

.search-result strong {
  font-family: var(--font-display);
  font-size: 15px;
  text-transform: uppercase;
}

.search-result small,
.search-empty {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.search-hit-mark {
  color: #0d0b06;
  background: rgba(216, 168, 79, 0.92);
  box-shadow: 0 0 18px rgba(216, 168, 79, 0.32);
  border-radius: 3px;
  padding: 0 2px;
}

.search-hit-field {
  border-color: rgba(216, 168, 79, 0.72) !important;
  box-shadow: 0 0 0 2px rgba(216, 168, 79, 0.16), 0 0 28px rgba(216, 168, 79, 0.18);
}

.admin-search-target-highlight {
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  background-color: rgba(216, 168, 79, 0.06);
  box-shadow: 0 0 0 2px rgba(216, 168, 79, 0.22), 0 0 34px rgba(216, 168, 79, 0.22);
}

.admin-field.search-hit-field,
.hero-image-row.search-hit-field {
  border-radius: 8px;
}

.social-dot {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 12px;
  border: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
  overflow: hidden;
}

.social-dot:hover {
  color: var(--gold);
  border-color: var(--line);
}

.social-dot img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

@media (max-width: 1810px) and (min-width: 1521px) {
  .site-header {
    gap: 16px;
    padding-inline: 20px;
  }

  .brand {
    width: 154px;
    min-width: 128px;
  }

  .main-nav {
    min-width: 0;
    gap: 4px;
  }

  .nav-link {
    gap: 7px;
    padding-inline: 10px;
    font-size: 16px;
  }

  .site-search {
    flex-basis: 210px;
    width: 210px;
    min-width: 140px;
  }

  .header-social {
    gap: 10px;
  }
}

@media (max-width: 1520px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding-inline: 16px;
  }

  .brand {
    width: 132px;
    min-width: 108px;
  }

  .site-search {
    grid-column: 2;
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
  }

  .header-tools {
    grid-column: 3;
    gap: 8px;
  }

  .site-search .search-results {
    position: fixed;
    top: calc(var(--header) + 8px);
    right: auto;
    left: 50%;
    width: min(390px, calc(100vw - 32px));
    transform: translateX(-50%);
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .site-header[data-nav-align] .main-nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-self: stretch;
    padding: 18px;
    background: rgba(1, 2, 3, 0.98);
    border-bottom: 1px solid var(--line-soft);
    transform: none;
  }

  .site-header[data-nav-align] .main-nav.is-open {
    display: flex;
  }

  .header-social {
    display: none;
  }
}

@media (max-width: 620px) {
  .global-music-player {
    top: calc(var(--header) + 8px);
    right: 8px;
    left: 8px;
    justify-content: center;
    gap: 5px;
  }

  .music-player-content {
    width: auto;
    flex: 1 1 auto;
  }

  .music-player-track {
    min-width: 0;
    flex: 1 1 auto;
  }

  .admin-music-track {
    padding: 14px;
  }

  .admin-music-track .split-head {
    align-items: stretch;
    gap: 12px;
  }
}

.page {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - var(--header));
}

.not-found {
  isolation: isolate;
}

.page-background-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-background-layer[data-mode="fixed"] {
  position: fixed;
  top: var(--header);
}

.page-background-image,
.page-background-overlay {
  position: absolute;
  inset: 0;
}

.page-background-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.page-background-layer[data-mode="fixed"] .page-background-image {
  background-attachment: fixed;
}

.page-background-overlay {
  background: #020405;
}

.page > :not(.page-background-layer),
.not-found > :not(.page-background-layer) {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--max), calc(100% - var(--container-gutter) - var(--container-gutter)));
  margin: 0 auto;
}

.narrow {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 72px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section.compact {
  padding: 46px 0;
}

.newsletter-system-section {
  min-height: 0;
  display: grid;
  align-items: center;
  padding: clamp(28px, 4vw, 52px) 0;
}

.newsletter-system-page {
  min-height: 0;
}

.newsletter-system-panel {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  text-align: center;
}

.newsletter-system-panel .section-title {
  margin: 0;
  color: var(--gold);
}

.newsletter-system-text {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.newsletter-system-actions {
  justify-content: center;
  margin-top: 26px;
}

.section-panel,
.frame-panel {
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(5, 9, 11, 0.72);
  box-shadow: var(--shadow);
}

.section-panel,
.frame-panel,
.home-video-frame,
.home-destination-banner,
.home-destination-article,
.cta-tile,
.image-split,
.cta-band,
.side-box,
.community-form-panel,
.contact-image,
.article-body,
.legal-layout .toc,
.legal-content,
.card,
.history-card,
.secret-card,
.value-card,
.benefit,
.news-row,
.article-nav-card,
.support-reason-card,
.support-tier-card,
.support-counter,
.support-payment-panel,
.feature-link,
.timeline-link,
.tab-bar,
.page-chip,
.support-icon,
.faq-item {
  border-radius: var(--ui-card-radius);
}

.home-video-frame,
.home-destination-banner,
.home-destination-article,
.cta-tile,
.image-split,
.cta-band,
.side-box,
.community-form-panel,
.contact-image,
.article-body,
.legal-layout .toc,
.legal-content,
.card,
.history-card,
.secret-card,
.value-card,
.benefit,
.news-row,
.article-nav-card,
.support-reason-card,
.support-tier-card,
.support-counter,
.support-payment-panel,
.feature-link,
.timeline-link,
.tab-bar,
.page-chip,
.support-icon,
.faq-item {
  overflow: hidden;
}

.hud-frame,
.hud-line,
.hud-corner,
.hud-panel,
.hud-card {
  position: relative;
}

:root.is-hud-ui-enabled body:not(.admin-view) :is(
  .hud-frame,
  .hud-panel,
  .hud-card,
  .section-panel,
  .frame-panel,
  .home-video-frame,
  .home-destination-banner,
  .home-destination-article,
  .cta-tile,
  .image-split,
  .cta-band,
  .side-box,
  .community-form-panel,
  .contact-image,
  .article-body,
  .legal-layout .toc,
  .legal-content,
  .card,
  .history-card,
  .secret-card,
  .value-card,
  .benefit,
  .news-row,
  .article-nav-card,
  .support-reason-card,
  .support-tier-card,
  .support-counter,
  .support-payment-panel,
  .feature-link,
  .timeline-link,
  .tab-bar,
  .page-chip,
  .support-icon,
  .faq-item
) {
  border-color: color-mix(in srgb, var(--hud-primary) var(--hud-frame-percent), transparent);
  border-radius: min(var(--hud-corner-radius), var(--ui-card-radius));
}

:root.is-hud-ui-enabled body:not(.admin-view) :is(
  .hud-frame,
  .hud-panel,
  .hud-card,
  .section-panel,
  .frame-panel,
  .home-video-frame,
  .home-destination-article,
  .cta-tile,
  .image-split,
  .cta-band,
  .side-box,
  .community-form-panel,
  .contact-image,
  .article-body,
  .legal-layout .toc,
  .legal-content,
  .card,
  .history-card,
  .secret-card,
  .value-card,
  .benefit,
  .news-row,
  .article-nav-card,
  .support-reason-card,
  .support-tier-card,
  .support-counter,
  .support-payment-panel,
  .feature-link,
  .timeline-link,
  .tab-bar,
  .page-chip,
  .support-icon,
  .faq-item
)::after,
:root.is-hud-ui-enabled body:not(.admin-view) .home-destination-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  background:
    linear-gradient(90deg, var(--hud-primary), var(--hud-primary)) top 7px left 7px / var(--hud-corner-size) 1px no-repeat,
    linear-gradient(180deg, var(--hud-primary), var(--hud-primary)) top 7px left 7px / 1px var(--hud-corner-size) no-repeat,
    linear-gradient(90deg, var(--hud-secondary), var(--hud-secondary)) top 7px right 7px / var(--hud-corner-size) 1px no-repeat,
    linear-gradient(180deg, var(--hud-secondary), var(--hud-secondary)) top 7px right 7px / 1px var(--hud-corner-size) no-repeat,
    linear-gradient(90deg, var(--hud-secondary), var(--hud-secondary)) bottom 7px left 7px / var(--hud-corner-size) 1px no-repeat,
    linear-gradient(180deg, var(--hud-secondary), var(--hud-secondary)) bottom 7px left 7px / 1px var(--hud-corner-size) no-repeat,
    linear-gradient(90deg, var(--hud-primary), var(--hud-primary)) bottom 7px right 7px / var(--hud-corner-size) 1px no-repeat,
    linear-gradient(180deg, var(--hud-primary), var(--hud-primary)) bottom 7px right 7px / 1px var(--hud-corner-size) no-repeat;
  box-shadow: inset 0 0 18px color-mix(in srgb, var(--hud-secondary) 6%, transparent);
  opacity: var(--hud-line-intensity);
  pointer-events: none;
}

.home-destination-banner::after,
.cta-tile::before,
.admin-hero-card::before,
.support-tier-card::before {
  border-radius: inherit;
}

:root.is-hud-ui-enabled body:not(.admin-view) .hud-corner::before,
:root.is-hud-ui-enabled body:not(.admin-view) .hud-corner::after {
  content: "";
  position: absolute;
  width: var(--hud-corner-size);
  height: var(--hud-corner-size);
  border-color: color-mix(in srgb, var(--hud-secondary) var(--hud-line-percent), transparent);
  pointer-events: none;
}

:root.is-hud-ui-enabled body:not(.admin-view) .hud-corner::before {
  top: 0;
  left: 0;
  border-top: 1px solid;
  border-left: 1px solid;
}

:root.is-hud-ui-enabled body:not(.admin-view) .hud-corner::after {
  right: 0;
  bottom: 0;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

:root.is-hud-ui-enabled body:not(.admin-view) .article-gallery img {
  border: 1px solid color-mix(in srgb, var(--hud-primary) var(--hud-frame-percent), transparent);
  border-radius: var(--hud-corner-radius);
}

:root.is-hud-ui-enabled body:not(.admin-view) .site-footer {
  border-top-color: color-mix(in srgb, var(--hud-primary) var(--hud-frame-percent), transparent);
}

:root.is-hud-ui-enabled body:not(.admin-view) .page > :not(.home-hero):not(.sub-hero):not(.article-hero):not(.support-hero) .btn {
  border-radius: min(var(--hud-corner-radius), 6px);
}

:root.is-hud-ui-enabled body:not(.admin-view) .page > :not(.home-hero):not(.sub-hero):not(.article-hero):not(.support-hero) .btn:hover {
  box-shadow:
    inset 0 0 12px color-mix(in srgb, var(--hud-secondary) 5%, transparent),
    0 0 0 1px color-mix(in srgb, var(--hud-primary) 8%, transparent);
}

.section-title {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  text-transform: uppercase;
}

.section-title.small {
  font-size: clamp(28px, 3.5vw, 42px);
}

.section-kicker,
.eyebrow {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
}

.divider {
  width: 138px;
  height: 2px;
  margin: 18px 0 24px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.text-muted {
  color: var(--muted);
}

.home-video-frame {
  width: min(100%, var(--home-video-width, 100%));
  max-width: var(--home-video-max-width, 1600px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #020405;
  box-shadow: var(--shadow);
}

.home-video-list {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.home-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.home-hud-counters-section {
  --hud-counter-glow-alpha: 0.176;
  --hud-counter-glow-soft-alpha: 0.092;
  --hud-counter-text-glow-alpha: 0.244;
  --hud-counter-animation-speed: 1400ms;
  --hud-counter-columns: 4;
}

.home-hud-counters-shell {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(214, 168, 79, 0.32);
  border-radius: var(--ui-card-radius);
  background:
    linear-gradient(90deg, rgba(214, 168, 79, 0.08), transparent 16%, transparent 84%, rgba(214, 168, 79, 0.08)),
    rgba(4, 7, 10, 0.72);
  box-shadow:
    0 0 34px rgba(214, 168, 79, var(--hud-counter-glow-soft-alpha)),
    inset 0 0 0 1px rgba(126, 213, 220, 0.08);
}

.home-hud-counters-shell::before,
.home-hud-counters-shell::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 140px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(214, 168, 79, 0.7), transparent);
}

.home-hud-counters-shell::before {
  left: 28px;
}

.home-hud-counters-shell::after {
  right: 28px;
}

.home-hud-counters-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 18px;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.home-hud-counters-title::before,
.home-hud-counters-title::after {
  content: "";
  width: min(120px, 16vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 168, 79, 0.78));
}

.home-hud-counters-title::after {
  background: linear-gradient(90deg, rgba(214, 168, 79, 0.78), transparent);
}

.home-hud-counters-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.home-hud-counter-panel {
  position: relative;
  display: flex;
  flex: 0 1 calc((100% - 48px) / var(--hud-counter-columns));
  max-width: 300px;
  min-width: 238px;
  min-height: 146px;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  padding: 22px 24px;
  border: 1px solid rgba(214, 168, 79, 0.28);
  border-radius: var(--ui-card-radius);
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.11), transparent 22%),
    linear-gradient(180deg, rgba(13, 18, 22, 0.96), rgba(4, 7, 9, 0.9));
  box-shadow:
    0 0 22px rgba(214, 168, 79, var(--hud-counter-glow-soft-alpha)),
    inset 0 0 18px rgba(126, 213, 220, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, filter 180ms ease, box-shadow 180ms ease;
  animation: homeHudCounterPulse var(--hud-counter-animation-speed) ease-in-out infinite;
}

/* Reserve the final two-line counter layout so the first animation frame cannot
   change the height of the four-card row while it is entering the viewport. */
.home-hud-counters-grid.is-count-4 .home-hud-counter-panel {
  min-height: 251px;
}

.home-hud-counter-panel::before,
.home-hud-counter-panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 42px;
  height: 42px;
  pointer-events: none;
  border-color: rgba(214, 168, 79, 0.62);
  border-style: solid;
}

.home-hud-counter-panel::before {
  top: 9px;
  left: 9px;
  border-width: 1px 0 0 1px;
  border-top-left-radius: 6px;
}

.home-hud-counter-panel::after {
  right: 9px;
  bottom: 9px;
  border-width: 0 1px 1px 0;
  border-bottom-right-radius: 6px;
}

.home-hud-counter-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 200, 117, 0.74);
  filter: brightness(1.08);
  box-shadow:
    0 0 34px rgba(214, 168, 79, var(--hud-counter-glow-alpha)),
    inset 0 0 22px rgba(126, 213, 220, 0.07);
}

.home-hud-counter-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  place-items: center;
  border: 1px solid rgba(126, 213, 220, 0.24);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 168, 79, 0.18), rgba(8, 12, 16, 0.88) 68%);
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  box-shadow:
    inset 0 0 0 6px rgba(214, 168, 79, 0.045),
    0 0 18px rgba(126, 213, 220, 0.08);
}

.home-hud-counter-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.home-hud-counter-copy h3 {
  margin: 0 0 4px;
  color: rgba(244, 240, 232, 0.92);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-hud-counter-number {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 0.95;
  text-shadow: 0 0 18px rgba(214, 168, 79, var(--hud-counter-text-glow-alpha));
}

.home-hud-counter-suffix {
  font-size: 0.38em;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hud-counter-copy p {
  margin: 9px 0 0;
  color: rgba(244, 240, 232, 0.7);
  font-size: 14px;
  line-height: 1.45;
}

@keyframes homeHudCounterPulse {
  0%,
  100% {
    box-shadow:
      0 0 18px rgba(214, 168, 79, var(--hud-counter-glow-soft-alpha)),
      inset 0 0 18px rgba(126, 213, 220, 0.04);
  }

  50% {
    box-shadow:
      0 0 32px rgba(214, 168, 79, var(--hud-counter-glow-alpha)),
      inset 0 0 22px rgba(126, 213, 220, 0.065);
  }
}

@media (max-width: 1100px) {
  .home-hud-counter-panel {
    flex-basis: calc((100% - 16px) / 2);
    max-width: 360px;
  }

  .home-hud-counters-grid.is-count-4 .home-hud-counter-panel {
    min-height: 146px;
  }
}

@media (max-width: 680px) {
  .home-hud-counters-shell {
    padding: 14px;
    border-radius: var(--ui-card-radius);
  }

  .home-hud-counters-title {
    gap: 10px;
    font-size: 16px;
    letter-spacing: 0;
  }

  .home-hud-counters-title::before,
  .home-hud-counters-title::after {
    width: 32px;
  }

  .home-hud-counter-panel {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 20px;
  }

  .home-hud-counter-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
    font-size: 29px;
  }

  .home-hud-counter-number {
    font-size: 42px;
  }
}

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

.history-card p.text-gold,
.secret-card p.text-gold {
  color: var(--gold) !important;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border: 1px solid var(--line);
  background: rgba(8, 10, 11, 0.76);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  border-radius: var(--ui-button-radius);
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
  color: var(--gold-2);
}

.btn.primary {
  border-color: rgba(241, 200, 117, 0.7);
  background: linear-gradient(180deg, #efc775, #c99134);
  color: #11100d;
}

.btn.primary:hover {
  color: #11100d;
  background: linear-gradient(180deg, #ffd98a, #d9a14a);
}

.btn.icon-only {
  width: 46px;
  min-height: 46px;
  padding: 0;
}

body:not(.admin-view) .btn.external-new-tab-cta {
  position: relative;
  overflow: visible;
}

body:not(.admin-view) .btn.external-new-tab-cta .external-new-tab-icon {
  flex: 0 0 auto;
  margin-left: -5px;
  font-size: 0.82em;
  line-height: 1;
  opacity: 0.78;
}

body:not(.admin-view) .btn.external-new-tab-cta::after {
  content: attr(data-external-new-tab-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 20;
  width: max-content;
  max-width: min(260px, calc(100vw - 24px));
  padding: 7px 10px;
  border: 1px solid rgba(216, 168, 79, 0.48);
  border-radius: 3px;
  background: rgba(5, 8, 10, 0.97);
  color: var(--text);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  white-space: normal;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 4px);
  transition: opacity 140ms ease, transform 140ms ease;
}

body:not(.admin-view) .btn.external-new-tab-cta:hover::after,
body:not(.admin-view) .btn.external-new-tab-cta:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.home-hero {
  position: relative;
  min-height: min(var(--hero-height-desktop, 90vh), calc(100vh - var(--header)));
  padding: 24px 0 calc(var(--hero-bottom-bar-height, 64px) + 28px);
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  --hero-height-desktop: 90vh;
  --hero-height-mobile: 74vh;
  --hero-bottom-bar-height: 64px;
  --hero-bottom-bar-opacity: 0.88;
  --hero-parallax-y: 0px;
  --hero-logo-motion-x: 0px;
  --hero-logo-motion-y: 0px;
  --hero-zoom-start: 1;
  --hero-zoom-end: 1.08;
  --hero-zoom-start-scale: 1.12;
  --hero-zoom-end-scale: 1.2096;
  --hero-zoom-duration: 14000ms;
  --hero-zoom-easing: ease-in-out;
}

.hero-slide {
  position: absolute;
  inset: -96px;
  opacity: 0;
  overflow: hidden;
  transition-property: opacity;
  transition-timing-function: ease-in-out;
  will-change: opacity;
}

@media (max-width: 1100px) {
  .home-hero .hero-slide {
    inset: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: var(--hero-image-opacity, 1);
  transform: translateY(var(--hero-parallax-y)) scale(var(--hero-zoom-start-scale));
  transform-origin: center;
  will-change: transform;
}

.hero-slide-label-frame {
  position: absolute;
  inset: 96px;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .hero-slide-label-frame {
    inset: 0;
  }
}

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

.hero-slide.is-leaving {
  opacity: 0;
}

.home-hero::after,
.sub-hero::after,
.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center,
      rgba(var(--hero-vignette-rgb, 0, 0, 0), 0) 0 var(--hero-vignette-clear, 34%),
      rgba(var(--hero-vignette-rgb, 0, 0, 0), var(--hero-vignette-opacity, 0.65)) 100%),
    linear-gradient(180deg,
      rgba(var(--hero-vignette-rgb, 0, 0, 0), var(--hero-vignette-top, 0.292)) 0%,
      rgba(var(--hero-vignette-rgb, 0, 0, 0), 0) var(--hero-vignette-fade, 66%)),
    linear-gradient(0deg,
      rgba(var(--hero-vignette-rgb, 0, 0, 0), var(--hero-vignette-bottom, 0.423)) 0%,
      rgba(var(--hero-vignette-rgb, 0, 0, 0), 0) var(--hero-vignette-fade, 66%)),
    linear-gradient(90deg,
      rgba(var(--hero-vignette-rgb, 0, 0, 0), var(--hero-vignette-left, 0.358)) 0%,
      rgba(var(--hero-vignette-rgb, 0, 0, 0), 0) var(--hero-vignette-fade, 66%)),
    linear-gradient(270deg,
      rgba(var(--hero-vignette-rgb, 0, 0, 0), var(--hero-vignette-right, 0.358)) 0%,
      rgba(var(--hero-vignette-rgb, 0, 0, 0), 0) var(--hero-vignette-fade, 66%));
  mix-blend-mode: var(--hero-vignette-blend-mode, normal);
}

.home-hero::after {
  z-index: 1;
}

.sub-hero::after,
.article-hero::after {
  z-index: 0;
}

.not-found::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(1, 3, 4, 0.9));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
  transform: translateY(14px);
}

.hero-logo-align {
  position: relative;
  left: 50%;
  display: flex;
  width: min(var(--max), calc(100vw - 48px));
  max-width: calc(100vw - 48px);
  min-width: 0;
  box-sizing: border-box;
  margin-left: 0;
  transform: translateX(-50%);
  justify-content: center;
}

.hero-logo-align.is-left {
  justify-content: flex-start;
}

.hero-logo-align.is-right {
  justify-content: flex-end;
}

.hero-logo {
  display: block;
  width: min(740px, 84vw);
  max-width: 100%;
  margin: 0 auto 12px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.7));
  transform: translate3d(
    calc(var(--hero-logo-base-x, 0px) + var(--hero-logo-motion-x, 0px)),
    calc(var(--hero-logo-base-y, 0px) + var(--hero-logo-motion-y, 0px)),
    0
  );
  will-change: transform;
}

.home-hero .hero-logo-breath {
  display: block;
  flex: 0 1 auto;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  margin: 0 auto 12px;
  line-height: 0;
  overflow: visible;
  --hero-logo-breath-duration: 6s;
  --hero-logo-breath-scale: 1.025;
  transform-origin: center center;
  animation: heroLogoBreath var(--hero-logo-breath-duration) ease-in-out infinite alternate;
  will-change: transform;
}

.home-hero .hero-logo-breath .hero-logo {
  margin: 0 auto;
}

.home-hero .hero-logo-align .hero-logo {
  max-width: 100% !important;
}

@keyframes heroLogoBreath {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(var(--hero-logo-breath-scale, 1.025));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide-bg {
    transform: scale(1);
  }

  .home-hero .hero-logo-breath {
    animation: none;
  }
}

.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;
}

.hero-slogan {
  margin: 0 0 44px;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  text-transform: uppercase;
}

.home-hero .hero-lead-line {
  display: block;
}

.home-production-title:empty::before {
  content: attr(data-protected-title);
}

.hero-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  pointer-events: none;
  z-index: 2;
}

.hero-nav button {
  pointer-events: auto;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 56px;
  line-height: 1;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: calc(var(--hero-bottom-bar-height, 64px) + 18px);
  z-index: 3;
  display: flex;
  gap: 14px;
  transform: translateX(-50%);
}

.hero-cinematic-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: var(--hero-bottom-bar-height, 64px);
  pointer-events: none;
  background: rgba(1, 2, 3, var(--hero-bottom-bar-opacity, 0.88));
  border-top: 1px solid rgba(241, 200, 117, 0.16);
  box-shadow: 0 -18px 38px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
}

.hero-cinematic-bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 200, 117, 0.42), transparent);
}

.hero-motion-debug {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 4;
  pointer-events: none;
  min-width: 230px;
  padding: 12px 14px;
  border: 1px solid rgba(241, 200, 117, 0.28);
  background: rgba(2, 4, 5, 0.82);
  color: var(--gold-2);
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.45;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.hero-dot {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(216, 168, 79, 0.5);
  background: transparent;
}

.hero-dot.is-active {
  background: var(--gold);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-inline: var(--section-copy-padding-x);
  padding-bottom: 42px;
}

.feature {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
  padding: 36px 24px;
  text-align: center;
  border-right: 0;
}

.feature-grid > .feature-link {
  color: inherit;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(216, 168, 79, 0.045), rgba(216, 168, 79, 0.012)),
    rgba(8, 12, 14, 0.62);
  box-shadow: inset 0 0 0 1px rgba(216, 168, 79, 0.22);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.feature-grid > .feature-link:focus-visible {
  background:
    linear-gradient(180deg, rgba(216, 168, 79, 0.12), rgba(216, 168, 79, 0.025)),
    rgba(14, 17, 18, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(241, 200, 117, 0.72),
    0 0 0 2px rgba(241, 200, 117, 0.28),
    0 0 26px rgba(216, 168, 79, 0.16);
  outline: 2px solid rgba(241, 200, 117, 0.56);
  outline-offset: 4px;
  transform: translateY(-2px);
}

.feature-grid > .feature-link h3 {
  text-align: center;
}

.feature-grid > .feature-link p {
  text-align: inherit;
}

.feature:last-child {
  border-right: 0;
}

.icon-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--line);
  font-size: 25px;
}

.feature h3,
.card h3,
.news-row h2,
.benefit h3,
.quick-card h3 {
  margin: 0 0 7px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
}

.feature p,
.card p,
.benefit p,
.quick-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 42px var(--section-copy-padding-x);
}

.timeline-item {
  position: relative;
  text-align: center;
  padding: 0 18px;
}

.home-hero ~ .section .timeline > .timeline-item {
  justify-items: center;
}

.home-hero ~ .section .timeline > .timeline-link {
  color: inherit;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(216, 168, 79, 0.042), rgba(216, 168, 79, 0.01)),
    rgba(8, 12, 14, 0.6);
  box-shadow: inset 0 0 0 1px rgba(216, 168, 79, 0.2);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-hero ~ .section .timeline > .timeline-link:focus-visible {
  background:
    linear-gradient(180deg, rgba(216, 168, 79, 0.12), rgba(216, 168, 79, 0.025)),
    rgba(14, 17, 18, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(241, 200, 117, 0.7),
    0 0 0 2px rgba(241, 200, 117, 0.28),
    0 0 26px rgba(216, 168, 79, 0.16);
  outline: 2px solid rgba(241, 200, 117, 0.56);
  outline-offset: 4px;
  transform: translateY(-2px);
}

.timeline-item::after {
  content: ">";
  position: absolute;
  top: 46px;
  right: -8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 30px;
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-year {
  color: var(--gold-2);
  font-size: 20px;
}

.timeline-icon {
  margin: 12px auto 18px;
}

.timeline-item h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@keyframes home-tile-gold-pulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 1px rgba(241, 200, 117, 0.68),
      0 16px 32px rgba(0, 0, 0, 0.26),
      0 0 20px rgba(216, 168, 79, 0.15);
  }

  50% {
    box-shadow:
      inset 0 0 0 1px rgba(241, 200, 117, 0.86),
      0 18px 36px rgba(0, 0, 0, 0.3),
      0 0 30px rgba(216, 168, 79, 0.24);
  }
}

@media (hover: hover) and (pointer: fine) {
  .feature-grid > .feature-link:hover,
  .home-hero ~ .section .timeline > .timeline-link:hover {
    background:
      linear-gradient(180deg, rgba(216, 168, 79, 0.13), rgba(216, 168, 79, 0.028)),
      rgba(14, 17, 18, 0.9);
    box-shadow:
      inset 0 0 0 1px rgba(241, 200, 117, 0.72),
      0 16px 32px rgba(0, 0, 0, 0.26),
      0 0 22px rgba(216, 168, 79, 0.18);
    transform: translateY(-3px);
    animation: home-tile-gold-pulse 2.1s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-grid > .feature-link:hover,
  .home-hero ~ .section .timeline > .timeline-link:hover {
    animation: none;
  }
}

.home-destination-stack {
  padding: 46px 0 10px;
}

.home-destination-section {
  position: relative;
  margin: 0 auto 72px;
  scroll-margin-top: calc(var(--header) + 28px);
  overflow: visible;
}

.home-anchor-alias {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  scroll-margin-top: calc(var(--header) + 28px);
  pointer-events: none;
}

.home-destination-banner {
  position: relative;
  min-height: var(--home-destination-banner-height, 46vh);
  border: 1px solid var(--line-soft);
  background: #071014;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.home-destination-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
  opacity: var(--home-destination-banner-overlay-opacity, 0.05);
  pointer-events: none;
}

.home-destination-banner-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--home-destination-banner-position, center center);
  opacity: var(--home-destination-banner-opacity, 1);
}

.home-destination-article {
  padding: clamp(36px, 5vw, 70px) var(--section-copy-padding-x);
  border: 1px solid var(--line-soft);
  border-top: 0;
  background:
    linear-gradient(135deg, rgba(216, 168, 79, 0.08), transparent 34%),
    rgba(5, 9, 12, 0.88);
}

.home-destination-rule {
  height: 1px;
  width: min(100%, 720px);
  margin-bottom: 22px;
  background: linear-gradient(90deg, transparent, rgba(216, 168, 79, 0.72), transparent);
}

.home-destination-subtitle {
  width: 100%;
  max-width: none;
  margin: 0 0 22px;
  color: var(--gold-2);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.home-destination-text {
  width: 100%;
  max-width: none;
  color: #cfd5d8;
}

.home-destination-text p {
  margin: 0 0 22px;
  line-height: 1.86;
}

.home-destination-admin-row h3 {
  margin: 0 0 6px;
  color: var(--gold);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.news-strip-head,
.split-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: rgba(5, 9, 11, 0.74);
  transition: transform 160ms ease, border-color 160ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--line);
}

.card-media-frame {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a1014;
}

.card-media-frame,
.news-image-frame,
.upcoming-image-frame,
.article-nav-image-frame,
.article-gallery-item,
.universe-section-image-frame,
.secret-card-image-frame {
  border-radius: calc(var(--ui-card-radius) - 1px);
}

.card > .card-media-frame {
  border-radius: calc(var(--ui-card-radius) - 1px) calc(var(--ui-card-radius) - 1px) 0 0;
}

.card-media-frame.is-missing,
.news-image-frame.is-missing,
.upcoming-image-frame.is-missing,
.article-nav-image-frame.is-missing,
.article-gallery-item.is-missing {
  background:
    linear-gradient(135deg, transparent 46%, rgba(216, 168, 79, 0.12) 47%, rgba(216, 168, 79, 0.12) 53%, transparent 54%),
    linear-gradient(180deg, #0a1014, #05080a);
}

.card-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: var(--card-image-opacity, 1);
  transition: transform var(--card-hover-zoom-duration) ease-out;
  transform: scale(1);
}

:root:not(.is-card-hover-zoom-disabled) .card:hover .card-media {
  transform: scale(var(--card-hover-zoom-scale));
}

.card-body {
  padding: 20px;
}

.card time,
.meta {
  color: var(--muted-2);
  font-size: 12px;
  text-transform: uppercase;
}

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

.cta-tile {
  min-height: 260px;
  padding: 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(3, 7, 9, 0.72);
}

.cta-tile:last-child {
  border-right: 0;
}

.cta-tile .btn {
  margin-top: auto;
}

.newsletter-inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  margin: 22px 0 12px;
}

.field,
.newsletter-inline input,
.admin-input,
.admin-textarea,
.admin-select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.34);
  color: var(--text);
  padding: 0 16px;
  outline: none;
}

.field:focus,
.newsletter-inline input:focus,
.admin-input:focus,
.admin-textarea:focus,
.admin-select:focus {
  border-color: var(--gold);
}

.admin-textarea,
textarea.field {
  min-height: 120px;
  padding-top: 14px;
  resize: vertical;
}

.sub-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: end;
  padding: 92px 0 58px;
  background: #071014;
  background-size: cover;
  background-position: center;
  isolation: isolate;
  --page-header-parallax-y: 0px;
  --page-header-overscan-scale: 1.12;
  --page-header-position-x: center;
  --page-header-position-y: center;
  --page-header-height-desktop: 42vh;
  --page-header-height-tablet: 36vh;
  --page-header-height-mobile: 32vh;
  --page-header-shutter-opacity: 0.92;
  --page-header-shutter-progress: 0;
  --page-header-image-opacity: 1;
}

.sub-hero.has-parallax {
  min-height: var(--page-header-height-desktop, 42vh);
  overflow: hidden;
}

.sub-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: #071014;
  background-size: cover;
  background-position: var(--page-header-position-x, center) var(--page-header-position-y, center);
  transform: translateY(var(--page-header-parallax-y)) scale(var(--page-header-overscan-scale));
  transform-origin: center;
  opacity: 0;
  will-change: transform;
}

.sub-hero-bg.is-active {
  opacity: var(--page-header-image-opacity, 1);
}

.sub-hero-media-label-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.sub-hero-media-label-layer.is-active {
  opacity: 1;
}

.sub-hero-shutter {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
}

.sub-hero.is-shutter-enabled .sub-hero-shutter {
  opacity: 1;
}

.sub-hero-shutter-panel {
  position: absolute;
  display: block;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(2, 7, 10, var(--page-header-shutter-opacity, 0.98))),
    linear-gradient(90deg, rgba(216, 168, 79, 0.08), rgba(0, 0, 0, 0), rgba(216, 168, 79, 0.05));
  opacity: var(--page-header-shutter-opacity, 0.92);
  box-shadow: 0 0 42px rgba(0, 0, 0, 0.72);
  will-change: transform, opacity;
}

.sub-hero[data-shutter-style="horizontal"] .sub-hero-shutter-panel.top,
.article-hero[data-shutter-style="horizontal"] .sub-hero-shutter-panel.top {
  top: 0;
  right: 0;
  left: 0;
  height: 58%;
  transform: translate3d(0, -100%, 0);
  -webkit-mask-image: linear-gradient(180deg, #000 0 86%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0 86%, transparent 100%);
}

.sub-hero[data-shutter-style="horizontal"] .sub-hero-shutter-panel.bottom,
.article-hero[data-shutter-style="horizontal"] .sub-hero-shutter-panel.bottom {
  right: 0;
  bottom: 0;
  left: 0;
  height: 58%;
  transform: translate3d(0, 100%, 0);
  -webkit-mask-image: linear-gradient(0deg, #000 0 86%, transparent 100%);
  mask-image: linear-gradient(0deg, #000 0 86%, transparent 100%);
}

.sub-hero[data-shutter-style="vertical"] .sub-hero-shutter-panel.top,
.article-hero[data-shutter-style="vertical"] .sub-hero-shutter-panel.top {
  top: 0;
  bottom: 0;
  left: 0;
  width: 51%;
  transform: translate3d(-100%, 0, 0);
}

.sub-hero[data-shutter-style="vertical"] .sub-hero-shutter-panel.bottom,
.article-hero[data-shutter-style="vertical"] .sub-hero-shutter-panel.bottom {
  top: 0;
  right: 0;
  bottom: 0;
  width: 51%;
  transform: translate3d(100%, 0, 0);
}

.sub-hero[data-shutter-style="diagonal"] .sub-hero-shutter-panel,
.article-hero[data-shutter-style="diagonal"] .sub-hero-shutter-panel {
  left: -18%;
  width: 136%;
  height: 62%;
}

.sub-hero[data-shutter-style="diagonal"] .sub-hero-shutter-panel.top,
.article-hero[data-shutter-style="diagonal"] .sub-hero-shutter-panel.top {
  top: -10%;
  transform: translate3d(-100%, -35%, 0) rotate(-10deg);
}

.sub-hero[data-shutter-style="diagonal"] .sub-hero-shutter-panel.bottom,
.article-hero[data-shutter-style="diagonal"] .sub-hero-shutter-panel.bottom {
  bottom: -10%;
  transform: translate3d(100%, 35%, 0) rotate(-10deg);
}

.sub-hero > .container,
.sub-hero > .narrow {
  position: relative;
  z-index: 1;
}

.universe-timeline-hero-intro > .universe-timeline-hero-copy {
  transform: translate3d(0, var(--page-header-text-y, 0px), 0);
  will-change: transform;
}

.universe-timeline-hero-copy-inner {
  opacity: 0;
  transform: scale(var(--timeline-hero-text-scale, 1.04));
  transform-origin: center center;
  animation: universeHeroTextSettle var(--timeline-hero-text-duration, 0.8s) ease-out var(--timeline-hero-text-delay, 0.08s) forwards;
  will-change: opacity, transform;
}

.universe-timeline-hero-intro.timeline-hero-text-animation-disabled .universe-timeline-hero-category,
.universe-timeline-hero-intro.timeline-hero-text-animation-disabled .universe-timeline-hero-title,
.universe-timeline-hero-intro.timeline-hero-text-animation-disabled .universe-timeline-hero-year,
.universe-timeline-hero-intro.timeline-hero-text-animation-disabled .universe-timeline-hero-lead {
  opacity: 1;
}

.universe-timeline-hero-intro.timeline-hero-text-animation-disabled .universe-timeline-hero-copy-inner {
  opacity: 1;
  animation: none;
  transform: none;
}

@keyframes universeHeroTextSettle {
  from {
    opacity: 0;
    transform: scale(var(--timeline-hero-text-scale, 1.04));
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .universe-timeline-hero-intro > .universe-timeline-hero-copy {
    transform: none;
  }

  .universe-timeline-hero-intro .universe-timeline-hero-copy-inner {
    opacity: 1;
    animation: none;
  }
}

.sub-hero.center {
  align-items: center;
  text-align: center;
}

.sub-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.95;
  text-transform: uppercase;
}

.sub-lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: #d9dee1;
  font-size: 18px;
}

.center .sub-lead {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1100px) {
  .sub-hero.has-parallax {
    min-height: var(--page-header-height-tablet, 36vh);
  }
}

.tab-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line-soft);
  background: rgba(3, 6, 8, 0.86);
}

.tab-link {
  min-height: 64px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: #d9dce0;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.tab-link:last-child {
  border-right: 0;
}

.tab-link:hover,
.tab-link.is-active {
  color: var(--gold);
  background: rgba(216, 168, 79, 0.08);
}

.history-cards,
.secret-grid,
.values-grid,
.benefit-grid,
.quick-grid {
  display: grid;
  gap: 20px;
}

.history-cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.history-card {
  min-height: 286px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--line-soft);
  background: rgba(6, 9, 11, 0.76);
}

.history-cards > .history-card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.history-cards > .history-card-link > p.text-gold,
.secret-grid > .secret-card > p.text-gold {
  margin-top: auto;
}

@media (hover: hover) and (pointer: fine) {
  .history-cards > .history-card-link:hover {
    border-color: rgba(216, 168, 79, 0.72);
    background:
      linear-gradient(180deg, rgba(216, 168, 79, 0.1), rgba(216, 168, 79, 0.02)),
      rgba(14, 17, 18, 0.9);
    box-shadow:
      0 18px 36px rgba(0, 0, 0, 0.28),
      0 0 24px rgba(216, 168, 79, 0.16);
    transform: translateY(-3px);
  }
}

.history-cards > .history-card-link:focus-visible {
  border-color: rgba(241, 200, 117, 0.8);
  background: rgba(14, 17, 18, 0.9);
  box-shadow:
    0 0 0 2px rgba(241, 200, 117, 0.32),
    0 18px 36px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(216, 168, 79, 0.16);
  outline: 2px solid rgba(241, 200, 117, 0.58);
  outline-offset: 4px;
  transform: translateY(-2px);
}

.section[id] {
  scroll-margin-top: calc(var(--header) + 24px);
}

.image-split {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  min-height: 370px;
  border: 1px solid var(--line-soft);
}

.image-split.reverse {
  grid-template-columns: 1.35fr 1fr;
}

.image-split-copy {
  padding: 54px var(--section-copy-padding-x);
  align-self: center;
}

.image-split-art {
  min-height: 320px;
  background-size: cover;
  background-position: center;
}

.team-studio-section {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: center;
  min-height: 320px;
}

.team-studio-section.is-logo-left .team-studio-copy {
  order: 2;
}

.team-studio-section.is-logo-left .team-studio-logo {
  order: 1;
}

.team-studio-logo {
  min-height: 260px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.team-studio-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.team-studio-logo-art {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.team-studio-logo-art .team-studio-logo-glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  pointer-events: none;
}

.team-studio-logo-art.has-fluorescent-strips .team-studio-logo-glow {
  animation: teamStudioLogoIgnition var(--team-studio-logo-cycle, 5300ms) linear infinite;
  will-change: opacity;
}

.team-studio-logo-caption {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.secret-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.secret-intro {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  padding: 0 0 18px;
}

.secret-card,
.value-card,
.benefit,
.quick-card {
  border: 1px solid var(--line-soft);
  background: rgba(6, 10, 13, 0.78);
  padding: 28px;
}

.secret-grid > .secret-card {
  display: flex;
  flex-direction: column;
}

.secret-card.is-locked {
  filter: saturate(0.55);
}

.secret-card-image-frame {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 18px;
  background: #0a1014;
}

.secret-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: var(--card-image-opacity, 1);
  transition: transform var(--card-hover-zoom-duration) ease-out;
  transform: scale(1);
}

:root:not(.is-card-hover-zoom-disabled) .secret-card:hover img {
  transform: scale(var(--card-hover-zoom-scale));
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 42px;
  border: 1px solid var(--line);
  background: rgba(5, 8, 10, 0.8);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.news-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.news-controls {
  align-items: flex-start;
}

.news-control-group {
  display: grid;
  gap: 10px;
}

.news-control-label {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
}

.news-controls .news-control-group:nth-child(2) .filter-row {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--ui-button-radius);
  background: rgba(6, 9, 11, 0.74);
}

.news-controls .news-control-group:nth-child(2) .filter-btn {
  flex: 1 1 0;
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  white-space: nowrap;
}

.news-controls .news-control-group:nth-child(2) .filter-btn + .filter-btn {
  border-left: 1px solid var(--line-soft);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn,
.tag {
  min-height: 44px;
  border: 1px solid var(--line-soft);
  background: rgba(6, 9, 11, 0.8);
  color: var(--text);
  padding: 0 16px;
  font-family: var(--font-display);
  text-transform: uppercase;
  border-radius: var(--ui-button-radius);
  cursor: pointer;
}

.filter-btn.is-active,
.tag:hover,
.tag.is-active,
.page-chip.is-active {
  color: var(--gold);
  border-color: var(--line);
  background: rgba(216, 168, 79, 0.08);
}

.news-list {
  display: grid;
  gap: 20px;
}

.news-empty {
  margin: 0;
  border: 1px solid var(--line-soft);
  background: rgba(6, 10, 13, 0.8);
  padding: 28px;
  color: var(--muted);
}

.news-row {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  border: 1px solid var(--line-soft);
  background: rgba(6, 10, 13, 0.8);
}

.news-image-frame {
  display: block;
  min-height: 210px;
  overflow: hidden;
  background: #0a1014;
}

.news-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.news-row-copy {
  padding: 30px;
}

.sidebar-stack {
  display: grid;
  gap: 24px;
}

.side-box {
  border: 1px solid var(--line-soft);
  padding: 28px;
  background: rgba(5, 9, 12, 0.82);
}

.side-box h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 30px;
  text-transform: uppercase;
}

.news-layout .sidebar-stack .side-box:nth-child(2) > .filter-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.news-layout .sidebar-stack .side-box:nth-child(2) > .filter-row .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  height: 44px;
  min-height: 44px;
  padding: 0 10px;
  line-height: 1.1;
  text-align: center;
}

.upcoming {
  display: grid;
  gap: 14px;
}

.upcoming-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  align-items: center;
}

.upcoming-image-frame {
  display: block;
  width: 78px;
  height: 62px;
  overflow: hidden;
  background: #0a1014;
}

.upcoming-image-frame img {
  width: 78px;
  height: 62px;
  object-fit: cover;
}

.news-pagination-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 28px;
  row-gap: 12px;
  margin-top: 30px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.page-chip {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  color: var(--muted);
  background: rgba(6, 9, 11, 0.8);
  cursor: pointer;
}

.page-chip:disabled {
  cursor: not-allowed;
  opacity: 0.38 !important;
  pointer-events: none;
}

.page-chip.is-active {
  color: var(--gold);
  border-color: var(--line);
}

.page-ellipsis {
  width: 24px;
  min-height: 42px;
  display: grid;
  place-items: center;
  color: var(--muted);
  pointer-events: none;
  user-select: none;
}

.news-page-jump {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
}

.news-page-jump label {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.news-page-jump-input {
  width: 92px;
  min-height: 42px;
  box-sizing: border-box;
  border: 1px solid var(--line-soft);
  background: rgba(6, 9, 11, 0.82);
  color: var(--text);
  text-align: center;
}

.news-page-jump .btn {
  min-height: 42px;
  padding: 0 18px;
}

.news-page-jump-status {
  flex-basis: 100%;
  min-height: 1em;
  color: var(--gold);
  font-size: 0.78rem;
  text-align: center;
}

/* An empty validation status must not create a second flex line. */
.news-pagination-block .news-page-jump-status:empty {
  display: none;
}

/* FAQ uses one centered composition for both pagination rows. */
.faq-pagination-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 28px;
  row-gap: 12px;
  width: 100%;
}

.news-pagination-block .pagination,
.news-pagination-block .news-page-jump,
.faq-pagination-block .pagination,
.faq-pagination-block .news-page-jump {
  width: auto;
  justify-content: center;
  align-self: center;
  margin: 0;
}

.news-pagination-block .pagination,
.faq-pagination-block .pagination {
  height: 42px;
  align-items: center;
  padding: 0;
  line-height: 1;
}

.news-pagination-block .page-chip,
.faq-pagination-block .page-chip,
.news-pagination-block .news-page-jump-input,
.faq-pagination-block .news-page-jump-input,
.news-pagination-block .news-page-jump .btn,
.faq-pagination-block .news-page-jump .btn {
  height: 42px;
  min-height: 42px;
  box-sizing: border-box;
  align-self: center;
}

.faq-pagination-block .pagination {
  flex: 0 0 auto;
}

.faq-pagination-block .news-page-jump {
  flex: 0 0 auto;
}

@media (max-width: 520px) {
  .news-pagination-block,
  .faq-pagination-block {
    flex-direction: column;
    column-gap: 0;
    row-gap: 12px;
  }

  .pagination {
    gap: 6px;
  }

  .page-chip {
    width: 34px;
    height: 34px;
  }

  .news-pagination-block .pagination,
  .faq-pagination-block .pagination {
    height: 34px;
  }

  .news-pagination-block .page-chip,
  .faq-pagination-block .page-chip {
    height: 34px;
    min-height: 34px;
  }

  .page-ellipsis {
    width: 14px;
    min-height: 34px;
  }

  .pagination .page-chip.is-mobile-extra {
    display: none;
  }

  .news-page-jump {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .news-page-jump label,
  .news-page-jump-status {
    grid-column: 1 / -1;
  }

  .news-page-jump-input {
    width: 100%;
  }

  .news-page-jump .btn {
    width: auto;
    min-width: 104px;
  }

  .faq-pagination-block .news-page-jump {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

}

@media (max-width: 380px) {
  .pagination .page-chip.is-mobile-neighbor {
    display: none;
  }
}

.article-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 96px 0 70px;
  overflow: hidden;
  background: #05080a;
  isolation: isolate;
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: -3%;
  z-index: 0;
  background-image: var(--article-hero-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1);
  animation: articleHeroBreathingZoom 26s ease-in-out infinite alternate;
  will-change: transform;
}

.article-hero[data-page-header-parallax]::before {
  display: none;
}

.article-hero[data-page-header-parallax] .sub-hero-bg {
  position: absolute;
  inset: -3%;
}

.article-hero[data-page-header-parallax] .sub-hero-media-label-layer {
  position: absolute;
  inset: 0;
}

.article-hero[data-page-header-parallax] > .universe-timeline-hero-copy {
  position: relative;
  z-index: 1;
}

.article-hero.is-shutter-enabled .sub-hero-shutter {
  opacity: 1;
}

.article-hero:not([style*="--article-hero-bg"])::before {
  display: none;
}

.universe-detail-hero {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.universe-detail-hero::before {
  display: none;
}

.article-hero > .container {
  position: relative;
  z-index: 1;
}

:root {
  --universe-detail-nav-gap: 24px;
  --universe-detail-nav-font-size: 14px;
  --universe-detail-nav-item-height: 72px;
  --universe-detail-nav-row-gap: 8px;
  --universe-detail-nav-row-separator-width: 1px;
  --universe-detail-nav-row-separator-color: rgba(216, 168, 79, 0.55);
  --universe-detail-nav-active-strength: 0.48;
  --universe-detail-nav-active-strength-percent: 48%;
  --universe-detail-nav-hover-strength: 0.72;
  --universe-detail-nav-hover-strength-percent: 72%;
  --universe-category-nav-font-size: 16px;
  --universe-category-nav-item-height: 72px;
  --universe-category-nav-radius: 6px;
  --universe-category-nav-gap: 8px;
  --universe-category-nav-active-strength: 0.48;
  --universe-category-nav-active-strength-percent: 48%;
  --universe-category-nav-hover-strength: 0.72;
  --universe-category-nav-hover-strength-percent: 72%;
}

.universe-detail-nav {
  padding: 16px 0 var(--universe-detail-nav-gap);
}

.universe-detail-nav + .section {
  padding-top: var(--universe-detail-nav-gap);
}

.universe-detail-nav-inner {
  display: block;
  padding: 0;
}

.universe-detail-nav-label {
  display: none;
}

.universe-detail-nav-list {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  grid-auto-rows: var(--universe-detail-nav-item-height);
  gap: max(6px, var(--universe-detail-nav-row-gap));
  border: 0;
  border-radius: 0;
  background: transparent;
  min-width: 0;
  overflow: visible;
}

.universe-detail-nav-item {
  display: flex;
  width: 100%;
  height: var(--universe-detail-nav-item-height);
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 7px 8px;
  border: 1px solid var(--line-soft);
  border-radius: var(--ui-button-radius);
  position: relative;
  background: rgba(3, 6, 8, 0.86);
  color: #d9dce0;
  font-family: var(--font-display);
  font-size: var(--universe-detail-nav-font-size);
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  overflow-wrap: anywhere;
  hyphens: none;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.universe-detail-nav-label-lines {
  display: grid;
  gap: 3px;
  max-width: 100%;
  justify-items: center;
  line-height: 1.15;
}

.universe-detail-nav-label-primary,
.universe-detail-nav-label-secondary {
  display: block;
}

.universe-detail-nav-item:hover,
.universe-detail-nav-item:focus-visible {
  background: rgba(216, 168, 79, calc(var(--universe-detail-nav-hover-strength) * 0.28));
  color: color-mix(in srgb, var(--gold) var(--universe-detail-nav-hover-strength-percent), #d9dce0);
  box-shadow: inset 0 0 0 1px rgba(216, 168, 79, calc(var(--universe-detail-nav-hover-strength) * 0.45));
}

.universe-detail-nav-item.is-active {
  position: relative;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(239, 194, 99, calc(var(--universe-detail-nav-active-strength) * 0.92)),
    rgba(164, 108, 32, calc(var(--universe-detail-nav-active-strength) * 0.82))
  );
  color: color-mix(in srgb, #fff3cf var(--universe-detail-nav-active-strength-percent), var(--gold));
  font-weight: 700;
  box-shadow:
    inset 0 0 0 1px rgba(255, 235, 170, calc(var(--universe-detail-nav-active-strength) * 0.9)),
    inset 0 0 18px rgba(255, 220, 130, calc(var(--universe-detail-nav-active-strength) * 0.22)),
    0 0 16px rgba(216, 168, 79, calc(var(--universe-detail-nav-active-strength) * 0.22));
}

@media (max-width: 1499px) {
  .universe-detail-nav-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 900px) and (min-width: 761px) {
  .universe-detail-nav-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .universe-detail-nav-item {
    height: var(--universe-detail-nav-item-height);
  }

  .universe-detail-nav-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.article-title {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(50px, 7vw, 86px);
  line-height: 0.95;
  text-transform: uppercase;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.article-body {
  border: 1px solid var(--line-soft);
  background: rgba(5, 9, 12, 0.86);
  padding: 46px var(--section-copy-padding-x);
}

.article-body p {
  width: 100%;
  max-width: none;
  margin: 0 0 22px;
  color: #cfd5d8;
}

.chapter-v-home-body p,
.chapter-v-body p {
  text-align: justify !important;
}

.chapter-v-home-body p,
.chapter-v-body p {
  margin-bottom: 18px;
}

.chapter-v-home-body p[data-chapter-v-dialog],
.chapter-v-body p[data-chapter-v-dialog] {
  margin-bottom: 7px;
}

.chapter-v-home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(240px, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.chapter-v-home-copy {
  min-width: 0;
}

.chapter-v-home-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm, 4px);
  background: rgba(0, 0, 0, 0.28);
}

.chapter-v-home-image.is-auto-height {
  aspect-ratio: auto;
}

.chapter-v-home-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: calc(50% + var(--chapter-v-home-image-offset-x, 0px)) calc(50% + var(--chapter-v-home-image-offset-y, 0px));
}

@media (max-width: 860px) {
  .chapter-v-home-layout {
    grid-template-columns: 1fr;
  }

  .chapter-v-home-image {
    max-width: 520px;
    margin-inline: auto;
  }

  .chapter-v-home-image.is-auto-height {
    aspect-ratio: 4 / 5;
  }
}

.chapter-v-scene-break {
  margin: 16px 0;
  color: var(--muted-2);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-align: center;
}

.chapter-v-end-note {
  margin-top: 34px !important;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.chapter-v-content-title {
  white-space: pre-wrap;
}

.timeline-story-copy .universe-body-subheading,
.image-split-copy .universe-body-subheading {
  margin: 34px 0 14px;
  color: var(--universe-body-subheading-color, var(--gold));
  font-size: var(--universe-body-subheading-desktop-size, 24px);
  font-weight: var(--universe-body-subheading-weight, 700);
  line-height: 1.25;
}

.quote {
  max-width: 780px;
  margin: 34px auto;
  padding: 30px 40px;
  border-left: 2px solid var(--gold);
  color: #f0ece4;
  font-size: 22px;
  font-style: italic;
}

.first-story-lead {
  max-width: 880px;
  margin: 0 0 34px;
  color: #f0ece4;
  font-size: 20px;
  line-height: 1.65;
}

.first-story-quote {
  max-width: 900px;
  margin: 38px 0 44px;
  padding: 26px 34px;
  background: rgba(216, 168, 79, 0.06);
}

.universe-game-ranking {
  max-width: 900px;
  margin: 4px 0 28px;
  padding-left: 28px;
  color: #cfd5d8;
}

.universe-game-ranking li {
  margin: 0 0 7px;
  padding-left: 6px;
}

.timeline-excerpt {
  display: grid;
  grid-template-columns: minmax(0, calc(100% - var(--timeline-excerpt-image-width, 35%) - 28px)) minmax(0, var(--timeline-excerpt-image-width, 35%));
  gap: 28px;
  align-items: start;
  width: 100%;
  margin: 42px 0;
}

.timeline-excerpt.no-image {
  display: block;
}

.timeline-excerpt-copy,
.timeline-excerpt-media {
  min-width: 0;
}

.timeline-excerpt-copy {
  order: 1;
}

.timeline-excerpt-media {
  display: flex;
  flex-direction: column;
  order: 2;
  width: 100%;
  margin: 0;
}

.timeline-excerpt.is-image-left .timeline-excerpt-copy {
  order: 2;
}

.timeline-excerpt.is-image-left .timeline-excerpt-media {
  order: 1;
}

.timeline-excerpt.is-auto-height {
  align-items: stretch;
}

.timeline-excerpt.is-auto-height .timeline-excerpt-media {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-self: stretch;
  min-height: 0;
}

.timeline-excerpt-title {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.2;
  font-weight: 700;
}

.timeline-excerpt-intro {
  margin: 0 0 24px;
  color: #d8dde0;
  font-size: 1.05em;
  line-height: 1.65;
}

.timeline-excerpt-text {
  min-width: 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  text-align: var(--timeline-excerpt-text-align, left);
}

.timeline-excerpt-text p {
  margin: 0 0 22px;
  color: #f0ece4;
  font-size: clamp(20px, 1.35vw, 27px);
  font-style: italic;
  line-height: 1.82;
  text-align: inherit;
}

.timeline-excerpt-image-frame {
  width: 100%;
  height: var(--timeline-excerpt-image-height, 760px);
  box-sizing: border-box;
  overflow: hidden;
  border: var(--timeline-excerpt-frame-width, 0px) solid transparent;
  border-radius: var(--timeline-excerpt-frame-radius, 0px);
  padding: var(--timeline-excerpt-frame-padding, 0px);
  background: #071014;
}

.timeline-excerpt.is-auto-height .timeline-excerpt-image-frame {
  height: auto;
  min-height: 0;
}

.timeline-excerpt-image-frame.is-framed {
  border-color: var(--timeline-excerpt-frame-color, var(--gold));
}

.timeline-excerpt-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-excerpt-caption {
  margin-top: 10px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.timeline-excerpt-admin-panel [data-excerpt-manual-height].is-disabled {
  opacity: 0.52;
}

.article-next-sentence {
  width: 100%;
  max-width: none;
  margin: 28px 0 0;
  color: #cfd5d8;
}

.timeline-story-detail {
  display: grid;
  gap: 28px;
}

.timeline-story-image-set {
  display: grid;
  grid-template-columns: repeat(var(--timeline-story-image-count, 1), minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.chapter-v-story-layout {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 32%);
  align-items: stretch;
}

.chapter-v-story-layout .timeline-story-copy {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.chapter-v-story-layout .chapter-v-image-strip {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  gap: 20px;
  min-height: 0;
  width: 100%;
}

.chapter-v-story-layout .chapter-v-image-strip .timeline-story-image-frame {
  flex: 0 1 var(--timeline-story-image-height, 520px);
  min-height: 0;
}

.chapter-v-story-layout .chapter-v-image-strip .timeline-story-image-frame:only-child {
  flex: 1 1 auto;
}

.chapter-v-story-layout > .timeline-story-image-set.is-after {
  grid-column: 1 / -1;
  grid-row: 2;
}

.timeline-story-image-frame {
  position: relative;
  min-height: var(--timeline-story-image-height, 46vh);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #071014;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.chapter-v-image-strip .timeline-story-image-frame {
  width: var(--timeline-story-image-width, 100%);
  height: var(--timeline-story-image-height, 520px);
  min-height: 0;
  justify-self: center;
}

.timeline-story-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
  opacity: var(--timeline-story-image-overlay-opacity, 0.05);
  pointer-events: none;
}

.timeline-story-image-frame img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--timeline-story-image-position, center center);
  opacity: var(--timeline-story-image-opacity, 1);
  transition: transform 420ms ease, filter 420ms ease, opacity 420ms ease;
}

.timeline-story-image-frame:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) brightness(1.04);
}

.chapter-v-image-strip .timeline-story-image-rotated {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  transform: translate(calc(-50% + var(--timeline-story-image-offset-x, 0px)), calc(-50% + var(--timeline-story-image-offset-y, 0px)));
  transform-origin: center center;
  transition: transform 420ms ease, filter 420ms ease, opacity 420ms ease;
}

.chapter-v-image-strip .timeline-story-image-rotation-stage {
  position: absolute;
  inset: 0;
  overflow: visible;
  transform: rotate(var(--timeline-story-image-rotation, 0deg));
  transform-origin: center center;
}

.chapter-v-image-strip .timeline-story-image-frame:hover .timeline-story-image-rotated {
  transform: translate(calc(-50% + var(--timeline-story-image-offset-x, 0px)), calc(-50% + var(--timeline-story-image-offset-y, 0px)));
  filter: saturate(1.04) brightness(1.04);
}

.timeline-story-image-frame.is-missing {
  display: none;
}

.timeline-next-link,
.timeline-next-link:visited {
  color: var(--gold);
  cursor: pointer;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.timeline-next-link:hover {
  color: var(--gold-2);
}

.timeline-next-link:focus-visible {
  border-radius: 2px;
  outline: 1px solid var(--gold-2);
  outline-offset: 4px;
}

.article-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 36px calc(-1 * var(--section-copy-padding-x)) 0;
}

.article-gallery-item {
  display: block;
  min-width: 0;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #0a1014;
}

.universe-section-image-frame {
  display: block;
  width: min(var(--universe-section-image-width, 100%), 920px);
  max-width: 100%;
  aspect-ratio: var(--universe-section-image-aspect, 16 / 9);
  overflow: hidden;
  margin-top: 26px;
  margin-right: var(--universe-section-image-margin-right, auto);
  margin-bottom: 0;
  margin-left: var(--universe-section-image-margin-left, 0);
  border: 1px solid var(--line-soft);
  background: #0a1014;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.universe-section-image-strip {
  display: grid;
  grid-template-columns: repeat(var(--universe-section-image-count, 1), minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  margin-top: 26px;
}

.universe-section-image-strip .universe-section-image-frame {
  width: 100%;
  max-width: none;
  margin: 0;
}

.article-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-label-frame {
  overflow: hidden;
}

.media-label-frame:not(.hero-slide-label-frame):not(.sub-hero-media-label-layer) {
  position: relative;
}

.media-label {
  position: absolute;
  z-index: 5;
  box-sizing: border-box;
  display: block;
  width: max-content;
  max-width: calc(100% - 12px);
  padding: 4px 7px;
  color: var(--media-label-text-color, #fff);
  background: rgba(0, 0, 0, var(--media-label-background-opacity, 0.58));
  font-size: var(--media-label-font-size, 12px);
  font-weight: var(--media-label-font-weight, 600);
  line-height: 1.25;
  text-align: left;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.78);
  overflow-wrap: anywhere;
  white-space: normal;
  pointer-events: none;
}

.media-label.is-top-left,
.media-label.is-bottom-left {
  left: clamp(4px, var(--media-label-offset-x, 12px), calc(100% - 12px));
  max-width: calc(100% - clamp(4px, var(--media-label-offset-x, 12px), calc(100% - 12px)) - 4px);
}

.media-label.is-top-right,
.media-label.is-bottom-right {
  right: clamp(4px, var(--media-label-offset-x, 12px), calc(100% - 12px));
  max-width: calc(100% - clamp(4px, var(--media-label-offset-x, 12px), calc(100% - 12px)) - 4px);
}

.media-label.is-top-left,
.media-label.is-top-right {
  top: clamp(4px, var(--media-label-offset-y, 12px), calc(100% - 24px));
}

.media-label.is-bottom-left,
.media-label.is-bottom-right {
  bottom: clamp(4px, var(--media-label-offset-y, 12px), calc(100% - 24px));
}

.universe-section-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--universe-section-image-position, 50% 50%);
}

.news-image-frame img,
.upcoming-image-frame img,
.article-gallery-item img,
.universe-section-image-frame img,
.article-nav-image-frame img,
.support-tier-image,
.home-destination-banner-image,
.secret-card img {
  transition: transform 420ms ease, filter 420ms ease, opacity 420ms ease;
}

.news-image-frame img,
.upcoming-image-frame img,
.article-gallery-item img,
.universe-section-image-frame img,
.article-nav-image-frame img,
.support-tier-image {
  cursor: zoom-in;
}

.secret-card,
.secret-card img {
  cursor: pointer;
}

.news-row:hover .news-image-frame img,
.upcoming-item:hover .upcoming-image-frame img,
.article-gallery-item:hover img,
.universe-section-image-frame:hover img,
.article-nav-card:hover .article-nav-image-frame img,
.support-tier-card:hover .support-tier-image,
.home-destination-banner:hover .home-destination-banner-image {
  transform: scale(1.035);
  filter: saturate(1.04) brightness(1.04);
}

.article-gallery-item:hover,
.universe-section-image-frame:hover,
.news-row:hover .news-image-frame,
.support-tier-card:hover .support-tier-image {
  box-shadow: 0 0 26px rgba(84, 160, 176, 0.08);
}

.article-wide {
  grid-column: 1 / -1;
  aspect-ratio: 5 / 1.2 !important;
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.article-nav-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  background: rgba(7, 11, 14, 0.8);
}

.article-nav-image-frame {
  display: block;
  width: 150px;
  height: 96px;
  overflow: hidden;
  background: #0a1014;
}

.article-nav-image-frame img {
  width: 150px;
  height: 96px;
  object-fit: cover;
}

@keyframes articleHeroBreathingZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.045);
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-hero::before {
    animation: none;
    transform: none;
  }

  .news-image-frame img,
  .upcoming-image-frame img,
  .article-gallery-item img,
  .article-nav-image-frame img,
  .support-tier-image,
  .home-destination-banner-image,
  .secret-card img {
    transition: none;
  }
}

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

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, var(--founder-art-width, 560px));
  align-items: start;
  gap: var(--founder-art-gap, 34px);
  border: 1px solid var(--line-soft);
  border-radius: var(--ui-card-radius);
  overflow: hidden;
}

.founder-layout.is-image-left {
  grid-template-columns: minmax(0, var(--founder-art-width, 560px)) minmax(0, 1fr);
}

.founder-layout.is-image-left .founder-art {
  order: 1;
}

.founder-layout.is-image-left .founder-copy {
  order: 2;
}

.founder-layout.is-image-right .founder-copy {
  order: 1;
}

.founder-layout.is-image-right .founder-art {
  order: 2;
}

.founder-layout.is-wrap-left-top,
.founder-layout.is-wrap-right-top,
.founder-layout.is-wrap-left-bottom,
.founder-layout.is-wrap-right-bottom {
  display: block;
}

.founder-copy {
  padding: 46px var(--section-copy-padding-x);
}

.founder-copy::after,
.founder-wrap-tail::after {
  content: "";
  display: block;
  clear: both;
}

.founder-art {
  position: relative;
  width: 100%;
  height: var(--founder-art-height, 420px);
  min-height: 0;
  overflow: hidden;
  align-self: start;
  border-radius: var(--founder-art-radius, 0);
  background: rgba(0, 0, 0, 0.3);
}

.founder-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--founder-art-image, none);
  background-size: cover;
  background-position: center center;
  transform: translate3d(var(--founder-image-offset-x, 0px), var(--founder-image-offset-y, 0px), 0) scale(var(--founder-image-scale, 1));
  transform-origin: center center;
}

.founder-layout.is-wrap-left-top .founder-art,
.founder-layout.is-wrap-left-bottom .founder-art {
  float: left;
  width: min(var(--founder-art-width, 560px), 52%);
  margin: 0 var(--founder-art-gap, 34px) var(--founder-art-gap, 34px) 0;
}

.founder-layout.is-wrap-right-top .founder-art,
.founder-layout.is-wrap-right-bottom .founder-art {
  float: right;
  width: min(var(--founder-art-width, 560px), 52%);
  margin: 0 0 var(--founder-art-gap, 34px) var(--founder-art-gap, 34px);
}

.founder-layout.is-columns {
  display: block;
  padding: 46px var(--section-copy-padding-x);
}

.founder-columns-heading {
  margin-bottom: 30px;
}

.founder-columns-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: var(--founder-columns-gap, 34px);
}

.founder-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.founder-column-text {
  min-width: 0;
}

.founder-column-text p {
  margin: 0;
  text-align: var(--founder-columns-text-align, justify) !important;
  text-align-last: var(--founder-columns-text-align-last, left) !important;
  text-justify: inter-word;
  hyphens: auto;
  overflow-wrap: break-word;
}

.founder-column-text p + p {
  margin-top: 1em;
}

.founder-column-image {
  position: relative;
  flex: 0 0 auto;
  align-self: center;
  width: var(--founder-column-image-width, 100%);
  inline-size: var(--founder-column-image-width, 100%);
  max-width: none;
  max-inline-size: none;
  height: var(--founder-column-image-height, 300px);
  margin-inline: auto;
  box-sizing: border-box;
  overflow: hidden;
  border: var(--founder-column-image-border-width, 1px) solid var(--founder-column-image-border-color, rgba(216, 168, 79, 0.28));
  border-radius: var(--founder-column-image-radius, 0);
  background: rgba(0, 0, 0, 0.3);
}

.founder-column-image.is-top {
  margin-top: 0;
  margin-bottom: var(--founder-column-image-gap, 18px);
}

.founder-column-image.is-bottom {
  margin-top: var(--founder-column-image-gap, 18px);
  margin-bottom: 0;
}

.founder-column-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: var(--founder-column-image-position-x, 50%) var(--founder-column-image-position-y, 50%);
  transform: scale(var(--founder-column-image-scale, 1)) !important;
  transform-origin: center center;
}

.team-members-panel {
  padding: 34px;
}

.team-members-section .section-title {
  text-align: center;
}

.team-members-grid {
  --team-member-card-gap: 20px;
  --team-member-safe-card-width: calc((100% - 60px) / 4);
  display: flex;
  align-items: stretch;
  gap: var(--team-member-card-gap);
  margin-top: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 2px 16px;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(216, 168, 79, 0.38) rgba(255, 255, 255, 0.04);
}

.team-member-card {
  min-width: var(--team-member-safe-card-width);
  width: var(--team-member-safe-card-width);
  max-width: var(--team-member-safe-card-width);
  flex: 0 0 var(--team-member-safe-card-width);
  display: flex;
  flex-direction: column;
  min-height: var(--team-member-card-min-height, 618px);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--ui-card-radius);
  background: rgba(5, 8, 10, 0.74);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.team-member-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--team-member-image-area-height, var(--team-member-image-height, 340px));
  height: var(--team-member-image-area-height, var(--team-member-image-height, 340px));
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.32);
}

.team-member-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(var(--team-member-image-scale, 1));
  transform-origin: center center;
}

.team-member-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  text-align: var(--team-member-heading-align, center);
}

.team-member-role {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1.35;
  text-align: var(--team-member-heading-align, center);
}

.team-member-card h3,
.team-member-card p {
  margin: 0;
}

.team-member-card h3 {
  font-size: 20px;
  line-height: 1.2;
  text-align: var(--team-member-heading-align, center);
}

.team-member-card p {
  line-height: 1.6;
  text-align: var(--team-member-description-align, center);
  text-align-last: var(--team-member-description-align-last, auto);
}

@media (max-width: 980px) {
  .team-members-grid {
    --team-member-safe-card-width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 1280px) and (min-width: 981px) {
  .team-members-grid {
    --team-member-safe-card-width: calc((100% - 40px) / 3);
  }
}

@media (max-width: 620px) {
  .team-members-grid {
    --team-member-card-gap: 16px;
    --team-member-safe-card-width: 100%;
    gap: 16px;
    padding-bottom: 12px;
  }

  .team-member-content {
    padding: 20px;
  }
}

/* Per-frame CMS background controls. The overlay keeps existing frame gradients intact. */
:is(.section-panel, .frame-panel)[data-text-frame-bg] {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    color-mix(in srgb, var(--text-frame-bg-color, #05090b) var(--text-frame-bg-opacity, 72%), transparent);
}

:is(.article-body, .community-form-panel)[data-text-frame-bg] {
  background-color: color-mix(in srgb, var(--text-frame-bg-color, #05090b) var(--text-frame-bg-opacity, 72%), transparent);
}

.home-destination-article[data-text-frame-bg] {
  background:
    linear-gradient(135deg, rgba(216, 168, 79, 0.08), transparent 34%),
    color-mix(in srgb, var(--text-frame-bg-color, #05090c) var(--text-frame-bg-opacity, 88%), transparent);
}

.cta-band[data-text-frame-bg] {
  background: color-mix(in srgb, var(--text-frame-bg-color, #05080a) var(--text-frame-bg-opacity, 80%), transparent);
}

.contact-grid {
  display: block;
}

.contact-primary-grid {
  display: grid;
  grid-template-columns:
    minmax(0, var(--contact-form-column-width, 43fr))
    minmax(0, var(--contact-details-column-width, 41fr))
    minmax(0, var(--contact-image-column-width, 16fr));
  gap: 48px;
  align-items: stretch;
}

.contact-form-column,
.contact-details-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.contact-form {
  display: grid;
  gap: 20px;
  flex: 1 1 auto;
  min-height: 0;
  grid-template-rows: auto auto minmax(148px, 1fr) auto;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-details-column .info-list {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.info-list {
  display: grid;
  gap: 24px;
}

.info-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
}

.info-row strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.contact-image {
  min-height: 360px;
  height: 100%;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line-soft);
}

.contact-privacy-note {
  margin: 20px 0 0;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--line-soft);
  background: rgba(6, 10, 13, 0.76);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.faq-question-label {
  flex: 1 1 auto;
  min-width: 0;
}

.faq-question > span:last-child {
  flex: 0 0 auto;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.admin-full-width {
  grid-column: 1 / -1;
  min-width: 0;
}

.admin-section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-section-heading-row h3 {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 15px;
  text-transform: uppercase;
}

.admin-form-grid .admin-faq-item {
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
  margin-top: 14px;
}

.admin-form-grid .admin-faq-item > .admin-form-grid {
  min-width: 0;
}

.admin-form-grid .admin-faq-item > .admin-section-heading-row .admin-actions {
  margin-top: 0;
}

.community-form-panel {
  width: min(610px, calc(100% - 48px));
  margin: 48px auto 64px;
  position: relative;
  z-index: 3;
  padding: 42px;
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(5, 9, 12, 0.92);
  box-shadow: var(--shadow);
}

.page > .sub-hero.center:not(.has-parallax):has(+ .community-form-panel) {
  border-bottom: 1px solid var(--line-soft);
}

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

#community-form,
.community-info-section {
  scroll-margin-top: calc(var(--header) + 24px);
}

.community-topic-section {
  padding-top: 12px;
}

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

.community-topic-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 32px 26px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(216, 168, 79, 0.055), rgba(216, 168, 79, 0.012)),
    rgba(5, 9, 12, 0.84);
  color: var(--text);
  text-align: center;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.community-topic-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 168, 79, 0.34);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 20px;
}

.community-topic-title {
  color: var(--community-topic-title-color, var(--gold));
  font-family: var(--font-display);
  font-size: var(--community-topic-title-size, 26px);
  line-height: 1.08;
  text-transform: uppercase;
}

.community-topic-subtitle {
  color: var(--community-topic-subtitle-color, var(--text));
  font-size: var(--community-topic-subtitle-size, 17px);
  font-weight: 700;
  line-height: 1.35;
}

.community-topic-launch-date {
  width: 100%;
  padding-top: 4px;
  border-top: 1px solid rgba(216, 168, 79, 0.22);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.community-topic-text {
  color: var(--muted);
  font-size: var(--community-topic-text-size, 15px);
  line-height: 1.65;
}

.community-topic-emphasis {
  color: rgba(241, 200, 117, 0.96);
  font-weight: 700;
}

.community-topic-cta {
  margin-top: auto;
  color: var(--community-topic-cta-color, var(--gold));
  font-family: var(--font-display);
  font-size: var(--community-topic-cta-size, 14px);
  text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
  .community-topic-card:hover {
    border-color: rgba(216, 168, 79, 0.72);
    background:
      linear-gradient(180deg, rgba(216, 168, 79, 0.105), rgba(216, 168, 79, 0.02)),
      rgba(9, 13, 16, 0.92);
    box-shadow:
      0 22px 54px rgba(0, 0, 0, 0.34),
      0 0 24px rgba(216, 168, 79, 0.14);
    transform: translateY(-3px);
  }
}

.community-topic-card:focus-visible {
  outline: 2px solid rgba(241, 200, 117, 0.68);
  outline-offset: 4px;
  border-color: rgba(241, 200, 117, 0.82);
  box-shadow:
    0 0 0 2px rgba(241, 200, 117, 0.24),
    0 22px 54px rgba(0, 0, 0, 0.34);
}

.community-info-card {
  display: grid;
  gap: 32px;
  padding: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    rgba(5, 9, 12, 0.84);
  box-shadow: var(--shadow);
}

.community-info-card.has-image {
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.community-info-card.has-image.is-reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(240px, 0.82fr);
}

.community-info-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.community-info-copy .section-title.community-info-title {
  margin-bottom: 4px;
  color: var(--community-info-title-color, var(--gold)) !important;
  font-size: var(--community-info-title-size, 34px) !important;
  font-weight: 700 !important;
  line-height: 1.14 !important;
}

.community-info-launch-date {
  width: fit-content;
  max-width: 100%;
  padding: 10px 0 4px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.community-info-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.community-info-media {
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.26);
}

.community-info-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
}

.community-benefit-list {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.community-benefit-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
}

.community-benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.community-info-actions {
  margin-top: 10px;
}

.community-cta-disabled {
  cursor: default;
  opacity: 0.62;
  pointer-events: none;
}

@media (max-width: 900px) {
  .community-topic-grid {
    grid-template-columns: 1fr;
  }

  .community-topic-card {
    min-height: 0;
  }

  .community-info-card,
  .community-info-card.has-image,
  .community-info-card.has-image.is-reverse {
    grid-template-columns: 1fr;
  }

  .community-info-media {
    min-height: 220px;
  }

  .community-info-media img {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .community-topic-card,
  .community-info-card {
    padding: 28px 20px;
  }

  .community-topic-icon {
    width: 46px;
    height: 46px;
  }

  .community-info-actions .btn,
  .community-info-actions .community-cta-disabled {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .community-topic-card {
    transition: none;
  }
}

.support-page {
  --support-accent: var(--gold);
  --support-card-bg-opacity: 0.86;
  --support-section-overlay-opacity: 0.72;
  --support-title-color: var(--text);
  --support-text-color: var(--muted);
  --support-card-padding: 28px;
  --support-card-border-color: var(--line-soft);
  --support-card-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  --support-card-gradient: linear-gradient(145deg, rgba(216, 168, 79, 0.1), transparent 38%);
  --support-button-spacing: 16px;
  background:
    linear-gradient(180deg, rgba(2, 4, 5, var(--support-section-overlay-opacity)), rgba(2, 4, 5, 0.96)),
    var(--support-bg-image) center / cover fixed;
}

.support-hero {
  min-height: min(var(--support-hero-height, 82vh), calc(100vh - var(--header)));
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  isolation: isolate;
}

.support-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 42%, rgba(0, 0, 0, var(--support-hero-vignette-opacity, 0.45)) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, var(--support-hero-darkness, 0.62)), rgba(0, 0, 0, 0.18) 46%, rgba(0, 0, 0, var(--support-hero-darkness, 0.62))),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.74)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, var(--support-hero-overlay-opacity, 0.62)));
}

.support-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--support-hero-position, center center);
  opacity: var(--support-hero-image-opacity, 1);
  animation: supportHeroZoom 24s ease-in-out infinite alternate;
  transform: translateY(var(--support-hero-parallax-y, 0px));
  scale: 1;
  will-change: transform, scale;
}

.support-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
  padding-top: 42px;
  animation: supportFadeUp 720ms ease both;
}

.support-title {
  margin: 16px 0;
  color: var(--support-title-color);
  font-family: var(--font-display);
  font-size: clamp(54px, 9vw, 132px);
  line-height: 0.9;
  text-transform: uppercase;
}

.support-lead {
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--support-text-color);
  font-size: clamp(18px, 2.2vw, 25px);
}

.support-section {
  position: relative;
  padding: var(--support-section-padding, 88px 0);
  margin: var(--support-section-margin, 0);
}

.support-section-head {
  width: 100%;
  max-width: none;
  margin: 0 0 34px;
  padding-right: var(--section-copy-padding-x);
  padding-left: var(--section-copy-padding-x);
  text-align: center;
}

.support-reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.support-reason-card,
.support-tier-card {
  border: 1px solid var(--support-card-border-color);
  background:
    var(--support-card-gradient),
    rgba(8, 13, 16, var(--support-card-bg-opacity, 0.86));
  box-shadow: var(--support-card-shadow);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.support-reason-card {
  min-height: 230px;
  padding: var(--support-card-padding);
  display: grid;
  align-content: start;
  gap: 14px;
}

.support-reason-card:hover,
.support-tier-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--support-accent) 70%, transparent);
}

.support-icon {
  width: var(--support-card-icon-size, 62px);
  height: var(--support-card-icon-size, 62px);
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--support-accent) 55%, transparent);
  color: var(--support-card-icon-color, var(--support-accent));
  font-family: var(--font-display);
  font-size: calc(var(--support-card-icon-size, 62px) * 0.45);
  background: rgba(216, 168, 79, 0.08);
}

.support-icon.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-icon.is-pulse {
  animation: supportIconPulse 2.4s ease-in-out infinite;
}

.support-icon.is-float {
  animation: supportIconFloat 3.4s ease-in-out infinite;
}

.support-reason-card h3,
.support-tier-card h3 {
  margin: 0;
  color: var(--support-tier-color, var(--support-accent));
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
}

.support-reason-card p,
.support-tier-card p {
  margin: 0;
  color: var(--support-text-color);
}

.support-tier-description-wrap {
  position: relative;
  margin: 0 -10px;
  padding: 0 10px 24px;
  max-height: 10.15em;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    rgba(4, 8, 11, 0.08) 0%,
    rgba(4, 8, 11, 0.42) 52%,
    rgba(4, 8, 11, 0.9) 100%
  );
}

.support-tier-description-wrap.is-long::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10.15em;
  pointer-events: none;
  background: linear-gradient(
    to top,
    var(--surface-strong, #0b1014) 0%,
    color-mix(in srgb, var(--surface-strong, #0b1014) 78%, transparent) 42%,
    color-mix(in srgb, var(--surface-strong, #0b1014) 38%, transparent) 72%,
    transparent 100%
  );
}

.support-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.support-tier-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: var(--support-card-padding);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.support-tier-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--support-accent) 22%, transparent), transparent 52%);
  transition: opacity 260ms ease;
  pointer-events: none;
}

.support-tier-card:hover::before {
  opacity: 1;
}

.support-tier-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.support-tier-image {
  width: calc(100% + var(--support-card-padding) + var(--support-card-padding));
  height: var(--support-tier-image-height, 240px);
  margin: calc(-1 * var(--support-card-padding)) calc(-1 * var(--support-card-padding)) 22px;
  display: block;
  max-width: none;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
  border-bottom: 1px solid var(--support-card-border-color);
  border-radius: calc(var(--ui-card-radius) - 1px) calc(var(--ui-card-radius) - 1px) 0 0;
}

.support-tier-image-frame {
  width: calc(100% + var(--support-card-padding) + var(--support-card-padding));
  height: var(--support-tier-image-height, 240px);
  margin: calc(-1 * var(--support-card-padding)) calc(-1 * var(--support-card-padding)) 22px;
  flex: 0 0 auto;
  border-bottom: 1px solid var(--support-card-border-color);
  border-radius: calc(var(--ui-card-radius) - 1px) calc(var(--ui-card-radius) - 1px) 0 0;
}

.support-tier-image-frame .support-tier-image {
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.support-tier-icon {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  margin: 8px 0;
  border: 1px solid color-mix(in srgb, var(--support-tier-color, var(--support-accent)) 50%, transparent);
  color: var(--support-tier-color, var(--support-accent));
  background: rgba(255, 255, 255, 0.04);
}

.support-price {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 34px;
}

.support-badge,
.support-limit {
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--support-tier-color, var(--support-accent)) 65%, transparent);
  color: var(--support-tier-color, var(--support-accent));
  background: rgba(216, 168, 79, 0.08);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.support-tier-badge {
  margin: -6px 0 16px;
  color: var(--support-tier-color, var(--support-accent));
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.support-badge {
  padding: 8px 10px;
  font-size: 14px;
  white-space: nowrap;
}

.support-limit {
  margin: 0 0 18px;
  padding: 7px 10px;
  font-size: 13px;
}

.support-tier-rewards {
  margin-top: 26px;
  margin-bottom: var(--support-button-spacing);
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--support-accent) 42%, var(--support-card-border-color));
  max-height: none;
  overflow: visible;
}

.support-tier-card:hover .support-tier-rewards {
  max-height: none;
}

.support-tier-rewards h4 {
  margin: 0 0 14px;
  color: var(--support-tier-color, var(--support-accent));
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.support-tier-rewards ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0 0 0 22px;
  color: var(--text);
  line-height: 1.42;
}

.support-tier-rewards li::marker {
  color: var(--support-tier-color, var(--support-accent));
  font-size: 1.05em;
}

.support-tier-rewards .is-inherited,
.support-selected-rewards .is-inherited,
.support-result-rewards .is-inherited {
  color: var(--gold-2);
}

.support-tier-rewards .is-inherited span,
.support-selected-rewards .is-inherited span,
.support-result-rewards .is-inherited span {
  color: var(--muted);
  font-size: 12px;
}

.support-tier-button,
.support-payment-panel .btn,
.support-final-cta .btn {
  margin-top: var(--support-button-spacing);
}

.support-tier-button {
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.support-tier-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: var(--support-button-spacing);
}

.support-tier-info-button,
.support-tier-more {
  width: 100%;
  justify-content: center;
}

.support-tier-more {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 20px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: var(--gold-2);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.support-tier-more::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
  transition: transform 180ms ease;
}

.support-tier-more:hover {
  color: var(--text);
  text-decoration: underline;
}

.support-tier-more:hover::after {
  transform: translateX(3px);
}

.admin-field-note {
  align-self: end;
  margin: 0;
}

.admin-info-box {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(216, 168, 79, 0.28);
  background: rgba(216, 168, 79, 0.07);
}

.admin-info-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.support-counter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 28px;
}

.support-counter {
  padding: 22px;
  text-align: center;
  border: 1px solid var(--support-card-border-color);
  background: rgba(6, 10, 13, 0.78);
  box-shadow: var(--support-card-shadow);
}

.support-counter strong {
  display: block;
  color: var(--support-title-color);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
}

.support-counter span {
  color: var(--support-text-color);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.support-custom-section {
  padding-top: 44px;
}

.support-payment-panel {
  border: 1px solid var(--support-card-border-color);
  background:
    radial-gradient(circle at 15% 20%, color-mix(in srgb, var(--support-accent) 13%, transparent), transparent 32%),
    rgba(5, 9, 12, 0.92);
  box-shadow: var(--support-card-shadow);
  padding: clamp(28px, 5vw, 58px);
}

.support-selected-tier {
  display: grid;
  gap: 18px;
  max-width: 860px;
  margin: 0 auto 28px;
  padding: 22px;
  border: 1px solid var(--support-card-border-color);
  background: rgba(0, 0, 0, 0.26);
}

.support-selected-tier h3,
.support-selected-rewards h4 {
  margin: 0;
  color: var(--support-accent);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.support-selected-tier strong {
  display: block;
  margin-top: 6px;
  color: var(--support-title-color);
  font-family: var(--font-display);
  font-size: 30px;
}

.support-selected-rewards ul,
.support-result-rewards ul {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--support-text-color);
  text-align: left;
}

.support-amount-box {
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin: 0 auto 34px;
}

.support-payment-label {
  margin: 0;
  color: var(--support-title-color);
  font-family: var(--font-display);
  text-align: center;
  text-transform: uppercase;
}

.support-amount-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.support-amount-input span {
  color: var(--support-accent);
  font-family: var(--font-display);
  font-size: 28px;
}

.support-payment-methods .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.support-amount-result {
  min-height: 72px;
  padding: 16px;
  border: 1px solid var(--support-card-border-color);
  background: rgba(0, 0, 0, 0.22);
  text-align: center;
}

.support-amount-result strong {
  color: var(--support-accent);
  font-family: var(--font-display);
  font-size: 24px;
}

.support-payment-methods {
  text-align: center;
}

.support-payment-methods h3 {
  color: var(--support-title-color);
  font-family: var(--font-display);
  font-size: 32px;
  text-transform: uppercase;
}

.support-tier-card.is-limited {
  border-color: color-mix(in srgb, var(--support-accent) 72%, transparent);
}

.support-final-cta {
  border-color: color-mix(in srgb, var(--support-accent) 42%, transparent);
}

@keyframes supportHeroZoom {
  from {
    scale: 1;
  }
  to {
    scale: var(--support-hero-zoom, 1.08);
  }
}

@keyframes supportIconPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(216, 168, 79, 0);
  }
  50% {
    box-shadow: 0 0 24px color-mix(in srgb, var(--support-card-icon-color, var(--support-accent)) 34%, transparent);
  }
}

@keyframes supportIconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes supportFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .support-reasons-grid,
  .support-tier-grid,
  .support-counter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .support-hero {
    min-height: min(76vh, calc(100vh - var(--header)));
  }

  .support-reasons-grid,
  .support-tier-grid,
  .support-counter-grid {
    grid-template-columns: 1fr;
  }

  .support-reason-card,
  .support-tier-card {
    --support-card-padding: 24px;
    padding: var(--support-card-padding);
  }

  .support-tier-top {
    display: grid;
  }
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 48px;
}

.toc {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line-soft);
  background: rgba(5, 9, 12, 0.8);
}

.toc ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.toc li {
  margin: 12px 0;
}

.legal-content {
  display: grid;
  gap: 26px;
}

.legal-section {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section h2 {
  color: var(--gold);
  font-family: var(--font-display);
  text-transform: uppercase;
}

@media (min-width: 981px) {
  .legal-layout.terms-layout {
    align-items: start;
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .legal-layout.terms-layout .toc {
    max-height: calc(100vh - var(--header) - 48px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }

  .legal-layout.terms-layout .legal-content {
    max-height: none;
    overflow: visible;
  }

  .legal-layout.terms-layout .legal-section {
    scroll-margin-top: calc(var(--header) + 16px);
  }
}

@media (max-width: 980px) {
  .legal-layout.terms-layout {
    height: auto;
    max-height: none;
  }

  .legal-layout.terms-layout .toc {
    max-height: min(52vh, 420px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .legal-layout.terms-layout .legal-content {
    max-height: none;
    overflow: visible;
  }
}

.not-found {
  position: relative;
  min-height: var(--not-found-height, calc(100vh - var(--header)));
  padding: 180px 0 80px;
  background: #020303;
  background-size: cover;
  background-position: center top;
  color: var(--not-found-text-color, var(--text));
  isolation: isolate;
  text-align: center;
}

.not-found::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--not-found-bg);
  background-size: cover;
  background-position: center top;
  opacity: var(--not-found-bg-opacity, 1);
}

.not-found::after {
  z-index: -1;
  opacity: var(--not-found-overlay-opacity, 1);
  background:
    linear-gradient(0deg, rgba(0, 0, 0, var(--not-found-darkness-opacity, 0)), rgba(0, 0, 0, var(--not-found-darkness-opacity, 0))),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(1, 3, 4, 0.9));
}

.not-found > .container {
  position: relative;
  z-index: 1;
}

.not-found h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 102px);
  line-height: 0.95;
  text-transform: uppercase;
}

.not-found h2 {
  margin: 18px 0;
  color: var(--not-found-accent-color, var(--gold));
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 38px);
  text-transform: uppercase;
}

.not-found .section-kicker,
.not-found .benefit h3 {
  color: var(--not-found-accent-color, var(--gold));
}

.maintenance-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(90px, 12vh, 150px) 20px;
  background: #020303;
  color: var(--text);
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}

.maintenance-page::before,
.maintenance-page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.maintenance-page::before {
  z-index: -2;
  background-image: var(--maintenance-bg);
  background-size: cover;
  background-position: center center;
  opacity: var(--maintenance-bg-opacity, 1);
  transform: scale(1.02);
}

.maintenance-page::after {
  z-index: -1;
  background:
    radial-gradient(circle at center, rgba(216, 168, 79, calc(var(--maintenance-glow, 0.32) * 0.13)), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, var(--maintenance-darkness, 0.72)), rgba(0, 0, 0, 0.82)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, var(--maintenance-darkness, 0.72)));
}

.maintenance-panel {
  position: relative;
  width: min(920px, calc(100vw - 40px));
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid rgba(216, 168, 79, 0.28);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(216, 168, 79, 0.08), transparent 28%),
    rgba(2, 6, 8, 0.78);
  box-shadow:
    0 0 calc(34px * var(--maintenance-glow, 0.32)) rgba(216, 168, 79, 0.2),
    0 24px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.maintenance-panel::before,
.maintenance-panel::after {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  pointer-events: none;
}

.maintenance-panel::before {
  top: 14px;
  left: 14px;
  border-top: 1px solid rgba(216, 168, 79, 0.5);
  border-left: 1px solid rgba(216, 168, 79, 0.5);
}

.maintenance-panel::after {
  right: 14px;
  bottom: 14px;
  border-right: 1px solid rgba(216, 168, 79, 0.5);
  border-bottom: 1px solid rgba(216, 168, 79, 0.5);
}

.maintenance-logo {
  width: min(280px, 62vw);
  margin: 0 auto 28px;
  opacity: 0.92;
  filter: drop-shadow(0 0 18px rgba(216, 168, 79, 0.18));
}

.maintenance-preview-badge,
.maintenance-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.maintenance-preview-badge {
  padding: 8px 14px;
  border: 1px solid rgba(216, 168, 79, 0.32);
  border-radius: 6px;
  background: rgba(216, 168, 79, 0.08);
}

.maintenance-status span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(216, 168, 79, 0.78);
  animation: maintenance-pulse 2.4s ease-in-out infinite;
}

.maintenance-page h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  text-transform: uppercase;
}

.maintenance-main,
.maintenance-extra,
.maintenance-return {
  width: 100%;
  max-width: none;
  margin: 20px 0 0;
  color: rgba(244, 240, 232, 0.86);
}

.maintenance-main {
  font-size: clamp(17px, 2vw, 22px);
}

.maintenance-extra,
.maintenance-return {
  color: var(--muted);
}

.maintenance-newsletter {
  max-width: 620px;
  margin: 28px auto 0;
}

.maintenance-newsletter .newsletter-inline {
  margin: 0;
}

.maintenance-actions {
  justify-content: center;
  margin-top: 30px;
}

.maintenance-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.maintenance-admin-alert {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(216, 168, 79, 0.42);
  border-radius: 8px;
  background: rgba(216, 168, 79, 0.1);
  color: var(--gold);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.maintenance-admin-panel.is-active {
  border-color: rgba(216, 168, 79, 0.46);
  box-shadow: 0 0 24px rgba(216, 168, 79, 0.08);
}

@keyframes maintenance-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 640px) {
  .maintenance-panel {
    width: min(100%, calc(100vw - 28px));
    padding: 30px var(--section-copy-padding-x);
  }

  .maintenance-newsletter .newsletter-inline {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #020303;
}

.footer-inner {
  width: min(1200px, calc(100% - 48px));
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.footer-logo {
  width: 132px;
  opacity: 0.82;
}

.footer-links,
.footer-social {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  text-transform: uppercase;
}

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

.hidden-admin-text {
  color: var(--muted);
}

.hidden-admin-trigger {
  appearance: none;
  color: inherit;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  cursor: default;
}

.site-footer .hidden-admin-trigger,
.site-footer .hidden-admin-trigger:hover,
.site-footer .hidden-admin-trigger:focus,
.site-footer .hidden-admin-trigger:active {
  display: inline;
  vertical-align: baseline;
  color: inherit !important;
  opacity: var(--footer-copyright-opacity, 0.75) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  mix-blend-mode: normal;
  text-decoration: none;
  text-shadow: inherit;
  transform: none;
  outline: none;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  width: min(1260px, calc(100% - 26px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 72px 1fr auto auto 44px;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(5, 8, 10, 0.97);
  box-shadow: var(--shadow);
}

.cookie-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 28px;
}

.cookie-banner h2,
.cookie-modal h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.cookie-banner p,
.cookie-modal p {
  margin: 0;
  color: var(--muted);
}

.plain-close {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 32px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.68);
}

body.is-lightbox-open {
  overflow: hidden;
}

#app img.public-image-protected,
.image-lightbox img.public-image-protected {
  user-select: none;
  -webkit-user-drag: none;
}

 .contact-response-row {
  grid-column: 1 / -1;
  border-top: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  padding-top: 16px;
  margin-top: 24px;
  margin-bottom: 4px;
}

.contact-response-row p.contact-response-delay {
  margin: 0;
  opacity: var(--contact-response-delay-opacity, 0.7) !important;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(0, 0, 0, var(--lightbox-backdrop-opacity, 0.82));
  backdrop-filter: blur(var(--lightbox-backdrop-blur, 8px));
  -webkit-backdrop-filter: blur(var(--lightbox-backdrop-blur, 8px));
  cursor: zoom-out;
}

.image-lightbox-panel {
  position: relative;
  max-width: min(96vw, 1420px);
  max-height: 90vh;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 168, 79, 0.26);
  border-radius: var(--ui-card-radius);
  background: rgba(4, 7, 9, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.64), 0 0 42px rgba(84, 160, 176, 0.12);
}

.image-lightbox-media {
  position: relative;
  display: block;
}

.image-lightbox-vignette {
  position: absolute;
  inset: 0;
  display: none;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(ellipse at center, transparent 42%, rgba(0, 0, 0, var(--lightbox-vignette-opacity, 0.18)) 100%);
}

.image-lightbox-vignette.is-visible {
  display: block;
}

.image-lightbox-panel img {
  display: block;
  width: auto;
  max-width: min(96vw, 1420px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: inherit;
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
}

.image-lightbox-image-transition {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 35ms ease-in-out;
  z-index: 1;
}

.image-lightbox-close {
  position: absolute;
  top: clamp(16px, 3vw, 30px);
  right: clamp(16px, 3vw, 30px);
  z-index: 1;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 168, 79, 0.34);
  border-radius: var(--ui-button-radius);
  background: rgba(5, 8, 10, 0.88);
  color: var(--text);
  font-size: 30px;
  line-height: 1;
}

.cookie-modal,
.login-modal {
  width: min(780px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  border: 1px solid var(--line-soft);
  background: rgba(5, 8, 10, 0.98);
  box-shadow: var(--shadow);
}

.support-payment-backdrop {
  z-index: 120;
  background:
    radial-gradient(circle at 50% 28%, rgba(216, 168, 79, 0.12), transparent 38%),
    rgba(0, 0, 0, 0.78);
}

.support-payment-modal {
  position: relative;
  width: min(780px, calc(100vw - 44px));
  max-height: min(820px, calc(100vh - 44px));
  overflow: auto;
  display: grid;
  gap: 22px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid color-mix(in srgb, var(--gold) 46%, transparent);
  background:
    linear-gradient(145deg, rgba(216, 168, 79, 0.1), transparent 44%),
    rgba(5, 8, 10, 0.98);
  color: var(--text);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.72);
}

.modal-x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  min-height: 42px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 28px;
  line-height: 1;
}

.modal-x:hover {
  color: var(--gold-2);
  border-color: var(--gold);
}

.support-payment-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-payment-summary div,
.support-modal-rewards {
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.24);
  padding: 18px;
}

.support-payment-summary span,
.support-modal-rewards h3 {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-payment-summary strong {
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
}

.support-modal-rewards ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--text);
}

.support-modal-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.support-provider-option.is-active,
.support-provider-pill {
  border-color: color-mix(in srgb, var(--gold) 72%, transparent);
  background: rgba(216, 168, 79, 0.11);
  color: var(--gold-2);
}

.support-provider-pill {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.support-payment-status {
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.26);
  color: var(--text);
  text-align: center;
}

.support-payment-status.is-error {
  border-color: rgba(207, 95, 95, 0.68);
  color: #ffd9d9;
}

.support-payment-status.is-info {
  border-color: rgba(216, 168, 79, 0.42);
  color: var(--gold-2);
}

.modal-head {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.cookie-options {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
  padding: 26px;
}

.cookie-tabs {
  display: grid;
  gap: 4px;
}

.cookie-tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-height: 54px;
  text-align: left;
  padding: 0 16px;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.cookie-tab.is-active {
  color: var(--gold);
  background: rgba(216, 168, 79, 0.09);
  border-left: 2px solid var(--gold);
}

.cookie-category {
  display: grid;
  gap: 18px;
}

.cookie-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.switch {
  width: 58px;
  height: 28px;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.switch input {
  position: absolute;
  opacity: 0;
}

.switch span {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #161b1f;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.switch span::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 4px;
  left: 5px;
  border-radius: 50%;
  background: #d9d9d9;
  transition: transform 160ms ease, background 160ms ease;
}

.switch input:checked + span {
  background: linear-gradient(180deg, #efc775, #c99134);
}

.switch input:checked + span::after {
  transform: translateX(28px);
  background: #fff;
}

.modal-actions {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 0 26px 26px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 110;
  max-width: 360px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: rgba(5, 8, 10, 0.96);
  color: var(--text);
  box-shadow: var(--shadow);
}

.toast.is-success {
  border-color: rgba(103, 188, 122, 0.62);
  color: #dff5e5;
}

.toast.is-error {
  border-color: rgba(207, 95, 95, 0.72);
  color: #ffd9d9;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  background: #050707;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
  padding: 22px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #060708, #071014);
}

.admin-logo {
  width: 210px;
  margin: 0 auto 20px;
}

.admin-nav-group {
  margin: 24px 0;
}

.admin-nav-group h3 {
  margin: 0 12px 10px;
  color: var(--muted-2);
  font-family: var(--font-display);
  font-size: 15px;
  text-transform: uppercase;
}

.admin-tab {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: #d5d8db;
  padding: 0 14px;
  text-align: left;
}

.admin-tab.is-active {
  color: var(--gold);
  border-color: var(--line);
  background: rgba(216, 168, 79, 0.08);
}

.admin-main {
  min-width: 0;
  padding: 28px;
}

.admin-topbar {
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}

.admin-search {
  flex: 1 1 360px;
  max-width: 440px;
}

.admin-search .search-results {
  left: 0;
  right: auto;
}

.admin-topbar h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  text-transform: uppercase;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
}

.admin-card,
.admin-panel {
  border: 1px solid var(--line-soft);
  background: rgba(8, 13, 16, 0.86);
}

.admin-card {
  padding: 24px;
}

.admin-panel {
  padding: 24px;
  margin-bottom: 20px;
}

.admin-panel h2,
.admin-card h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.admin-hero-card {
  min-height: 260px;
  display: grid;
  align-items: center;
  padding: 42px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  position: relative;
  isolation: isolate;
}

.admin-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.48);
}

.stats-list,
.activity-list {
  display: grid;
  gap: 14px;
}

.stat-row,
.activity-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-panel .quick-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-hero-card .btn {
  justify-self: start;
}

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

.admin-range-number {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px auto;
  gap: 10px;
  align-items: center;
}

.admin-range-value {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.admin-form-grid.one {
  grid-template-columns: 1fr;
}

.admin-wide-field {
  grid-column: 1 / -1;
}

.admin-field {
  display: grid;
  gap: 8px;
}

.admin-field label,
.admin-field .label {
  color: var(--muted);
  font-size: 13px;
}

.admin-text-align-control {
  display: grid;
  grid-template-columns: auto minmax(160px, 1fr);
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.admin-text-align-control .admin-select {
  min-height: 40px;
}

.admin-image-field {
  align-content: start;
}

.admin-image-preview {
  position: relative;
  width: 100%;
  min-height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(216, 168, 79, 0.08), transparent 34%),
    rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.admin-image-preview img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.25);
}

.admin-image-preview img.is-missing {
  object-fit: contain;
}

.admin-image-preview .admin-image-status {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(216, 168, 79, 0.32);
  background: rgba(0, 0, 0, 0.72);
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
}

.admin-media-label-controls {
  margin-top: 6px;
  border: 1px solid rgba(216, 168, 79, 0.22);
  background: rgba(0, 0, 0, 0.16);
}

.admin-media-label-controls > summary {
  padding: 11px 12px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  cursor: pointer;
  user-select: none;
}

.admin-media-label-grid {
  padding: 0 12px 12px;
}

.admin-media-label-options {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.admin-media-label-options[hidden] {
  display: none;
}

.admin-media-label-controls .admin-range-number {
  grid-template-columns: minmax(0, 1fr) 78px auto;
}

.social-admin-preview {
  min-height: 52px;
  display: flex;
  align-items: center;
}

.social-admin-preview .social-dot {
  width: 38px;
  height: 38px;
  border-color: var(--line);
  color: var(--gold);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--gold);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.subscriber-summary,
.subscriber-tools,
.subscriber-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.subscriber-summary {
  margin: -4px 0 18px;
  color: var(--muted);
}

.subscriber-summary span {
  padding: 8px 12px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.025);
}

.subscriber-summary strong {
  margin-left: 6px;
  color: var(--gold);
}

.subscriber-tools {
  margin-bottom: 20px;
  gap: 16px 24px;
}

.subscriber-tools label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.subscriber-tools select,
.subscriber-tools input {
  min-width: 220px;
}

.subscriber-status {
  color: var(--gold);
  white-space: nowrap;
}

.subscriber-actions {
  min-width: 260px;
  gap: 6px;
}

.subscriber-actions .btn {
  padding: 7px 9px;
  font-size: 11px;
}

.subscriber-admin-panel {
  overflow-x: auto;
}

.subscriber-admin-panel .admin-table {
  min-width: 1080px;
}

.hero-image-row,
.menu-row,
.news-editor-layout {
  display: grid;
  gap: 14px;
}

.hero-image-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-image-row > img {
  width: 84px;
  height: 52px;
  object-fit: cover;
}

.admin-nested-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.16);
}

.admin-nested-list h4 {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.news-notification-admin {
  grid-column: 1 / -1;
  gap: 14px;
  border-color: color-mix(in srgb, var(--gold) 34%, var(--line-soft));
  background: linear-gradient(145deg, rgba(216, 168, 79, 0.07), rgba(0, 0, 0, 0.16));
}

.news-notification-admin > .admin-field {
  margin: 0;
}

.news-notification-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.news-notification-meta > div {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.2);
}

.news-notification-meta span,
.news-notification-preview-label {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.news-notification-meta a,
.news-notification-meta strong {
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 14px;
}

.news-notification-meta-recipients strong,
.news-notification-meta-status strong {
  color: var(--gold-2);
  font-size: 18px;
  line-height: 1.2;
}

.news-notification-meta-status strong.news-notification-status-ready {
  color: #9ed6a2;
}

.news-notification-meta-status strong.news-notification-status-sent {
  color: #9bc8ff;
}

.news-notification-meta a:hover {
  color: var(--gold-2);
}

.news-notification-preview-backdrop {
  z-index: 125;
}

.news-notification-preview-modal {
  position: relative;
  width: min(680px, calc(100vw - 44px));
  max-height: min(780px, calc(100vh - 44px));
  overflow: auto;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid color-mix(in srgb, var(--gold) 46%, transparent);
  background:
    linear-gradient(145deg, rgba(216, 168, 79, 0.1), transparent 44%),
    rgba(5, 8, 10, 0.98);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.72);
}

.news-notification-preview-modal h2 {
  margin: 0 0 24px;
  color: var(--gold-2);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.news-notification-preview-content {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.24);
}

.news-notification-preview-content h3,
.news-notification-preview-content p {
  margin: 0;
}

.news-notification-preview-content h3 {
  color: var(--text);
  font-size: clamp(20px, 2.2vw, 28px);
}

.news-notification-preview-label {
  margin-top: 8px !important;
}

.news-notification-preview-lead {
  white-space: pre-wrap;
  line-height: 1.65;
}

.news-notification-preview-content .btn {
  justify-self: start;
  margin-top: 10px;
}

.news-notification-preview-link,
.news-notification-preview-unsubscribe {
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.email-appearance-admin,
.email-template-admin {
  position: relative;
}

.email-template-admin .split-head {
  align-items: start;
}

.email-template-variables {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: -4px 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.email-template-variables strong {
  color: var(--gold-2);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 12px;
}

.email-template-variables code {
  padding: 4px 7px;
  border: 1px solid rgba(216, 168, 79, 0.35);
  color: var(--text);
  background: rgba(216, 168, 79, 0.06);
  font-size: 12px;
}

.email-template-preview-modal {
  width: min(92vw, 1180px);
  max-width: 1180px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.email-template-preview-kicker {
  margin: 0 0 8px;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.email-template-preview-mail {
  width: min(100%, var(--email-preview-max-width, 680px));
  max-width: var(--email-preview-max-width, 680px);
  flex: 1 1 auto;
  min-height: 0;
  margin: 0 auto;
  padding: 14px;
  background: var(--email-preview-background);
  overflow: auto;
}

.email-template-preview-mail-inner {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 5vw, 46px);
  color: var(--email-preview-text);
  background: var(--email-preview-container);
}

.email-template-preview-mail-inner > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  user-select: none;
}

.email-template-preview-body,
.email-template-preview-below {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.email-template-preview-mail h3 {
  margin: 0;
  color: var(--email-preview-heading);
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.15;
}

.email-template-preview-body {
  line-height: 1.65;
}

.email-template-preview-cta {
  justify-self: start;
  padding: 12px 18px;
  color: var(--email-preview-cta-text);
  background: var(--email-preview-cta);
  font-family: var(--font-display);
  text-decoration: none;
  text-transform: uppercase;
}

.email-template-preview-below {
  color: var(--email-preview-text);
  font-size: 13px;
  opacity: 0.72;
}

.email-template-preview-footer {
  margin-top: 16px;
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--email-preview-text) 18%, transparent);
  color: color-mix(in srgb, var(--email-preview-text) 76%, transparent);
  font-size: 12px;
  line-height: 1.4;
}

.email-template-preview-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--email-preview-text);
}

.support-tier-info-backdrop {
  z-index: 119;
  background:
    radial-gradient(circle at 50% 28%, rgba(216, 168, 79, 0.1), transparent 38%),
    rgba(0, 0, 0, 0.78);
}

.support-tier-info-modal {
  position: relative;
  width: min(780px, calc(100vw - 44px));
  max-height: min(820px, calc(100vh - 44px));
  overflow: auto;
  display: grid;
  gap: 22px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid color-mix(in srgb, var(--gold) 46%, transparent);
  background:
    linear-gradient(145deg, rgba(216, 168, 79, 0.1), transparent 44%),
    rgba(5, 8, 10, 0.98);
  color: var(--text);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.72);
}

.support-tier-info-header {
  padding-right: 54px;
}

.support-tier-info-header .section-title {
  margin-bottom: 8px;
}

.support-tier-info-price {
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 30px;
  text-transform: uppercase;
}

.support-tier-info-content {
  display: grid;
  gap: 22px;
}

.support-tier-info-content > p {
  margin: 0;
  color: var(--support-text-color, var(--text));
  white-space: pre-line;
}

.email-template-preview-footer-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
  color: var(--email-preview-text);
  line-height: 1.2;
}

.email-template-preview-footer-logo {
  display: block;
  width: 64px;
  height: auto;
  margin: 0;
  object-fit: contain;
  object-position: left center;
}

.email-template-preview-footer-brand strong {
  color: var(--email-preview-heading);
}

.email-template-preview-footer-brand span {
  color: color-mix(in srgb, var(--email-preview-text) 82%, transparent);
}

.email-template-preview-footer-copyright {
  white-space: nowrap;
  font-size: 11px;
}

.email-template-preview-footer p {
  margin: 3px 0;
}

.email-template-preview-footer-reason {
  color: color-mix(in srgb, var(--email-preview-text) 68%, transparent);
  font-size: 11px;
  opacity: 0.78;
}

.email-template-preview-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 0 !important;
  font-size: 11px !important;
  line-height: 1.2;
}

.email-template-preview-footer a {
  color: var(--email-preview-heading);
  font-size: inherit !important;
}

.email-sender-footer-admin {
  margin-top: 20px;
}

@media (max-width: 620px) {
  .news-notification-meta {
    grid-template-columns: 1fr;
  }

  .email-template-admin .split-head {
    align-items: stretch;
  }

  .email-template-preview-mail-inner {
    padding: 22px 18px;
  }

  .email-template-preview-footer-brand {
    align-items: flex-start;
  }

  .email-template-preview-footer-copy {
    min-width: 0;
  }

  .email-template-preview-footer-copyright {
    white-space: normal;
  }
}

@media (max-width: 620px) and (orientation: portrait) {
  body.newsletter-system-view .footer-inner {
    padding: 12px 0;
  }

  body.newsletter-system-view .footer-links {
    line-height: 1.1;
  }
}

@media (max-width: 620px) and (orientation: portrait) {
  body.newsletter-system-view #app {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - var(--header));
  }

  body.newsletter-system-view .newsletter-system-page {
    flex: 1 0 auto;
  }
}

@media (max-width: 620px) {
  .newsletter-system-section {
    padding: 28px 0;
  }

  .newsletter-system-panel {
    padding: 24px 18px;
  }

  .newsletter-system-text {
    font-size: 16px;
  }
}

/* Tablet layout: keep the shared site footer compact without changing desktop or mobile. */
@media (min-width: 621px) and (max-width: 900px) and (orientation: portrait) {
  .newsletter-system-section {
    padding: 24px 0;
  }

  .newsletter-system-panel {
    padding: 28px clamp(24px, 4vw, 40px);
  }

  .newsletter-system-panel .section-title {
    margin-top: 4px;
  }

  .newsletter-system-text {
    margin-top: 14px;
    line-height: 1.5;
  }

  .newsletter-system-actions {
    gap: 12px;
    margin-top: 22px;
  }

  .newsletter-system-actions .btn {
    min-height: 48px;
    padding-inline: 22px;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "logo links social"
      "logo copyright social";
    align-items: center;
    justify-content: initial;
    column-gap: 20px;
    row-gap: 2px;
    min-height: 0;
    padding: 16px 0;
  }

  .footer-logo {
    grid-area: logo;
    width: 112px;
  }

  .footer-links {
    grid-area: links;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hidden-admin-text {
    grid-area: copyright;
  }

  .footer-social {
    grid-area: social;
    align-self: center;
    gap: 14px;
  }
}

/* Tablet landscape keeps the shared footer in its pre-tablet horizontal layout. */
@media (min-width: 761px) and (max-width: 1100px) and (orientation: landscape) {
  .footer-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 96px;
    padding: 0;
  }

  .footer-logo {
    width: 132px;
  }

  .footer-links {
    gap: 24px;
  }

  .footer-social {
    gap: 24px;
  }
}

/* Small phone landscape: keep the shared footer horizontal without affecting tablets. */
@media (min-width: 621px) and (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .footer-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "logo links social"
      "logo copyright social";
    align-items: center;
    align-content: center;
    column-gap: 12px;
    row-gap: 0;
    min-height: 0;
    padding: 10px 0;
  }

  .footer-logo {
    grid-area: logo;
    width: 112px;
  }

  .footer-links {
    grid-area: links;
    align-self: end;
    gap: 12px;
    flex-wrap: wrap;
    row-gap: 0;
    line-height: 1.1;
  }

  .hidden-admin-text {
    grid-area: copyright;
    align-self: start;
    line-height: 1.1;
    white-space: nowrap;
  }

  .footer-social {
    grid-area: social;
    align-self: center;
    gap: 14px;
  }
}

/* Phone portrait: keep logo and social media on one compact top row. */
@media (max-width: 620px) and (orientation: portrait) {
  .footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "logo social"
      "links links"
      "copyright copyright";
    align-items: center;
    align-content: center;
    column-gap: 12px;
    row-gap: 0;
    min-height: 0;
    padding: 12px 0;
  }

  .footer-logo {
    grid-area: logo;
    width: 132px;
  }

  .footer-links {
    grid-area: links;
    align-self: end;
    gap: 10px;
    flex-wrap: wrap;
    row-gap: 0;
    line-height: 1.1;
  }

  .hidden-admin-text {
    grid-area: copyright;
    align-self: start;
    line-height: 1.1;
    white-space: nowrap;
  }

  .footer-social {
    grid-area: social;
    align-self: center;
    gap: 14px;
  }
}

/* Newsletter pages use a natural flex-column page shell so the shared footer rests at the bottom. */
@media (min-width: 621px) {
  body.newsletter-system-view #app {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - var(--header));
  }

  body.newsletter-system-view .newsletter-system-page {
    flex: 1 0 auto;
  }
}

@media (min-width: 621px) and (max-width: 900px) and (orientation: portrait) {
  .footer-inner {
    align-content: center;
    padding: 16px 0;
  }

  .footer-links {
    align-self: end;
  }

  .hidden-admin-text {
    align-self: start;
  }

}

body.newsletter-system-view .site-footer {
  border-top: 1px solid var(--line);
}

:root.is-hud-ui-enabled body.newsletter-system-view .site-footer {
  border-top: 2px solid color-mix(in srgb, var(--gold) 72%, transparent);
}

.admin-nested-row {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.menu-row {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 90px;
  align-items: end;
}

.news-editor-layout {
  grid-template-columns: 280px minmax(0, 1fr);
}

.admin-list {
  display: grid;
  gap: 8px;
}

.admin-list-button {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  padding: 0 12px;
  text-align: left;
}

.admin-list-button.is-active {
  border-color: var(--line);
  color: var(--gold);
}

.status-pill {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.status-pill.published {
  color: var(--success);
  border-color: rgba(103, 188, 122, 0.35);
}

.status-pill.draft {
  color: var(--gold);
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.82)),
    url("../../assets/images/hero-v0005.jpg") center / cover;
}

.login-modal {
  padding: 34px;
}

.login-modal img {
  width: 240px;
  margin-bottom: 22px;
}

@media (max-width: 1100px) {
  body {
    font-size: var(--typo-globalBody-font-size-tablet, var(--typo-globalBody-font-size-desktop, inherit));
  }

  h1,
  h2,
  h3,
  h4,
  .section-title,
  .sub-title,
  .article-title {
    font-size: var(--typo-globalHeadings-font-size-tablet, var(--typo-globalHeadings-font-size-desktop, inherit));
  }

  .hero-slogan,
  .hero-content,
  .hero-content p {
    font-size: var(--typo-heroTexts-font-size-tablet, var(--typo-heroTexts-font-size-desktop, inherit));
  }

  .sub-hero .sub-title,
  .sub-hero .sub-lead {
    font-size: var(--typo-pageHeaderTexts-font-size-tablet, var(--typo-pageHeaderTexts-font-size-desktop, inherit));
  }

  .section-title,
  .section-kicker,
  .home-destination-article h2,
  .legal-section h2 {
    font-size: var(--typo-sectionTitles-font-size-tablet, var(--typo-sectionTitles-font-size-desktop, inherit));
  }

  .card,
  .feature,
  .timeline-item,
  .secret-card,
  .value-card,
  .benefit,
  .quick-card {
    font-size: var(--typo-cards-font-size-tablet, var(--typo-cards-font-size-desktop, inherit));
  }

  .btn,
  button,
  .nav-link {
    font-size: var(--typo-buttons-font-size-tablet, var(--typo-buttons-font-size-desktop, inherit));
  }

  .site-footer,
  .footer-links,
  .footer-social,
  .hidden-admin-trigger {
    font-size: var(--typo-footer-font-size-tablet, var(--typo-footer-font-size-desktop, inherit));
  }

  .field,
  .admin-input,
  .admin-textarea,
  .admin-select,
  .contact-form,
  .community-form-panel {
    font-size: var(--typo-forms-font-size-tablet, var(--typo-forms-font-size-desktop, inherit));
  }

  .news-layout,
  .news-row,
  .article-body,
  .article-meta {
    font-size: var(--typo-news-font-size-tablet, var(--typo-news-font-size-desktop, inherit));
  }

  .cookie-banner,
  .cookie-modal {
    font-size: var(--typo-cookies-font-size-tablet, var(--typo-cookies-font-size-desktop, inherit));
  }

  .legal-content,
  .legal-section,
  .toc {
    font-size: var(--typo-legal-font-size-tablet, var(--typo-legal-font-size-desktop, inherit));
  }

  .feature-grid,
  .card-grid,
  .cta-grid,
  .values-grid,
  .quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline,
  .history-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .timeline > *,
  .history-cards > * {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    grid-column: auto;
  }

  .timeline-item::after {
    display: none;
  }

  .news-layout,
  .admin-grid,
  .contact-grid,
  .contact-primary-grid,
  .legal-layout,
  .founder-layout,
  .image-split,
  .image-split.reverse,
  .secret-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-column,
  .contact-details-column {
    display: block;
  }

  .contact-form {
    grid-template-rows: none;
  }

  .contact-image {
    height: auto;
  }

  .contact-details-column .info-list {
    display: grid;
    justify-content: initial;
  }

  .team-studio-section .team-studio-logo,
  .team-studio-section.is-logo-left .team-studio-logo {
    order: -1;
  }

  .team-studio-section .team-studio-copy,
  .team-studio-section.is-logo-left .team-studio-copy {
    order: 0;
  }

  .founder-layout {
    display: flex;
    flex-direction: column;
    gap: var(--founder-art-gap, 34px);
  }

  .founder-layout.is-image-left .founder-art {
    order: 1;
  }

  .founder-layout.is-image-left .founder-copy {
    order: 2;
  }

  .founder-layout.is-image-right .founder-copy {
    order: 1;
  }

  .founder-layout.is-image-right .founder-art {
    order: 2;
  }

  .founder-layout.is-wrap-left-top,
  .founder-layout.is-wrap-right-top,
  .founder-layout.is-wrap-left-bottom,
  .founder-layout.is-wrap-right-bottom {
    display: block;
  }

  .founder-layout > .founder-art {
    float: none;
    width: min(var(--founder-art-width, 560px), 100%);
    max-width: 100%;
    margin: 0 auto;
  }

  .founder-layout.is-wrap-left-top .founder-art,
  .founder-layout.is-wrap-right-top .founder-art,
  .founder-layout.is-wrap-left-bottom .founder-art,
  .founder-layout.is-wrap-right-bottom .founder-art {
    float: none;
    width: min(var(--founder-art-width, 560px), 100%);
    max-width: 100%;
    margin: 0 auto var(--founder-art-gap, 34px);
  }

  .founder-layout.is-wrap-left-bottom .founder-wrap-tail,
  .founder-layout.is-wrap-right-bottom .founder-wrap-tail {
    display: flex;
    flex-direction: column;
  }

  .founder-layout.is-wrap-left-bottom .founder-wrap-tail .founder-art,
  .founder-layout.is-wrap-right-bottom .founder-wrap-tail .founder-art {
    order: 2;
    margin: var(--founder-art-gap, 34px) auto 0;
  }

  .founder-layout.is-wrap-left-bottom .founder-wrap-tail p,
  .founder-layout.is-wrap-right-bottom .founder-wrap-tail p {
    order: 1;
  }

  .founder-layout.is-columns {
    display: block;
  }

  .founder-columns-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-layout .sidebar-stack .side-box:nth-child(2) > .filter-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .universe-section-image-strip {
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  }

  .timeline-story-image-set {
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  }

  .toc {
    position: relative;
    top: auto;
  }

  .admin-shell {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .admin-logo {
    width: 72px;
  }

  .admin-tab {
    justify-content: center;
  }

  .admin-tab span:last-child,
  .admin-nav-group h3 {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header: 66px;
  }

  .support-payment-summary {
    grid-template-columns: 1fr;
  }

  .support-payment-modal {
    width: min(100%, calc(100vw - 28px));
    padding: 24px;
  }

  body {
    font-size: var(--typo-globalBody-font-size-mobile, var(--typo-globalBody-font-size-tablet, var(--typo-globalBody-font-size-desktop, inherit)));
  }

  h1,
  h2,
  h3,
  h4,
  .section-title,
  .sub-title,
  .article-title {
    font-size: var(--typo-globalHeadings-font-size-mobile, var(--typo-globalHeadings-font-size-tablet, var(--typo-globalHeadings-font-size-desktop, inherit)));
  }

  .hero-slogan,
  .hero-content,
  .hero-content p {
    font-size: var(--typo-heroTexts-font-size-mobile, var(--typo-heroTexts-font-size-tablet, var(--typo-heroTexts-font-size-desktop, inherit)));
  }

  .sub-hero .sub-title,
  .sub-hero .sub-lead {
    font-size: var(--typo-pageHeaderTexts-font-size-mobile, var(--typo-pageHeaderTexts-font-size-tablet, var(--typo-pageHeaderTexts-font-size-desktop, inherit)));
  }

  .section-title,
  .section-kicker,
  .home-destination-article h2,
  .legal-section h2 {
    font-size: var(--typo-sectionTitles-font-size-mobile, var(--typo-sectionTitles-font-size-tablet, var(--typo-sectionTitles-font-size-desktop, inherit)));
  }

  .card,
  .feature,
  .timeline-item,
  .secret-card,
  .value-card,
  .benefit,
  .quick-card {
    font-size: var(--typo-cards-font-size-mobile, var(--typo-cards-font-size-tablet, var(--typo-cards-font-size-desktop, inherit)));
  }

  .btn,
  button,
  .nav-link {
    font-size: var(--typo-buttons-font-size-mobile, var(--typo-buttons-font-size-tablet, var(--typo-buttons-font-size-desktop, inherit)));
  }

  .site-footer,
  .footer-links,
  .footer-social,
  .hidden-admin-trigger {
    font-size: var(--typo-footer-font-size-mobile, var(--typo-footer-font-size-tablet, var(--typo-footer-font-size-desktop, inherit)));
  }

  .field,
  .admin-input,
  .admin-textarea,
  .admin-select,
  .contact-form,
  .community-form-panel {
    font-size: var(--typo-forms-font-size-mobile, var(--typo-forms-font-size-tablet, var(--typo-forms-font-size-desktop, inherit)));
  }

  .news-layout,
  .news-row,
  .article-body,
  .article-meta {
    font-size: var(--typo-news-font-size-mobile, var(--typo-news-font-size-tablet, var(--typo-news-font-size-desktop, inherit)));
  }

  .cookie-banner,
  .cookie-modal {
    font-size: var(--typo-cookies-font-size-mobile, var(--typo-cookies-font-size-tablet, var(--typo-cookies-font-size-desktop, inherit)));
  }

  .legal-content,
  .legal-section,
  .toc {
    font-size: var(--typo-legal-font-size-mobile, var(--typo-legal-font-size-tablet, var(--typo-legal-font-size-desktop, inherit)));
  }

  .site-header {
    padding: 0 16px;
    gap: 12px;
  }

  .brand {
    width: 132px;
    min-width: 108px;
  }

  .site-search {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
  }

  .search-input {
    min-height: 36px;
    padding-left: 10px;
    font-size: 12px;
  }

  .search-results {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .admin-topbar {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .admin-search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
  }

  .admin-search .search-results {
    left: 0;
    right: auto;
    width: 100%;
    transform: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(1, 2, 3, 0.98);
    border-bottom: 1px solid var(--line-soft);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-link::after {
    bottom: 0;
  }

  .header-social {
    display: none;
  }

  .home-hero {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: min(var(--hero-height-mobile, 74vh), calc(100vh - var(--header)));
    box-sizing: border-box;
    padding-top: 20px;
    padding-bottom: calc(var(--hero-bottom-bar-height, 64px) + 24px);
    align-content: center;
  }

  .home-hero .hero-content {
    width: min(100%, 900px);
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding-inline: clamp(16px, 4vw, 24px);
    margin-inline: auto;
    transform: translateY(0);
  }

  .home-hero .hero-content > * {
    min-width: 0;
    max-width: 100%;
  }

  .home-hero .hero-logo-align {
    left: auto;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    transform: none;
  }

  .home-hero .hero-logo-breath {
    max-width: calc(100% / var(--hero-logo-breath-scale, 1.025));
  }

  .home-hero .hero-logo {
    max-width: 100% !important;
  }

  .home-hero .hero-slogan,
  .home-hero .hero-lead {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .home-hero .btn-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 520px);
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    gap: 10px;
    margin-inline: auto;
  }

  .home-hero .btn-row .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    justify-content: center;
    white-space: normal;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .home-hero .hero-dots {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    max-width: 100%;
    margin: 22px auto 0;
    justify-content: center;
    flex-wrap: wrap;
    transform: none;
  }

  #technologia + .section .cta-band {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  #technologia + .section .cta-band > div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  #technologia + .section .cta-band .btn-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #technologia + .section .cta-band .btn {
    width: 100%;
    max-width: 100%;
  }

  .hero-nav {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 0 16px;
  }

  .feature-grid,
  .card-grid,
  .cta-grid,
  .benefit-grid,
  .values-grid,
  .quick-grid,
  .article-nav,
  .article-gallery,
  .two-cols,
  .contact-info-grid,
  .admin-form-grid,
  .news-editor-layout,
  .menu-row {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-row {
    grid-template-columns: 1fr;
  }

  .home-destination-stack {
    padding-top: 24px;
  }

  .home-destination-section {
    margin-bottom: 28px;
  }

  .home-destination-banner {
    min-height: min(var(--home-destination-banner-height, 38vh), 420px);
  }

  .home-destination-article {
    padding: 30px var(--section-copy-padding-x);
  }

  .news-image-frame,
  .news-image-frame img {
    min-height: 190px;
    aspect-ratio: 16 / 9;
  }

  .cookie-banner {
    grid-template-columns: 48px 1fr;
  }

  .cookie-banner .btn,
  .cookie-banner .plain-close {
    grid-column: 1 / -1;
  }

  .cookie-options {
    grid-template-columns: 1fr;
  }

  .modal-head {
    grid-template-columns: 48px 1fr auto;
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    width: 138px;
  }

  .section {
    padding: 52px 0;
  }

  .btn,
  .newsletter-inline {
    width: 100%;
  }

  .news-toolbar.news-controls {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-controls .news-control-group:first-child .filter-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-controls .news-control-group:first-child .filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 50px;
    height: 100%;
    padding: 0 10px;
    line-height: 1.15;
    white-space: normal;
  }

  .news-controls .news-control-group:nth-child(2) {
    width: 100%;
    justify-items: stretch;
  }

  .news-controls .news-control-group:nth-child(2) .filter-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  .news-controls .news-control-group:nth-child(2) .filter-btn {
    width: 100%;
  }

  .news-layout .sidebar-stack .side-box:nth-child(2) > .filter-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-inline {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-tile,
  .team-members-panel,
  .community-form-panel {
    padding: 26px;
  }

  .image-split-copy,
  .founder-copy {
    padding: 26px var(--section-copy-padding-x);
  }

  .founder-layout.is-columns {
    padding: 26px var(--section-copy-padding-x);
  }

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

  .article-body {
    padding: 26px var(--section-copy-padding-x);
  }

  .article-gallery {
    margin: 28px calc(-1 * var(--section-copy-padding-x)) 0;
  }

  .universe-section-image-strip {
    grid-template-columns: 1fr;
  }

  .timeline-story-image-set {
    grid-template-columns: 1fr;
  }

  .chapter-v-story-layout {
    grid-template-columns: 1fr;
  }

  .chapter-v-story-layout .timeline-story-copy,
  .chapter-v-story-layout .chapter-v-image-strip,
  .chapter-v-story-layout > .timeline-story-image-set.is-after {
    grid-column: 1;
  }

  .chapter-v-story-layout .timeline-story-copy {
    grid-row: 1;
  }

  .chapter-v-story-layout .chapter-v-image-strip {
    grid-row: 2;
  }

  .chapter-v-story-layout > .timeline-story-image-set.is-after {
    grid-row: 3;
  }

  .timeline-excerpt,
  .timeline-excerpt.is-image-left {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .timeline-excerpt-media,
  .timeline-excerpt.is-image-left .timeline-excerpt-media {
    order: 1;
    width: 100%;
  }

  .timeline-excerpt-copy,
  .timeline-excerpt.is-image-left .timeline-excerpt-copy {
    order: 2;
  }

  .timeline-excerpt-image-frame {
    height: var(--timeline-excerpt-image-mobile-height, 420px);
  }

  .timeline-excerpt.is-auto-height .timeline-excerpt-media {
    display: flex;
    height: auto;
  }

  .timeline-excerpt.is-auto-height .timeline-excerpt-image-frame {
    height: var(--timeline-excerpt-image-mobile-height, 420px);
  }

  .timeline-excerpt-text {
    padding-left: 18px;
  }

  .timeline-excerpt-text p {
    font-size: 20px;
    line-height: 1.68;
  }

  .timeline-story-image-frame {
    min-height: min(var(--timeline-story-image-height, 38vh), 420px);
  }

  .hero-slogan {
    margin-bottom: 28px;
  }

  .sub-hero {
    min-height: 300px;
  }

  .sub-hero.has-parallax {
    min-height: var(--page-header-height-mobile, 32vh);
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .admin-main {
    padding: 16px;
  }

  .hero-image-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .tab-bar {
    grid-template-columns: 1fr;
  }

  .tab-link {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .tab-link:last-child {
    border-bottom: 0;
  }
}

.universe-category-nav {
  padding: 16px 0 24px;
}

.universe-category-nav-inner {
  min-width: 0;
}

.universe-category-nav-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--universe-category-nav-gap);
  min-width: 0;
}

.universe-category-nav-link {
  display: grid;
  width: 100%;
  height: var(--universe-category-nav-item-height);
  min-width: 0;
  place-items: center;
  padding: 7px 10px;
  border: 1px solid var(--line-soft);
  border-radius: var(--universe-category-nav-radius);
  background: rgba(3, 6, 8, 0.86);
  color: #d9dce0;
  font-family: var(--font-display);
  font-size: var(--universe-category-nav-font-size);
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.universe-category-nav-link:hover,
.universe-category-nav-link:focus-visible {
  background: rgba(216, 168, 79, calc(var(--universe-category-nav-hover-strength) * 0.28));
  color: color-mix(in srgb, var(--gold) var(--universe-category-nav-hover-strength-percent), #d9dce0);
  box-shadow: inset 0 0 0 1px rgba(216, 168, 79, calc(var(--universe-category-nav-hover-strength) * 0.45));
}

.universe-category-nav-link.is-active {
  background: linear-gradient(
    180deg,
    rgba(239, 194, 99, calc(var(--universe-category-nav-active-strength) * 0.92)),
    rgba(164, 108, 32, calc(var(--universe-category-nav-active-strength) * 0.82))
  );
  color: color-mix(in srgb, #fff3cf var(--universe-category-nav-active-strength-percent), var(--gold));
  font-weight: 700;
  box-shadow:
    inset 0 0 0 1px rgba(255, 235, 170, calc(var(--universe-category-nav-active-strength) * 0.9)),
    inset 0 0 18px rgba(255, 220, 130, calc(var(--universe-category-nav-active-strength) * 0.22)),
    0 0 16px rgba(216, 168, 79, calc(var(--universe-category-nav-active-strength) * 0.22));
}

@media (max-width: 900px) {
  .universe-category-nav-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .universe-category-nav-list {
    grid-template-columns: 1fr;
  }
}

.universe-pre-epoch-banner-section {
  padding-top: 12px;
  padding-bottom: 12px;
}

.universe-pre-epoch-banner-frame {
  width: 100%;
  height: var(--universe-pre-epoch-banner-height-desktop, 260px);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--ui-button-radius);
  background: rgba(3, 6, 8, 0.86);
}

.universe-pre-epoch-banner-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--universe-pre-epoch-banner-position-x, 50%) var(--universe-pre-epoch-banner-position-y, 50%);
}

@media (max-width: 1100px) {
  .universe-pre-epoch-banner-frame {
    height: var(--universe-pre-epoch-banner-height-tablet, 220px);
  }
}

@media (max-width: 600px) {
  .universe-pre-epoch-banner-frame {
    height: var(--universe-pre-epoch-banner-height-mobile, 190px);
  }
}

/* Admin visual settings final layer */
body {
  background: var(--ui-page-background-color, var(--bg)) !important;
  opacity: 1 !important;
}

.btn,
.filter-btn,
.tag,
.page-chip,
button.btn {
  border-color: var(--ui-button-border-color, var(--line)) !important;
  background: var(--ui-button-background-color, rgba(8, 10, 11, 0.76)) !important;
  color: var(--typo-buttons-color, var(--ui-button-text-color, var(--text))) !important;
  font-family: var(--typo-buttons-font-family, var(--font-display)) !important;
  font-style: var(--typo-buttons-font-style, normal) !important;
  font-weight: var(--typo-buttons-font-weight, 400) !important;
  font-size: var(--typo-buttons-font-size-desktop, 15px) !important;
  letter-spacing: var(--typo-buttons-letter-spacing, 0) !important;
  word-spacing: var(--typo-buttons-word-spacing, normal) !important;
  line-height: var(--typo-buttons-line-height, normal) !important;
  text-transform: var(--typo-buttons-text-transform, uppercase) !important;
  text-align: var(--typo-buttons-text-align, center) !important;
  opacity: var(--typo-buttons-opacity, 1) !important;
  text-shadow: var(--typo-buttons-text-shadow, none) !important;
  -webkit-text-stroke: var(--typo-buttons-outline-width, 0) var(--typo-buttons-outline-color, transparent) !important;
  border-radius: var(--ui-button-radius) !important;
  overflow: hidden;
}

.btn.primary,
button.btn.primary,
.filter-btn.is-active,
.tag.is-active,
.page-chip.is-active {
  border-color: var(--ui-primary-button-border-color, rgba(241, 200, 117, 0.7)) !important;
  background: var(--ui-primary-button-background-color, var(--gold)) !important;
  color: var(--ui-primary-button-text-color, #11100d) !important;
}

.news-controls .news-control-group:nth-child(2) .filter-row {
  border-color: var(--ui-button-border-color, var(--line-soft));
}

.news-controls .news-control-group:nth-child(2) .filter-btn {
  min-height: 36px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--typo-buttons-color, var(--ui-button-text-color, var(--text))) !important;
  padding: 0 14px !important;
}

.news-controls .news-control-group:nth-child(2) .filter-btn + .filter-btn {
  border-left: 1px solid var(--ui-button-border-color, var(--line-soft)) !important;
}

.news-controls .news-control-group:nth-child(2) .filter-btn.is-active {
  background: var(--ui-primary-button-background-color, var(--gold)) !important;
  color: var(--ui-primary-button-text-color, #11100d) !important;
}

.hero-slogan,
.hero-content p {
  color: var(--typo-heroTexts-color, inherit) !important;
  font-family: var(--typo-heroTexts-font-family, inherit) !important;
  font-style: var(--typo-heroTexts-font-style, normal) !important;
  font-weight: var(--typo-heroTexts-font-weight, inherit) !important;
  font-size: var(--typo-heroTexts-font-size-desktop, inherit) !important;
  letter-spacing: var(--typo-heroTexts-letter-spacing, normal) !important;
  word-spacing: var(--typo-heroTexts-word-spacing, normal) !important;
  line-height: var(--typo-heroTexts-line-height, normal) !important;
  text-transform: var(--typo-heroTexts-text-transform, none) !important;
  text-align: var(--typo-heroTexts-text-align, center) !important;
  opacity: var(--typo-heroTexts-opacity, 1) !important;
  text-shadow: var(--typo-heroTexts-text-shadow, none) !important;
  -webkit-text-stroke: var(--typo-heroTexts-outline-width, 0) var(--typo-heroTexts-outline-color, transparent) !important;
}

.section-title,
.sub-title,
.article-title {
  color: var(--typo-sectionTitles-color, var(--typo-globalHeadings-color, var(--gold))) !important;
  font-family: var(--typo-sectionTitles-font-family, var(--typo-globalHeadings-font-family, var(--font-display))) !important;
  font-style: var(--typo-sectionTitles-font-style, var(--typo-globalHeadings-font-style, normal)) !important;
  font-weight: var(--typo-sectionTitles-font-weight, var(--typo-globalHeadings-font-weight, 400)) !important;
  font-size: var(--typo-sectionTitles-font-size-desktop, var(--typo-globalHeadings-font-size-desktop, inherit)) !important;
  letter-spacing: var(--typo-sectionTitles-letter-spacing, var(--typo-globalHeadings-letter-spacing, 0)) !important;
  word-spacing: var(--typo-sectionTitles-word-spacing, var(--typo-globalHeadings-word-spacing, normal)) !important;
  line-height: var(--typo-sectionTitles-line-height, var(--typo-globalHeadings-line-height, 1)) !important;
  text-transform: var(--typo-sectionTitles-text-transform, var(--typo-globalHeadings-text-transform, uppercase)) !important;
  text-align: var(--typo-sectionTitles-text-align, inherit) !important;
  opacity: var(--typo-sectionTitles-opacity, 1) !important;
  text-shadow: var(--typo-sectionTitles-text-shadow, none) !important;
  -webkit-text-stroke: var(--typo-sectionTitles-outline-width, 0) var(--typo-sectionTitles-outline-color, transparent) !important;
}

.sub-hero .sub-title,
.sub-hero .sub-lead,
.article-hero .article-title,
.article-hero .sub-lead,
.article-hero .eyebrow {
  color: var(--typo-pageHeaderTexts-color, inherit) !important;
  font-family: var(--typo-pageHeaderTexts-font-family, inherit) !important;
  font-style: var(--typo-pageHeaderTexts-font-style, normal) !important;
  font-weight: var(--typo-pageHeaderTexts-font-weight, inherit) !important;
  font-size: var(--typo-pageHeaderTexts-font-size-desktop, inherit) !important;
  letter-spacing: var(--typo-pageHeaderTexts-letter-spacing, normal) !important;
  word-spacing: var(--typo-pageHeaderTexts-word-spacing, normal) !important;
  line-height: var(--typo-pageHeaderTexts-line-height, normal) !important;
  text-transform: var(--typo-pageHeaderTexts-text-transform, none) !important;
  text-align: var(--typo-pageHeaderTexts-text-align, inherit) !important;
  opacity: var(--typo-pageHeaderTexts-opacity, 1) !important;
  text-shadow: var(--typo-pageHeaderTexts-text-shadow, none) !important;
  -webkit-text-stroke: var(--typo-pageHeaderTexts-outline-width, 0) var(--typo-pageHeaderTexts-outline-color, transparent) !important;
}

body,
p,
.text-muted,
.home-destination-text,
.image-split-copy,
.article-body,
.legal-content,
.community-form-panel,
.contact-form {
  color: var(--typo-globalBody-color, var(--text)) !important;
  font-family: var(--typo-globalBody-font-family, var(--font-body)) !important;
  font-style: var(--typo-globalBody-font-style, normal) !important;
  font-weight: var(--typo-globalBody-font-weight, 400) !important;
  font-size: var(--typo-globalBody-font-size-desktop, inherit) !important;
  letter-spacing: var(--typo-globalBody-letter-spacing, normal) !important;
  word-spacing: var(--typo-globalBody-word-spacing, normal) !important;
  line-height: var(--typo-globalBody-line-height, 1.62) !important;
  text-transform: var(--typo-globalBody-text-transform, none) !important;
  text-align: var(--typo-globalBody-text-align, inherit) !important;
  opacity: var(--typo-globalBody-opacity, 1) !important;
  text-shadow: var(--typo-globalBody-text-shadow, none) !important;
  -webkit-text-stroke: var(--typo-globalBody-outline-width, 0) var(--typo-globalBody-outline-color, transparent) !important;
}

.cms-text-align {
  text-align: var(--cms-text-align, inherit) !important;
}

.universe-home-copy {
  width: 100%;
  max-width: none;
  margin: 0 0 22px;
  text-align: var(--cms-text-align, left) !important;
}

.card h3,
.card p,
.feature h3,
.feature p,
.history-card h3,
.history-card p,
.timeline-item h3,
.timeline-item p,
.secret-card h3,
.secret-card p,
.value-card h3,
.value-card p,
.benefit h3,
.benefit p,
.quick-card h3,
.quick-card p,
.cta-tile h3,
.cta-tile p {
  color: var(--typo-cards-color, inherit) !important;
  font-family: var(--typo-cards-font-family, inherit) !important;
  font-style: var(--typo-cards-font-style, normal) !important;
  font-weight: var(--typo-cards-font-weight, inherit) !important;
  font-size: var(--typo-cards-font-size-desktop, inherit) !important;
  letter-spacing: var(--typo-cards-letter-spacing, normal) !important;
  word-spacing: var(--typo-cards-word-spacing, normal) !important;
  line-height: var(--typo-cards-line-height, normal) !important;
  text-transform: var(--typo-cards-text-transform, none) !important;
  text-align: var(--typo-cards-text-align, inherit) !important;
  opacity: var(--typo-cards-opacity, 1) !important;
  text-shadow: var(--typo-cards-text-shadow, none) !important;
  -webkit-text-stroke: var(--typo-cards-outline-width, 0) var(--typo-cards-outline-color, transparent) !important;
}

.site-footer,
.site-footer a,
.footer-links,
.footer-social {
  color: var(--typo-footer-color, inherit) !important;
  font-family: var(--typo-footer-font-family, inherit) !important;
  font-style: var(--typo-footer-font-style, normal) !important;
  font-weight: var(--typo-footer-font-weight, inherit) !important;
  font-size: var(--typo-footer-font-size-desktop, inherit) !important;
  letter-spacing: var(--typo-footer-letter-spacing, normal) !important;
  word-spacing: var(--typo-footer-word-spacing, normal) !important;
  line-height: var(--typo-footer-line-height, normal) !important;
  text-transform: var(--typo-footer-text-transform, none) !important;
  text-align: var(--typo-footer-text-align, inherit) !important;
  opacity: var(--typo-footer-opacity, 1) !important;
  text-shadow: var(--typo-footer-text-shadow, none) !important;
  -webkit-text-stroke: var(--typo-footer-outline-width, 0) var(--typo-footer-outline-color, transparent) !important;
}

/* Footer visibility controls apply to the two visible groups, never to the parent. */
.site-footer {
  opacity: 1 !important;
}

.site-footer .footer-links {
  opacity: var(--footer-links-opacity, 0.75) !important;
}

.site-footer .footer-copyright {
  opacity: var(--footer-copyright-opacity, 0.75) !important;
}

.site-footer .footer-social {
  opacity: var(--footer-social-opacity, 0.85) !important;
}

.field,
.admin-input,
.admin-textarea,
.admin-select,
.newsletter-inline input,
.contact-form input,
.contact-form textarea,
.contact-form label {
  color: var(--typo-forms-color, inherit) !important;
  font-family: var(--typo-forms-font-family, inherit) !important;
  font-style: var(--typo-forms-font-style, normal) !important;
  font-weight: var(--typo-forms-font-weight, inherit) !important;
  font-size: var(--typo-forms-font-size-desktop, inherit) !important;
  letter-spacing: var(--typo-forms-letter-spacing, normal) !important;
  word-spacing: var(--typo-forms-word-spacing, normal) !important;
  line-height: var(--typo-forms-line-height, normal) !important;
  text-transform: var(--typo-forms-text-transform, none) !important;
  text-align: var(--typo-forms-text-align, inherit) !important;
  opacity: var(--typo-forms-opacity, 1) !important;
  text-shadow: var(--typo-forms-text-shadow, none) !important;
  -webkit-text-stroke: var(--typo-forms-outline-width, 0) var(--typo-forms-outline-color, transparent) !important;
}

.cookie-banner,
.cookie-banner p,
.cookie-banner h2,
.cookie-modal {
  color: var(--typo-cookies-color, inherit) !important;
  font-family: var(--typo-cookies-font-family, inherit) !important;
  font-size: var(--typo-cookies-font-size-desktop, inherit) !important;
  line-height: var(--typo-cookies-line-height, normal) !important;
  opacity: var(--typo-cookies-opacity, 1) !important;
  text-shadow: var(--typo-cookies-text-shadow, none) !important;
  -webkit-text-stroke: var(--typo-cookies-outline-width, 0) var(--typo-cookies-outline-color, transparent) !important;
}

.legal-content,
.legal-content p,
.legal-content h2 {
  color: var(--typo-legal-color, inherit) !important;
  font-family: var(--typo-legal-font-family, inherit) !important;
  font-size: var(--typo-legal-font-size-desktop, inherit) !important;
  line-height: var(--typo-legal-line-height, normal) !important;
  opacity: var(--typo-legal-opacity, 1) !important;
  text-shadow: var(--typo-legal-text-shadow, none) !important;
  -webkit-text-stroke: var(--typo-legal-outline-width, 0) var(--typo-legal-outline-color, transparent) !important;
}

.not-found,
.not-found p,
.not-found .benefit p {
  color: var(--not-found-text-color, var(--text)) !important;
}

.not-found h1,
.not-found h2,
.not-found .section-kicker,
.not-found .benefit h3 {
  color: var(--not-found-accent-color, var(--gold)) !important;
}

@media (max-width: 900px) {
  .btn,
  .filter-btn,
  button.btn {
    font-size: var(--typo-buttons-font-size-tablet, var(--typo-buttons-font-size-desktop, 15px)) !important;
  }

  .hero-slogan,
  .hero-content p {
    font-size: var(--typo-heroTexts-font-size-tablet, var(--typo-heroTexts-font-size-desktop, inherit)) !important;
  }

  .section-title,
  .sub-title,
  .article-title {
    font-size: var(--typo-sectionTitles-font-size-tablet, var(--typo-sectionTitles-font-size-desktop, inherit)) !important;
  }

  body,
  p,
  .text-muted {
    font-size: var(--typo-globalBody-font-size-tablet, var(--typo-globalBody-font-size-desktop, inherit)) !important;
  }
}

@media (max-width: 620px) {
  .btn,
  .filter-btn,
  button.btn {
    font-size: var(--typo-buttons-font-size-mobile, var(--typo-buttons-font-size-tablet, var(--typo-buttons-font-size-desktop, 14px))) !important;
  }

  .hero-slogan,
  .hero-content p {
    font-size: var(--typo-heroTexts-font-size-mobile, var(--typo-heroTexts-font-size-tablet, var(--typo-heroTexts-font-size-desktop, inherit))) !important;
  }

  .section-title,
  .sub-title,
  .article-title {
    font-size: var(--typo-sectionTitles-font-size-mobile, var(--typo-sectionTitles-font-size-tablet, var(--typo-sectionTitles-font-size-desktop, inherit))) !important;
  }

  body,
  p,
  .text-muted {
    font-size: var(--typo-globalBody-font-size-mobile, var(--typo-globalBody-font-size-tablet, var(--typo-globalBody-font-size-desktop, inherit))) !important;
  }
}

@media (max-width: 480px) {
  .news-layout .sidebar-stack .side-box:nth-child(2) > .filter-row {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: calc(var(--hero-bottom-bar-height, 64px) + 22px);
  }

  .home-hero .hero-content {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    box-sizing: border-box;
    padding-inline: 16px;
    margin-inline: auto;
    transform: translateY(0);
  }

  .home-hero .hero-logo {
    display: block;
    width: auto !important;
    max-width: clamp(170px, 68vw, 300px) !important;
    min-width: 0;
    height: auto;
    box-sizing: border-box;
    margin-inline: auto;
    margin-bottom: 8px;
    object-fit: contain;
    transform: translate3d(0, calc(var(--hero-logo-base-y, 0px) + var(--hero-logo-motion-y, 0px)), 0) !important;
    --hero-logo-base-x: 0px !important;
    --hero-logo-motion-x: 0px !important;
  }

  .home-hero .hero-logo-breath {
    margin-bottom: 8px;
  }

  .home-hero .hero-content .hero-slogan {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: clamp(20px, 7vw, 30px) !important;
    line-height: 1.08 !important;
    overflow-wrap: anywhere;
  }

  .home-hero .hero-content .hero-lead {
    max-width: 100%;
    font-size: clamp(13px, 3.8vw, 16px) !important;
    line-height: 1.42 !important;
    overflow-wrap: anywhere;
  }

  .home-hero .btn-row {
    width: min(100%, 340px);
    max-width: 100%;
    box-sizing: border-box;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-hero .btn-row .btn {
    width: 100%;
    max-width: 100%;
    min-height: 42px;
    box-sizing: border-box;
    padding: 10px 14px;
    justify-content: center;
    white-space: normal;
    text-align: center;
    font-size: clamp(12px, 3.4vw, 14px) !important;
    line-height: 1.2 !important;
  }

  .home-hero .hero-dots {
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    max-width: calc(100vw - 32px);
    margin-top: 18px;
    justify-content: center;
    flex-wrap: wrap;
    transform: none;
  }

  .founder-layout.is-columns .founder-column-text p {
    text-align: left !important;
    text-align-last: left !important;
  }
}

body {
  opacity: 1 !important;
}

/* Admin readability guard */
body.admin-view,
body.admin-view .admin-shell,
body.admin-view .admin-main,
body.admin-view .admin-panel,
body.admin-view .admin-card,
body.admin-view .admin-topbar,
body.admin-view .admin-field,
body.admin-view .admin-field label,
body.admin-view .admin-field .label,
body.admin-view .admin-table,
body.admin-view .admin-table td,
body.admin-view .admin-table th,
body.admin-view .admin-list,
body.admin-view .activity-row,
body.admin-view .stat-row,
body.admin-view summary,
body.admin-view p {
  color: var(--text) !important;
  opacity: 1 !important;
}

body.admin-view .text-muted,
body.admin-view .admin-field label,
body.admin-view .admin-field .label,
body.admin-view .admin-nav-group h3 {
  color: var(--muted) !important;
}

body.admin-view .admin-panel h2,
body.admin-view .admin-card h2,
body.admin-view .admin-topbar h1,
body.admin-view .section-title,
body.admin-view .admin-tab.is-active {
  color: var(--gold) !important;
}

body.admin-view .admin-tab {
  color: #d5d8db !important;
}

body.admin-view .admin-input,
body.admin-view .admin-textarea,
body.admin-view .admin-select,
body.admin-view .field {
  color: var(--text) !important;
  background: rgba(0, 0, 0, 0.34) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  opacity: 1 !important;
}

body.admin-view .btn:not(.primary) {
  color: var(--text) !important;
  background: rgba(8, 10, 11, 0.76) !important;
}

body.admin-view .btn.primary {
  color: #11100d !important;
  background: var(--gold) !important;
}

.seo-editor > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style-position: inside;
}

.seo-editor[open] > summary {
  margin-bottom: 24px;
}

.seo-field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.seo-mode-badge {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 7px;
  border: 1px solid rgba(216, 168, 79, 0.42);
  border-radius: 3px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.seo-mode-badge.is-manual {
  border-color: rgba(244, 240, 232, 0.32);
  color: var(--text);
}

.seo-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.seo-preview {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.3);
}

.seo-preview-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.google-preview strong {
  display: block;
  color: #8ab4f8;
  font: 20px/1.3 Arial, sans-serif;
}

.google-preview small {
  display: block;
  margin: 8px 0;
  color: #bdc1c6;
  overflow-wrap: anywhere;
}

.seo-preview p {
  margin: 8px 0 0;
  color: #d5d8db;
  line-height: 1.5;
}

.seo-preview-image {
  width: 100%;
  aspect-ratio: 1.91 / 1;
  margin-bottom: 14px;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-preview strong {
  display: block;
  color: var(--text);
  font-size: 18px;
}

@media (max-width: 760px) {
  .seo-preview-grid {
    grid-template-columns: 1fr;
  }
}

.sub-hero .sub-title.community-hero-title {
  color: var(--community-hero-title-color, var(--typo-pageHeaderTexts-color, inherit)) !important;
  font-size: var(--community-hero-title-font-size-desktop) !important;
}

.sub-hero .community-hero-lead {
  font-size: var(--community-hero-text-font-size-desktop) !important;
}

.community-form-panel .community-form-title {
  color: var(--community-form-title-color, var(--gold)) !important;
}

.image-split-copy .community-story-kicker {
  font-size: var(--community-story-kicker-font-size-desktop) !important;
}

.image-split-copy .community-story-title {
  font-size: var(--community-story-title-font-size-desktop) !important;
}

.image-split-copy .community-story-thanks {
  font-size: var(--community-story-thanks-font-size-desktop) !important;
}

.team-founder-kicker {
  white-space: pre-line;
  font-size: var(--team-founder-kicker-font-size-desktop) !important;
  line-height: var(--team-founder-kicker-line-height) !important;
}

.team-founder-title {
  font-size: var(--team-founder-title-font-size-desktop) !important;
  line-height: var(--team-founder-title-line-height) !important;
}

@media (max-width: 900px) {
  .team-founder-kicker {
    font-size: var(--team-founder-kicker-font-size-tablet, var(--team-founder-kicker-font-size-desktop)) !important;
  }

  .team-founder-title {
    font-size: var(--team-founder-title-font-size-tablet, var(--team-founder-title-font-size-desktop)) !important;
  }
}

@media (max-width: 620px) {
  .team-founder-kicker {
    font-size: var(--team-founder-kicker-font-size-mobile, var(--team-founder-kicker-font-size-tablet, var(--team-founder-kicker-font-size-desktop))) !important;
  }

  .team-founder-title {
    font-size: var(--team-founder-title-font-size-mobile, var(--team-founder-title-font-size-tablet, var(--team-founder-title-font-size-desktop))) !important;
  }

  .timeline-story-copy .universe-body-subheading,
  .image-split-copy .universe-body-subheading {
    font-size: var(--universe-body-subheading-mobile-size, 19px);
  }
}

body .cms-text-align {
  text-align: var(--cms-text-align, inherit) !important;
}

.admin-responsive-preview-backdrop {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgba(0, 0, 0, 0.82);
}

.admin-responsive-preview-dialog {
  width: min(1600px, 96vw);
  height: min(1100px, calc(100vh - 28px));
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(216, 168, 79, 0.45);
  border-radius: var(--ui-card-radius);
  background: #06090b;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.72), 0 0 34px rgba(216, 168, 79, 0.1);
}

.admin-responsive-preview-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(3, 5, 6, 0.96);
}

.admin-responsive-preview-toolbar h2 {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 17px;
  text-transform: uppercase;
}

.admin-responsive-preview-route {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.admin-responsive-preview-size {
  display: block;
  margin-top: 2px;
  color: var(--gold);
  font-size: 11px;
}

.admin-responsive-preview-mode-list,
.admin-responsive-preview-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.admin-responsive-preview-mode {
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid var(--line-soft);
  border-radius: var(--ui-card-radius);
  background: rgba(9, 14, 17, 0.92);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
}

.admin-responsive-preview-mode:hover,
.admin-responsive-preview-mode:focus-visible {
  border-color: rgba(216, 168, 79, 0.58);
  color: var(--text);
}

.admin-responsive-preview-mode.is-active {
  border-color: var(--gold);
  background: rgba(216, 168, 79, 0.18);
  color: #fff1c9;
  box-shadow: inset 0 0 0 1px rgba(216, 168, 79, 0.18);
}

.admin-responsive-preview-actions .btn {
  min-height: 34px;
  padding: 6px 11px;
  font-size: 12px;
}

.admin-responsive-preview-scroll {
  min-width: 0;
  min-height: 0;
  flex: 1 1 auto;
  display: grid;
  place-items: center;
  overflow: auto;
  padding: 18px;
  background:
    linear-gradient(rgba(216, 168, 79, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 168, 79, 0.035) 1px, transparent 1px),
    #020405;
  background-size: 24px 24px;
}

.admin-responsive-preview-stage {
  position: relative;
  flex: 0 0 auto;
}

.admin-responsive-preview-frame {
  position: relative;
  box-sizing: content-box;
  transform-origin: top left;
  overflow: hidden;
  border: 1px solid rgba(216, 168, 79, 0.65);
  background: #000;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.66);
}

.admin-responsive-preview-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #050707;
}

@media (max-width: 980px) {
  .admin-responsive-preview-toolbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .admin-responsive-preview-mode-list {
    order: 3;
    width: 100%;
  }
}

@media (max-width: 620px) {
  .admin-responsive-preview-backdrop {
    padding: 6px;
  }

  .admin-responsive-preview-dialog {
    width: 100%;
    height: calc(100vh - 12px);
  }

  .admin-responsive-preview-toolbar {
    padding: 10px;
  }

  .admin-responsive-preview-actions {
    width: 100%;
  }

  .admin-responsive-preview-actions .btn {
    flex: 1 1 auto;
  }

  .admin-responsive-preview-scroll {
    padding: 10px;
  }
}

/* Responsive card counts: preserve the desktop card proportions as the viewport narrows. */
@media (max-width: 900px) {
  #tajemnice .secret-grid,
  .home-hero ~ .section .card-grid,
  .home-hero ~ .section .cta-grid,
  .universe-anchor-section .universe-section-image-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline > *,
  .history-cards > * {
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  #tajemnice .secret-grid,
  .home-hero ~ .section .card-grid,
  .home-hero ~ .section .cta-grid,
  .universe-anchor-section .universe-section-image-strip,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    justify-items: center;
  }

  .feature-grid > .feature-link {
    width: min(100%, 322px);
  }

  .timeline > *,
  .history-cards > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .home-hero ~ .section .timeline > .timeline-item {
    flex-basis: min(100%, 258px);
    max-width: min(100%, 258px);
  }

  .history-cards > .history-card {
    flex-basis: min(100%, 256px);
    max-width: min(100%, 256px);
  }
}

/* The five Universe timeline cards use a centered final cell on tablet. */
@media (min-width: 601px) and (max-width: 900px) {
  .history-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .history-cards > .history-card {
    width: auto;
    max-width: none;
    flex: none;
  }

  .history-cards > .history-card:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 20px) / 2);
  }
}

/* Keep tablet card grids monotonic: two columns through the tablet range. */
@media (min-width: 601px) and (max-width: 1100px) {
  #tajemnice .secret-grid,
  .home-hero ~ .section .card-grid,
  .home-hero ~ .section .cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero ~ .section .timeline,
  .history-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero ~ .section .timeline {
    gap: 0;
  }

  .history-cards {
    gap: 20px;
  }

  .home-hero ~ .section .timeline > .timeline-item,
  .history-cards > .history-card {
    width: auto;
    max-width: none;
    flex: none;
    grid-column: auto;
  }

  .home-hero ~ .section .timeline > .timeline-item:nth-child(5),
  .history-cards > .history-card:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .home-hero ~ .section .timeline > .timeline-item:nth-child(5) {
    width: 50%;
  }

  .history-cards > .history-card:nth-child(5) {
    width: calc((100% - 20px) / 2);
  }
}

/* Graphic cards stay horizontal and use two readable columns on tablets. */
@media (min-width: 601px) and (max-width: 1200px) {
  #tajemnice .secret-grid,
  .home-hero ~ .section .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #tajemnice .secret-card-image-frame {
    aspect-ratio: 16 / 9;
  }
}

/* The four-image Universe section uses a balanced 2 x 2 tablet gallery. */
@media (min-width: 601px) and (max-width: 1200px) {
  .universe-anchor-section .universe-section-image-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Keep the administrator's Hero typography values authoritative at every breakpoint. */
@media (min-width: 621px) and (max-width: 900px) {
  .home-hero .hero-content .hero-slogan,
  .home-hero .hero-content .hero-lead {
    font-size: var(--typo-heroTexts-font-size-tablet, var(--typo-heroTexts-font-size-desktop, inherit)) !important;
  }

  .sub-hero .sub-title,
  .sub-hero .sub-lead,
  .article-hero .article-title,
  .article-hero .sub-lead,
  .article-hero .eyebrow {
    font-size: var(--typo-pageHeaderTexts-font-size-tablet, var(--typo-pageHeaderTexts-font-size-desktop, inherit)) !important;
  }
}

@media (max-width: 620px) {
  .home-hero .hero-content .hero-slogan,
  .home-hero .hero-content .hero-lead {
    font-size: var(--typo-heroTexts-font-size-mobile, var(--typo-heroTexts-font-size-tablet, var(--typo-heroTexts-font-size-desktop, inherit))) !important;
  }

  .sub-hero .sub-title,
  .sub-hero .sub-lead,
  .article-hero .article-title,
  .article-hero .sub-lead,
  .article-hero .eyebrow {
    font-size: var(--typo-pageHeaderTexts-font-size-mobile, var(--typo-pageHeaderTexts-font-size-tablet, var(--typo-pageHeaderTexts-font-size-desktop, inherit))) !important;
  }
}
