:root {
  color-scheme: dark;
  --bg: #030705;
  --surface: #07110b;
  --surface-2: #0b1d12;
  --line: rgba(107, 255, 156, 0.2);
  --text: #effff3;
  --muted: #a8c8b0;
  --dim: #5f8f6f;
  --phosphor: #2dff72;
  --phosphor-2: #73ff9d;
  --amber: #ffbf5b;
  --blue: #76b7ff;
  --shadow: rgba(45, 255, 114, 0.24);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 12%, rgba(45, 255, 114, 0.14), transparent 34rem),
    linear-gradient(180deg, #030705 0%, #06120a 48%, #020403 100%);
  background-size: 100% 3px, auto, auto;
}

body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at center, transparent 48%, rgba(0, 0, 0, 0.66) 100%);
}

a {
  color: var(--phosphor-2);
  text-decoration: none;
}

a:hover {
  color: var(--text);
}

.site-header,
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 0 24px var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(3, 7, 5, 0.54);
}

.nav a {
  min-width: 86px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--bg);
  background: var(--phosphor);
}

.hero {
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100vh - 88px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: 54px;
  padding: 42px 0 74px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 0 34px var(--shadow);
}

h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--phosphor-2);
  font-size: 18px;
}

.lede {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  color: var(--bg);
  background: var(--phosphor);
  box-shadow: 0 0 28px var(--shadow);
}

.button.secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.watch-panel {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 444 / 524;
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, #18231b, #040806);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.46), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.game-preview-video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: #000;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 0 42px var(--shadow);
}

.marketing-hero {
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100vh - 88px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: 54px;
  padding: 42px 0 74px;
}

.marketing-copy {
  display: grid;
  justify-items: start;
}

.app-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.app-lockup img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  box-shadow: 0 0 34px var(--shadow);
}

.app-lockup .eyebrow {
  margin-bottom: 3px;
}

.app-lockup strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.marketing-details {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1.25fr);
  align-items: start;
  gap: 30px;
}

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

.detail-list article {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.detail-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.content-band {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 22px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(7, 17, 11, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

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

.feature-grid article {
  min-height: 172px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.feature-grid p,
.policy-card p {
  color: var(--muted);
}

.page {
  width: min(850px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 70px;
}

.policy-card {
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(7, 17, 11, 0.84);
}

.policy-card h1 {
  font-size: clamp(42px, 7vw, 72px);
}

.policy-card h2 {
  margin-top: 34px;
  font-size: 22px;
}

.updated {
  color: var(--dim);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 36px;
  color: var(--dim);
  font-size: 14px;
}

@media (max-width: 820px) {
  .hero,
  .marketing-hero,
  .marketing-details {
    grid-template-columns: 1fr;
  }

  .hero,
  .marketing-hero {
    min-height: auto;
    padding-top: 24px;
  }

  .watch-panel {
    max-width: 440px;
    margin: 0 auto;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .content-band {
    padding: 28px;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
  }

  .nav {
    width: 100%;
  }

  .nav a {
    flex: 1;
    min-width: 0;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
