:root {
  color-scheme: dark;
  --bg: #000000;
  --surface: #121214;
  --text: #f2f2f4;
  --text-muted: #8e8e93;
  --line: rgba(255, 255, 255, 0.06);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    "Segoe UI",
    sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: min(720px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.hero {
  padding: 0 0 20px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.badge {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.subtitle {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 14px;
  font-weight: 400;
}

.section {
  margin-top: 10px;
  padding: 14px 0 12px;
  border-bottom: 1px solid var(--line);
}

.section:last-of-type {
  border-bottom: none;
}

h2 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

p,
li {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

ul {
  margin: 6px 0 0;
  padding-left: 18px;
}

.footer {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-align: left;
  color: var(--text-muted);
  font-size: 12px;
}

a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.section h2 a {
  color: inherit;
  text-decoration: none;
}

.section h2 a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}
