:root {
  color-scheme: dark;
  --bg: #08091d;
  --bg-2: #111036;
  --panel: rgba(17, 18, 49, 0.88);
  --panel-strong: rgba(22, 22, 68, 0.96);
  --text: #ffffff;
  --text-soft: #eef9ff;
  --cyan: #25f4ff;
  --cyan-soft: #8cfaff;
  --magenta: #ff28bd;
  --violet: #7a2cff;
  --gold: #ffbf3f;
  --green: #55ff9b;
  --red: #ff5a6e;
  --line: rgba(255, 255, 255, 0.22);
  --line-strong: rgba(37, 244, 255, 0.45);
  --shadow-cyan: 0 0 2.4rem rgba(37, 244, 255, 0.28);
  --shadow-magenta: 0 0 2.6rem rgba(255, 40, 189, 0.25);
  --radius: 1.35rem;
  --clip: polygon(1.1rem 0, 100% 0, 100% calc(100% - 1.1rem), calc(100% - 1.1rem) 100%, 0 100%, 0 1.1rem);
  --clip-sm: polygon(0.7rem 0, 100% 0, 100% calc(100% - 0.7rem), calc(100% - 0.7rem) 100%, 0 100%, 0 0.7rem);
  --font-display: 'Press Start 2P', system-ui, sans-serif;
  --font-body: 'Oxanium', system-ui, sans-serif;
  --container: 74rem;
  --header-height: 5.4rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--cyan) #121333;
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 20rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(37, 244, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 84% 12%, rgba(255, 40, 189, 0.16), transparent 22rem),
    linear-gradient(180deg, #0a0b27 0%, #08091d 42%, #120b2a 100%);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 3rem 3rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 80%);
  z-index: 0;
}

body.nav-open {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 0.8rem;
}

::-webkit-scrollbar-track {
  background: #121333;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--cyan), var(--magenta));
  border: 0.16rem solid #121333;
}

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

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

a {
  color: var(--cyan-soft);
  text-decoration-thickness: 0.12rem;
  text-underline-offset: 0.22rem;
}

a:hover {
  color: #ffffff;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 0.18rem solid var(--gold);
  outline-offset: 0.2rem;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(100% - 1.25rem, var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.skip-link {
  position: fixed;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 0.85rem 1rem;
  color: var(--bg);
  background: var(--gold);
  clip-path: var(--clip-sm);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.65rem 0;
  background: rgba(8, 9, 29, 0.7);
  backdrop-filter: blur(1rem);
  border-bottom: 1px solid rgba(37, 244, 255, 0.22);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 9, 29, 0.92);
  box-shadow: 0 0.8rem 2.8rem rgba(0, 0, 0, 0.34), var(--shadow-cyan);
}

.header-shell {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark,
.footer-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-mark__image {
  width: 10.4rem;
  filter: drop-shadow(0 0 1rem rgba(37, 244, 255, 0.5));
}

.nav-toggle {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.2rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(16, 16, 55, 0.78);
  clip-path: var(--clip-sm);
  cursor: pointer;
}

.nav-toggle__pixel {
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  box-shadow: 0.45rem 0.45rem 0 var(--violet), -0.35rem 0.35rem 0 var(--gold);
  transform: rotate(45deg);
}

.nav-toggle__text {
  font-weight: 800;
  letter-spacing: 0.05em;
}

.site-nav {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.site-nav.is-open {
  max-height: 27rem;
}

.site-nav__list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin: 0.8rem 0 0;
  padding: 0.8rem;
  background: rgba(13, 14, 43, 0.94);
  border: 1px solid var(--line);
  clip-path: var(--clip);
}

.site-nav__link {
  position: relative;
  display: flex;
  min-height: 3.2rem;
  align-items: center;
  padding: 0.8rem 1rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  overflow: hidden;
  clip-path: var(--clip-sm);
}

.site-nav__link::before,
.site-nav__link::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-nav__link::before {
  background: linear-gradient(90deg, transparent, rgba(37, 244, 255, 0.16), transparent);
  transform: translateX(-120%);
  transition: transform 360ms ease;
}

.site-nav__link::after {
  border-bottom: 0.18rem solid var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: #ffffff;
  border-color: rgba(37, 244, 255, 0.4);
  background: rgba(37, 244, 255, 0.1);
  text-shadow: 0 0 0.8rem rgba(37, 244, 255, 0.45);
}

.site-nav__link:hover::before,
.site-nav__link.is-active::before {
  transform: translateX(120%);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.play-pill {
  grid-column: 1 / -1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  min-height: 3.25rem;
  padding: 0.8rem 1rem;
  color: #08091d;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  text-decoration: none;
  font-weight: 900;
  clip-path: var(--clip-sm);
  box-shadow: var(--shadow-cyan);
}

.play-pill__icon,
.play-icon {
  width: 0;
  height: 0;
  border-top: 0.42rem solid transparent;
  border-bottom: 0.42rem solid transparent;
  border-left: 0.72rem solid currentColor;
  display: inline-block;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.1rem, 11vw, 4.25rem);
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.75rem, 8vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.15rem, 5vw, 1.55rem);
  margin-bottom: 0.7rem;
}

h4 {
  font-size: 1rem;
}

.lead {
  font-size: clamp(1.08rem, 3.8vw, 1.35rem);
  color: var(--text-soft);
  max-width: 45rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  color: var(--cyan-soft);
  font-family: var(--font-display);
  font-size: 0.62rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 0 1rem rgba(37, 244, 255, 0.5);
}

.eyebrow::before {
  content: '';
  width: 0.62rem;
  height: 0.62rem;
  background: var(--magenta);
  box-shadow: 0.45rem 0 var(--cyan), 0.9rem 0 var(--gold);
}

.section,
.hero,
.sub-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section {
  padding: 4.5rem 0;
}

.section-frame::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 0.25rem;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), transparent);
  opacity: 0.8;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 5rem 0 4rem;
}

