:root {
  --bg: #050609;
  --bg-2: #0b1118;
  --panel: rgba(15, 20, 27, 0.82);
  --panel-solid: #101720;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: #f4f7fb;
  --muted: #aab4c0;
  --soft: #d7dee7;
  --accent: #54d2ff;
  --accent-2: #e13f4f;
  --gold: #d8b46b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --scroll-y: 0;
  --scroll-01: 0;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(5, 6, 9, 0.55), var(--bg) 620px),
    url("../img/background.jpg") center top / cover fixed,
    var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 16.66%),
    radial-gradient(circle at 74% 22%, rgba(84, 210, 255, 0.15), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(225, 63, 79, 0.12), transparent 34%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.12;
  background:
    linear-gradient(transparent 50%, rgba(255, 255, 255, 0.05) 50%),
    linear-gradient(90deg, transparent, rgba(84, 210, 255, 0.12), transparent);
  background-size: 100% 4px, 260px 100%;
  mix-blend-mode: screen;
}

img,
video,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
}

#container {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(5, 6, 9, 0.78);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
  opacity: 0.75;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
      width: 173px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #041017;
  background: linear-gradient(135deg, var(--accent), #ffffff 45%, var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(84, 210, 255, 0.28);
  font-family: Inter, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.brand-mark img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

#navigation ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#navigation a {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 14px;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

#navigation a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

#navigation a:hover,
#navigation a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-strong);
}

#navigation a:hover::after,
#navigation a.active::after {
  transform: scaleX(1);
}

main {
  isolation: isolate;
}

.hero,
.page-hero,
.section {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.tilt-surface {
  perspective: 1400px;
  transform-style: preserve-3d;
}

.tilt-surface > * {
  transform: translateZ(0);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 80px);
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: end;
  padding: clamp(72px, 10vw, 150px) 0 clamp(42px, 7vw, 88px);
}

.home-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -2;
  background: linear-gradient(90deg, rgba(5, 6, 9, 0.94) 0%, rgba(5, 6, 9, 0.72) 36%, rgba(5, 6, 9, 0.12) 100%), url("../img/image1.jpg") center / cover;
  transform-origin: 70% 45%;
  will-change: transform, filter;
  transform: translate3d(0, calc(var(--scroll-y) * -0.06px), 0) scale(1.06);
}

.parallax-layer {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  pointer-events: none;
}

.layer-smoke {
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.14), transparent 28%),
    radial-gradient(circle at 72% 12%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 40%);
  mix-blend-mode: screen;
  filter: blur(6px);
  opacity: 0.6;
  transform: translate3d(0, calc(var(--scroll-y) * -0.03px), 0);
  animation: cloudShift 22s ease-in-out infinite alternate;
}

.layer-bats {
  z-index: -1;
  opacity: 0.16;
  background:
    radial-gradient(circle at 15% 32%, rgba(84, 210, 255, 0.12), transparent 16%),
    radial-gradient(circle at 80% 28%, rgba(225, 63, 79, 0.1), transparent 14%),
    linear-gradient(transparent 0 0);
  mask:
    radial-gradient(circle at 10% 18%, #000 0 1.5%, transparent 1.7%),
    radial-gradient(circle at 26% 40%, #000 0 1.6%, transparent 1.8%),
    radial-gradient(circle at 74% 26%, #000 0 1.7%, transparent 1.9%),
    radial-gradient(circle at 88% 54%, #000 0 1.5%, transparent 1.7%);
  transform: translate3d(0, calc(var(--scroll-y) * 0.02px), 0);
  animation: batDrift 16s ease-in-out infinite alternate;
}

.parallax-band {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: grid;
  align-items: end;
  padding-block: 64px;
  background:
    linear-gradient(180deg, rgba(5, 6, 9, 0.15), rgba(5, 6, 9, 0.92)),
    url("../img/background.jpg") center / cover fixed;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  mix-blend-mode: screen;
  filter: saturate(0.85) contrast(1.05);
  transform: scale(1.08) translate3d(0, calc(var(--scroll-y) * -0.02px), 0);
}

.parallax-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 6, 9, 0.78), transparent 60%, rgba(5, 6, 9, 0.72));
}

.parallax-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 70%, rgba(84, 210, 255, 0.12), transparent 26%),
    radial-gradient(circle at 84% 20%, rgba(225, 63, 79, 0.11), transparent 24%);
}

.parallax-band > div {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
  transform: translate3d(0, calc(var(--scroll-y) * -0.03px), 0);
}

.parallax-band > div,
.band-art {
  will-change: transform;
}

.home-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 6, 9, 0.45) 66%, var(--bg) 100%);
}

