/* hotkeys.io - near black, hairlines, one accent. See kb HotkeysWebSite.yml 20260921153408 */
:root {
  --bg: #08090a; --raised: #0e1012; --code: #0b0c0e;
  --line: rgba(255,255,255,0.08); --line2: rgba(255,255,255,0.15);
  --text: #f2f3f5; --text2: #c3c7ce; --muted: #8b9099; --dim: #5d636c;
  --accent: #ff3b3b; --accent-soft: rgba(255,59,59,0.14); --glow: rgba(255,59,59,0.5); --ok: #4ade80; --no: #4a4f57; --blue: #9db5ff;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, monospace;
  --maxw: 1120px; --r: 8px; --gutter: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body { margin: 0; background: var(--bg); color: var(--text); font: 16px/1.65 var(--sans); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
a { color: var(--text); text-decoration: none; }
a:hover { color: #fff; }
p a, li a, td a { text-decoration: underline; text-decoration-color: var(--line2); text-underline-offset: 3px; }
p a:hover, li a:hover, td a:hover { text-decoration-color: var(--accent); }
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; color: #fff; margin: 0; }
code, pre, kbd, samp { font-family: var(--mono); font-size: 0.9em; }
code { color: #e6e8ec; background: rgba(255,255,255,0.07); padding: 1px 6px; border-radius: 5px; }
pre { margin: 0; background: var(--code); border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; overflow: auto; line-height: 1.55; font-size: 13.5px; color: #d9dde4; }
pre code { background: none; padding: 0; color: inherit; font-size: inherit; }
.y { color: #9db5ff; } .m { color: #ff7b72; } .s { color: #a5e0a0; } .c { color: #5d636c; font-style: italic; } .k { color: #fff; } .d { color: #7fd1ff; }
kbd { display: inline-block; min-width: 26px; text-align: center; padding: 2px 8px 3px; font-size: 12.5px; line-height: 1.3; color: #fff; background: #161a1f; border: 1px solid var(--line2); border-bottom: 2px solid rgba(255,255,255,0.28); border-radius: 6px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.06); transition: transform .08s ease, border-bottom-width .08s ease, background .15s ease; vertical-align: middle; }
kbd:hover, kbd.press { transform: translateY(1px); border-bottom-width: 1px; background: var(--accent-soft); border-color: var(--accent); color: #ffb3b0; box-shadow: 0 0 12px var(--glow); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.muted { color: var(--muted); }
.accent { color: var(--accent); }
.small { font-size: 14px; }

.page { position: relative; z-index: 1; }

/* hero stage and the lizard canvas, the canvas covers the whole main block so the lizard can leave the stage */
main.wrap { position: relative; }
#lizard { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 3; pointer-events: none; }
.hero > div:first-child { position: relative; z-index: 1; }
.stage { min-height: 480px; }

/* benefit cards, polar style, dark fills on black, line icons that draw themselves in */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.benefits > div { background: var(--raised); border-radius: 12px; padding: 28px 26px 26px; min-height: 330px; display: flex; flex-direction: column; transition: background .25s, transform .25s; }
.benefits > div:hover { background: #14161a; transform: translateY(-2px); }
.benefits svg { width: 120px; height: 120px; color: #fff; margin: 4px 0 auto; }
@keyframes drawin { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
.benefits.in svg [pathLength] { stroke-dasharray: 1; animation: drawin 1.4s ease both; }
.benefits.in svg [pathLength]:nth-child(2) { animation-delay: .4s; } .benefits.in svg [pathLength]:nth-child(3) { animation-delay: .8s; }
.benefits > div:hover svg { color: #ff8a80; }
.benefits h3 { font-size: 18px; margin: 28px 0 8px; }
.benefits p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.demo-wide { margin-top: 8px; }
.demo-wide .window pre { min-height: 96px; }

/* header */
header.top { position: sticky; top: 0; z-index: 20; background: rgba(8,9,10,0.72); backdrop-filter: saturate(140%) blur(14px); -webkit-backdrop-filter: saturate(140%) blur(14px); border-bottom: 1px solid var(--line); }
header.top .wrap { display: flex; align-items: center; gap: 28px; height: 60px; }
.brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
.brand img { width: 26px; height: 26px; border-radius: 6px; }
header.top nav { display: flex; gap: 22px; margin-left: 8px; }
header.top nav a { color: var(--muted); font-size: 14.5px; }
header.top nav a:hover { color: #fff; }
header.top .right { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.btn { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 18px; border-radius: 9px; font-weight: 600; font-size: 14.5px; color: #fff; background: linear-gradient(180deg, #1f2227 0%, #121417 100%); border: 1px solid rgba(255,255,255,0.12); box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 1px 2px rgba(0,0,0,0.5); white-space: nowrap; transition: border-color .15s, background .15s, transform .08s, box-shadow .15s; }
.btn:hover { border-color: rgba(255,255,255,0.28); background: linear-gradient(180deg, #262a30 0%, #16181c 100%); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn.primary { background: linear-gradient(180deg, #ff7b7b 0%, #ff5555 40%, #e33a3a 100%); border-color: rgba(255,120,120,0.9); color: #fff; text-shadow: 0 1px 0 rgba(0,0,0,0.25); box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -1px 0 rgba(0,0,0,0.25), 0 1px 3px rgba(0,0,0,0.6), 0 0 22px rgba(255,80,80,0.35); }
.btn.primary:hover { background: linear-gradient(180deg, #ff8c8c 0%, #ff6262 40%, #ec4343 100%); border-color: #ff9a9a; box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.25), 0 2px 6px rgba(0,0,0,0.6), 0 0 34px rgba(255,80,80,0.55); }
.btn.accent { background: linear-gradient(180deg, #ff5a5a 0%, #d61f1f 100%); border-color: #ff6b6b; color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 1px 3px rgba(0,0,0,0.6); }
.btn.accent:hover { background: linear-gradient(180deg, #ff6f6f 0%, #e22626 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 2px 16px var(--glow); }
.btn.small { height: 34px; padding: 0 14px; font-size: 13.5px; }
.btn.block { width: 100%; justify-content: center; }
.btn svg { width: 16px; height: 16px; }

/* hero */
.hero { padding: 72px 0 40px; display: grid; grid-template-columns: 1fr 0.95fr; gap: 40px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); letter-spacing: 0.01em; margin-bottom: 22px; }
.eyebrow i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; box-shadow: 0 0 0 3px var(--accent-soft), 0 0 10px var(--glow); }
.hero h1 { font-size: 58px; line-height: 1.04; letter-spacing: -0.03em; }
.hero h1 span { display: block; color: var(--dim); font-weight: 500; font-size: 0.66em; margin-top: 8px; letter-spacing: -0.02em; }
.hero .lead { font-size: 19px; line-height: 1.55; color: var(--text2); margin: 22px 0 30px; max-width: 520px; }
.cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* demo window */
.window { background: var(--code); border: 1px solid var(--line2); border-radius: 12px; overflow: hidden; box-shadow: 0 0 0 1px rgba(0,0,0,0.6), 0 40px 90px -30px rgba(0,0,0,0.9); }
.window .bar { display: flex; align-items: center; gap: 7px; padding: 10px 14px; border-bottom: 1px solid var(--line); font-size: 12.5px; color: var(--muted); font-family: var(--mono); }
.window .bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; background: #3a3f47; }
.window .bar b { margin-left: 8px; font-weight: 500; color: var(--text2); }
.window .bar .live { margin-left: auto; color: var(--dim); display: inline-flex; align-items: center; gap: 6px; }
.window .bar .live i { width: 6px; height: 6px; background: var(--ok); animation: blink 2s infinite; }
.window pre { border: 0; border-radius: 0; min-height: 132px; padding: 18px 20px 12px; font-size: 13.5px; white-space: pre-wrap; word-break: break-word; }
.window pre .cur { display: inline-block; width: 8px; height: 1.05em; background: var(--accent); box-shadow: 0 0 8px var(--glow); vertical-align: -3px; animation: blink 1s steps(1) infinite; margin-left: 1px; }
.window .row { display: flex; align-items: center; gap: 12px; padding: 12px 20px 16px; border-top: 1px solid var(--line); min-height: 58px; font-size: 14px; color: var(--muted); }
.window .row .keys { display: inline-flex; gap: 5px; }
.window .row .keys kbd { font-size: 13px; padding: 3px 9px 4px; }
.window .row .out { opacity: 0; transform: translateX(-4px); transition: opacity .25s, transform .25s; display: inline-flex; align-items: center; gap: 8px; }
.window .row .out.on { opacity: 1; transform: none; }
.window .row .out b { color: var(--ok); font-weight: 600; }
.window .row .out .tag { font-size: 11px; color: var(--accent); border: 1px solid rgba(255,59,59,0.4); border-radius: 4px; padding: 0 6px; }
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* sections */
section { padding: 96px 0; border-top: 1px solid var(--line); }
section:first-of-type { border-top: 0; }
.rail { display: grid; grid-template-columns: 240px 1fr; gap: 48px; }
.rail .label { color: var(--muted); font-size: 14px; letter-spacing: 0.01em; position: sticky; top: 84px; align-self: start; }
.rail .label b { display: block; color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 6px; }
section h2 { font-size: 40px; line-height: 1.1; letter-spacing: -0.03em; max-width: 720px; }
section h2 + p, section .sub { color: var(--muted); font-size: 18px; max-width: 640px; margin: 18px 0 44px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.steps > div { background: var(--bg); padding: 24px; }
.steps .n { font-family: var(--mono); color: var(--accent); font-size: 12px; margin-bottom: 12px; }
.steps h3 { font-size: 17px; margin-bottom: 8px; }
.steps p { color: var(--muted); margin: 0 0 14px; font-size: 14.5px; }
.steps pre { font-size: 12.5px; padding: 12px 14px; white-space: pre-wrap; word-break: break-word; }

/* feature grid, shared hairlines, no fills */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.grid > div { background: var(--bg); padding: 26px 24px 28px; transition: background .2s; }
.grid > div:hover { background: var(--raised); }
.grid h3 { font-size: 16.5px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.grid p { margin: 0; color: var(--muted); font-size: 14.5px; }
.grid p code { font-size: 12.5px; }
.tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.02em; padding: 1px 7px; border-radius: 4px; vertical-align: middle; }
.tag.free { color: var(--blue); background: rgba(157,181,255,0.14); }
.ico { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* examples tabs */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 0; overflow-x: auto; }
.tabs button { background: none; border: 0; color: var(--muted); font: 600 14px var(--sans); padding: 10px 14px; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; }
.tabs button:hover { color: #fff; }
.tabs button.on { color: #fff; border-bottom-color: var(--accent); }
.panes pre { border-top-left-radius: 0; border-top-right-radius: 0; border-top: 0; padding: 22px 24px; font-size: 13.5px; }
.panes > div { display: none; } .panes > div.on { display: block; }
.panes p { color: var(--muted); font-size: 14.5px; margin: 14px 0 0; }

/* comparison table, polar style */
table { width: 100%; border-collapse: collapse; font-size: 15px; }
th, td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--muted); font-weight: 600; font-size: 13px; letter-spacing: 0.02em; }
tr:last-child td { border-bottom: 0; }
.compare { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.compare th:nth-child(2), .compare th:nth-child(3) { color: #fff; font-size: 15px; }
.compare td:nth-child(2), .compare td:nth-child(3) { width: 27%; color: var(--text2); }
.compare td:first-child { color: var(--text); }
.compare .yes { color: var(--ok); } .compare .no { color: var(--no); }
.compare .yes::before { content: "\2713\00a0"; } .compare .no::before { content: "\2014\00a0"; }
.compare td small { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
.compare th, .compare td { padding: 14px 18px; }
.compare tbody tr:hover td { background: var(--raised); }

/* positioning prose */
.vs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin-top: 28px; }
.vs > div { background: var(--bg); padding: 22px 24px; }
.vs h4 { font-size: 15px; margin-bottom: 6px; }
.vs p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.plan { background: var(--bg); padding: 28px 26px 26px; display: flex; flex-direction: column; }
.plan.hot { background: var(--raised); box-shadow: inset 0 1px 0 var(--accent), inset 0 30px 60px -50px var(--glow); }
.plan h3 { font-size: 15px; color: var(--muted); font-weight: 600; letter-spacing: 0.02em; }
.plan .price { font-size: 40px; font-weight: 600; letter-spacing: -0.03em; color: #fff; margin: 10px 0 2px; line-height: 1; }
.plan .price small { font-size: 15px; color: var(--muted); font-weight: 500; letter-spacing: 0; margin-left: 4px; }
.plan .per { color: var(--muted); font-size: 13.5px; min-height: 20px; }
.plan ul { list-style: none; padding: 0; margin: 22px 0 26px; color: var(--text2); font-size: 14.5px; flex: 1; }
.plan li { padding: 6px 0 6px 22px; position: relative; border-top: 1px solid var(--line); }
.plan li::before { content: "\2713"; position: absolute; left: 2px; color: var(--ok); font-size: 12px; top: 8px; }
.plan li.dash::before { content: "\2014"; color: var(--no); }
.plan .btn { align-self: stretch; justify-content: center; }
.plan .foot { color: var(--dim); font-size: 12.5px; margin-top: 12px; text-align: center; }
.fine { color: var(--muted); font-size: 13.5px; margin-top: 18px; max-width: 760px; }

/* download */
.dl { display: grid; grid-template-columns: 1.1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.dl > div { background: var(--bg); padding: 28px 26px; }
.dl h3 { font-size: 20px; margin-bottom: 6px; }
.dl p { color: var(--muted); font-size: 14.5px; margin: 0 0 18px; }
.dl pre { margin-top: 14px; font-size: 13px; padding: 12px 14px; }
.dl .ver { font-family: var(--mono); font-size: 12.5px; color: var(--dim); margin-top: 12px; }
.dl .store-row { grid-column: 1 / -1; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.dl .store-row p { margin: 0; max-width: 640px; }
.dl .store-row p b { color: var(--text); font-weight: 600; }
.store img { display: block; height: 44px; opacity: 0.9; transition: opacity .15s; }
.store:hover img { opacity: 1; }

/* copy button over a command block */
.cmd { position: relative; }
.cmd .copy { position: absolute; top: 10px; right: 10px; display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 10px; border-radius: 7px; font: 600 12px var(--sans); color: var(--muted); background: linear-gradient(180deg, #1f2227 0%, #121417 100%); border: 1px solid rgba(255,255,255,0.12); cursor: pointer; opacity: 0.8; transition: opacity .15s, color .15s, border-color .15s; }
.cmd .copy:hover { opacity: 1; color: #fff; border-color: rgba(255,255,255,0.28); }
.cmd .copy:active { transform: translateY(1px); }
.cmd .copy svg { width: 13px; height: 13px; }
.cmd .copy.done { opacity: 1; color: #ffb3b0; border-color: var(--accent); }
.copy.bare { display: inline-flex; align-items: center; margin-left: 8px; padding: 4px; border: 0; background: none; color: var(--dim); cursor: pointer; vertical-align: -4px; transition: color .15s; }
.copy.bare:hover { color: #fff; }
.copy.bare svg { width: 14px; height: 14px; }
.copy.bare.done { color: #ffb3b0; }

/* faq */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 18px 0; font-weight: 600; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--text); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--dim); font-weight: 400; font-size: 20px; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 0 0 18px; color: var(--muted); font-size: 15px; max-width: 760px; }
.faq details pre { margin: 0 0 18px; max-width: 760px; font-size: 12.5px; padding: 12px 14px; }

/* outro, the artwork as a closing band */
.outro { text-align: center; padding: 40px 0 72px; position: relative; overflow: hidden; }
.outro img { width: min(420px, 80vw); height: auto; display: block; margin: 0 auto; }
.outro h2 { max-width: none; margin: -10px auto 10px; }
.outro p { color: var(--muted); font-size: 17px; margin: 0 auto 26px; max-width: none; }
.outro .cta { justify-content: center; }

/* footer */
footer { border-top: 1px solid var(--line); padding: 36px 0 44px; color: var(--dim); font-size: 13.5px; }
footer .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; }
footer nav { display: flex; gap: 20px; flex-wrap: wrap; }
footer nav a { color: var(--muted); }
footer nav a:hover { color: #fff; }
footer .copy { margin-left: auto; }

/* docs */
.docs { display: grid; grid-template-columns: 240px 1fr; gap: 56px; padding: 48px 0 96px; }
.docs aside { position: sticky; top: 80px; align-self: start; max-height: calc(100vh - 100px); overflow: auto; font-size: 14px; }
.docs aside b { display: block; color: var(--dim); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; margin: 18px 0 6px; }
.docs aside b:first-child { margin-top: 0; }
.docs aside a { display: block; color: var(--muted); padding: 4px 0; }
.docs aside a:hover, .docs aside a.on { color: #fff; }
.docs main { min-width: 0; }
.docs main h1 { font-size: 40px; letter-spacing: -0.03em; margin-bottom: 10px; }
.docs main .sub { margin-bottom: 40px; }
.docs main h2 { font-size: 26px; letter-spacing: -0.02em; padding-top: 40px; margin-top: 24px; border-top: 1px solid var(--line); margin-bottom: 14px; }
.docs main h3 { font-size: 17px; margin: 30px 0 10px; }
.docs main p, .docs main li { color: var(--text2); font-size: 15.5px; }
.docs main p { margin: 0 0 14px; max-width: 760px; }
.docs main ul { padding-left: 20px; margin: 0 0 14px; }
.docs main li { margin: 4px 0; }
.docs main pre { margin: 14px 0 18px; }
.docs main table { margin: 10px 0 20px; font-size: 14.5px; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.docs main td code { white-space: nowrap; }
.docs main .note { border-left: 2px solid var(--accent); padding: 10px 16px; margin: 16px 0 20px; color: var(--text2); font-size: 14.5px; background: var(--raised); border-radius: 0 var(--r) var(--r) 0; }
.docs main .note p { margin: 0; }
h2 a.anchor, h3 a.anchor { color: var(--dim); margin-left: 8px; font-weight: 400; opacity: 0; }
h2:hover a.anchor, h3:hover a.anchor { opacity: 1; }

/* legal and simple pages */
.simple { max-width: 760px; margin: 0 auto; padding: 56px var(--gutter) 96px; }
.simple h1 { font-size: 34px; margin-bottom: 8px; }
.simple h2 { font-size: 20px; margin: 32px 0 10px; }
.simple h3 { font-size: 16px; margin: 22px 0 8px; }
.simple p, .simple li { color: var(--text2); font-size: 15px; }
.simple ol, .simple ul { padding-left: 22px; }
.simple .center { text-align: center; }
.simple .mail { display: flex; align-items: center; gap: 12px; margin: 26px 0 0; font-size: 17px; }
.simple .mail code { font-size: 16px; padding: 6px 10px; }
.simple .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 26px 0; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .benefits.in svg [pathLength] { animation: none; }
  .window pre .cur, .window .bar .live i { animation: none; }
  html { scroll-behavior: auto; }
}

/* responsive */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; gap: 24px; padding-top: 48px; }
  .stage { min-height: 300px; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 46px; }
  .rail { grid-template-columns: 1fr; gap: 20px; }
  .rail .label { position: static; }
  .grid, .steps, .pricing { grid-template-columns: repeat(2, 1fr); }
  .docs { grid-template-columns: 1fr; gap: 24px; }
  .docs aside { position: static; max-height: none; display: flex; flex-wrap: wrap; gap: 4px 16px; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
  .docs aside b { width: 100%; }
  header.top nav { display: none; }
}
@media (max-width: 640px) {
  :root { --gutter: 16px; }
  .hero h1 { font-size: 38px; }
  .hero .lead { font-size: 17px; }
  section { padding: 64px 0; }
  section h2 { font-size: 30px; }
  .grid, .steps, .pricing, .dl, .vs, .benefits { grid-template-columns: 1fr; }
  .benefits > div { min-height: 0; }
  .benefits svg { width: 80px; height: 80px; }
  .compare td:nth-child(2), .compare td:nth-child(3) { width: auto; }
  .compare th, .compare td { padding: 12px 10px; font-size: 14px; }
  table { font-size: 14px; }
  .window pre { font-size: 12.5px; }
  footer .copy { margin-left: 0; }
}