.hero__media,
.sub-hero__bg,
.section-bg,
.creative-backdrop,
.download-media,
.footer-orbit {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__scene,
.sub-hero__image,
.section-bg__image,
.creative-backdrop__image,
.download-media__img,
.footer-orbit__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(1.25) contrast(1.08);
}

.hero__media::after,
.sub-hero__bg::after,
.section-bg::after,
.creative-backdrop::after,
.download-media::after,
.footer-orbit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 29, 0.92), rgba(8, 9, 29, 0.64), rgba(8, 9, 29, 0.92));
}

.hero__content {
  display: grid;
  gap: 2.2rem;
}

.hero__copy {
  max-width: 52rem;
}

.hero__actions,
.download-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0 0.85rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 0;
  clip-path: var(--clip-sm);
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.btn--large {
  min-height: 3.75rem;
  padding: 1rem 1.35rem;
  font-size: 1.05rem;
}

.btn--primary {
  color: #08091d;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: var(--shadow-cyan);
}

.btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
}

.btn:hover {
  transform: translateY(-0.14rem);
  filter: brightness(1.1);
}

.purchase-note,
.footer-note,
.field-message,
.contact-direct {
  color: var(--text-soft);
}

.hero-panel {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(10, 11, 39, 0.72);
  border: 1px solid var(--line-strong);
  clip-path: var(--clip);
  box-shadow: var(--shadow-magenta);
}

.stat-chip {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  clip-path: var(--clip-sm);
}

.stat-chip strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.5;
}

.stat-chip span {
  color: var(--text);
  font-weight: 700;
}

.hero__card {
  position: absolute;
  display: none;
  width: 12rem;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  clip-path: var(--clip);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-cyan);
  opacity: 0.92;
}

.hero__card--one {
  right: 7vw;
  top: 8rem;
}

.hero__card--two {
  right: 18vw;
  bottom: 4rem;
}

.deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.72;
}

.deco--grid {
  right: -4rem;
  top: 8rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(37, 244, 255, 0.2);
  background:
    linear-gradient(rgba(37, 244, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 244, 255, 0.18) 1px, transparent 1px);
  background-size: 1.25rem 1.25rem;
  transform: rotate(8deg);
}