.hero-copy {
  position: relative;
  max-width: 760px;
}

.hero-copy::before {
  content: "";
  display: block;
  width: 92px;
  height: 2px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent), transparent);
  box-shadow: 0 0 24px rgba(84, 210, 255, 0.55);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  font-size: clamp(4rem, 11vw, 8.6rem);
  text-wrap: balance;
}

.cinematic-title {
  max-width: 920px;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 28px rgba(84, 210, 255, 0.28),
    0 20px 60px rgba(0, 0, 0, 0.72);
}

.cinematic-title span {
  display: block;
}

.cinematic-title span:last-child {
  margin-top: 10px;
  color: var(--accent);
  font-size: 0.36em;
  letter-spacing: 0.34em;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.6rem);
}

h3 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

p {
  color: var(--soft);
}

.hero-text,
.page-hero p,
.section > div > p,
.article-card p,
.video-copy p {
  max-width: 680px;
  font-size: clamp(1rem, 1.8vw, 1.17rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button,
.text-link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button::before,
.text-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-120%);
  transition: transform 540ms var(--ease);
}

.button:hover,
.text-link:hover,
.feature-card:hover {
  transform: translateY(-3px);
}

.button:hover::before,
.text-link:hover::before {
  transform: translateX(120%);
}

.button.primary {
  color: #061019;
  background: linear-gradient(135deg, var(--accent), #ffffff);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.button.primary:hover {
  box-shadow: 0 0 34px rgba(84, 210, 255, 0.38);
}

.button.ghost,
.text-link {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
}

.hero-panel,
.article-card,
.intel-card,
.contact-card,
.timeline > div,
.stat-grid article {
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.88), rgba(8, 11, 16, 0.88));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 24px;
  transition: transform 220ms var(--ease);
}

.tilt-surface:hover .hero-panel {
  transform: perspective(1200px) rotateX(calc(var(--tilt-x) * 0.35)) rotateY(calc(var(--tilt-y) * 0.35)) translateY(-6px);
}

.tilt-surface:hover .news-panel,
.tilt-surface:hover .poster-card,
.tilt-surface:hover .news-card {
  transform: perspective(1200px) rotateX(calc(var(--tilt-x) * 0.4)) rotateY(calc(var(--tilt-y) * 0.4)) translateY(-6px);
}

.hero-panel::before,
.trailer-panel::before,
.purchase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(84, 210, 255, 0.26), transparent 34%, rgba(225, 63, 79, 0.16));
  mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  mask-composite: exclude;
  padding: 1px;
}

.hero-panel span,
dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel strong,
dd {
  margin: 0 0 12px;
  color: var(--text);
  font-weight: 800;
}

.section {
  padding-block: clamp(48px, 8vw, 96px);
}

.intro-grid,
.article-layout,
.video-section,
.community-grid,
.trailer-tease,
.purchase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-grid article {
  min-height: 150px;
  padding: 22px;
}

.stat-grid strong {
  display: block;
  color: var(--accent);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 3.4rem;
  line-height: 1;
}

.stat-grid span,
.timeline p,
.contact-card p,
.copyright {
  color: var(--muted);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 220ms var(--ease), border-color 180ms ease, box-shadow 180ms ease;
  transform: translateZ(0);
}

.feature-card::before,
.store-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, 0.14) 46%, transparent 58%);
  transform: translateX(-130%);
  transition: transform 700ms var(--ease);
}

.feature-card:hover {
  border-color: rgba(84, 210, 255, 0.44);
  transform: perspective(1200px) rotateX(calc(var(--tilt-x) * 0.45)) rotateY(calc(var(--tilt-y) * 0.45)) translateY(-8px);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.58);
}

.feature-card:hover::before,
.store-card:hover::before {
  transform: translateX(130%);
}

.feature-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-card div {
  position: relative;
  z-index: 2;
  padding: 24px;
}

.feature-card p {
  color: var(--muted);
}

.split-showcase {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: linear-gradient(135deg, rgba(84, 210, 255, 0.1), rgba(225, 63, 79, 0.08));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
}

.split-showcase img {
  width: min(100%, 420px);
  justify-self: center;
  filter: drop-shadow(0 32px 50px rgba(0, 0, 0, 0.48));
  transform: translate3d(0, calc(var(--scroll-y) * 0.02px), 0);
}

.news-cascade,
.poster-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.news-panel,
.poster-card,
.news-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10, 14, 20, 0.96), rgba(5, 7, 10, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 220ms var(--ease), box-shadow 180ms ease, border-color 180ms ease;
}

