:root {
  color-scheme: dark;
  --bg: #030914;
  --bg-deep: #01050b;
  --panel: rgba(7, 21, 35, 0.88);
  --panel-strong: rgba(8, 27, 44, 0.96);
  --line: rgba(125, 212, 241, 0.18);
  --line-strong: rgba(138, 228, 255, 0.42);
  --text: #f5f9fc;
  --muted: #93aab9;
  --muted-deep: #617c8d;
  --soul: #6de3ff;
  --soul-bright: #c6f7ff;
  --gold: #f2cf73;
  --gold-bright: #fff0ba;
  --danger: #ff755f;
  --shell: min(1180px, calc(100% - 48px));
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", serif;
  --sans: Inter, "Noto Sans JP", "Yu Gothic UI", "Yu Gothic", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--bg-deep);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 5%, rgba(41, 148, 209, 0.12), transparent 30rem),
    radial-gradient(circle at 15% 42%, rgba(234, 179, 74, 0.06), transparent 35rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.16;
  background-image: url("/assets/generated/title-background.webp");
  background-position: center;
  background-size: cover;
  filter: saturate(0.65) contrast(1.08);
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 88%);
  pointer-events: none;
}

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

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

button,
summary {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--soul-bright);
  outline-offset: 4px;
}

::selection {
  background: rgba(109, 227, 255, 0.28);
  color: #fff;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 4px;
  background: #fff;
  color: #03101d;
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
body.is-nav-open .site-header {
  border-color: rgba(112, 202, 235, 0.16);
  background: rgba(3, 12, 22, 0.9);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(1.25);
}

.site-header__inner {
  width: min(1320px, calc(100% - 40px));
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.site-brand {
  position: relative;
  width: 168px;
  display: block;
}

.site-brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.5));
}

.site-brand > span {
  position: absolute;
  right: -12px;
  bottom: 3px;
  padding: 2px 5px;
  border: 1px solid rgba(242, 207, 115, 0.38);
  background: rgba(3, 10, 17, 0.9);
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.8vw, 42px);
}

.global-nav a {
  position: relative;
  padding: 8px 0;
  color: #b2c5d1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: color 160ms ease;
}

.global-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 1px;
  left: 50%;
  height: 1px;
  content: "";
  background: var(--soul);
  box-shadow: 0 0 8px var(--soul);
  transition: inset 180ms ease;
}

.global-nav a:hover,
.global-nav a.is-active,
.global-nav a[aria-current="page"] {
  color: #fff;
}

.global-nav a:hover::after,
.global-nav a.is-active::after,
.global-nav a[aria-current="page"]::after {
  right: 0;
  left: 0;
}

.nav-toggle {
  display: none;
}

.button {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid rgba(141, 211, 235, 0.3);
  border-radius: 3px;
  background: rgba(7, 24, 38, 0.72);
  color: #eaf7fc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(115deg, transparent 15%, rgba(255, 255, 255, 0.2), transparent 70%);
  transform: translateX(-90%);
  transition: opacity 160ms ease, transform 420ms ease;
}

.button:hover {
  border-color: rgba(168, 235, 255, 0.74);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.button:hover::before {
  opacity: 1;
  transform: translateX(95%);
}

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

.button i {
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: normal;
  line-height: 1;
}

.button--play {
  border-color: rgba(255, 230, 153, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 247, 208, 0.28), transparent 36%),
    linear-gradient(135deg, #d8a23d, #8c5519 62%, #5f360d);
  color: #fff6d8;
  text-shadow: 0 1px 2px rgba(38, 18, 0, 0.8);
  box-shadow:
    inset 0 0 0 1px rgba(91, 45, 0, 0.6),
    inset 0 1px rgba(255, 255, 255, 0.45),
    0 8px 25px rgba(176, 109, 24, 0.2);
}

.button--play:hover {
  border-color: #fff2b8;
  filter: brightness(1.12);
  box-shadow: 0 10px 30px rgba(230, 164, 63, 0.28), inset 0 1px rgba(255, 255, 255, 0.52);
}

.button--ghost {
  background: rgba(5, 18, 29, 0.62);
}

.button--large {
  min-height: 56px;
  padding-inline: 28px;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 94px;
  isolation: isolate;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(2, 8, 16, 0.98) 0%, rgba(3, 12, 22, 0.91) 35%, rgba(3, 12, 20, 0.5) 69%, rgba(3, 9, 15, 0.8) 100%),
    linear-gradient(180deg, rgba(2, 7, 13, 0.2), rgba(2, 7, 13, 0.7)),
    url("/assets/generated/title-background.webp") center / cover no-repeat;
  transform: scale(1.025);
}

.hero__backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 72%, var(--bg) 100%),
    radial-gradient(circle at 62% 48%, transparent 10%, rgba(2, 8, 15, 0.42) 70%);
}

.hero__glow {
  position: absolute;
  z-index: -2;
  width: 34rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero__glow--blue {
  top: -13rem;
  right: -8rem;
  background: rgba(40, 181, 255, 0.13);
}

.hero__glow--gold {
  bottom: -18rem;
  left: -10rem;
  background: rgba(226, 162, 55, 0.09);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: clamp(44px, 6vw, 90px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--soul);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.eyebrow span {
  position: relative;
  margin-right: 12px;
  padding-left: 22px;
  color: var(--gold);
}

.eyebrow span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 13px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.035em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.52);
}

.hero h1 span {
  display: block;
  color: var(--gold-bright);
  font-size: 0.58em;
  letter-spacing: 0.14em;
}

.hero__lead {
  max-width: 610px;
  margin: 27px 0 0;
  color: #c0d1dc;
  font-size: clamp(14px, 1.35vw, 17px);
  font-weight: 600;
  line-height: 2;
}

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