.deco--orb {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  filter: blur(0.2rem);
}

.deco--cyan {
  left: -5rem;
  bottom: 4rem;
  background: radial-gradient(circle, rgba(37, 244, 255, 0.36), transparent 66%);
}

.deco--magenta {
  right: -4rem;
  top: 10%;
  background: radial-gradient(circle, rgba(255, 40, 189, 0.34), transparent 66%);
}

.deco--steps,
.deco--ring,
.deco--cross,
.deco--bars {
  opacity: 0.58;
}

.deco--steps {
  left: -2rem;
  bottom: 2rem;
  width: 10rem;
  height: 5rem;
  background: repeating-linear-gradient(90deg, rgba(255, 191, 63, 0.2) 0 1rem, transparent 1rem 1.6rem);
}

.deco--ring {
  right: 4vw;
  bottom: 2rem;
  width: 10rem;
  height: 10rem;
  border: 0.35rem solid rgba(255, 40, 189, 0.28);
  box-shadow: inset 0 0 2rem rgba(37, 244, 255, 0.16), 0 0 2rem rgba(255, 40, 189, 0.14);
  transform: rotate(18deg);
}

.deco--cross {
  left: 3vw;
  top: 8rem;
  width: 6rem;
  height: 6rem;
  background:
    linear-gradient(90deg, transparent 42%, rgba(37, 244, 255, 0.24) 42% 58%, transparent 58%),
    linear-gradient(0deg, transparent 42%, rgba(255, 40, 189, 0.24) 42% 58%, transparent 58%);
}

.deco--bars {
  right: -2rem;
  bottom: 3rem;
  width: 12rem;
  height: 8rem;
  background: repeating-linear-gradient(135deg, rgba(85, 255, 155, 0.18) 0 0.7rem, transparent 0.7rem 1.2rem);
}

.split-section__grid,
.lore-grid,
.systems-layout,
.loadout-grid,
.tips-layout,
.build-grid,
.creative-grid,
.companions-grid,
.gallery-feature__grid,
.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.clip-card,
.systems-media__image,
.stack-img,
.tips-map {
  clip-path: var(--clip);
  border: 1px solid var(--line-strong);
  box-shadow: 0 1.2rem 3.5rem rgba(0, 0, 0, 0.34), var(--shadow-cyan);
}

.clip-card--large {
  width: 100%;
  max-height: 45rem;
  object-fit: cover;
}

.split-section__visual,
.companions-stack,
.systems-media,
.loadout-visual,
.build-visual,
.gallery-feature__image {
  position: relative;
}

.pixel-badge {
  position: absolute;
  z-index: 3;
  padding: 0.65rem 0.85rem;
  color: #08091d;
  background: var(--gold);
  font-weight: 900;
  clip-path: var(--clip-sm);
  box-shadow: 0 0 1.6rem rgba(255, 191, 63, 0.45);
}

.pixel-badge--top {
  top: 1rem;
  left: 1rem;
}

.pixel-badge--bottom {
  right: 1rem;
  bottom: 1rem;
  background: var(--cyan);
}

.feature-row,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.4rem 0;
}

.feature-row span,
.tag-cloud span {
  padding: 0.55rem 0.75rem;
  color: var(--text);
  background: rgba(37, 244, 255, 0.12);
  border: 1px solid rgba(37, 244, 255, 0.28);
  clip-path: var(--clip-sm);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: '→';
  color: var(--gold);
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(0.25rem);
}

.section-heading {
  max-width: 50rem;
  margin-bottom: 2rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p,
.split-section__copy p,
.lore-card p,
.systems-copy p,
.creative-copy p,
.companions-copy p,
.contact-copy p,
.legal-document p {
  color: var(--text-soft);
}

.planet-section,
.loadout-section {
  background: linear-gradient(180deg, rgba(20, 13, 55, 0.62), rgba(7, 9, 29, 0.9));
}

.section-bg__image {
  opacity: 0.18;
}

.section-bg--right .section-bg__image {
  object-position: right center;
}

.planet-orbit,
.pillar-grid,
.mode-grid,
.gameplay-grid,
.roadmap-list,
.contact-cards {
  display: grid;
  gap: 1rem;
}

.orbit-card,
.gameplay-card,
.pillar-card,
.mode-card,
.lore-card,
.craft-console,
.contact-panel,
.contact-cards article,
.roadmap-list li,
.success-card,
.error-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  clip-path: var(--clip);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.24);
}

