:root {
  --bg: #0e1114;
  --ink: #e8e4db;
  --muted: #9a9488;
  --line: #262b30;
  --card: #161a1e;
  --accent: #c8b48a;
  --ok: #7dba8a;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  background: radial-gradient(1200px 700px at 10% -10%, #1b2228 0%, var(--bg) 55%);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.6;
}
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  z-index: 0;
}
.wrap { width: min(980px, calc(100% - 40px)); margin: 0 auto; position: relative; z-index: 1; }
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 10px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .02em;
}
.mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #8d7350);
  box-shadow: 0 0 0 4px rgba(200, 180, 138, .12);
}
nav { display: flex; gap: 22px; }
nav a, .foot a { color: var(--muted); text-decoration: none; font-size: 15px; }
nav a:hover, .foot a:hover { color: var(--ink); }
.hero { padding: 72px 0 36px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  color: var(--accent);
  font-family: ui-sans-serif, system-ui, sans-serif;
}
h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 550;
  margin: 12px 0 18px;
  letter-spacing: -.02em;
}
.lede, .article p { font-size: 19px; color: #d5d0c6; max-width: 42rem; }
.cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 22px; }
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #16140f;
  text-decoration: none;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
}
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(125, 186, 138, .7);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(125, 186, 138, .55); }
  70% { box-shadow: 0 0 0 8px rgba(125, 186, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(125, 186, 138, 0); }
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 0 50px;
}
.card {
  background: color-mix(in srgb, var(--card) 88%, transparent);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.card h2 { margin: 0 0 8px; font-size: 22px; }
.card p { margin: 0; color: var(--muted); }
.band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #171c20, #12161a);
  margin-bottom: 60px;
}
.band h2 { margin: 0 0 8px; font-size: 26px; }
.band p { margin: 0; color: var(--muted); }
.article { padding: 56px 0 80px; }
.article h2 { margin-top: 36px; }
.article ul { color: #d5d0c6; padding-left: 1.1em; }
.foot {
  display: flex;
  justify-content: space-between;
  padding: 18px 0 36px;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  border-top: 1px solid var(--line);
}
@media (max-width: 800px) {
  .grid, .band, .nav { display: block; }
  nav { margin-top: 16px; display: flex; }
  .hero { padding-top: 40px; }
}