.hero__note {
  margin: 10px 0 0;
  color: var(--muted-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 42px 0 0;
  border: 1px solid rgba(133, 207, 232, 0.12);
  background: rgba(106, 195, 225, 0.1);
}

.hero-stats > div {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 0 8px;
  padding: 13px 14px;
  background: rgba(4, 15, 25, 0.88);
}

.hero-stats dt {
  grid-column: 1 / -1;
  color: #55788d;
  font: 800 8px/1 var(--sans);
  letter-spacing: 0.16em;
}

.hero-stats dd {
  margin: 7px 0 0;
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.hero-stats span {
  overflow: hidden;
  color: #829aa9;
  font-size: 9px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  margin: 0;
  perspective: 1200px;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  inset: 9% -5% -8% 11%;
  border-radius: 50%;
  background: rgba(38, 183, 244, 0.15);
  filter: blur(48px);
}

.hero-visual::after {
  top: -18px;
  right: -18px;
  width: 74%;
  height: 72%;
  border-top: 1px solid rgba(113, 220, 255, 0.35);
  border-right: 1px solid rgba(113, 220, 255, 0.35);
}

.hero-visual__frame {
  position: relative;
  padding: 7px;
  border: 1px solid rgba(194, 233, 246, 0.28);
  background: rgba(3, 12, 20, 0.72);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.46), 0 0 45px rgba(46, 179, 233, 0.08);
  transform: rotateY(-2.5deg) rotateX(1.5deg);
}

.hero-visual__frame::before,
.hero-visual__frame::after {
  position: absolute;
  width: 34px;
  height: 34px;
  content: "";
  pointer-events: none;
}

.hero-visual__frame::before {
  top: -5px;
  left: -5px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.hero-visual__frame::after {
  right: -5px;
  bottom: -5px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.hero-visual__frame img {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
}

.hero-visual__tag {
  position: absolute;
  bottom: 18px;
  left: -13px;
  padding: 7px 12px 7px 16px;
  border-left: 3px solid var(--soul);
  background: rgba(2, 10, 17, 0.88);
  color: #d6f8ff;
  font: 900 9px/1 var(--sans);
  letter-spacing: 0.22em;
  backdrop-filter: blur(8px);
}

.hero-visual figcaption {
  margin: 13px 4px 0;
  color: #7892a2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: right;
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #668797;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.28em;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 32px;
  display: block;
  overflow: hidden;
  background: rgba(129, 201, 226, 0.22);
}

.scroll-cue i::after {
  width: 1px;
  height: 14px;
  display: block;
  content: "";
  background: var(--soul);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  from { transform: translateY(-15px); }
  to { transform: translateY(34px); }
}

.section {
  position: relative;
  padding: clamp(88px, 10vw, 140px) 0;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading h2,
.final-cta h2,
.updates-intro h2 {
  margin: 0;
  color: #f9fbfd;
  font-family: var(--serif);
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.045em;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  align-items: end;
  gap: clamp(38px, 8vw, 110px);
}

.section-heading--split > p,
.section-heading--center > p,
.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 2;
}

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center > p {
  margin-top: 16px;
}

.section--latest {
  background:
    linear-gradient(180deg, var(--bg), rgba(4, 13, 23, 0.97)),
    radial-gradient(circle at 80% 40%, rgba(50, 179, 221, 0.08), transparent 34%);
}

.section--latest::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.25;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(109, 227, 255, 0.06) 7% calc(7% + 1px), transparent calc(7% + 1px) 93%, rgba(109, 227, 255, 0.06) 93% calc(93% + 1px), transparent calc(93% + 1px)),
    linear-gradient(rgba(109, 227, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 100% 72px;
  pointer-events: none;
}

.latest-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 207, 115, 0.34);
  background:
    radial-gradient(circle at 86% 42%, rgba(75, 200, 235, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(13, 38, 57, 0.95), rgba(4, 15, 25, 0.98));
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.24);
}

.latest-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.34;
  background-image: url("/assets/generated/title-background.webp");
  background-position: center 55%;
  background-size: cover;
  mix-blend-mode: screen;
  mask-image: linear-gradient(90deg, transparent 14%, black 100%);
  pointer-events: none;
}

.latest-card__meta {
  position: relative;
  z-index: 1;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(158, 210, 229, 0.12);
  color: #758f9d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border: 1px solid rgba(114, 238, 185, 0.26);
  border-radius: 999px;
  background: rgba(51, 157, 112, 0.09);
  color: #8ff2c4;
}

.status-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.latest-card__meta time {
  color: #dbe8ef;
}

.latest-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 44px;
  padding: clamp(34px, 5vw, 66px);
}

.latest-card__eyebrow {
  margin: 0 0 12px;
  color: var(--soul);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.25em;
}