.orbit-card {
  padding: 1rem;
}

.orbit-card::before,
.pillar-card::before,
.gameplay-card::before,
.mode-card::before,
.lore-card::before,
.craft-console::before,
.contact-panel::before,
.roadmap-list li::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  clip-path: inherit;
}

.orbit-card__image {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  clip-path: var(--clip-sm);
  margin-bottom: 1rem;
}

.orbit-card--cyan {
  box-shadow: var(--shadow-cyan);
}

.orbit-card--pink {
  box-shadow: var(--shadow-magenta);
}

.orbit-card--gold {
  box-shadow: 0 0 2.6rem rgba(255, 191, 63, 0.22);
}

.gameplay-grid {
  align-items: stretch;
}

.gameplay-card {
  overflow: hidden;
}

.gameplay-card__image,
.mode-card__image {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

.gameplay-card__body,
.mode-card div,
.pillar-card,
.lore-card,
.craft-console,
.contact-panel,
.contact-cards article,
.roadmap-list li,
.success-card,
.error-card {
  padding: 1.15rem;
}

.creative-section {
  background: linear-gradient(180deg, rgba(8, 9, 29, 0.96), rgba(17, 11, 42, 0.88));
}

.creative-backdrop__image {
  opacity: 0.16;
}

.check-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--text-soft);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.9rem;
  height: 0.9rem;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.craft-console {
  display: grid;
  gap: 0.75rem;
  background: rgba(7, 8, 25, 0.86);
}

.console-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem;
  border: 1px solid rgba(37, 244, 255, 0.22);
  background: rgba(37, 244, 255, 0.08);
  clip-path: var(--clip-sm);
}

.console-line strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.82rem;
}

.companions-stack {
  min-height: 28rem;
}

.stack-img {
  position: absolute;
  width: 70%;
  height: 22rem;
  object-fit: cover;
}

.stack-img--front {
  left: 0;
  bottom: 0;
  z-index: 2;
}

.stack-img--back {
  right: 0;
  top: 0;
  z-index: 1;
  filter: saturate(1.15);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-card {
  position: relative;
  min-height: 12rem;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  clip-path: var(--clip-sm);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.28);
}

.gallery-card__image {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-card span {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  padding: 0.45rem 0.65rem;
  background: rgba(8, 9, 29, 0.82);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  clip-path: var(--clip-sm);
  font-weight: 900;
}

.gallery-card:hover .gallery-card__image {
  transform: scale(1.08);
  filter: brightness(1.1) saturate(1.15);
}

.download-section {
  min-height: 34rem;
  display: grid;
  align-items: center;
}

.download-section--compact {
  min-height: 24rem;
}

.download-media__img {
  opacity: 0.28;
}

.download-card {
  max-width: 52rem;
  padding: 1.35rem;
  background: rgba(12, 11, 41, 0.86);
  border: 1px solid var(--line-strong);
  clip-path: var(--clip);
  box-shadow: var(--shadow-cyan), var(--shadow-magenta);
}

.contact-section,
.contact-page-section {
  background: linear-gradient(180deg, rgba(6, 8, 29, 0.95), rgba(15, 7, 33, 0.96));
}

address {
  font-style: normal;
  margin-top: 1.4rem;
  color: var(--text-soft);
}

.contact-wizard {
  display: grid;
  gap: 1rem;
}

.wizard-intro h3 {
  margin-bottom: 0.4rem;
}

.wizard-progress {
  height: 0.7rem;
  padding: 0.12rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  clip-path: var(--clip-sm);
  overflow: hidden;
}

.wizard-progress__bar {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--gold));
  transition: width 260ms ease;
}

