:root {
  --bg: #0b0c0f;
  --surface: #15171c;
  --surface-2: #1d2026;
  --border: #2a2e37;
  --text: #e7e9ee;
  --muted: #9aa0ad;
  --accent: #ff8a4c;
  --accent-2: #ffd36e;
  --max: 760px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 32px 20px 96px; }

header.site {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.logo {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  flex: 0 0 auto;
  box-shadow: 0 0 24px rgba(255, 138, 76, 0.35);
}

.brand { font-weight: 700; font-size: 18px; letter-spacing: 0.2px; }
.brand span { color: var(--muted); font-weight: 500; }

h1 { font-size: 30px; line-height: 1.2; margin: 0 0 6px; }
h2 { font-size: 20px; margin: 40px 0 12px; }
h3 { font-size: 16px; margin: 24px 0 8px; }

.lede { color: var(--muted); font-size: 17px; margin: 0 0 8px; }
.meta { color: var(--muted); font-size: 14px; margin: 0 0 8px; }

p, li { color: var(--text); }
ul { padding-left: 22px; }
li { margin: 6px 0; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 18px 0;
}

table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14.5px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--muted); font-weight: 600; }
tbody tr:last-child td { border-bottom: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0; }
.btn {
  display: inline-block;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
  color: var(--text);
  font-weight: 600;
}
.btn:hover { border-color: var(--accent); text-decoration: none; }
.btn.primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #1a0f06; border: none; }

footer.site {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}
footer.site a { color: var(--muted); }
footer.site a:hover { color: var(--text); }
