/* ------------------------------------------------------------------ tokens */
/* Light is the paper version; dark (the default on most gaming PCs) is the night version.
   --accent is the gold used for fills (buttons, markers); --accent-text is the same hue tuned
   to pass contrast as text on the page ground. */
:root {
  --ground: #f4f2ed;
  --ground-2: #ebe8e1;
  --surface: #fdfcf9;
  --surface-2: #f2efe8;
  --ink: #16171b;
  --ink-2: #4a4b51;
  --ink-3: #6b6b70;
  --line: #dfdbd2;
  --line-2: #cbc6ba;
  --accent: #eba92c;
  --accent-text: #8a5300;
  --accent-ink: #1c1405;
  --accent-soft: rgba(214, 146, 20, 0.13);
  --hp: #cf3b2c;
  --mp: #2f5fd6;
  --ok: #1d8a4e;
  --warn: #a15c00;
  --grid: rgba(22, 23, 27, 0.06);
  --glow: rgba(235, 169, 44, 0.18);
  --stage: #15161a;
  --stage-line: #2a2c32;
  --code-bg: #111216;
  --code-ink: #dcdde2;
  --shadow: 0 1px 0 rgba(22, 23, 27, 0.04), 0 18px 40px -26px rgba(22, 23, 27, 0.45);
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ground: #0c0d10;
    --ground-2: #111317;
    --surface: #16181d;
    --surface-2: #1c1f25;
    --ink: #efece6;
    --ink-2: #aba9a4;
    --ink-3: #868480;
    --line: #24272e;
    --line-2: #33373f;
    --accent: #f2b441;
    --accent-text: #f4c264;
    --accent-ink: #1c1405;
    --accent-soft: rgba(242, 180, 65, 0.12);
    --hp: #ff5b4c;
    --mp: #6390ff;
    --ok: #4fd68c;
    --warn: #ffb62e;
    --grid: rgba(239, 236, 230, 0.045);
    --glow: rgba(242, 180, 65, 0.11);
    --stage: #08090b;
    --stage-line: #24272e;
    --shadow: 0 1px 0 rgba(0, 0, 0, 0.5), 0 24px 48px -26px rgba(0, 0, 0, 0.9);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --ground: #0c0d10;
  --ground-2: #111317;
  --surface: #16181d;
  --surface-2: #1c1f25;
  --ink: #efece6;
  --ink-2: #aba9a4;
  --ink-3: #868480;
  --line: #24272e;
  --line-2: #33373f;
  --accent: #f2b441;
  --accent-text: #f4c264;
  --accent-ink: #1c1405;
  --accent-soft: rgba(242, 180, 65, 0.12);
  --hp: #ff5b4c;
  --mp: #6390ff;
  --ok: #4fd68c;
  --warn: #ffb62e;
  --grid: rgba(239, 236, 230, 0.045);
  --glow: rgba(242, 180, 65, 0.11);
  --stage: #08090b;
  --stage-line: #24272e;
  --shadow: 0 1px 0 rgba(0, 0, 0, 0.5), 0 24px 48px -26px rgba(0, 0, 0, 0.9);
  color-scheme: dark;
}

/* ------------------------------------------------------------------ base */
:root {
  --f-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --f-body: "Archivo", system-ui, "Segoe UI", sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --gutter: clamp(16px, 4vw, 40px);
  --maxw: 1200px;
  --top-h: 60px;
}
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--top-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font: 400 16px/1.6 var(--f-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--accent-text); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
code, kbd, .mono { font-family: var(--f-mono); font-size: 0.86em; }
code { background: var(--accent-soft); padding: 0.08em 0.38em; border-radius: 4px; }
kbd {
  border: 1px solid var(--line-2); border-bottom-width: 2px; border-radius: 5px;
  padding: 0.05em 0.45em; background: var(--surface); font-size: 0.8em; color: var(--ink);
}
h1, h2, h3, h4 {
  font-family: var(--f-display); font-stretch: 75%; font-weight: 800;
  letter-spacing: -0.01em; line-height: 1; text-wrap: balance; margin: 0; color: var(--ink);
}
p { margin: 0; }
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px;
  font: 500 12.5px/1.5 var(--f-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3);
}
.eyebrow .num { color: var(--accent-text); display: inline-flex; align-items: center; gap: 12px; }
.eyebrow .num::after { content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.6; }
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ok);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ok) 22%, transparent);
}

