:root {
  --bg: #0e1116;
  --card: #161b22;
  --ink: #f3f5f7;
  --muted: #8a94a6;
  --line: #232a35;
  --accent: #24d26d;
  --accent-soft: #133a22;
  --chip: #1e252f;
}
* { box-sizing: border-box; }
html { color-scheme: dark; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }
header.top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.brand { font-weight: 800; font-size: 20px; letter-spacing: -0.3px; color: var(--ink); }
nav a { color: var(--muted); margin-left: 18px; font-size: 14px; }
nav a:hover { color: var(--ink); }
main { padding: 36px 0 60px; }
h1 { font-size: 34px; line-height: 1.15; letter-spacing: -0.5px; margin: 0 0 12px; }
h2 { font-size: 20px; margin: 34px 0 10px; }
h3 { font-size: 16px; margin: 22px 0 6px; }
p, li { color: var(--ink); }
.lead { font-size: 18px; color: var(--muted); margin: 0 0 26px; }
.muted { color: var(--muted); }
.hero { padding: 40px 0 10px; }
.hero h1 { font-size: 44px; }
.hero .tag { display: inline-block; background: var(--accent-soft); color: var(--accent); font-weight: 700; font-size: 13px; padding: 5px 12px; border-radius: 999px; margin-bottom: 18px; }
.stores { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 8px; }
.store { display: inline-block; padding: 12px 18px; border-radius: 14px; background: var(--ink); color: #0e1116; font-weight: 700; font-size: 14px; }
.store.soon { background: var(--chip); color: var(--muted); }
.store { background: var(--accent); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin: 26px 0; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 18px; }
.card h3 { margin: 0 0 6px; font-size: 16px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.demo { background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 18px; margin: 10px 0 26px; }
.demo .q { font-weight: 700; font-size: 18px; margin: 0 0 10px; }
.bar { position: relative; background: var(--chip); border-radius: 12px; padding: 10px 14px; margin: 6px 0; overflow: hidden; display: flex; justify-content: space-between; font-size: 15px; }
.bar span.fill { position: absolute; left: 0; top: 0; bottom: 0; background: #28303c; z-index: 0; }
.bar.win span.fill { background: var(--accent-soft); }
.bar b, .bar em { position: relative; z-index: 1; font-style: normal; }
.bar.win b { font-weight: 700; }
.chipline { font-size: 12px; color: var(--muted); margin-top: 8px; }
.chip { display: inline-block; background: var(--chip); border-radius: 999px; padding: 2px 9px; font-weight: 600; color: var(--ink); }
.legal h2 { border-top: 1px solid var(--line); padding-top: 22px; }
.legal table { border-collapse: collapse; width: 100%; font-size: 14px; }
.legal th, .legal td { text-align: left; vertical-align: top; padding: 8px 10px; border-bottom: 1px solid var(--line); }
.legal th { color: var(--muted); font-weight: 600; }
.box { background: var(--accent-soft); border-radius: 14px; padding: 14px 16px; margin: 16px 0; }
.steps { counter-reset: s; padding-left: 0; list-style: none; }
.steps li { counter-increment: s; padding-left: 38px; position: relative; margin: 10px 0; }
.steps li::before { content: counter(s); position: absolute; left: 0; top: 0; width: 26px; height: 26px; border-radius: 13px; background: var(--accent); color: #fff; font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; }
footer { border-top: 1px solid var(--line); padding: 22px 0 40px; font-size: 13px; color: var(--muted); }
footer a { color: var(--muted); margin-right: 16px; }
@media (max-width: 600px) {
  .hero h1 { font-size: 34px; }
  nav a { margin-left: 12px; }
}