.latest-card h3 {
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.latest-card__body > div:first-child > p:not(.latest-card__eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: #a9bfcb;
  font-size: 13px;
  font-weight: 600;
  line-height: 2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: #d5eef7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.text-link span {
  color: var(--soul);
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.latest-card__sigil {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(113, 219, 255, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 159, 207, 0.22), rgba(4, 19, 30, 0.6) 62%, transparent 63%);
  box-shadow: inset 0 0 36px rgba(83, 203, 245, 0.1), 0 0 46px rgba(41, 169, 221, 0.08);
}

.latest-card__sigil::before,
.latest-card__sigil::after {
  position: absolute;
  inset: 10%;
  content: "";
  border: 1px solid rgba(242, 207, 115, 0.24);
  border-radius: 50%;
}

.latest-card__sigil::after {
  inset: 18%;
  border-style: dashed;
  animation: sigil-turn 20s linear infinite;
}

@keyframes sigil-turn {
  to { transform: rotate(360deg); }
}

.latest-card__sigil img {
  position: absolute;
  width: 66%;
  opacity: 0.24;
  filter: hue-rotate(145deg) saturate(1.5);
}

.latest-card__sigil span,
.latest-card__sigil small {
  position: relative;
  z-index: 1;
}

.latest-card__sigil span {
  margin-top: -12px;
  color: #fff;
  font: 700 68px/1 Georgia, serif;
  text-shadow: 0 0 28px rgba(109, 227, 255, 0.42);
}

.latest-card__sigil small {
  position: absolute;
  bottom: 25%;
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.latest-card__preview {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(112, 213, 242, 0.26);
  background: #020a11;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28), 0 0 28px rgba(65, 185, 224, 0.08);
}

.latest-card__preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.latest-card__preview figcaption {
  padding: 9px 12px;
  border-top: 1px solid rgba(112, 192, 220, 0.14);
  background: rgba(3, 14, 23, 0.96);
  color: #7895a4;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.update-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.update-highlights article {
  position: relative;
  min-height: 210px;
  padding: 24px 22px;
  overflow: hidden;
  border: 1px solid rgba(118, 189, 216, 0.12);
  background: rgba(5, 18, 29, 0.72);
  transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.update-highlights article:hover {
  border-color: rgba(124, 222, 255, 0.36);
  background: rgba(8, 28, 43, 0.88);
  transform: translateY(-4px);
}

.highlight-no {
  position: absolute;
  top: 10px;
  right: 15px;
  color: rgba(137, 220, 247, 0.09);
  font: 700 52px/1 Georgia, serif;
}

.update-highlights article > p {
  margin: 0 0 26px;
  color: var(--soul);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.update-highlights h3 {
  margin: 0 0 12px;
  color: #e9f2f7;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
}

.update-highlights article > span:last-child {
  color: #8199a7;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.8;
}

.section--about {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(59, 163, 201, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(4, 13, 23, 0.97), rgba(2, 8, 15, 0.98));
}

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

.journey-card {
  --journey-accent: #f2cf73;
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(242, 207, 115, 0.18);
  background:
    radial-gradient(circle at 50% 28%, rgba(242, 207, 115, 0.1), transparent 35%),
    linear-gradient(160deg, rgba(11, 30, 44, 0.9), rgba(3, 12, 20, 0.98));
}

.journey-card--blue {
  --journey-accent: #6de3ff;
  border-color: rgba(109, 227, 255, 0.18);
  background:
    radial-gradient(circle at 50% 28%, rgba(64, 180, 229, 0.12), transparent 35%),
    linear-gradient(160deg, rgba(8, 32, 49, 0.92), rgba(3, 12, 20, 0.98));
}

.journey-card--danger {
  --journey-accent: #ff755f;
  border-color: rgba(255, 117, 95, 0.18);
  background:
    radial-gradient(circle at 50% 28%, rgba(216, 65, 52, 0.12), transparent 35%),
    linear-gradient(160deg, rgba(39, 21, 27, 0.92), rgba(5, 10, 17, 0.98));
}

.journey-card::after {
  position: absolute;
  inset: 0;
  content: "";
  border-top: 2px solid var(--journey-accent);
  opacity: 0.45;
  transform: scaleX(0.16);
  transform-origin: left;
  transition: opacity 180ms ease, transform 300ms ease;
}

.journey-card:hover::after {
  opacity: 0.85;
  transform: scaleX(1);
}

.journey-card__label {
  position: absolute;
  top: 20px;
  left: 22px;
  color: var(--journey-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.journey-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  color: #f1f6f9;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.06em;
}

.journey-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #879eab;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.9;
}

.hero-orbit {
  position: absolute;
  top: 58px;
  left: 50%;
  width: 230px;
  height: 190px;
  transform: translateX(-50%);
}

.hero-orbit::before {
  position: absolute;
  inset: 23px 20px 0;
  content: "";
  border: 1px solid rgba(242, 207, 115, 0.15);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.hero-token {
  position: absolute;
  width: 92px;
  height: 92px;
  background-repeat: no-repeat;
  background-size: 400% 100%;
  background-position: 0 0;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.4));
  image-rendering: pixelated;
  animation: hero-idle 780ms steps(4) infinite;
}

.hero-token--1 {
  bottom: 7px;
  left: 69px;
  z-index: 2;
  background-image: url("/assets/generated/hero-valkyrie-sheet.webp");
}

.hero-token--2 {
  top: 16px;
  left: 4px;
  background-image: url("/assets/generated/hero-priestess-sheet.webp");
}

.hero-token--3 {
  top: 8px;
  right: 0;
  background-image: url("/assets/generated/hero-pyromancer-sheet.webp");
}

@keyframes hero-idle {
  to { background-position: 133.333% 0; }
}

.soul-rings {
  position: absolute;
  top: 73px;
  left: 50%;
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(109, 227, 255, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 202, 255, 0.22), transparent 54%);
  box-shadow: 0 0 45px rgba(57, 193, 244, 0.08);
  transform: translateX(-50%);
}

.soul-rings::before {
  width: 72px;
  height: 72px;
  content: "";
  border-radius: 50%;
  background: url("/assets/generated/soul-icon.png") center / contain no-repeat;
  filter: hue-rotate(152deg) saturate(1.8) drop-shadow(0 0 12px #54dfff);
}

.soul-rings i {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(110, 227, 255, 0.32);
  border-radius: 50%;
  animation: sigil-turn 10s linear infinite;
}

.soul-rings i:nth-child(2) {
  inset: -9%;
  border-style: solid;
  opacity: 0.32;
  animation-direction: reverse;
  animation-duration: 15s;
}

.soul-rings i:nth-child(3) {
  inset: 29%;
  border-color: rgba(242, 207, 115, 0.46);
  animation-duration: 6s;
}

.end-king-visual {
  position: absolute;
  top: 38px;
  left: 50%;
  width: 228px;
  height: 232px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
}

.end-king-visual::before,
.end-king-visual::after,
.end-king-visual i {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.end-king-visual::before {
  inset: 28px 10px 4px;
  border: 1px solid rgba(255, 117, 95, 0.2);
  background: radial-gradient(circle, rgba(199, 37, 37, 0.24), transparent 62%);
  box-shadow: 0 0 42px rgba(183, 26, 35, 0.12);
}

.end-king-visual::after {
  inset: 45px 27px 21px;
  border: 1px dashed rgba(255, 126, 94, 0.25);
  animation: sigil-turn 18s linear infinite;
}

.end-king-visual i {
  inset: 24% 27%;
  background: rgba(255, 54, 45, 0.16);
  filter: blur(18px);
}

.end-king-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.66)) drop-shadow(0 0 12px rgba(255, 52, 44, 0.18));
  animation: end-king-float 4.8s ease-in-out infinite;
}

@keyframes end-king-float {
  0%, 100% { transform: translateY(2px); }
  50% { transform: translateY(-5px); }
}

.hero-lineup {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  border: 1px solid rgba(105, 184, 212, 0.13);
  background: rgba(94, 177, 205, 0.1);
}

.hero-lineup > div {
  min-width: 0;
  display: grid;
  justify-items: center;
  padding: 16px 8px 13px;
  background: rgba(5, 18, 29, 0.9);
  transition: background-color 160ms ease;
}

.hero-lineup > div:hover {
  background: rgba(10, 34, 51, 0.96);
}

.hero-portrait {
  width: 78px;
  height: 78px;
  display: block;
  background-repeat: no-repeat;
  background-size: 400% 100%;
  background-position: 0 0;
  image-rendering: pixelated;
  animation: hero-idle 800ms steps(4) infinite;
}

.hero-portrait--valkyrie { background-image: url("/assets/generated/hero-valkyrie-sheet.webp"); }
.hero-portrait--ronin { background-image: url("/assets/generated/hero-ronin-sheet.webp"); }
.hero-portrait--pyromancer { background-image: url("/assets/generated/hero-pyromancer-sheet.webp"); }
.hero-portrait--archer { background-image: url("/assets/generated/hero-frost-archer-sheet.webp"); }
.hero-portrait--paladin { background-image: url("/assets/generated/hero-paladin-sheet.webp"); }
.hero-portrait--thief { background-image: url("/assets/generated/hero-shadow-thief-sheet.webp"); }

.hero-lineup span {
  max-width: 100%;
  overflow: hidden;
  color: #dce8ed;
  font-size: 11px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-lineup small {
  max-width: 100%;
  overflow: hidden;
  color: #668191;
  font-size: 8px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section--weapons {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(2, 8, 15, 0.98), rgba(4, 13, 22, 0.98)),
    radial-gradient(circle at 82% 15%, rgba(109, 227, 255, 0.08), transparent 28%);
}

.weapon-haze {
  position: absolute;
  top: -20%;
  right: -8%;
  width: 52%;
  height: 85%;
  opacity: 0.1;
  background: url("/assets/generated/field-background.webp") center / cover no-repeat;
  mask-image: radial-gradient(ellipse at center, black, transparent 72%);
  pointer-events: none;
}

.charge-legend {
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  gap: 6px;
}

.charge-legend > span {
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  align-items: center;
  gap: 2px 8px;
  padding: 9px 12px;
  border: 1px solid rgba(108, 199, 229, 0.16);
  background: rgba(5, 20, 31, 0.74);
  color: #dcebf1;
  font-size: 10px;
  font-weight: 800;
}

.charge-legend i {
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(109, 227, 255, 0.34);
  border-radius: 50%;
  color: var(--soul);
  font-style: normal;
}

.charge-legend small {
  color: #688494;
  font-size: 8px;
}

.section-intro {
  margin: -26px 0 25px;
}

.weapon-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(390px, 0.84fr) minmax(0, 1.16fr);
  align-items: start;
  gap: 16px;
}

.weapon-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.weapon-card {
  --weapon-accent: #7de8ff;
  position: relative;
  width: 100%;
  min-height: 128px;
  display: grid;
  grid-template-columns: 24px 64px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 10px;
  padding: 13px 12px;
  overflow: hidden;
  border: 1px solid rgba(104, 187, 217, 0.14);
  background: rgba(4, 17, 28, 0.86);
  color: inherit;
  font: inherit;
  text-align: left;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.weapon-card:hover,
.weapon-card:focus-visible {
  outline: none;
  border-color: color-mix(in srgb, var(--weapon-accent) 34%, transparent);
  transform: translateY(-2px);
}

.weapon-card.is-selected {
  border-color: color-mix(in srgb, var(--weapon-accent) 48%, transparent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--weapon-accent) 10%, transparent), transparent 62%),
    rgba(6, 23, 36, 0.96);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2), inset 0 0 20px color-mix(in srgb, var(--weapon-accent) 5%, transparent);
}