.wizard-progress__bar[data-progress="0"] { width: 0%; }
.wizard-progress__bar[data-progress="1"] { width: 34%; }
.wizard-progress__bar[data-progress="2"] { width: 68%; }
.wizard-progress__bar[data-progress="3"] { width: 100%; }

.wizard-step {
  display: grid;
  gap: 0.8rem;
}

.choice-grid {
  display: grid;
  gap: 0.65rem;
}

.choice-card {
  min-height: 3.65rem;
  padding: 0.9rem 1rem;
  text-align: left;
  border: 1px solid rgba(37, 244, 255, 0.28);
  background: rgba(37, 244, 255, 0.08);
  color: var(--text);
  clip-path: var(--clip-sm);
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.choice-card:hover,
.choice-card.is-selected {
  transform: translateY(-0.12rem);
  background: rgba(255, 40, 189, 0.16);
  border-color: rgba(255, 40, 189, 0.55);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.form-summary span {
  padding: 0.45rem 0.65rem;
  background: rgba(85, 255, 155, 0.12);
  border: 1px solid rgba(85, 255, 155, 0.28);
  clip-path: var(--clip-sm);
  color: var(--text);
  font-weight: 800;
}

.form-grid {
  display: grid;
  gap: 0.95rem;
}

.field {
  display: grid;
  gap: 0.38rem;
}

.field label {
  font-weight: 900;
}

.field input,
.field textarea {
  width: 100%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  clip-path: var(--clip-sm);
  padding: 0.9rem 1rem;
  min-height: 3.25rem;
}

.field textarea {
  resize: vertical;
  min-height: 10rem;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 0.2rem rgba(37, 244, 255, 0.16);
}

.field.is-invalid input,
.field.is-invalid textarea,
.check.is-invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 0.18rem rgba(255, 90, 110, 0.15);
}

.check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  clip-path: var(--clip-sm);
}

.check input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.25rem;
  accent-color: var(--cyan);
}

.form-alert {
  color: #ffffff;
  font-weight: 900;
}

.contact-cards {
  margin-top: 1.3rem;
}

.sub-hero {
  min-height: 32rem;
  display: grid;
  align-items: center;
  padding: 4rem 0;
}

.sub-hero__image {
  opacity: 0.28;
}

.sub-hero__content {
  max-width: 58rem;
}

.lore-card {
  background: rgba(13, 14, 43, 0.82);
}

.pillar-card strong,
.roadmap-list strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.75rem;
}

.systems-media {
  min-height: 32rem;
}

.systems-media__image {
  position: absolute;
  object-fit: cover;
}

.systems-media__image--main {
  left: 0;
  top: 0;
  width: 72%;
  height: 30rem;
}

.systems-media__image--small {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 19rem;
}

.systems-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.systems-list article {
  padding: 1rem;
  border: 1px solid rgba(37, 244, 255, 0.22);
  background: rgba(37, 244, 255, 0.08);
  clip-path: var(--clip-sm);
}

.mode-card {
  overflow: hidden;
}

.roadmap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.loadout-visual .clip-card,
.build-visual .clip-card {
  max-height: 36rem;
}

.tips-map {
  width: 100%;
  max-height: 40rem;
  object-fit: cover;
}

.accordion {
  display: grid;
  gap: 0.75rem;
}

.accordion__item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  clip-path: var(--clip-sm);
}

