:root {
  --bg: #0f1115;
  --card: #161922;
  --text: #e6e8eb;
  --muted: #9aa3af;
  --accent: #4f8cff;
  --border: #262b36;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

header.site .brand {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
}

header.site nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 16px;
  font-size: 14px;
}

header.site nav a:hover,
header.site nav a.active {
  color: var(--text);
}

h1 {
  font-size: 26px;
  margin: 0 0 6px;
}

h2 {
  font-size: 18px;
  margin: 32px 0 10px;
  color: var(--text);
}

.meta {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 28px;
}

p {
  margin: 0 0 14px;
  color: #d6d9de;
}

ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: #d6d9de;
}

li {
  margin-bottom: 6px;
}

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

.card .title {
  font-weight: 600;
  margin-bottom: 4px;
}

.card .desc {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.links {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.links a {
  display: block;
  text-decoration: none;
  color: inherit;
}

footer.site {
  margin-top: 48px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
}

a {
  color: var(--accent);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 20px;
  font-size: 14px;
}

.fee-table th,
.fee-table td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
}

.fee-table th {
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
