:root {
  --bg: #0d0e12;
  --bg-alt: #121319;
  --panel: #161821;
  --text: #ecedf1;
  --muted: #9a9da8;
  --line: #262833;
  --accent: #ff5a2c;
  --maxw: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

h1, h2 { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.eyebrow.accent { color: var(--accent); }

.muted { color: var(--muted); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 14, 18, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo { height: 40px; width: auto; display: block; image-rendering: -webkit-optimize-contrast; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s ease;
}
.nav-links a:hover { color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.15s ease;
}
.btn-solid { background: var(--accent); color: #160a04; }
.btn-solid:hover { background: #ff6f44; transform: translateY(-1px); }
.btn-line { border-color: var(--line); color: var(--text); }
.btn-line:hover { border-color: #4a4d5c; transform: translateY(-1px); }

/* ---------- Hero ---------- */
.hero { border-bottom: 1px solid var(--line); }
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 110px 24px 100px;
}
.hero-title {
  font-weight: 700;
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.02;
  max-width: 14ch;
}
.hero-sub {
  max-width: 560px;
  margin-top: 26px;
  font-size: 19px;
  color: #c9cbd4;
}
.hero-sub strong { color: var(--accent); font-weight: 600; }
.hero-cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: 90px 24px; border-bottom: 1px solid var(--line); }
.section-alt { background: var(--bg-alt); }
.section-title {
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 18ch;
}
.lead { font-size: 18px; margin-bottom: 16px; max-width: 60ch; }

/* ---------- Game ---------- */
.game {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.game-art {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.game-art img {
  display: block;
  width: 100%;
  height: auto;
}
.game-info .section-title { margin-bottom: 18px; }

/* Facts list */
.facts {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.facts > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.facts dt {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.facts dd { font-size: 16px; }

/* ---------- Studio ---------- */
.studio { max-width: var(--maxw); margin: 0 auto; }
.studio-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.studio-cols p { font-size: 18px; color: #c9cbd4; }

/* ---------- Contact ---------- */
.contact { max-width: var(--maxw); margin: 0 auto; }
.contact .lead { margin-top: 8px; }
.contact-mail {
  display: inline-block;
  margin-top: 22px;
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 90, 44, 0.4);
  padding-bottom: 4px;
  transition: border-color 0.18s ease;
}
.contact-mail:hover { border-color: var(--accent); }

/* ---------- Footer ---------- */
.footer { padding: 28px 24px; }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-logo { height: 28px; width: auto; opacity: 0.85; }
.footer-note { font-size: 13px; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 800px) {
  .game { grid-template-columns: 1fr; gap: 32px; }
  .studio-cols { grid-template-columns: 1fr; gap: 22px; }
  .hero-inner { padding: 72px 24px 64px; }
  .section { padding: 64px 24px; }
}
@media (max-width: 480px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 14px; }
}