.weapon-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: var(--weapon-accent);
  opacity: 0.42;
  transition: opacity 180ms ease;
}

.weapon-card:hover::before,
.weapon-card:focus-visible::before,
.weapon-card.is-selected::before {
  opacity: 1;
  box-shadow: 0 0 14px var(--weapon-accent);
}

.weapon-card__number {
  align-self: start;
  padding-top: 5px;
  color: #466474;
  font: 700 11px/1 Georgia, serif;
}

.weapon-card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--weapon-accent) 32%, transparent);
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--weapon-accent) 14%, transparent), rgba(2, 10, 17, 0.82));
}

.weapon-card__icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--weapon-accent) 58%, transparent));
}

.weapon-card__identity {
  min-width: 0;
  display: grid;
  align-content: center;
}

.weapon-card__identity > small {
  overflow: hidden;
  color: #7893a2;
  font-size: 7px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.weapon-card__identity > strong {
  margin-top: 3px;
  color: #f2f7fa;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

.weapon-card__featured {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 7px;
}

.weapon-card__featured span {
  padding: 3px 5px;
  border: 1px solid color-mix(in srgb, var(--weapon-accent) 22%, transparent);
  background: color-mix(in srgb, var(--weapon-accent) 7%, transparent);
  color: color-mix(in srgb, var(--weapon-accent) 82%, white);
  font-size: 7px;
  font-weight: 800;
}

.weapon-card__arrow {
  color: #668494;
  font: 400 25px/1 var(--sans);
  text-align: center;
  transition: color 180ms ease, transform 180ms ease;
}

.weapon-card.is-selected .weapon-card__arrow {
  color: var(--weapon-accent);
  transform: translateX(2px);
}

.weapon-detail {
  --weapon-accent: #7de8ff;
  position: sticky;
  top: 104px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--weapon-accent) 34%, rgba(104, 187, 217, 0.14));
  background:
    radial-gradient(circle at 14% 8%, color-mix(in srgb, var(--weapon-accent) 10%, transparent), transparent 32%),
    rgba(5, 20, 32, 0.96);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.weapon-detail::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--weapon-accent), transparent 74%);
  box-shadow: 0 0 14px color-mix(in srgb, var(--weapon-accent) 52%, transparent);
}

