:root {
  --forest: #061a18;
  --forest-soft: #0d302b;
  --paper: #f6f7ee;
  --paper-deep: #e5ead8;
  --gold: #e5bb4d;
  --mint: #83d7b4;
  --cyan: #4fc5d5;
  --ink: #13231f;
  --muted: #5d6c66;
  --line: #c9d2c3;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--forest);
  background: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 30px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(6, 26, 24, .2);
}
.brand span { display: grid; line-height: 1.15; }
.brand strong { font-size: 20px; }
.brand small { margin-top: 4px; color: var(--muted); font-size: 13px; }
nav, footer div { display: flex; gap: 24px; }
nav a, footer a { font-size: 14px; font-weight: 800; }
nav a:hover, footer a:hover, .text-link:hover, .legal-content a:hover { color: #147c75; }

.hero {
  position: relative;
  min-height: min(760px, 70vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--forest) url("gameplay.png") center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 20, 18, .94) 0%, rgba(4, 20, 18, .68) 42%, rgba(4, 20, 18, .12) 74%);
}
.hero-inner {
  position: relative;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 80px 30px 72px;
}
.hero-copy { max-width: 700px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--mint);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1, h2, h3 { letter-spacing: 0; }
h1 {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 9vw, 112px);
  line-height: .95;
  text-shadow: 0 8px 30px rgba(0, 0, 0, .4);
}
h2 { margin: 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.08; }
h3 { margin: 14px 0 8px; font-size: 24px; line-height: 1.2; }
.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 23px;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  min-height: 52px;
  padding: 12px 20px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
}
.button.primary { color: var(--forest); background: var(--gold); }
.button.secondary { color: var(--white); border-color: rgba(255, 255, 255, .8); background: rgba(6, 26, 24, .48); }

.feature-band { color: var(--white); background: var(--forest); }
.section-inner { max-width: 1180px; margin: 0 auto; padding: 86px 30px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; margin-top: 54px; }
.feature { padding-top: 18px; border-top: 3px solid var(--gold); }
.feature-number { color: var(--gold); font-size: 14px; font-weight: 900; }
.feature p { margin: 0; color: #c9dbd5; }
.screens { background: var(--paper-deep); }
.shot-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.shot-grid figure { margin: 0; }
.shot-grid img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border: 1px solid rgba(19, 35, 31, .16); border-radius: 6px; box-shadow: 0 18px 46px rgba(6, 26, 24, .2); }
.shot-grid figcaption { margin-top: 10px; color: var(--muted); font-size: 14px; font-weight: 700; }
.promise-band { background: var(--white); }
.promise-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 86px; }
.promise-copy { display: grid; gap: 18px; }
.promise-copy p { margin: 0; color: var(--muted); }
.facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.facts span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 4px; color: var(--forest-soft); font-size: 14px; font-weight: 800; }
.text-link { width: fit-content; margin-top: 8px; padding-bottom: 2px; border-bottom: 2px solid currentColor; font-weight: 850; }

.legal-hero { padding: 70px 30px 52px; color: var(--white); background: var(--forest); }
.legal-hero > div, .legal-content { max-width: 860px; margin: 0 auto; }
.legal-hero h1 { font-size: clamp(46px, 7vw, 74px); }
.legal-hero p { max-width: 720px; margin: 18px 0 0; color: #c9dbd5; font-size: 21px; }
.legal-content { padding: 56px 30px 92px; }
.legal-content section { padding: 28px 0; border-bottom: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 12px; font-size: 28px; }
.legal-content h3 { font-size: 20px; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { text-decoration: underline; text-underline-offset: 3px; }
.legal-content ul, .legal-content ol { padding-left: 24px; }
.support-steps { counter-reset: steps; list-style: none; padding: 0 !important; }
.support-steps li { padding: 12px 0 12px 48px; position: relative; }
.support-steps li::before { counter-increment: steps; content: counter(steps); position: absolute; left: 0; top: 8px; width: 34px; height: 34px; display: grid; place-items: center; color: var(--white); background: var(--forest-soft); border-radius: 50%; font-weight: 900; }

footer { max-width: 1180px; margin: 0 auto; padding: 28px 30px 46px; display: flex; justify-content: space-between; gap: 28px; color: var(--muted); font-size: 14px; }

@media (max-width: 820px) {
  body { font-size: 17px; }
  .site-header { align-items: flex-start; padding: 12px 20px; }
  .site-header nav { display: none; }
  .hero { min-height: 68vh; background-position: 58% center; }
  .hero::before { background: rgba(4, 20, 18, .66); }
  .hero-inner { padding: 64px 20px 56px; }
  h1 { font-size: 54px; }
  .lead { font-size: 20px; }
  .section-inner { padding: 62px 20px; }
  .feature-grid, .promise-layout, .shot-grid { grid-template-columns: 1fr; gap: 34px; }
  .feature-grid { margin-top: 40px; }
  .shot-grid { max-width: 620px; }
  .legal-hero { padding: 50px 20px 38px; }
  .legal-content { padding: 38px 20px 70px; }
  footer { padding: 28px 20px 36px; flex-direction: column; }
  footer div { flex-wrap: wrap; gap: 15px 20px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
