:root {
  --ink: #090a20;
  --night: #171640;
  --indigo: #30235e;
  --sunset: #ef8370;
  --gold: #ffd995;
  --cloud: #fff9f2;
  --aqua: #84e0d6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cloud);
  font-family: var(--font-geist-sans), system-ui, sans-serif;
}
a { color: inherit; }
.site-nav {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 7vw, 112px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(rgba(9,10,32,.72), transparent);
}
.nav-brand, .footer-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 14px; font-weight: 800; letter-spacing: .18em; }
.nav-brand img, .footer-brand img { border-radius: 10px; }
.site-nav nav, footer nav { display: flex; align-items: center; gap: clamp(14px, 2.5vw, 36px); }
.site-nav nav a { text-decoration: none; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 600; letter-spacing: .06em; }
.site-nav nav a:hover { color: var(--cloud); }
.site-nav .nav-play { color: #18172e; background: var(--gold); border-radius: 999px; padding: 9px 16px; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  padding: 8vw clamp(24px, 7vw, 112px);
  background:
    radial-gradient(circle at 72% 43%, rgba(255, 203, 145, .28), transparent 23%),
    linear-gradient(132deg, var(--ink) 3%, var(--night) 48%, #743d65 74%, var(--sunset));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.55) 0 1px, transparent 1.5px);
  background-size: 83px 83px;
  opacity: .2;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}
.sun {
  position: absolute;
  width: min(33vw, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  right: 9vw;
  top: 15vh;
  background: rgba(255, 221, 166, .26);
  box-shadow: 0 0 90px rgba(255, 173, 121, .34);
}
.hero-copy { position: relative; z-index: 2; max-width: 650px; }
.brand-row { display: flex; align-items: center; gap: 14px; color: var(--gold); font-size: 11px; letter-spacing: .22em; }
.brand-row img { border-radius: 16px; box-shadow: 0 10px 32px rgba(0,0,0,.4); }
.eyebrow { margin: 58px 0 10px; color: var(--aqua); font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(70px, 10vw, 148px); line-height: .82; letter-spacing: -.075em; font-weight: 800; text-shadow: 0 18px 52px rgba(8,5,35,.42); }
.lede { max-width: 570px; margin: 34px 0 0; color: rgba(255,249,242,.8); font-size: clamp(17px, 1.55vw, 22px); line-height: 1.62; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.play-button { display: inline-flex; align-items: center; gap: 12px; border-radius: 14px; padding: 11px 20px; background: var(--cloud); color: #111127; text-decoration: none; font-size: 19px; font-weight: 700; box-shadow: 0 12px 34px rgba(0,0,0,.28); transition: transform .2s ease, box-shadow .2s ease; }
.play-button:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(0,0,0,.34); }
.play-button small { display: block; font-size: 8px; letter-spacing: .1em; }
.play-mark { font-size: 20px; }
.text-link { color: rgba(255,255,255,.76); text-underline-offset: 5px; font-size: 14px; }
.stats { display: flex; gap: clamp(22px, 4vw, 58px); margin: 64px 0 0; }
.stats div { display: grid; gap: 4px; }
.stats dt { color: var(--gold); font-size: clamp(25px, 3vw, 38px); font-weight: 700; }
.stats dd { margin: 0; color: rgba(255,255,255,.56); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.hero-art { position: absolute; z-index: 1; width: min(58vw, 980px); height: min(62vw, 760px); right: -5vw; bottom: -5vh; opacity: .62; filter: saturate(.92) contrast(1.05); mask-image: linear-gradient(102deg, transparent 2%, black 30%, black 76%, transparent 99%); }
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.preview-band { display: grid; min-height: 38vh; place-items: center; align-content: center; gap: 22px; padding: 80px 24px; background: linear-gradient(#090a20, #171640); text-align: center; }
.preview-band p { max-width: 860px; margin: 0; font-family: Georgia, serif; font-size: clamp(28px, 5vw, 62px); color: var(--gold); }
.preview-band span { color: rgba(255,255,255,.55); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }

.section-shell { max-width: 1320px; margin: 0 auto; padding: clamp(82px, 11vw, 160px) clamp(24px, 6vw, 88px); }
.section-heading { max-width: 780px; }
.section-heading.compact { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-kicker { margin: 0 0 18px; color: var(--aqua); font-size: 11px; font-weight: 800; letter-spacing: .22em; }
h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(44px, 6.5vw, 90px); font-weight: 400; line-height: .99; letter-spacing: -.045em; }
.section-heading > p:last-child, .arsenal-copy > p, .multiplayer-copy > p { color: rgba(255,255,255,.62); font-size: 17px; line-height: 1.7; }
.section-heading > p:last-child { max-width: 590px; margin-top: 30px; }

.features { background: linear-gradient(180deg, #171640, #0d0e28); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 72px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); border-radius: 22px; overflow: hidden; }
.feature-grid article { min-height: 310px; padding: 34px; background: linear-gradient(145deg, rgba(46,41,91,.92), rgba(17,17,47,.96)); }
.feature-grid article > span { color: var(--gold); font-family: var(--font-geist-mono); font-size: 11px; }
.feature-grid h3 { margin: 92px 0 15px; font-size: 23px; }
.feature-grid p { margin: 0; color: rgba(255,255,255,.57); line-height: 1.65; font-size: 14px; }

.campaigns { max-width: none; background: #0d0e28; }
.campaign-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
.campaign-card { position: relative; min-height: 600px; overflow: hidden; display: flex; align-items: end; border-radius: 26px; border: 1px solid rgba(255,255,255,.13); background: #1c2144; }
.campaign-card::after { content: ""; position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, rgba(7,8,27,.94)); }
.campaign-card > div { position: relative; z-index: 2; padding: 40px; max-width: 520px; }
.campaign-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 26%; opacity: .72; }
.campaign-card span { color: var(--aqua); font-size: 10px; font-weight: 800; letter-spacing: .19em; }
.campaign-card h3 { margin: 12px 0; font-family: Georgia, serif; font-size: clamp(42px, 5vw, 68px); font-weight: 400; }
.campaign-card p { margin: 0; color: rgba(255,255,255,.68); line-height: 1.6; }
.warfront { border-color: rgba(255,180,128,.25); }
.warfront span { color: var(--gold); }

.arsenal, .multiplayer { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(50px, 9vw, 140px); }
.arsenal { background: radial-gradient(circle at 20% 50%, rgba(83,188,203,.14), transparent 36%), #11112f; }
.phone-frame { justify-self: center; width: min(350px, 72vw); padding: 10px; border: 1px solid rgba(132,224,214,.35); border-radius: 35px; background: rgba(255,255,255,.07); box-shadow: 0 30px 90px rgba(0,0,0,.48); transform: rotate(-2deg); }
.phone-frame img { display: block; width: 100%; height: auto; border-radius: 27px; }
.arsenal-copy > p, .multiplayer-copy > p { max-width: 600px; margin: 28px 0 36px; }
.arsenal-copy ul { display: grid; gap: 20px; padding: 0; list-style: none; }
.arsenal-copy li { display: flex; align-items: center; gap: 15px; color: rgba(255,255,255,.6); line-height: 1.45; }
.arsenal-copy li i { flex: 0 0 12px; height: 12px; border-radius: 50%; box-shadow: 0 0 18px currentColor; }
.arsenal-copy li b { display: block; color: var(--cloud); margin-bottom: 3px; }
.shield-dot { color: var(--aqua); background: var(--aqua); }
.fire-dot { color: #ef8c63; background: #ef8c63; }
.ice-dot { color: #9edcff; background: #9edcff; }

.multiplayer { max-width: none; grid-template-columns: 1.05fr .95fr; background: radial-gradient(circle at 80% 25%, rgba(241,129,111,.16), transparent 30%), #0b0c24; }
.multiplayer-art { justify-self: end; width: min(520px, 78vw); height: 620px; overflow: hidden; border-radius: 28px; border: 1px solid rgba(255,213,151,.22); }
.multiplayer-art img { width: 100%; height: 100%; object-fit: cover; object-position: center 34%; }
.mode-row { display: flex; gap: 10px; flex-wrap: wrap; }
.mode-row span { padding: 9px 13px; border: 1px solid rgba(255,217,149,.32); border-radius: 999px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .13em; }

.gallery { max-width: none; background: linear-gradient(#0d0e28, #171640); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 56px; }
.gallery-grid img { width: 100%; height: auto; border-radius: 18px; border: 1px solid rgba(255,255,255,.13); box-shadow: 0 22px 50px rgba(0,0,0,.32); }
.gallery-grid img:nth-child(even) { transform: translateY(28px); }

.download { position: relative; overflow: hidden; min-height: 680px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; text-align: center; padding: 90px 24px; background: linear-gradient(145deg, #171640, #52305e 65%, #d36b68); }
.download-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(255,212,153,.16); filter: blur(8px); }
.download > *:not(.download-glow) { position: relative; z-index: 1; }
.download > img { border-radius: 25px; box-shadow: 0 22px 62px rgba(0,0,0,.36); }
.download h2 { font-size: clamp(58px, 9vw, 120px); }
.download > p:not(.section-kicker) { margin: 0 0 12px; color: rgba(255,255,255,.7); }

footer { min-height: 120px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding: 30px clamp(24px, 6vw, 90px); background: #08091c; border-top: 1px solid rgba(255,255,255,.09); }
footer nav a { color: rgba(255,255,255,.58); font-size: 12px; text-underline-offset: 4px; }
footer p { justify-self: end; margin: 0; color: rgba(255,255,255,.35); font-size: 11px; }

@media (max-width: 820px) {
  .site-nav nav a:not(.nav-play) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 92px; padding-bottom: 70px; }
  .hero-art { width: 110vw; height: 70vh; right: -42vw; bottom: -10vh; opacity: .34; }
  .sun { width: 75vw; right: -25vw; }
  .eyebrow { margin-top: 44px; }
  .stats { gap: 20px; flex-wrap: wrap; }
  .stats dd { max-width: 95px; }
  .section-heading.compact { display: block; }
  .feature-grid, .campaign-grid, .arsenal, .multiplayer { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 240px; }
  .feature-grid h3 { margin-top: 55px; }
  .campaign-card { min-height: 520px; }
  .arsenal-copy { grid-row: 1; }
  .multiplayer-art { justify-self: center; height: 520px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  footer p { justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .play-button { transition: none; }
}
