@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");

:root {
  --text: #f2f6d6;
  --muted: rgba(242, 246, 214, 0.78);
  --accent: #d7f43d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
  color: var(--text);
  background: url("/assets/deadreckon/web-bg.png") center top / cover no-repeat fixed;
}

a {
  color: inherit;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 3, 0.48);
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 48px 0 56px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand-mark {
  width: min(220px, 48vw);
  height: auto;
  display: block;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}

.lede,
.footer-copy,
.footer-meta {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  line-height: 1.7;
  color: var(--muted);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.availability {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.availability-label {
  margin: 0;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.availability-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.availability-icon {
  width: 22px;
  height: 22px;
  color: var(--text);
  flex: 0 0 auto;
}

.availability-platform {
  font-size: 1rem;
  font-weight: 500;
}

.availability-status {
  color: #6ef07f;
  font-size: 0.98rem;
  font-weight: 700;
}

.footer {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-copy {
  font-size: 0.98rem;
}

.footer-meta {
  font-size: 0.92rem;
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 640px) {
  body {
    background-position: center top;
    background-attachment: scroll;
  }

  .page-shell {
    width: min(100vw - 28px, 100%);
    padding-top: 28px;
    padding-bottom: 40px;
  }

  .hero {
    gap: 18px;
  }

  .brand-mark {
    width: min(180px, 52vw);
  }
}
