:root {
  --bg: #26262A; --panel: #313137; --panel2: #34343A;
  --text: #F2EFEA; --muted: #A9A6A2; --line: #3E3E45;
  --accent: #EF4133; --accent2: #66CCE3; --good: #18A850; --warn: #F5A524;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: "Avenir Next", Avenir, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px; line-height: 1.6;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 28px 22px 80px 22px; }
header.site { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; font-size: 21px; font-weight: 800; letter-spacing: -0.02em; }
.brand span { color: var(--accent); }
nav.site { margin-left: auto; display: flex; gap: 6px; flex-wrap: wrap; }
nav.site a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 700; padding: 7px 11px; border-radius: 9px; }
nav.site a:hover, nav.site a[aria-current="page"] { color: var(--text); background: var(--panel); }
h1 { font-size: 33px; line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 10px 0; }
h2 { font-size: 21px; letter-spacing: -0.01em; margin: 40px 0 10px 0; padding-top: 22px; border-top: 1px solid var(--line); }
h3 { font-size: 17px; margin: 26px 0 6px 0; }
p, li { color: var(--muted); }
p { margin: 0 0 14px 0; }
ul { padding-left: 22px; margin: 0 0 16px 0; }
li { margin-bottom: 8px; }
b, strong { color: var(--text); font-weight: 700; }
a { color: var(--accent2); }
.lede { font-size: 19px; color: var(--text); font-weight: 600; margin-bottom: 22px; }
.updated { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; margin: 18px 0; }
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.card h3 { margin-top: 0; }
.tick { list-style: none; padding-left: 0; }
.tick li { padding-left: 28px; position: relative; }
.tick li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 6px; height: 11px; border: solid var(--good); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.gap { list-style: none; padding-left: 0; }
.gap li { padding-left: 28px; position: relative; }
.gap li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 12px; height: 2px; background: var(--warn); }
table { border-collapse: collapse; width: 100%; margin: 6px 0 18px 0; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--muted); }
th { color: var(--text); font-weight: 700; white-space: nowrap; }
label { display: block; margin: 16px 0 6px 0; color: var(--text); font-weight: 700; font-size: 15px; }
input[type=text], input[type=email], select, textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); color: var(--text);
  border-radius: 10px; padding: 11px 12px; font: inherit; font-size: 16px;
}
textarea { min-height: 150px; resize: vertical; }
button[type=submit] {
  margin-top: 20px; background: var(--accent); color: #fff; border: none;
  border-radius: 11px; padding: 13px 22px; font: inherit; font-size: 16px; font-weight: 800; cursor: pointer;
}
button[type=submit]:hover { background: #FC6261; }
:focus-visible { outline: 3px solid var(--accent2); outline-offset: 2px; }
footer.site { margin-top: 56px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
footer.site a { margin-right: 14px; }
@media (max-width: 560px) { body { font-size: 16px; } h1 { font-size: 27px; } .wrap { padding: 22px 18px 60px 18px; } }