.weapon-detail__head {
  min-height: 126px;
  display: grid;
  grid-template-columns: 32px 88px minmax(0, 1fr);
  align-items: center;
  gap: 17px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(110, 188, 215, 0.12);
  animation: details-in 180ms ease-out both;
}

.weapon-detail__number {
  align-self: start;
  padding-top: 10px;
  color: color-mix(in srgb, var(--weapon-accent) 58%, #3e5e6f);
  font: 700 13px/1 Georgia, serif;
}

.weapon-detail__icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--weapon-accent) 34%, transparent);
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--weapon-accent) 14%, transparent), rgba(2, 10, 17, 0.82));
}

.weapon-detail__icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px color-mix(in srgb, var(--weapon-accent) 48%, transparent));
}

.weapon-detail__head small {
  color: var(--weapon-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.weapon-detail__head h3 {
  margin: 3px 0 2px;
  color: #f2f7fa;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

.weapon-detail__head p {
  margin: 0;
  color: #7893a2;
  font-size: 9px;
  font-weight: 700;
}

.weapon-detail__skills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  animation: details-in 220ms ease-out both;
}

@keyframes details-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.skill-row {
  position: relative;
  min-height: 194px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(108, 183, 210, 0.13);
  background: rgba(2, 11, 19, 0.58);
}

.skill-row--ultimate {
  border-color: color-mix(in srgb, var(--weapon-accent) 36%, transparent);
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--weapon-accent) 10%, transparent), transparent 55%),
    rgba(2, 11, 19, 0.68);
}

.skill-row__tier {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--weapon-accent) 42%, transparent);
  border-radius: 50%;
  color: var(--weapon-accent);
  font: 800 10px/1 var(--sans);
}

.skill-row__head {
  padding-right: 32px;
}

.skill-row h4 {
  margin: 0 0 11px;
  color: #edf5f8;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
}

.skill-row__head p {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0;
}

.skill-row__head p span,
.skill-row__head p b {
  padding: 4px 6px;
  border-radius: 2px;
  background: rgba(111, 178, 202, 0.08);
  color: #7693a2;
  font-size: 8px;
  font-weight: 800;
}

.skill-row__head p b {
  background: color-mix(in srgb, var(--weapon-accent) 10%, transparent);
  color: color-mix(in srgb, var(--weapon-accent) 76%, white);
}

.skill-row__description {
  margin: 24px 0 0;
  color: #819aa8;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.85;
}

.loading-copy,
.load-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 36px;
  border: 1px solid rgba(111, 184, 211, 0.12);
  background: rgba(4, 17, 28, 0.7);
  color: #718b9a;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.load-error {
  color: #e9a494;
}

.section--updates {
  background:
    radial-gradient(circle at 10% 20%, rgba(230, 168, 53, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(4, 13, 22, 0.98), rgba(2, 8, 15, 0.99));
}

.update-page-main {
  min-height: 100vh;
  background: var(--bg-deep);
}

.update-page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 160px 0 82px;
  border-bottom: 1px solid rgba(106, 189, 218, 0.13);
  background:
    linear-gradient(90deg, rgba(2, 9, 16, 0.98) 0 42%, rgba(2, 9, 16, 0.72) 68%, rgba(2, 9, 16, 0.9)),
    linear-gradient(180deg, rgba(2, 9, 16, 0.24), var(--bg-deep)),
    url("/assets/generated/title-background.webp") center 42% / cover no-repeat;
}

.update-page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  content: "";
  background: linear-gradient(180deg, transparent, var(--bg-deep));
  pointer-events: none;
}

.update-page-hero__glow {
  position: absolute;
  top: 26%;
  left: 56%;
  width: 430px;
  height: 220px;
  border: 1px solid rgba(109, 227, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(59, 181, 226, 0.08), inset 0 0 90px rgba(59, 181, 226, 0.05);
  transform: rotate(-11deg);
}

.update-page-hero__inner {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  color: #5e7d8e;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.breadcrumb a {
  color: #8aa6b4;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--soul);
}

.update-page-hero h1 {
  margin: 13px 0 18px;
  color: #f3f7f9;
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 86px);
  line-height: 1.08;
  letter-spacing: 0.08em;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

.update-page-hero__inner > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #91a8b4;
  font-size: 12px;
  font-weight: 600;
  line-height: 2;
}

.update-page-hero__latest {
  max-width: 780px;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 13px 16px;
  border: 1px solid rgba(109, 227, 255, 0.14);
  background: rgba(3, 15, 25, 0.72);
  color: inherit;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.update-page-hero__latest:hover,
.update-page-hero__latest:focus-visible {
  outline: none;
  border-color: rgba(109, 227, 255, 0.38);
  background: rgba(5, 25, 39, 0.86);
  transform: translateY(-2px);
}

.update-page-hero__latest > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--soul);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.update-page-hero__latest i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--soul);
  box-shadow: 0 0 9px var(--soul);
}

.update-page-hero__latest time {
  padding-left: 18px;
  border-left: 1px solid rgba(109, 227, 255, 0.16);
  color: var(--gold-bright);
  font: 700 13px/1 Georgia, serif;
}