.accordion__button {
  width: 100%;
  min-height: 3.3rem;
  padding: 0.85rem 1rem;
  color: var(--text);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.accordion__panel {
  padding: 0 1rem 1rem;
}

.accordion__panel p {
  margin-bottom: 0;
}

.gallery-feature__image .clip-card {
  max-height: 32rem;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(0.7rem);
}

.lightbox__figure {
  width: min(100%, 52rem);
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.lightbox__image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid var(--line-strong);
  clip-path: var(--clip);
  box-shadow: var(--shadow-cyan), var(--shadow-magenta);
}

.lightbox__caption {
  text-align: center;
  color: var(--text);
  font-weight: 800;
}

.lightbox__close,
.lightbox__nav {
  position: fixed;
  display: grid;
  place-items: center;
  min-width: 3.25rem;
  min-height: 3.25rem;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(12, 13, 40, 0.9);
  clip-path: var(--clip-sm);
  cursor: pointer;
  font-size: 2rem;
}

.lightbox__close {
  top: 1rem;
  right: 1rem;
}

.lightbox__nav--prev {
  left: 1rem;
}

.lightbox__nav--next {
  right: 1rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 1.4rem;
  background: #07081c;
  border-top: 1px solid rgba(37, 244, 255, 0.25);
}

.footer-orbit__img {
  opacity: 0.1;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-logo__image {
  width: 11rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 35rem;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-nav h2,
.footer-contact h2 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.footer-nav a,
.footer-contact a {
  color: var(--text-soft);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text-soft);
}

.cookie-banner {
  position: fixed;
  z-index: 140;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  color: var(--text);
  background: rgba(8, 9, 29, 0.96);
  border: 1px solid var(--line-strong);
  clip-path: var(--clip);
  box-shadow: var(--shadow-cyan);
}

.cookie-banner p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.legal-hero {
  padding: 5rem 0 2rem;
  background: linear-gradient(180deg, rgba(17, 16, 54, 0.92), rgba(8, 9, 29, 0.95));
  border-bottom: 1px solid rgba(37, 244, 255, 0.22);
}

.legal-hero__content {
  max-width: 54rem;
}

.legal-document {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  max-width: 58rem;
}

.legal-document h2 {
  font-size: 1.45rem;
  margin-top: 2rem;
}

.legal-document strong {
  color: #ffffff;
}

.summary-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 1.4rem;
}

.summary-list div {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem;
  border: 1px solid rgba(37, 244, 255, 0.22);
  background: rgba(37, 244, 255, 0.08);
  clip-path: var(--clip-sm);
}

.summary-list dt {
  color: var(--cyan-soft);
  font-weight: 900;
}

.summary-list dd {
  margin: 0;
}

.error-list {
  display: grid;
  gap: 0.6rem;
  color: var(--text);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.media-drift {
  animation: mediaDrift 18s ease-in-out infinite alternate;
}

.media-pulse {
  animation: mediaPulse 12s ease-in-out infinite alternate;
}

.float-soft {
  animation: floatSoft 5.5s ease-in-out infinite;
}

.float-soft--delay {
  animation-delay: -2.4s;
}

@keyframes mediaDrift {
  from { transform: scale(1.04) translate3d(-0.6rem, -0.2rem, 0); }
  to { transform: scale(1.12) translate3d(0.7rem, 0.4rem, 0); }
}

@keyframes mediaPulse {
  from { transform: scale(1.02); filter: saturate(1.1) contrast(1.04); }
  to { transform: scale(1.08); filter: saturate(1.4) contrast(1.12); }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-0.65rem) rotate(1deg); }
}