.news-panel {
  display: grid;
  grid-template-rows: auto 1fr;
}

.news-panel img,
.poster-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.news-panel div,
.poster-card div {
  padding: 24px;
}

.news-stack {
  display: grid;
  gap: 18px;
}

.news-card {
  min-height: 140px;
  padding: 24px;
}

.news-card:hover,
.news-panel:hover,
.poster-card:hover {
  border-color: rgba(84, 210, 255, 0.42);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.56), 0 0 38px rgba(84, 210, 255, 0.12);
}

.news-card span,
.poster-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.poster-feature img {
  width: 100%;
  max-width: 560px;
  justify-self: end;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.55));
  transform: rotateX(8deg) rotateY(-10deg) translate3d(0, calc(var(--scroll-y) * 0.02px), 0);
}

.poster-copy {
  align-self: center;
}

.poster-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.poster-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 380px;
}

.float-item {
  animation: floatCard 7s ease-in-out infinite;
}

.float-item.delay-1 {
  animation-delay: 1.4s;
}

.float-item.delay-2 {
  animation-delay: 2.8s;
}

.page-hero {
  position: relative;
  min-height: 56vh;
  display: grid;
  align-items: end;
  padding-block: clamp(90px, 15vw, 180px) 54px;
}

.story-hero::before {
  background: linear-gradient(90deg, rgba(5, 6, 9, 0.93), rgba(5, 6, 9, 0.36)), url("../img/image2.jpg") center / cover;
}

.media-hero::before {
  background: linear-gradient(90deg, rgba(5, 6, 9, 0.9), rgba(5, 6, 9, 0.28)), url("../img/image1.jpg") center / cover;
}

.community-hero::before {
  background: linear-gradient(90deg, rgba(5, 6, 9, 0.92), rgba(5, 6, 9, 0.28)), url("../img/image3.jpg") center / cover;
}

.purchase-hero::before {
  background: linear-gradient(90deg, rgba(5, 6, 9, 0.94), rgba(5, 6, 9, 0.35)), url("../img/image3.jpg") center / cover;
}

.article-card {
  padding: clamp(24px, 4vw, 42px);
}

.intel-card {
  overflow: hidden;
}

.intel-card img {
  display: block;
  width: 100%;
}

.intel-card dl {
  margin: 0;
  padding: 24px;
}

.intel-card div + div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

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

.timeline > div {
  padding: 26px;
}

.timeline span {
  color: var(--gold);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 3rem;
  font-weight: 700;
}

#watchthis {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

#watchthis video,
#watchthis iframe,
.youtube-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.youtube-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 40px rgba(84, 210, 255, 0.12);
}

.youtube-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(84, 210, 255, 0.08), transparent 45%, rgba(225, 63, 79, 0.08));
}

.trailer-tease {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 18px;
}

.gallery img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery img:first-child {
  grid-row: span 2;
  height: 638px;
}

.contact-card {
  padding: 28px;
  text-align: center;
}

.purchase-card,
.trailer-panel,
.store-card,
.package-grid article {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.9), rgba(8, 11, 16, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 220ms var(--ease), box-shadow 180ms ease, border-color 180ms ease;
  transform: translateZ(0);
}

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

.purchase-card-body,
.trailer-panel {
  padding: clamp(24px, 4vw, 38px);
}

.trailer-panel .youtube-frame {
  margin-top: 24px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.price-row span,
.store-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-row strong {
  color: var(--accent);
}

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

.store-card {
  min-height: 250px;
  padding: 26px;
  color: var(--text);
  text-decoration: none;
}

.store-card:hover {
  transform: perspective(1200px) rotateX(calc(var(--tilt-x) * 0.35)) rotateY(calc(var(--tilt-y) * 0.35)) translateY(-8px);
  border-color: rgba(84, 210, 255, 0.44);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.56), 0 0 38px rgba(84, 210, 255, 0.12);
}

.store-card p,
.package-grid p {
  color: var(--muted);
}

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

.package-grid article {
  min-height: 240px;
  padding: 28px;
}

.package-grid span {
  color: var(--gold);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 3rem;
  font-weight: 700;
}

.purchase-hero {
  min-height: 68vh;
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

.article-card,
.intel-card,
.contact-card,
.purchase-card,
.trailer-panel,
.feature-card,
.store-card,
.package-grid article,
.timeline > div,
.stat-grid article,
.gallery img {
  transform: translateZ(0);
}

.hero-copy,
.hero-panel,
.page-hero > div,
.video-copy,
.split-showcase img,
.parallax-band > div {
  will-change: transform;
}

.contact-card > img {
  width: min(260px, 80%);
  margin-bottom: 14px;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(84, 210, 255, 0.7);
}

.social-large,
#socialmedia {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-large a,
#socialmedia a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.social-large a:hover,
#socialmedia a:hover {
  transform: translateY(-3px);
  background: rgba(84, 210, 255, 0.16);
}