/* ------------------------------------------------------------------ top bar */
.top {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 20;
  background: color-mix(in srgb, var(--ground) 84%, transparent);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}
.top > .wrap { display: flex; align-items: center; gap: 24px; min-height: var(--top-h); }
.mark { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); flex: none; }
.mark-bars { display: grid; gap: 3px; width: 26px; }
.mark-bars i { display: block; height: 5px; border-radius: 2px; }
.mark-bars i:first-child { background: var(--hp); }
.mark-bars i:last-child { background: var(--mp); width: 72%; }
.mark b { font: 800 21px/1 var(--f-display); font-stretch: 75%; letter-spacing: -0.01em; }
.nav { display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none; margin-left: auto; }
.nav::-webkit-scrollbar { display: none; }
.nav a {
  flex: none; color: var(--ink-2); text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 7px 11px; border-radius: 8px;
}
.nav a:hover { color: var(--ink); background: var(--surface-2); }
.nav a[aria-current="true"] { color: var(--ink); box-shadow: inset 0 -2px 0 var(--accent); border-radius: 8px 8px 0 0; }
.top .cta { flex: none; }

/* Narrow screens: the section links move into a menu that also lists every feature. */
.menu-btn {
  display: none; flex: none; font: 600 14px/1 var(--f-body); color: var(--ink);
  padding: 9px 13px; border-radius: 9px; border: 1px solid var(--line-2); background: var(--surface); cursor: pointer;
}
.menu-btn[aria-expanded="true"] { border-color: var(--accent); color: var(--accent-text); }
.menu {
  display: none; border-top: 1px solid var(--line); background: var(--ground);
  max-height: calc(100vh - var(--top-h)); overflow-y: auto; overscroll-behavior: contain;
}
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 18px 24px; padding-block: 20px 26px; }
.menu-group { display: grid; gap: 2px; align-content: start; }
.menu a { color: var(--ink-2); text-decoration: none; font-size: 15px; padding: 5px 0; }
.menu a.menu-h { color: var(--ink); font: 750 18px/1.3 var(--f-display); font-stretch: 78%; }
.menu a:hover { color: var(--accent-text); }
@media (max-width: 1000px) {
  .nav { display: none; }
  .top .cta { margin-left: auto; }
  .menu-btn { display: inline-flex; }
  .menu:not([hidden]) { display: block; }
}

/* ------------------------------------------------------------------ buttons */
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px; text-decoration: none;
  font: 650 15px/1 var(--f-body); border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}
