.page {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.1;
}
.meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.intro {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
  margin: 40px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
h2::before {
  content: "";
  display: block;
  width: 3px;
  height: 14px;
  background: var(--coral);
  border-radius: 2px;
  flex-shrink: 0;
}
p {
  margin-bottom: 12px;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}
ul {
  padding-left: 0;
  margin-bottom: 16px;
  list-style: none;
}
li {
  margin-bottom: 8px;
  color: #666;
  font-size: 15px;
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}
li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--muted2);
  font-size: 13px;
}
strong {
  color: #aaa;
  font-weight: 600;
}
code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.06);
  color: #ccc;
  padding: 2px 7px;
  border-radius: 5px;
  border: 1px solid var(--border);
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
thead {
  background: rgba(255, 255, 255, 0.03);
}
th {
  text-align: left;
  font-weight: 600;
  color: #aaa;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
td {
  color: #666;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
tr:last-child td {
  border-bottom: none;
}
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 56px 0 32px;
}