.update-page-hero__latest strong {
  overflow: hidden;
  color: #dbe8ee;
  font-family: var(--serif);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.update-detail-hero {
  min-height: 570px;
}

.update-detail-meta {
  max-width: 820px;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  padding: 14px 17px;
  border-left: 2px solid var(--gold);
  background: rgba(3, 15, 25, 0.74);
  backdrop-filter: blur(8px);
}

.update-detail-meta time {
  color: var(--gold-bright);
  font: 700 14px/1 Georgia, serif;
}

.update-detail-meta span {
  padding: 5px 8px;
  border: 1px solid rgba(242, 207, 115, 0.2);
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.update-detail-meta strong {
  overflow: hidden;
  color: #dce9ef;
  font-family: var(--serif);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.update-archive {
  padding-top: 90px;
}

.updates-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(42px, 7vw, 90px);
}

.updates-intro {
  position: sticky;
  top: 112px;
}

.updates-intro h2 {
  font-size: clamp(32px, 3.8vw, 48px);
}

.updates-intro > p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.95;
}

.updates-intro__rule {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 28px 0;
}

.updates-intro__rule i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.updates-intro__rule span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 207, 115, 0.35), transparent);
}

.updates-intro__actions {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.updates-intro__actions .text-link {
  font-size: 9px;
}

.update-index {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.update-index-card {
  min-width: 0;
}

.update-index-card > a {
  position: relative;
  min-height: 190px;
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr) 34px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(112, 192, 220, 0.15);
  background: rgba(4, 17, 28, 0.84);
  color: inherit;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.update-index-card > a.has-media {
  grid-template-columns: 130px minmax(170px, 0.78fr) minmax(0, 1.22fr) 30px;
}

.update-index-card > a::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--soul), transparent 78%);
  opacity: 0.52;
}

.update-index-card > a:hover,
.update-index-card > a:focus-visible {
  outline: none;
  border-color: rgba(109, 227, 255, 0.34);
  background: rgba(6, 24, 37, 0.94);
  transform: translateY(-2px);
}

.update-index-card__date {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px 22px;
  border-right: 1px solid rgba(112, 190, 217, 0.12);
  background: rgba(2, 11, 19, 0.42);
}

.update-index-card__date > span {
  color: var(--soul);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.update-index-card__date time {
  color: var(--gold-bright);
  font: 700 17px/1.2 Georgia, serif;
}

.update-index-card__date small {
  color: #617d8c;
  font-size: 8px;
  font-weight: 800;
}

.update-index-card__media {
  min-width: 0;
  align-self: stretch;
  margin: 14px 0 14px 14px;
  overflow: hidden;
  border: 1px solid rgba(112, 192, 220, 0.18);
  background: #020a11;
}

.update-index-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: filter 220ms ease, transform 260ms ease;
}

.update-index-card > a:hover .update-index-card__media img,
.update-index-card > a:focus-visible .update-index-card__media img {
  filter: brightness(1.08) saturate(1.05);
  transform: scale(1.018);
}

.update-index-card__body {
  min-width: 0;
  display: grid;
  align-content: center;
  padding: 24px 28px;
}

.update-index-card__body h2 {
  margin: 0;
  color: #edf4f7;
  font-family: var(--serif);
  font-size: clamp(21px, 2.6vw, 29px);
  line-height: 1.4;
}

.update-index-card__body > p {
  margin: 10px 0 0;
  color: #7f98a6;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.8;
}

.update-index-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 14px;
}

.update-index-card__tags span {
  padding: 4px 7px;
  border: 1px solid rgba(105, 196, 226, 0.14);
  color: #6f8d9c;
  font-size: 7px;
  font-weight: 800;
}

.update-index-card__arrow {
  align-self: center;
  color: #59798a;
  font: 400 30px/1 var(--sans);
  transition: color 180ms ease, transform 180ms ease;
}

.update-index-card > a:hover .update-index-card__arrow,
.update-index-card > a:focus-visible .update-index-card__arrow {
  color: var(--soul);
  transform: translateX(3px);
}

.update-feed {
  min-width: 0;
}

.release {
  border: 1px solid rgba(112, 192, 220, 0.15);
  background: rgba(4, 17, 28, 0.84);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
}

.release__head {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 26px;
  padding: 28px;
  border-bottom: 1px solid rgba(112, 190, 217, 0.12);
}

.release__date {
  display: grid;
  align-content: start;
  gap: 8px;
  padding-right: 22px;
  border-right: 1px solid rgba(112, 190, 217, 0.14);
}

.release__date span {
  color: var(--soul);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.release__date time {
  color: var(--gold-bright);
  font: 700 15px/1.2 Georgia, serif;
}

.release__head > div:last-child > p {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.release__head h3 {
  margin: 0;
  color: #edf4f7;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.4;
}

.release__head > div:last-child > span {
  display: block;
  margin-top: 11px;
  color: #7f98a6;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.8;
}

.release__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 28px;
  border-bottom: 1px solid rgba(112, 190, 217, 0.1);
}

.release__tags span {
  padding: 4px 8px;
  border: 1px solid rgba(105, 196, 226, 0.14);
  color: #6f8d9c;
  font-size: 8px;
  font-weight: 800;
}

.release__media {
  padding: 24px 28px 4px;
}

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

.release__media-grid.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.release__media figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(112, 192, 220, 0.2);
  background: #020a11;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.release__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.release__media figcaption {
  padding: 10px 13px 11px;
  border-top: 1px solid rgba(112, 192, 220, 0.13);
  background: rgba(3, 14, 23, 0.94);
  color: #7892a0;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.7;
}

.release__groups {
  padding: 0 28px 28px;
}

.release-group {
  position: relative;
  padding: 30px 0;
  border-bottom: 1px solid rgba(110, 188, 215, 0.12);
  scroll-margin-top: 108px;
}

.release-group:last-child {
  border-bottom: 0;
}

.release-group__head {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.release-group__head > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(109, 227, 255, 0.2);
  border-radius: 50%;
  color: var(--soul);
  font: 700 11px/1 Georgia, serif;
  box-shadow: inset 0 0 14px rgba(109, 227, 255, 0.04);
}

