:root {
  --bg: #0d0d0d;
  --panel: #161616;
  --panel-2: #1c1c1c;
  --text: #f5f5f5;
  --text-muted: #a3a3a3;
  --accent: #f2c40f;
  --accent-text: #1a1400;
  --border: #2a2a2a;
  --font-display: 'Sora', system-ui, -apple-system, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
}

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

img { max-width: 100%; }

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / nav */
header.site {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.brand span { color: var(--accent); }
nav.site-nav {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
nav.site-nav a {
  color: var(--text-muted);
}
nav.site-nav a.active,
nav.site-nav a:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--border);
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  max-width: 18ch;
  color: var(--text);
}
.hero p.lede {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 0 28px;
}
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.btn:hover { text-decoration: none; }
.btn.primary {
  background: var(--accent);
  color: var(--accent-text);
  border-color: var(--accent);
}
.btn.primary:hover { filter: brightness(1.08); }
.btn.ghost {
  color: var(--text);
  background: transparent;
}
.btn.ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Sections */
section.block {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
section.block:last-of-type { border-bottom: none; }
section.block h2 {
  font-size: 26px;
  margin-bottom: 12px;
}
section.block p.section-lede {
  color: var(--text-muted);
  max-width: 62ch;
  margin: 0 0 40px;
  font-size: 15.5px;
}

/* Feature grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.grid .card {
  background: var(--panel);
  padding: 24px;
}
.grid .card .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.grid .card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.grid .card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* Simple two-col */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 720px) {
  .split { grid-template-columns: 1fr; }
  header.site .wrap { justify-content: flex-start; }
}

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 12px;
  margin-bottom: 20px;
}
.status-pill::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}

dl.contact-list dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 20px;
}
dl.contact-list dt:first-child { margin-top: 0; }
dl.contact-list dd {
  margin: 4px 0 0;
  font-size: 16px;
}

footer.site {
  padding: 32px 0 48px;
  color: var(--text-muted);
  font-size: 13px;
}
footer.site .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
footer.site a { color: var(--text-muted); }
footer.site a:hover { color: var(--accent); }
