:root {
  --bg: #0c0c0f;
  --bg-elevated: #16161a;
  --bg-card: #1c1c22;
  --text: #e8e6e3;
  --text-muted: #8a8a8e;
  --text-dim: #5a5a5e;
  --accent: #4ade80;
  --red: #f87171;
  --amber: #fbbf24;
  --blue: #60a5fa;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

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

a:hover {
  color: #8bb8ff;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  background: rgba(12, 12, 15, 0.84);
}

.brand {
  color: var(--accent);
  font-family: 'DM Mono', monospace;
  letter-spacing: -0.2px;
  text-decoration: none;
}

.back-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 36px 20px 80px;
  display: grid;
  gap: 16px;
}

.hero {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}

.badge {
  display: inline-block;
  margin-bottom: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 10px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 6.2vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.8px;
}

.subtitle {
  margin: 0;
  color: var(--text-muted);
}

.meta {
  margin-top: 12px;
  color: var(--text-dim);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

p {
  margin: 0 0 10px;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

code {
  font-family: 'DM Mono', monospace;
  font-size: 0.94em;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2px 6px;
}

.notice {
  border-left: 3px solid var(--accent);
  background: rgba(74, 222, 128, 0.08);
  padding: 12px;
  border-radius: 10px;
}

.warning {
  border-left-color: var(--amber);
  background: rgba(251, 191, 36, 0.08);
}

.table {
  display: grid;
  gap: 8px;
}

.table-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  padding: 12px;
}

.label {
  font-family: 'DM Mono', monospace;
  color: var(--text-muted);
}

.value {
  color: var(--text);
}

.footer {
  margin-top: 4px;
  padding-top: 8px;
  color: var(--text-dim);
  font-size: 13px;
}

.cta-grid {
  display: grid;
  gap: 10px;
}

.cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.fake-box {
  width: 16px;
  height: 16px;
  border: 1px solid var(--text-muted);
  border-radius: 3px;
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 680px) {
  .table-row {
    grid-template-columns: 1fr;
  }
}