.social-large img,
#socialmedia img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

#footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 30px clamp(18px, 4vw, 56px);
  background: rgba(5, 6, 9, 0.9);
  border-top: 1px solid var(--line);
}

.footer-brand p,
.copyright {
  margin: 0;
}

.copyright {
  justify-self: end;
  text-align: right;
  font-size: 0.86rem;
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: slideDown 640ms var(--ease) both;
  }

  .brand-mark {
    animation: signalPulse 4.4s ease-in-out infinite;
  }

  .home-hero::before,
  .page-hero::before {
    animation: heroDrift 18s ease-in-out infinite alternate;
  }

  .hero-copy,
  .page-hero > div,
  .video-copy,
  .article-card,
  .intel-card,
  .contact-card,
  .purchase-card,
  .trailer-panel {
    animation: fadeUp 820ms var(--ease) both;
  }

  .hero-panel {
    animation: fadeUp 820ms var(--ease) 180ms both, floatPanel 6s ease-in-out 1.1s infinite;
  }

  .stat-grid article,
  .feature-card,
  .timeline > div,
  .gallery img,
  .store-card,
  .package-grid article {
    animation: fadeUp 720ms var(--ease) both;
  }

  .stat-grid article:nth-child(2),
  .feature-card:nth-child(2),
  .timeline > div:nth-child(2),
  .gallery img:nth-child(2),
  .store-card:nth-child(2),
  .package-grid article:nth-child(2) {
    animation-delay: 120ms;
  }

  .stat-grid article:nth-child(3),
  .feature-card:nth-child(3),
  .timeline > div:nth-child(3),
  .gallery img:nth-child(3),
  .store-card:nth-child(3),
  .package-grid article:nth-child(3) {
    animation-delay: 220ms;
  }

  .store-card:nth-child(4) {
    animation-delay: 320ms;
  }

  .youtube-frame {
    animation: frameGlow 5s ease-in-out infinite;
  }
}

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

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

@keyframes heroDrift {
  from {
    filter: saturate(1) contrast(1);
    transform: scale(1);
  }
  to {
    filter: saturate(1.16) contrast(1.08);
    transform: scale(1.045) translate3d(-10px, -4px, 0);
  }
}

@keyframes cloudShift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(2%, 1%, 0) scale(1.04);
  }
}

@keyframes batDrift {
  from {
    transform: translateX(-1%) translateY(0);
  }
  to {
    transform: translateX(1%) translateY(-2%);
  }
}

@keyframes signalPulse {
  0%,
  100% {
    box-shadow: 0 0 18px rgba(84, 210, 255, 0.24);
  }
  50% {
    box-shadow: 0 0 30px rgba(84, 210, 255, 0.54), 0 0 42px rgba(225, 63, 79, 0.18);
  }
}

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

@keyframes frameGlow {
  0%,
  100% {
    box-shadow: var(--shadow), 0 0 30px rgba(84, 210, 255, 0.08);
  }
  50% {
    box-shadow: var(--shadow), 0 0 50px rgba(84, 210, 255, 0.22);
  }
}

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

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

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

  body::after {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header,
  #footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  #navigation {
    width: 100%;
    overflow-x: auto;
  }

  #navigation ul {
    min-width: max-content;
  }

  .hero,
  .intro-grid,
  .article-layout,
  .video-section,
  .community-grid,
  .trailer-tease,
  .purchase-layout,
  .split-showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-panel {
    max-width: 520px;
  }

  .feature-strip,
  .timeline,
  .store-grid,
  .package-grid,
  .news-cascade,
  .poster-feature,
  .poster-strip {
    grid-template-columns: 1fr;
  }

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

  .gallery img,
  .gallery img:first-child {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  #footer {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .copyright {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 680px) {
  body {
    background-attachment: scroll;
  }

  .site-header {
    padding: 16px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  #navigation a {
    min-height: 36px;
    padding: 7px 11px;
    font-size: 0.76rem;
  }

  .hero,
  .page-hero,
  .section {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    min-height: 700px;
    padding-top: 80px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 4.8rem);
  }

  .hero-actions,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .stat-grid {
    display: grid;
  }

  .split-showcase {
    width: 100%;
  }

  .footer-brand {
    flex-direction: column;
  }

  .poster-feature img {
    justify-self: stretch;
    transform: none;
  }
}
