:root {
  --bg: #0a0c10;
  --bg2: #12161c;
  --text: #ece8e1;
  --muted: #8d96a3;
  --gold: #d4a84b;
  --line: #243040;
  --max: 1100px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Georgia, serif; background: var(--bg); color: var(--text); line-height: 1.65; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: #e8c46a; }
.site-header { position: sticky; top: 0; z-index: 5; background: rgba(10,12,16,.94); border-bottom: 1px solid var(--line); }
.header-inner { max-width: var(--max); margin: 0 auto; padding: 16px 24px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; }
.brand { font-family: "Helvetica Neue", Arial, sans-serif; font-size: 22px; font-weight: 800; }
.brand span { color: var(--gold); }
.brand small { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-left: 8px; }
nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 16px; font-family: "Helvetica Neue", Arial, sans-serif; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
nav a { color: var(--muted); text-decoration: none; }
nav a:hover, nav a.active { color: var(--text); }
.hero { max-width: var(--max); margin: 0 auto; padding: 64px 24px 48px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; }
@media(max-width:800px){ .hero { grid-template-columns: 1fr; } }
.eyebrow { font-family: "Helvetica Neue", Arial, sans-serif; font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.hero h1 { font-size: clamp(40px,6vw,64px); font-weight: normal; margin-bottom: 16px; }
.lead { font-size: 18px; color: var(--muted); max-width: 52ch; margin-bottom: 24px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }
.btn { font-family: "Helvetica Neue", Arial, sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 12px 18px; border-radius: 4px; text-decoration: none; display: inline-block; }
.btn-primary { background: var(--gold); color: #111; }
.btn-ghost { border: 1px solid var(--line); color: var(--text); }
.hero-card { background: var(--bg2); border: 1px solid var(--line); border-radius: 10px; padding: 24px; }
.hero-card h3 { font-family: "Helvetica Neue", Arial, sans-serif; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 10px; }
.small { font-size: 14px; color: var(--muted); }
.section { padding: 48px 24px; border-top: 1px solid var(--line); }
.container { max-width: var(--max); margin: 0 auto; }
h2 { font-size: 28px; font-weight: normal; margin-bottom: 20px; }
.muted { color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media(max-width:800px){ .grid-3 { grid-template-columns: 1fr; } }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media(max-width:800px){ .two-col { grid-template-columns: 1fr; } }
.card { background: var(--bg2); border: 1px solid var(--line); border-radius: 10px; padding: 22px; }
.card h3 { font-size: 18px; margin-bottom: 10px; }
.feat { list-style: none; }
.feat li { padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 15px; }
.feat li:last-child { border-bottom: none; }
.site-footer { text-align: center; padding: 32px 24px; color: var(--muted); font-size: 13px; border-top: 1px solid var(--line); }
code { font-size: 12px; color: var(--muted); }