:root {
  color-scheme: dark;
  --ink: #07080d;
  --paper: #fff5c7;
  --muted: #b9d6d6;
  --cyan: #28d7f4;
  --green: #5df15f;
  --magenta: #ff4fd1;
  --red: #ff4b45;
  --panel: rgba(7, 8, 13, 0.76);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: clamp(28px, 6vw, 72px);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 8, 13, 0.92), rgba(7, 8, 13, 0.36) 54%, rgba(7, 8, 13, 0.78)),
    linear-gradient(0deg, rgba(7, 8, 13, 0.96), rgba(7, 8, 13, 0.06) 48%);
}

.hero__content {
  position: relative;
  width: min(760px, 100%);
  padding-bottom: 5vh;
}

.nav {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 2px solid rgba(40, 215, 244, 0.68);
  background: rgba(7, 8, 13, 0.74);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.45);
}

.nav .nav__play {
  border-color: var(--green);
  color: var(--green);
}

h1,
h2,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(52px, 9vw, 124px);
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 5px 6px 0 rgba(0, 0, 0, 0.72);
}

.tagline {
  max-width: 680px;
  margin: 24px 0 0;
  color: #f4f0d5;
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.45;
  text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.72);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 3px solid var(--cyan);
  background: rgba(7, 8, 13, 0.84);
  color: var(--paper);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.55);
}

.button--primary {
  border-color: var(--green);
  background: #153a1b;
}

.button--ghost {
  border-color: var(--magenta);
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #1b2433;
  border-top: 1px solid rgba(40, 215, 244, 0.42);
  border-bottom: 1px solid rgba(40, 215, 244, 0.42);
}

.strip > div {
  padding: 22px clamp(18px, 4vw, 56px);
  background: #0d1119;
}

.fact__label,
.preorder__panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.strip strong,
.preorder__panel strong {
  color: var(--paper);
  font-size: clamp(16px, 2.2vw, 24px);
  text-transform: uppercase;
}

.section {
  padding: clamp(44px, 7vw, 92px) clamp(20px, 6vw, 72px);
}

.section__header {
  max-width: 900px;
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 68px);
  line-height: 1;
  text-transform: uppercase;
}

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

figure {
  margin: 0;
}

figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 3px solid rgba(40, 215, 244, 0.66);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.50);
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.preorder {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: stretch;
  padding: clamp(44px, 7vw, 92px) clamp(20px, 6vw, 72px);
  border-top: 1px solid rgba(40, 215, 244, 0.28);
  background:
    linear-gradient(90deg, rgba(255, 79, 209, 0.10), rgba(40, 215, 244, 0.06)),
    #080a10;
}

.preorder__copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.55;
}

.preorder__panel {
  display: grid;
  gap: 12px;
  align-content: start;
  border: 3px solid rgba(93, 241, 95, 0.72);
  background: rgba(7, 8, 13, 0.82);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.50);
  padding: clamp(18px, 3vw, 28px);
}

.preorder__panel div {
  border-left: 3px solid var(--magenta);
  padding: 8px 0 8px 14px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 72px);
  border-top: 1px solid rgba(40, 215, 244, 0.42);
  color: var(--muted);
}

.footer a {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 760px) {
  .hero {
    min-height: 88vh;
    padding: 26px 18px;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(7, 8, 13, 0.96), rgba(7, 8, 13, 0.22) 62%),
      linear-gradient(90deg, rgba(7, 8, 13, 0.80), rgba(7, 8, 13, 0.36));
  }

  .strip,
  .screens,
  .preorder {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .nav {
    left: 18px;
    right: 18px;
    top: 18px;
    justify-content: space-between;
  }

  .nav a {
    min-height: 38px;
    padding: 0 9px;
    font-size: 11px;
  }

  .footer {
    display: grid;
  }
}