.cta--primary {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 10px 24px -14px var(--accent);
}
.cta--primary:hover { transform: translateY(-1px); background: color-mix(in srgb, var(--accent) 86%, #fff); }
.cta--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.cta--ghost:hover { background: var(--surface-2); border-color: var(--ink-3); }
.cta--big { padding: 16px 30px; font-size: 16.5px; flex: none; }
.cta--small { padding: 10px 15px; font-size: 14px; }

/* ------------------------------------------------------------------ hero */
/* The hero and the tab guide share one grid so the window can stay pinned beside the guide. */
.hero { position: relative; border-bottom: 1px solid var(--line); }
.hero::before, .hero::after { content: ""; position: absolute; inset: 0 0 auto; height: min(100%, 1000px); pointer-events: none; }
/* The 32px grid is Tibia's tile size. */
.hero::before {
  background:
    linear-gradient(var(--grid) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(90deg, var(--grid) 1px, transparent 1px) 0 0 / 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 72% 0%, #000 25%, transparent 75%);
  mask-image: radial-gradient(ellipse 75% 70% at 72% 0%, #000 25%, transparent 75%);
}
.hero::after { background: radial-gradient(ellipse 50% 45% at 76% 22%, var(--glow), transparent 70%); }
.hero > .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid; align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(0, 540px);
  grid-template-areas: "copy stage" "stats stage" "guide stage";
  gap: clamp(32px, 4vw, 48px) clamp(32px, 5vw, 72px);
  padding-block: clamp(40px, 6vw, 80px) clamp(64px, 8vw, 112px);
}
.hero-copy { grid-area: copy; display: grid; gap: 22px; }
.hero h1 {
  font-size: clamp(46px, 6.2vw, 78px); line-height: 0.9; font-stretch: 62%; font-weight: 850;
  text-transform: uppercase; letter-spacing: 0;
}
.hero h1 span { display: block; color: var(--accent-text); }
.lede { font-size: clamp(17px, 1.5vw, 19px); line-height: 1.55; color: var(--ink-2); max-width: 46ch; }
.hero-copy .cta-row { margin-top: 4px; }

.stats { grid-area: stats; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.stats div { display: grid; gap: 2px; align-content: start; padding: 16px 16px 16px 0; border-bottom: 1px solid var(--line); }
.stats div:not(:nth-child(3n + 1)) { padding-left: 16px; border-left: 1px solid var(--line); }
.stats b { font: 800 clamp(30px, 3vw, 40px)/1 var(--f-display); font-stretch: 70%; font-variant-numeric: tabular-nums; }
.stats b small { font-size: 0.5em; font-weight: 600; margin-left: 2px; color: var(--ink-3); }
.stats span { font-size: 13.5px; line-height: 1.35; color: var(--ink-3); }

.hero-stage { grid-area: stage; position: sticky; top: calc(var(--top-h) + 16px); display: grid; gap: 12px; }
.gui-stage {
  display: flex; justify-content: center; padding: clamp(10px, 2vw, 20px);
  border: 1px solid var(--stage-line); border-radius: 18px; overflow: hidden;
  background: radial-gradient(90% 60% at 50% 0%, rgba(242, 180, 65, 0.1), transparent 70%), var(--stage);
  box-shadow: var(--shadow);
}
.hint { font-size: 13.5px; color: var(--ink-3); text-align: center; }
.hint--narrow { display: none; }

/* ---- the tab guide, beside the pinned window ---- */
.guide { grid-area: guide; display: grid; gap: 28px; padding-top: clamp(28px, 4vw, 48px); }
.guide-head { display: grid; gap: 14px; }
.guide-head h2 { font-size: clamp(34px, 4.2vw, 52px); line-height: 0.95; font-stretch: 68%; }
.guide-head p { color: var(--ink-2); font-size: 17px; max-width: 46ch; }
.tabguide { display: grid; border-top: 1px solid var(--line); }
.tg {
  position: relative; display: grid; grid-template-columns: 86px minmax(0, 1fr); gap: 4px 18px;
  padding: 16px 16px 16px 14px; text-align: left; cursor: pointer;
  border: 0; border-bottom: 1px solid var(--line); background: transparent; color: inherit; font: inherit;
  transition: background 0.12s ease;
}
.tg::before { content: ""; position: absolute; left: 0; top: -1px; bottom: -1px; width: 3px; background: transparent; }
.tg:hover { background: var(--surface-2); }
.tg[aria-pressed="true"] { background: var(--accent-soft); }
.tg[aria-pressed="true"]::before { background: var(--accent); }
.tg b { grid-row: span 2; font: 800 17px/1.35 var(--f-display); font-stretch: 75%; text-transform: uppercase; letter-spacing: 0.03em; }
.tg[aria-pressed="true"] b { color: var(--accent-text); }
.tg span { font-size: 15px; line-height: 1.5; color: var(--ink); }
.tg em { font-style: normal; font-size: 14px; line-height: 1.5; color: var(--ink-3); }
.guide-facts { display: grid; gap: 22px; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "copy" "stats" "stage" "guide"; }
  .hero-stage { position: static; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats div:not(:nth-child(3n + 1)) { padding-left: 0; border-left: 0; }
  .stats div:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
  .hint--narrow { display: block; }
  .hint--wide { display: none; }
  .tg { grid-template-columns: minmax(0, 1fr); }
  .tg b { grid-row: auto; }
  .top > .wrap { gap: 10px; }
}

/* ------------------------------------------------------------------ chapters */
.chapter { border-bottom: 1px solid var(--line); }
.chapter > .wrap { padding-block: clamp(64px, 9vw, 120px); display: grid; gap: clamp(32px, 4vw, 52px); }
.chapter.alt { background: var(--ground-2); }
.chapter-head { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 16px clamp(24px, 5vw, 72px); align-items: end; }
.chapter-head h2 { font-size: clamp(36px, 5vw, 64px); line-height: 0.95; font-stretch: 68%; margin-top: 14px; }
.chapter-head > p { color: var(--ink-2); font-size: 18px; max-width: 48ch; }

/* ---- feature cards ---- */
.features { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(14px, 1.8vw, 20px); }
.feature {
  display: flex; flex-direction: column; gap: 22px; min-width: 0;
  padding: clamp(22px, 2.6vw, 32px); border: 1px solid var(--line); border-radius: 16px;
  background: var(--surface); box-shadow: var(--shadow);
}
.feature > .sheet { margin-top: auto; }
.feature-head { display: grid; gap: 8px; }
.feature-head h3 { font-size: clamp(25px, 2.4vw, 31px); line-height: 1.05; font-stretch: 75%; font-weight: 750; }
.feature-head .tag { color: var(--ink-2); font-size: 16.5px; line-height: 1.45; }
.feature--wide {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px clamp(28px, 4vw, 56px); align-items: center;
}
.features > .feature--wide { grid-column: 1 / -1; }
.feature--wide > .sheet { margin-top: 0; }
.feature--wide > .code { grid-column: 1 / -1; }
.feature-main { display: grid; gap: 22px; align-content: start; }

.points { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.points li { position: relative; padding-left: 24px; font-size: 16px; line-height: 1.5; }
.points li::before {
  content: ""; position: absolute; left: 3px; top: 0.56em;
  width: 7px; height: 7px; border-radius: 1px; background: var(--accent); transform: rotate(45deg);
}

/* ---- spec sheet: label ····· value ---- */
.sheet { display: grid; gap: 10px; padding-top: 16px; border-top: 1px solid var(--line); }
.sheet-h { font: 600 11px/1.3 var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.sheet dl { margin: 0; display: grid; gap: 8px; }
.sheet .row { display: flex; align-items: baseline; gap: 10px; }
.sheet .row::before { content: ""; order: 1; flex: 1 1 16px; min-width: 16px; border-bottom: 1px dotted var(--line-2); }
.sheet dt { order: 0; flex: 0 1 auto; color: var(--ink-2); font-size: 14.5px; }
.sheet dd { order: 2; flex: 0 1 auto; min-width: 0; margin: 0; text-align: right; font: 600 13.5px/1.45 var(--f-mono); color: var(--ink); font-variant-numeric: tabular-nums; }

/* ------------------------------------------------------------------ code */
.code { background: var(--code-bg); color: var(--code-ink); border-radius: 14px; border: 1px solid var(--stage-line); overflow: hidden; min-width: 0; }
.code-h { display: flex; justify-content: space-between; gap: 12px; padding: 10px 16px; border-bottom: 1px solid #23252c; font: 500 12px/1.3 var(--f-mono); color: #8d909a; }
.code pre { margin: 0; padding: 16px 18px; overflow-x: auto; font: 400 13px/1.65 var(--f-mono); tab-size: 2; }
.code .k { color: #ff9f7a; }
.code .s { color: #a6e3a1; }
.code .c { color: #6f7380; font-style: italic; }
.code .n { color: #f4c264; }
.code .f { color: #89b4ff; }

/* ------------------------------------------------------------------ getting started */
.steps {
  list-style: none; margin: 0; padding: 0; counter-reset: step;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line);
}
.steps li { counter-increment: step; display: grid; gap: 8px; align-content: start; padding: 24px 28px 8px 0; }
.steps li + li { padding-left: 28px; border-left: 1px solid var(--line); }
.steps li::before { content: "0" counter(step); font: 500 13px/1 var(--f-mono); color: var(--accent-text); letter-spacing: 0.06em; }
.steps b { font: 750 25px/1.1 var(--f-display); font-stretch: 75%; }
.steps span { font-size: 15.5px; line-height: 1.55; color: var(--ink-2); }

/* The offer on the sales page, and the download box on the download page. */
.cta-box {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px clamp(28px, 5vw, 64px);
  padding: clamp(24px, 4vw, 44px); border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--line));
  background: radial-gradient(120% 140% at 0% 0%, var(--glow), transparent 60%), var(--surface);
  box-shadow: var(--shadow);
}
.cta-box > div:first-child { flex: 1 1 320px; display: grid; gap: 12px; align-content: start; }
.cta-box h3 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1; font-stretch: 68%; }
.cta-box p { color: var(--ink-2); max-width: 50ch; font-size: 16.5px; }
.cta-box .points { margin-top: 6px; }

.buy { flex: 0 1 380px; display: grid; gap: 14px; }
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.plan {
  position: relative; display: grid; gap: 4px; cursor: pointer;
  padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--surface-2);
}
.plan input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.plan:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); box-shadow: inset 0 0 0 1px var(--accent); }
.plan:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 3px; }
.plan-len { font: 500 12px/1.3 var(--f-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.plan-price { font: 800 36px/1 var(--f-display); font-stretch: 70%; }
.buy-status { font-size: 14px; color: var(--ink-2); }
.buy-status.ok { color: var(--ok); }
.buy-status.bad { color: var(--hp); }
.buy-note { font-size: 13.5px; line-height: 1.5; color: var(--ink-3); }

/* ------------------------------------------------------------------ FAQ */
.faq { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(28px, 5vw, 72px); }
.faq-item { display: grid; gap: 8px; align-content: start; padding-block: 22px; border-top: 1px solid var(--line); }
.faq-item h4 { font: 750 21px/1.2 var(--f-display); font-stretch: 78%; }
.faq-item p { color: var(--ink-2); font-size: 16px; line-height: 1.55; }

/* ------------------------------------------------------------------ download page */
.muted-note { color: var(--ink-3); font-size: 15px; }
.release-problems {
  display: grid; gap: 4px; padding: 12px 16px; border-radius: 12px; font-size: 14px; color: var(--ink);
  border: 1px solid color-mix(in srgb, var(--warn) 45%, var(--line)); background: color-mix(in srgb, var(--warn) 10%, transparent);
}
.release-list { display: grid; }
.release {
  display: grid; grid-template-columns: minmax(120px, 220px) minmax(0, 1fr); gap: 10px clamp(20px, 4vw, 56px);
  padding-block: 26px; border-top: 1px solid var(--line);
}
.release:first-child { border-top: 0; padding-top: 0; }
.release h3 { font-size: 30px; line-height: 1; font-stretch: 70%; }
.release time { display: block; margin-top: 6px; font: 500 13px/1.4 var(--f-mono); color: var(--ink-3); }
.chg-tag {
  display: inline-block; margin-right: 8px; padding: 0 7px; border-radius: 4px; vertical-align: 1px;
  font: 600 11px/1.7 var(--f-mono); letter-spacing: 0.05em; text-transform: uppercase;
}
.chg-new { color: var(--ok); background: color-mix(in srgb, var(--ok) 14%, transparent); }
.chg-fixed { color: var(--mp); background: color-mix(in srgb, var(--mp) 14%, transparent); }
.chg-changed { color: var(--accent-text); background: var(--accent-soft); }
.chg-removed { color: var(--hp); background: color-mix(in srgb, var(--hp) 14%, transparent); }
/* A change with a tag is not a bullet point: the tag already marks it. */
.release .points li:has(.chg-tag) { padding-left: 0; }
.release .points li:has(.chg-tag)::before { display: none; }

/* ------------------------------------------------------------------ footer */
.foot { background: var(--ground-2); color: var(--ink-3); font-size: 14px; }
.foot .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 40px; padding-block: 40px 56px; }
.foot-brand { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.foot a { color: var(--ink-2); text-decoration: none; }
.foot a:hover { color: var(--ink); text-decoration: underline; }
.foot .mono { width: 100%; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ------------------------------------------------------------------ responsive */
@media (max-width: 960px) {
  .chapter-head, .feature--wide, .features { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .steps li, .steps li + li { padding: 20px 0; border-left: 0; }
  .steps li + li { border-top: 1px solid var(--line); }
  .faq { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) { .release { grid-template-columns: minmax(0, 1fr); } }
