:root {
  --accent: #2f5fd0;
  --accent-soft: #6f9bf0;
  --ink: #16181d;
  --ink-soft: #4a4f5a;
  --ink-faint: #767c88;
  --paper: #ffffff;
  --paper-soft: #f5f6f8;
  --paper-sunk: #eceef2;
  --line: #e2e5ea;
  --line-strong: #c9cfd8;
  --radius: 8px;
  --radius-sm: 5px;
  --shadow: 0 1px 2px rgba(20, 24, 31, .06), 0 6px 18px rgba(20, 24, 31, .05);
  --font: 'DM Sans', system-ui, -apple-system, "Segoe UI", sans-serif;
  --measure: 62ch;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

main { max-width: 860px; margin: 0 auto; padding: 1.4rem 1.1rem 3.5rem; }

h1, h2, h3 { line-height: 1.22; font-weight: 700; text-wrap: balance; }
h1 { font-size: clamp(1.75rem, 4.6vw, 2.45rem); margin: .5rem 0 1rem; }
h2 { font-size: clamp(1.25rem, 3vw, 1.6rem); margin: 2.4rem 0 .7rem; }
h3 { font-size: 1.06rem; margin: 1.5rem 0 .5rem; }
p { margin: 0 0 1.05rem; max-width: var(--measure); }
ul, ol { margin: 0 0 1.05rem; padding-left: 1.25rem; max-width: var(--measure); }
li { margin: .32rem 0; }
strong { font-weight: 700; }
a { color: var(--accent); text-underline-offset: .18em; }
a:hover { color: var(--accent-soft); }
img { max-width: 100%; height: auto; }

/* ── Header ─────────────────────────────────────────────── */
.site-head {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: .75rem 1.1rem;
  border-bottom: 2px solid var(--accent);
  background: var(--paper);
}
.site-logo {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; text-decoration: none; color: var(--ink); font-size: 1.02rem;
}
.logo-mark {
  width: 1.05rem; height: 1.05rem; flex: 0 0 auto;
  background: var(--accent); border-radius: 3px;
  box-shadow: inset -3px -3px 0 rgba(0, 0, 0, .18);
}
.site-nav {
  display: flex; gap: .95rem; flex-wrap: wrap;
  margin-right: auto; font-size: .93rem;
}
.site-nav a { text-decoration: none; color: var(--ink-soft); padding: .15rem 0; }
.site-nav a:hover { color: var(--accent); }

/* ── Breadcrumbs ────────────────────────────────────────── */
.breadcrumb {
  font-size: .86rem; color: var(--ink-faint);
  margin: .2rem 0 .4rem; display: flex; flex-wrap: wrap; gap: .35rem;
  align-items: center;
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); text-decoration: underline; }
.breadcrumb .sep { color: var(--line-strong); }

