:root {
  --bg: #070707;
  --panel: #101010;
  --panel-2: #151515;
  --text: #f2f2f0;
  --muted: #9b9b98;
  --line: #262626;
  --red: #e21b2d;
  --red-dark: #a90f1d;
  --max: 1240px;
  --sans: "Inter", system-ui, sans-serif;
  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

button {
  font: inherit;
}


.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(7,7,7,.72);
  backdrop-filter: blur(14px);
}


.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .18em;
}


.brand-logo {
  width: 30px;
  height: 30px;
  display: block;
}


.nav {
  display: flex;
  gap: 30px;
}


.nav a {
  color: #bdbdb9;
  font-size: 13px;
  transition: color .2s ease;
}


.nav a:hover {
  color: #fff;
}


.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: white;
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}


.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}


.hero-media {
  z-index: -3;
}


.hero-media img {
  height: 100%;
  object-fit: cover;
}


.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.56) 48%, rgba(0,0,0,.35) 100%),
    linear-gradient(0deg, rgba(7,7,7,1) 0%, transparent 32%);
}


.hero-content {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 5vw 11vh;
}


.eyebrow,
.section-label,
.game-status {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}


.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}


.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(226,27,45,.7);
}


.hero h1 {
  margin: 18px 0 20px;
  font-family: var(--display);
  font-size: clamp(64px, 11vw, 148px);
  line-height: .84;
  letter-spacing: -.07em;
  font-weight: 700;
}


.hero h1 em {
  color: var(--red);
  font-style: normal;
}


.hero-copy {
  max-width: 430px;
  color: #c2c2be;
  font-size: 16px;
}


.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}


.button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: .25s ease;
}


.button-primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}


.button-primary:hover {
  background: #ff293b;
  transform: translateY(-2px);
}


.button-quiet {
  background: rgba(0,0,0,.28);
}


.button-quiet:hover {
  background: #151515;
  border-color: #444;
}


.hero-scroll {
  position: absolute;
  right: 4vw;
  bottom: 10vh;
  color: #777;
  font-size: 10px;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}


.hero-scroll span {
  color: var(--red);
  margin-top: 8px;
}


.section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 150px 5vw;
}


.intro {
  border-top: 1px solid var(--line);
}


.intro-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 8vw;
  margin-top: 42px;
}


h2,
h3 {
  font-family: var(--display);
}


.intro h2,
.about h2,
.contact h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -.05em;
}


h2 span {
  color: #666;
}


.intro p,
.about p {
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
  margin: 0 0 18px;
}


.section-heading {
  margin-bottom: 55px;
}


.section-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -.05em;
}


/* Official trailer */

.trailer-section {
  border-top: 1px solid var(--line);
}


.trailer-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid var(--line);
}


.trailer-wrapper video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}


/* Games */

.game-feature {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 5vw;
  align-items: center;
  margin-bottom: 130px;
}


.game-feature.reversed {
  grid-template-columns: .75fr 1.25fr;
}


.game-feature.reversed .game-image {
  order: 2;
}


.game-feature.reversed .game-info {
  order: 1;
}


.game-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--panel);
}


.game-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}


.game-feature:hover .game-image img {
  transform: scale(1.025);
}


.image-note {
  position: absolute;
  inset: auto 14px 14px auto;
  padding: 6px 9px;
  background: rgba(0,0,0,.7);
  color: #777;
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
}


.missing-image .image-note {
  opacity: 1;
}


.missing-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 49.7%, #222 50%, transparent 50.3%),
    linear-gradient(45deg, transparent 49.7%, #222 50%, transparent 50.3%);
  opacity: .6;
}


.game-info h3 {
  margin: 10px 0 20px;
  font-size: clamp(35px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.05em;
}


.game-description {
  color: var(--muted);
  max-width: 470px;
  font-size: 15px;
}


.meta-line {
  display: flex;
  justify-content: space-between;
  max-width: 470px;
  padding: 16px 0;
  margin: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: .14em;
}


.meta-line span {
  color: #686865;
}


.meta-line strong {
  font-size: 10px;
  font-weight: 700;
}


.text-link {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}


.text-link span {
  color: var(--red);
  margin-left: 9px;
}


/* About */

.about {
  border-top: 1px solid var(--line);
}


/* Team */

.team {
  padding-top: 80px;
}


.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}


.person {
  padding: 32px 30px 36px 0;
  border-bottom: 1px solid var(--line);
}


.person + .person {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}


.person-number {
  color: var(--red);
  font-size: 11px;
  letter-spacing: .14em;
}


.person h3 {
  margin: 30px 0 2px;
  font-size: 34px;
}


.person p {
  margin: 0 0 18px;
  color: #ddd;
  font-weight: 600;
}


.person span {
  color: #72726f;
  font-size: 13px;
}


/* Contact */

.contact {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line);
}


.contact-inner {
  margin-top: 45px;
}


.email-link {
  display: inline-block;
  margin-top: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--red);
  font-size: clamp(17px, 2.4vw, 30px);
  transition: color .2s ease;
}


.email-link span {
  color: var(--red);
  margin-left: 12px;
}


.email-link:hover {
  color: var(--red);
}


/* Footer */

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 5vw;
  border-top: 1px solid var(--line);
  color: #656562;
  font-size: 11px;
}


.footer .brand {
  color: #aaa;
  font-size: 12px;
}


.footer a:hover {
  color: #fff;
}


/* Hero placeholder */

.hero-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  background:
    radial-gradient(circle at 70% 35%, rgba(226,27,45,.16), transparent 32%),
    linear-gradient(135deg, #0b0b0b, #181010 55%, #090909);
  color: #555;
  text-align: center;
  font-size: 11px;
  letter-spacing: .15em;
}


.hero-placeholder small {
  color: #383838;
  letter-spacing: .05em;
}


/* Mobile */

@media (max-width: 800px) {

  .site-header {
    height: 64px;
  }


  .menu-toggle {
    display: block;
    font-size: 20px;
  }


  .nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(7,7,7,.97);
    border-bottom: 1px solid var(--line);
  }


  .nav.open {
    display: flex;
  }


  .nav a {
    padding: 16px 5vw;
    border-top: 1px solid var(--line);
  }


  .hero-content {
    padding-bottom: 10vh;
  }


  .hero h1 {
    font-size: clamp(58px, 18vw, 100px);
  }


  .hero-scroll {
    display: none;
  }


  .section {
    padding: 100px 6vw;
  }


  .intro-grid,
  .about-grid,
  .game-feature,
  .game-feature.reversed {
    grid-template-columns: 1fr;
    gap: 35px;
  }


  .game-feature.reversed .game-image {
    order: 1;
  }


  .game-feature.reversed .game-info {
    order: 2;
  }


  .game-feature {
    margin-bottom: 90px;
  }


  .game-image {
    aspect-ratio: 4 / 3;
  }


  .team-grid {
    grid-template-columns: 1fr;
  }


  .person + .person {
    padding-left: 0;
    border-left: 0;
  }


  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    transition: none !important;
  }

}

