:root {
  --bg: #100e0b;
  --ink: #f6efe2;
  --muted: #b7aa90;
  --line: #3c3428;
  --accent: #e39a3c;
  --accent-ink: #1b140c;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Georgia, serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}
code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.92em;
  background: #1c1812;
  padding: 0.1em 0.35em;
  border-radius: 0.3em;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 6vw;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(10px);
}
.logo { color: var(--ink); text-decoration: none; font-weight: 750; letter-spacing: 0.04em; }
nav { display: flex; gap: 1.1rem; align-items: center; }
nav a { color: var(--muted); text-decoration: none; }
.cta {
  background: var(--accent);
  color: var(--accent-ink) !important;
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-family: "Segoe UI", sans-serif;
}
.ghost {
  color: var(--ink);
  margin-left: 0.75rem;
}
.hero, section, footer { padding: 3.5rem 6vw; max-width: 56rem; }
.hero { max-width: none; padding-right: 12vw; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); font-size: 0.78rem; font-family: "Segoe UI", sans-serif; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.12; margin: 0.3rem 0 1rem; max-width: 18ch; }
.lede { max-width: 42rem; color: var(--muted); font-size: 1.12rem; }
.actions { margin-top: 1.75rem; font-family: "Segoe UI", sans-serif; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
  max-width: none;
  padding-top: 0;
}
.grid article {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem 1.3rem;
  background: #17130f;
}
h2 { margin-top: 0; }
.steps { padding-left: 1.2rem; }
.warn {
  border-left: 3px solid var(--accent);
  padding: 0.6rem 0.9rem;
  background: #1c160f;
}
dl { display: grid; gap: 0.85rem; }
dt { font-weight: 700; font-family: "Segoe UI", sans-serif; }
dd { margin: 0.2rem 0 0; color: var(--muted); }
footer { border-top: 1px solid var(--line); color: var(--muted); font-size: 0.92rem; }
