:root {
  --bg: #0f1115;
  --bg-alt: #14171d;
  --surface: #1a1e26;
  --border: #262b35;
  --text: #e6e8eb;
  --muted: #9aa1ad;
  --accent: #c8a96a;
  --accent-soft: rgba(200, 169, 106, 0.14);
  --max: 1100px;
  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --mono: "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--accent);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site {
  border-bottom: 1px solid var(--border);
  background: rgba(15, 17, 21, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--serif);
  font-style: italic;
}

.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.5px;
}

.links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
}

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

.links a:hover {
  color: var(--text);
}

@media (max-width: 640px) {
  .links {
    display: none;
  }
}

/* Hero */
.hero {
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin: 0 0 18px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
}

.lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 32px;
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.button.primary {
  background: var(--accent);
  color: #1a1410;
  border-color: var(--accent);
}

.button.primary:hover {
  background: #d8b97a;
  color: #1a1410;
  border-color: #d8b97a;
}

.button.ghost {
  background: transparent;
  color: var(--text);
}

.button.ghost:hover {
  background: var(--surface);
  color: var(--text);
}

.tagline {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Sections */
.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.section.alt {
  background: var(--bg-alt);
}

.section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 38px);
  letter-spacing: -0.3px;
  margin: 0 0 24px;
}

.section p {
  color: var(--muted);
  margin: 0 0 16px;
}

.section p strong {
  color: var(--text);
  font-weight: 600;
}

/* Two-column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 760px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.bullets li {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  font-size: 15px;
}

/* Audience cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 860px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 10px;
}

.card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

/* Flow */
.flow {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

@media (max-width: 900px) {
  .flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .flow {
    grid-template-columns: 1fr;
  }
}

.flow li {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}

.flow .step {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 1px;
}

.flow h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  margin: 8px 0 8px;
}

.flow p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Phases */
.status-lede {
  max-width: 640px;
  margin-bottom: 32px !important;
}

.phases {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (max-width: 760px) {
  .phases {
    grid-template-columns: 1fr;
  }
}

.phases li {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  position: relative;
}

.phases li.done {
  border-color: rgba(200, 169, 106, 0.35);
}

.badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 12px;
}

.badge.soon {
  background: rgba(154, 161, 173, 0.14);
  color: var(--muted);
}

.badge.later {
  background: rgba(154, 161, 173, 0.08);
  color: var(--muted);
}

.phases h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 8px;
}

.phases p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Claude / code section */
.claude .code {
  background: #0a0c10;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin: 0;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  color: #cfd3da;
}

.claude .code code {
  font-family: inherit;
}

/* Footer */
footer.site {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

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

::selection {
  background: var(--accent-soft);
  color: var(--text);
}
