:root {
  --bg: #0a0f0d;
  --panel: #121c17;
  --border: #1e2e26;
  --text: #dce8e0;
  --muted: #7a9488;
  --accent: #2ec4b6;
  --accent-2: #e9a319;
  --sans: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
  --mono: "JetBrains Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  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.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

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

.hero {
  padding: 2rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.lede {
  font-size: 1.35rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.tagline {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.55rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--accent);
  color: #041210;
}

.btn-primary:hover { background: var(--accent-2); color: #141008; }

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

section { margin-bottom: 2.25rem; }

h2 {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-note {
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-family: var(--serif);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  border: 1px solid var(--border);
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

th {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

tr:last-child td { border-bottom: none; }

.stack code {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--muted);
}

footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--serif);
}

.fine {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  th, td { display: block; width: 100%; }
  th { padding-bottom: 0.25rem; border-bottom: none; }
  td { padding-top: 0; padding-bottom: 1rem; }
}