.release-group__head > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.release-group__head h4 {
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.release-group__head p {
  margin: 0;
  color: #667f8e;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.6;
}

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

.release-group__media.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.release-group__media figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(112, 192, 220, 0.2);
  background: #020a11;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.release-group__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.release-group__media figure:hover img {
  transform: scale(1.018);
  filter: brightness(1.06);
}

.release-group__media figcaption {
  padding: 10px 13px 11px;
  border-top: 1px solid rgba(112, 192, 220, 0.13);
  background: rgba(3, 14, 23, 0.94);
  color: #7892a0;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.7;
}

.release-group__notice {
  margin: 20px 0 0 54px;
  padding: 20px 22px;
  border: 1px solid rgba(242, 207, 115, 0.24);
  border-left: 3px solid var(--gold);
  background:
    linear-gradient(135deg, rgba(242, 207, 115, 0.08), transparent 58%),
    rgba(14, 17, 20, 0.82);
  box-shadow: inset 0 0 28px rgba(242, 207, 115, 0.025);
}

.release-group__notice p {
  margin: 0;
  color: #bdcbd1;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.95;
}

.release-group__notice p + p {
  margin-top: 12px;
}

.release-group ul {
  margin: 17px 0 0 54px;
  padding: 17px 20px 17px 32px;
  border-left: 2px solid rgba(109, 227, 255, 0.32);
  background: rgba(2, 10, 17, 0.56);
}

.release-group li {
  padding: 5px 0;
  color: #91a8b5;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.8;
}

.release-group li::marker {
  color: var(--soul);
}

.update-return {
  padding: 72px 0;
  border-top: 1px solid rgba(110, 190, 217, 0.1);
  background:
    radial-gradient(circle at 82% 50%, rgba(55, 175, 219, 0.09), transparent 30%),
    rgba(3, 12, 20, 0.98);
}

.update-return__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.update-return h2 {
  margin: 7px 0 8px;
  color: #f0f6f8;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
}

.update-return__inner > div > p:last-child {
  margin: 0;
  color: #7e98a6;
  font-size: 11px;
  font-weight: 600;
}

.final-cta {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 110px 0;
  text-align: center;
  isolation: isolate;
}

.final-cta__world {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, var(--bg-deep), rgba(2, 8, 15, 0.48) 35%, rgba(2, 8, 15, 0.65) 70%, var(--bg-deep)),
    linear-gradient(90deg, rgba(2, 8, 15, 0.62), rgba(2, 8, 15, 0.2), rgba(2, 8, 15, 0.62)),
    url("/assets/generated/title-background.webp") center / cover no-repeat;
}

.final-cta__world::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 44%, rgba(63, 194, 242, 0.13), transparent 28%);
}

.final-cta__inner {
  display: grid;
  justify-items: center;
}

.final-cta__inner > img {
  width: min(540px, 86vw);
  margin-bottom: 18px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.5));
}

.final-cta h2 {
  font-size: clamp(34px, 5.2vw, 64px);
}

.final-cta__inner > p:not(.section-kicker) {
  margin: 20px 0 28px;
  color: #a6bbc6;
  font-size: 13px;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid rgba(109, 188, 216, 0.12);
  background: #01050b;
}

.site-footer__inner {
  min-height: 210px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 42px 0 28px;
}

.site-footer__inner > div img {
  width: 170px;
  height: auto;
  opacity: 0.82;
}