@media (min-width: 560px) {
  .container {
    width: min(100% - 2rem, var(--container));
  }

  .hero-panel,
  .pillar-grid,
  .roadmap-list,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .field--wide,
  .check.field--wide {
    grid-column: 1 / -1;
  }

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

@media (min-width: 760px) {
  h1 {
    font-size: clamp(3rem, 6.6vw, 4.8rem);
  }

  .section {
    padding: 6rem 0;
  }

  .hero__content,
  .split-section__grid,
  .lore-grid,
  .systems-layout,
  .loadout-grid,
  .tips-layout,
  .build-grid,
  .creative-grid,
  .companions-grid,
  .gallery-feature__grid,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

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

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

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

  .gameplay-card--wide {
    transform: translateY(2rem);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr auto;
    align-items: center;
    left: auto;
    width: min(46rem, calc(100% - 2rem));
  }
}

@media (min-width: 980px) {
  .header-shell {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    grid-column: auto;
    max-height: none;
    overflow: visible;
  }

  .site-nav__list {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0.25rem;
    background: rgba(12, 13, 40, 0.58);
  }

  .site-nav__link {
    min-height: 2.9rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.96rem;
  }

  .play-pill {
    grid-column: auto;
    min-height: 3rem;
  }

  .hero__card {
    display: block;
  }

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

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

@media (min-width: 1180px) {
  .hero__copy {
    padding-right: 1rem;
  }

  .hero-panel {
    align-self: end;
    transform: translateY(2rem);
  }
}

/* ── Pillars home section ─────────────────────────────────────────────── */

.pillars-home-section {
  background: linear-gradient(180deg, rgba(10, 10, 34, 0.98), rgba(17, 11, 42, 0.96));
}

.pillars-grid-home {
  display: grid;
  gap: 0.85rem;
}

.pillar-card-home {
  position: relative;
  padding: 1.15rem;
  background: var(--panel);
  border: 1px solid var(--line);
  clip-path: var(--clip-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pillar-card-home:hover {
  transform: translateY(-0.14rem);
}

.pillar-card-home strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  margin-bottom: 0.65rem;
}

.pillar-card-home h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.pillar-card-home p {
  color: var(--text-soft);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.pillar-home--cyan { border-color: rgba(37, 244, 255, 0.35); }
.pillar-home--cyan:hover { box-shadow: var(--shadow-cyan); }
.pillar-home--cyan strong { color: var(--cyan); }

.pillar-home--magenta { border-color: rgba(255, 40, 189, 0.3); }
.pillar-home--magenta:hover { box-shadow: var(--shadow-magenta); }
.pillar-home--magenta strong { color: var(--magenta); }

.pillar-home--gold { border-color: rgba(255, 191, 63, 0.3); }
.pillar-home--gold:hover { box-shadow: 0 0 2.4rem rgba(255, 191, 63, 0.22); }
.pillar-home--gold strong { color: var(--gold); }

.pillar-home--green { border-color: rgba(85, 255, 155, 0.28); }
.pillar-home--green:hover { box-shadow: 0 0 2.4rem rgba(85, 255, 155, 0.18); }
.pillar-home--green strong { color: var(--green); }

/* ── Gallery CTA row ──────────────────────────────────────────────────── */

.gallery-cta {
  margin-top: 1.6rem;
  text-align: center;
}

/* ── deco--contact position override ─────────────────────────────────── */

.deco--contact {
  right: auto;
  left: -4rem;
  top: auto;
  bottom: 4rem;
}

/* ── Cookie banner panel ──────────────────────────────────────────────── */

.cookie-banner__main {
  display: grid;
  gap: 1rem;
}

.cookie-banner__panel {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.85rem;
}

.cookie-banner__panel h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.cookie-type-row {
  display: grid;
  gap: 0.5rem;
  padding: 0.85rem;
  border: 1px solid rgba(37, 244, 255, 0.2);
  background: rgba(37, 244, 255, 0.06);
  clip-path: var(--clip-sm);
}

.cookie-type-row p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.cookie-type-badge {
  display: inline-flex;
  align-self: start;
  padding: 0.3rem 0.65rem;
  font-weight: 900;
  font-size: 0.82rem;
  color: #08091d;
  background: var(--green);
  clip-path: var(--clip-sm);
}

.cookie-type-badge--neutral {
  background: var(--cyan-soft);
}

.cookie-banner__panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── 404 not-found page ───────────────────────────────────────────────── */

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.nf-card-grid {
  display: grid;
  gap: 1rem;
}

.nf-card {
  display: grid;
  background: var(--panel);
  border: 1px solid var(--line);
  clip-path: var(--clip);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nf-card:hover {
  transform: translateY(-0.14rem);
  box-shadow: var(--shadow-cyan);
}

.nf-card__image {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.nf-card__body {
  padding: 1rem;
}

.nf-card__body h3 {
  margin-bottom: 0.3rem;
}

.nf-card__body p {
  color: var(--text-soft);
  margin-bottom: 0;
  font-size: 0.95rem;
}

@media (min-width: 560px) {
  .pillars-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-type-row {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

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

@media (min-width: 760px) {
  .cookie-banner__main {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

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

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

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