/* ── Buttons ────────────────────────────────────────────── */
.cta {
  display: inline-block; background: var(--accent); color: #fff;
  padding: .72rem 1.35rem; border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 600; line-height: 1.3;
  border: 1px solid transparent; transition: background .15s ease;
}
.cta:hover { background: var(--accent-soft); color: #fff; }
.cta:focus-visible { outline: 3px solid var(--accent-soft); outline-offset: 2px; }
.cta--head { padding: .46rem .95rem; font-size: .9rem; }
.cta--big {
  display: block; text-align: center; margin: 1.8rem auto .4rem;
  max-width: 24rem; font-size: 1.02rem; box-shadow: var(--shadow);
}

/* ── Text blocks ────────────────────────────────────────── */
.lead {
  font-size: 1.08rem; color: var(--ink-soft); max-width: var(--measure);
  margin-bottom: 1.4rem;
}
.note {
  border-left: 3px solid var(--accent); background: var(--paper-soft);
  padding: .85rem 1rem; margin: 1.3rem 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.note p:last-child { margin-bottom: 0; }

/* ── Spec table ─────────────────────────────────────────── */
.wrap-x { overflow-x: auto; margin: 1.2rem 0; }
.spec {
  width: 100%; border-collapse: collapse; font-size: .95rem;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.spec th, .spec td {
  border-bottom: 1px solid var(--line); padding: .6rem .75rem;
  text-align: left; vertical-align: top;
}
.spec tr:last-child th, .spec tr:last-child td { border-bottom: 0; }
.spec th { background: var(--paper-soft); width: 44%; font-weight: 600; }
.spec td { color: var(--ink-soft); }

/* ── FAQ accordion ──────────────────────────────────────── */
.faq { margin: 1rem 0 0; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .65rem .85rem; margin: .5rem 0; background: var(--paper);
}
.faq-item[open] { background: var(--paper-soft); border-color: var(--line-strong); }
.faq-item summary {
  cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; gap: .8rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-weight: 700; }
.faq-item[open] summary::after { content: "–"; }
.faq-answer { margin-top: .55rem; color: var(--ink-soft); }
.faq-answer p:last-child { margin-bottom: 0; }

/* ── Testing notes ──────────────────────────────────────── */
.reviews blockquote {
  margin: .9rem 0; padding: .8rem 1rem; background: var(--paper-soft);
  border-radius: var(--radius-sm); border: 1px solid var(--line);
}
.reviews blockquote p { margin-bottom: .4rem; }
.reviews cite { font-size: .85rem; color: var(--ink-faint); font-style: normal; }

/* ── Footer ─────────────────────────────────────────────── */
.site-foot {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  max-width: 1000px; margin: 0 auto; padding: 2.1rem 1.1rem 2.6rem;
  border-top: 1px solid var(--line);
  font-size: .9rem; color: var(--ink-soft);
}
.footer-mark p { margin: .5rem 0 0; max-width: 34ch; }
.footer-name { font-weight: 700; color: var(--ink); font-size: 1rem; }
.footer-heading { margin: 0 0 .55rem; font-size: .95rem; color: var(--ink); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: .32rem 0; }
.footer-col a, .footer-legal a { color: var(--ink-soft); text-decoration: none; }
.footer-col a:hover, .footer-legal a:hover { color: var(--accent); text-decoration: underline; }
.chips { margin-top: .7rem; }
.chip {
  display: inline-block; border: 1px solid var(--line-strong); border-radius: 999px;
  padding: .13rem .62rem; margin: 0 .4rem .35rem 0; font-size: .8rem;
  color: var(--ink-soft); background: var(--paper-soft);
}
.footer-legal {
  grid-column: 1 / -1; border-top: 1px solid var(--line);
  padding-top: 1.1rem; margin-top: .2rem;
}
.footer-utility { margin: 0; color: var(--ink-faint); }
.footer-langs { display: inline-block; margin-left: .5rem; }
.footer-langs a { margin: 0 .22rem; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 700px) {
  body { font-size: 16px; }
  .site-nav { order: 3; width: 100%; gap: .8rem; font-size: .88rem; }
  .cta--head { margin-left: auto; }
  main { padding-top: 1rem; }
  .spec th { width: 50%; }
}

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

@media print {
  .site-head, .site-foot, .cta { display: none; }
  body { font-size: 12pt; color: #000; }
}

/* ═══ Design layer ═══════════════════════════════════════════════════════
   The first build of these sites shipped as a white document: text on paper,
   no anchor, no colour, no image. The copy was fine and the page still read as
   unfinished. Everything below is the visual layer — hero, stat cards, section
   rhythm, dark footer — and it uses no photography, because these sites ship
   no game screenshots on purpose. */

/* 960px of shell around a 62ch measure left a dead third on the right and
   made a finished page look half-empty. The shell now follows the text. */
main { max-width: 820px; padding-top: 0; }

.hero {
  display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 2rem; align-items: center;
  margin: 0 -1.1rem 0;
  padding: 2.6rem 1.6rem 2.4rem;
  background:
    radial-gradient(120% 140% at 88% 12%, color-mix(in srgb, var(--accent-soft) 38%, transparent) 0%, transparent 62%),
    linear-gradient(152deg, #14161b 0%, #1d2129 58%, #23272f 100%);
  color: #f3f4f6;
  border-radius: 0 0 var(--radius) var(--radius);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}
.hero h1 { margin: 0 0 .85rem; color: #fff; font-size: clamp(1.8rem, 4.4vw, 2.6rem); }
.hero .lead {
  color: #c8cbd3; font-size: 1.07rem; max-width: 46ch; margin: 0 0 1.5rem;
}
/* min-width:0 is not cosmetic: a grid child defaults to min-content width,
   so a long unbroken word in the lead would push the column past the hero. */
.hero-text { min-width: 0; }
.hero-art { display: flex; justify-content: center; min-width: 0; }
.hero-svg { width: 100%; max-width: 250px; height: auto; }
.hero-svg .cube { fill: #2f343d; }
.hero-svg .cube.b { fill: color-mix(in srgb, var(--accent) 55%, #2f343d); }
.hero-svg .cube.c { fill: color-mix(in srgb, var(--accent-soft) 45%, #2f343d); }
.hero-svg .pick { fill: var(--accent-soft); }
.hero-svg .spark { fill: color-mix(in srgb, var(--accent-soft) 70%, #fff); opacity: .85; }

.cta--hero {
  display: inline-block; background: var(--accent); color: #fff;
  padding: .72rem 1.5rem; border-radius: var(--radius); font-weight: 700;
  text-decoration: none; box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}
.cta--hero:hover { background: var(--accent-soft); color: #14161b; }

.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: .7rem; margin: -1.5rem -1.1rem 2.4rem; padding: 0 1.6rem;
  position: relative; z-index: 2;
}
.stat {
  background: var(--paper); border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius); padding: .8rem .95rem; box-shadow: var(--shadow);
}
.stat-k {
  display: block; font-size: .74rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: .2rem;
}
.stat-v { display: block; font-weight: 700; font-size: 1.12rem; }

/* Section rhythm: an H2 that is only bigger text does not separate anything. */
main h2 {
  margin-top: 2.9rem; padding-top: .55rem; position: relative;
}
main h2::before {
  content: ""; position: absolute; top: 0; left: 0; width: 2.4rem; height: 3px;
  background: var(--accent); border-radius: 2px;
}
main > p, main > ul, main > ol { max-width: var(--measure); }

.endcta {
  margin: 3rem -1.1rem 0; padding: 1.9rem 1.6rem;
  background: var(--paper-soft); border: 1px solid var(--line);
  border-left: 4px solid var(--accent); border-radius: var(--radius);
}
.endcta-note { margin: 0 0 .9rem; color: var(--ink-soft); max-width: 58ch; }
.cta--big {
  display: inline-block; background: var(--accent); color: #fff;
  padding: .75rem 1.6rem; border-radius: var(--radius);
  font-weight: 700; text-decoration: none;
}
.cta--big:hover { background: var(--accent-soft); color: #14161b; }

.site-foot {
  background: #14161b; color: #b9bdc6; border-top: 3px solid var(--accent);
}
.site-foot a { color: #dfe2e8; }
.site-foot a:hover { color: var(--accent-soft); }
.site-foot .footer-name, .site-foot .footer-heading { color: #fff; }
.site-foot .chip {
  background: rgba(255, 255, 255, .09); color: #e7e9ee;
  border: 1px solid rgba(255, 255, 255, .16);
}

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding: 2rem 1.2rem; gap: 1.4rem; }
  .hero-art { order: -1; }
  .hero-svg { max-width: 170px; }
  .stats { margin: -1rem -1.1rem 2rem; padding: 0 1.2rem; }
  .endcta { padding: 1.4rem 1.2rem; }
}
