:root {
  --bg: #07080c;
  --panel: #10131a;
  --ink: #f4f1ea;
  --muted: #b7b3aa;
  --orange: #e8622d;
  --cyan: #3ad7ff;
  --yellow: #f2d64b;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Outfit, system-ui, sans-serif;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus { left: 12px; background: var(--orange); padding: 8px 12px; z-index: 20; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 7vw;
  background: rgba(7, 8, 12, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.12em;
  font-size: 1.35rem;
}
.mark { width: 52px; height: 20px; }
nav { display: flex; gap: 22px; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}
nav a:hover { color: var(--ink); }

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.88) 0%, rgba(7, 8, 12, 0.35) 48%, rgba(7, 8, 12, 0.15) 100%),
    linear-gradient(180deg, rgba(7, 8, 12, 0.15), rgba(7, 8, 12, 0.92));
}
.hero-copy {
  position: relative;
  padding: 10vh 7vw 8vh;
  max-width: 760px;
}
.kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-family: Oswald, sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
h1, h2, h3 { font-family: "Bebas Neue", sans-serif; margin: 0; }
h1 {
  font-size: clamp(4.2rem, 12vw, 9rem);
  line-height: 0.85;
  letter-spacing: 0.04em;
}
.tag {
  margin: 8px 0 18px;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.28em;
  color: var(--cyan);
  font-size: clamp(1rem, 2vw, 1.35rem);
}
.lede {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.15rem;
}
.hero-actions, .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 4px;
  text-decoration: none;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.btn.primary { background: var(--orange); color: #140b08; }
.btn.ghost { border-color: rgba(255,255,255,0.28); }
.btn:hover { filter: brightness(1.08); }

.section-head { padding: 0 7vw 28px; max-width: 720px; }
.section-head p { color: var(--muted); }
h2 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: 0.04em; }

.downloads, .game, .gallery, .trailer { padding: 72px 0; }
.downloads { background: linear-gradient(180deg, #0b0e14, #07080c); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 7vw;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card h3 { font-size: 2.4rem; }
.card .detail { color: var(--cyan); font-family: Oswald, sans-serif; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.85rem; }
.card .hint, .card .file { color: var(--muted); font-size: 0.92rem; }
.card .btn { margin-top: auto; width: 100%; }

.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  padding: 0 7vw 48px;
  align-items: center;
}
.split p { color: var(--muted); font-size: 1.08rem; }
.split figure { overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.split img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }

.features {
  list-style: none;
  margin: 0;
  padding: 0 7vw;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.features li {
  border-top: 3px solid var(--orange);
  background: #0d1118;
  padding: 22px;
}
.features h3 { font-size: 1.8rem; margin-bottom: 8px; }
.features p { margin: 0; color: var(--muted); }

.trailer .frame {
  margin: 0 7vw;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #000;
}
.trailer iframe { width: 100%; height: 100%; border: 0; }

.shots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 7vw;
}
.shots figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}
.shots img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.shots figure:hover img { transform: scale(1.04); }
.shots figcaption {
  padding: 10px 12px 14px;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--muted);
}

footer {
  padding: 28px 7vw 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
footer a { color: var(--cyan); }

@media (max-width: 900px) {
  .cards, .features, .shots, .split { grid-template-columns: 1fr; }
  .nav { padding: 14px 5vw; }
  nav { gap: 14px; }
  .hero-copy, .section-head, .cards, .split, .features, .shots, .trailer .frame, footer { padding-left: 5vw; padding-right: 5vw; }
  .shots img { height: 200px; }
}