.site-footer__inner > div p {
  max-width: 470px;
  margin: 8px 0 0;
  color: #536d7b;
  font-size: 9px;
  font-weight: 600;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

.site-footer nav a {
  color: #748c9a;
  font-size: 9px;
  font-weight: 800;
}

.site-footer nav a:hover {
  color: var(--soul-bright);
}

.site-footer__copy {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(109, 188, 216, 0.09);
  color: #3c5462;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.noscript-note {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 500;
  padding: 12px;
  border: 1px solid rgba(255, 187, 103, 0.44);
  background: rgba(42, 22, 10, 0.96);
  color: #ffe0ac;
  font-size: 12px;
  text-align: center;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms ease, transform 640ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

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

@media (max-width: 1120px) {
  .site-header__inner {
    gap: 16px;
  }

  .global-nav {
    gap: 18px;
  }

  .global-nav a {
    font-size: 10px;
  }

  .header-play {
    padding-inline: 16px;
    font-size: 10px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(44px, 5.9vw, 70px);
  }

  .update-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

  .site-header__inner {
    width: calc(100% - 28px);
    grid-template-columns: auto 1fr auto;
  }

  .site-brand {
    width: 145px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    justify-self: end;
    padding: 0;
    border: 1px solid rgba(114, 202, 232, 0.18);
    border-radius: 3px;
    background: rgba(4, 17, 28, 0.82);
  }

  .nav-toggle > span:not(.sr-only) {
    width: 17px;
    height: 1px;
    display: block;
    background: #a9c7d3;
    transition: transform 160ms ease, opacity 160ms ease;
  }

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

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

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

  .global-nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 16px 18px;
    border-bottom: 1px solid rgba(113, 200, 230, 0.16);
    background: rgba(3, 12, 22, 0.97);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.32);
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

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

  .global-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(103, 181, 209, 0.1);
    font-size: 12px;
  }

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

  .header-play {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-right: 52px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 86px;
  }

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

  .hero__copy {
    max-width: 680px;
  }

  .hero-visual {
    width: 92%;
    margin-inline: auto;
  }

  .section-heading--split {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 22px;
  }

  .latest-card__body {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  }

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

  .journey-card {
    min-height: 330px;
  }

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

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

  .weapon-detail {
    position: static;
  }

  .updates-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .updates-intro {
    position: static;
  }

  .updates-intro .button {
    width: auto;
  }

  .update-page-hero {
    min-height: 470px;
    padding-top: 130px;
  }

  .update-detail-hero {
    min-height: 520px;
  }

  .update-return__inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 24px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .site-header__inner {
    width: calc(100% - 20px);
    min-height: 68px;
  }

  .site-brand {
    width: 125px;
  }

  .site-brand > span {
    right: -7px;
    bottom: 0;
    font-size: 6px;
  }

  .global-nav {
    top: 68px;
  }

  .header-play {
    min-height: 38px;
    margin-right: 48px;
    padding-inline: 11px;
  }

  .header-play i {
    display: none;
  }

  .hero {
    padding-top: 105px;
  }

  .hero h1 {
    font-size: clamp(41px, 13vw, 62px);
  }

  .hero__lead {
    font-size: 13px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero-stats > div {
    grid-template-columns: minmax(0, 1fr);
    padding: 11px 10px;
  }

  .hero-stats span {
    margin-top: 4px;
    font-size: 7px;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-visual__frame {
    transform: none;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .final-cta h2,
  .updates-intro h2 {
    font-size: clamp(30px, 10vw, 43px);
  }

  .latest-card__meta {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 10px 14px;
  }

  .latest-card__body {
    grid-template-columns: minmax(0, 1fr);
    padding: 28px 20px;
  }

  .latest-card__sigil {
    display: none;
  }

  .latest-card h3 {
    font-size: 29px;
  }

  .update-highlights {
    grid-template-columns: minmax(0, 1fr);
  }

  .update-highlights article {
    min-height: 170px;
  }

  .hero-lineup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .charge-legend > span {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    padding: 8px 4px;
    text-align: center;
  }

  .charge-legend i {
    grid-row: auto;
  }

  .section-intro {
    margin-top: -14px;
  }

  .weapon-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weapon-card {
    min-height: 98px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 9px;
    padding: 10px;
  }

  .weapon-card__icon {
    width: 52px;
    height: 52px;
  }

  .weapon-card__icon img {
    width: 40px;
    height: 40px;
  }

  .weapon-card__identity > strong {
    font-size: 17px;
  }

  .weapon-card__number,
  .weapon-card__arrow,
  .weapon-card__featured,
  .weapon-card__identity > small {
    display: none;
  }

  .weapon-detail__head {
    grid-template-columns: 24px 72px minmax(0, 1fr);
    gap: 11px;
    padding: 15px;
  }

  .weapon-detail__icon {
    width: 68px;
    height: 68px;
  }

  .weapon-detail__icon img {
    width: 52px;
    height: 52px;
  }

  .weapon-detail__head h3 {
    font-size: 24px;
  }

  .weapon-detail__skills {
    grid-template-columns: minmax(0, 1fr);
  }

  .skill-row {
    min-height: 0;
  }

  .release__head {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 22px 18px;
  }

  .release__date {
    display: flex;
    align-items: center;
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(112, 190, 217, 0.14);
  }

  .release__tags {
    padding: 10px 18px;
  }

  .release__media {
    padding: 18px 18px 2px;
  }

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

  .release__groups {
    padding: 0 18px 18px;
  }

  .release-group {
    padding: 24px 0;
  }

  .release-group__head {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
  }

  .release-group__head > span {
    width: 30px;
    height: 30px;
  }

  .release-group__head h4 {
    font-size: 17px;
  }

  .release-group__notice {
    margin-left: 0;
    padding: 16px;
  }

  .release-group__media {
    grid-template-columns: minmax(0, 1fr);
    margin-left: 0;
  }

  .release-group ul {
    margin-left: 0;
    padding: 13px 14px 13px 28px;
  }

  .update-page-hero {
    min-height: 440px;
    padding: 112px 0 62px;
  }

  .update-page-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .update-page-hero__inner > p:not(.eyebrow) br {
    display: none;
  }

  .update-page-hero__latest {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 13px;
  }

  .update-page-hero__latest strong {
    grid-column: 1 / -1;
    padding-top: 9px;
    border-top: 1px solid rgba(109, 227, 255, 0.12);
    white-space: normal;
  }

  .update-detail-meta {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 13px;
  }

  .update-detail-meta strong {
    grid-column: 1 / -1;
    padding-top: 9px;
    border-top: 1px solid rgba(109, 227, 255, 0.12);
    white-space: normal;
  }

  .update-index-card > a {
    grid-template-columns: minmax(0, 1fr) 28px;
  }

  .update-index-card > a.has-media {
    grid-template-columns: minmax(0, 1fr) 28px;
  }

  .update-index-card__date {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(112, 190, 217, 0.12);
  }

  .update-index-card__body {
    grid-column: 1;
    padding: 22px 18px;
  }

  .update-index-card > a.has-media .update-index-card__body {
    grid-row: 3;
  }

  .update-index-card__media {
    grid-column: 1 / -1;
    grid-row: 2;
    aspect-ratio: 16 / 9;
    margin: 14px 18px 0;
  }

  .update-index-card__arrow {
    grid-column: 2;
    grid-row: 2;
  }

  .update-index-card > a.has-media .update-index-card__arrow {
    grid-row: 3;
  }

  .update-archive {
    padding-top: 72px;
  }

  .update-return {
    padding: 58px 0;
  }

  .final-cta {
    min-height: 620px;
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 440px) {
  .header-play span {
    font-size: 0;
  }

  .header-play span::after {
    content: "PLAY";
    font-size: 9px;
  }

  .hero-stats dd {
    font-size: 19px;
  }

  .hero-stats span {
    display: none;
  }

  .hero-visual__tag,
  .hero-visual figcaption {
    display: none;
  }

  .journey-card {
    padding: 22px;
  }

  .hero-lineup > div {
    padding-inline: 4px;
  }

  .hero-portrait {
    width: 66px;
    height: 66px;
  }

  .weapon-card {
    min-height: 90px;
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 8px;
  }

  .weapon-card__icon {
    width: 44px;
    height: 44px;
  }

  .weapon-card__icon img {
    width: 34px;
    height: 34px;
  }

  .weapon-card__identity > strong {
    font-size: 15px;
  }

  .update-index-card__date {
    flex-wrap: wrap;
  }

  .update-index-card__date small {
    width: 100%;
  }

  .update-index-card__body h2 {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
