:root {
  --bg: #0d0d0b;
  --surface: #151511;
  --ink: #f2efe6;
  --muted: #9f9a8f;
  --line: #2a2a22;
  --accent: #d7c34c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(215, 195, 76, 0.06), transparent 18%),
    var(--bg);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
}

.shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 26px 20px 60px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.brand,
.nav a {
  text-decoration: none;
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand {
  color: var(--accent);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.nav a {
  color: var(--muted);
}

.hero {
  padding: 48px 0 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.02;
}

.lead {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.panel {
  margin-top: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px;
}

.panel-title {
  margin: 0 0 10px;
  color: var(--accent);
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel p,
.panel li {
  color: var(--muted);
}

.list {
  margin: 0;
  padding-left: 18px;
}
