.eyebrow {
  font-size: var(--step-caption); text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--brass-light); margin: 0 0 var(--space-3);
}
.eyebrow--dark { color: var(--accent); }

/* ---------- hero ---------- */
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-6);
  align-items: center; padding: var(--space-7) 0 var(--space-6);
}
.hero-title {
  font-family: var(--font-display); font-weight: 600; font-size: var(--step-h1);
  line-height: 1.02; color: var(--chrome-fg, #e9dfc7); margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}
.hero-lead { max-width: 40ch; opacity: 0.85; font-size: var(--step-lead); margin-bottom: var(--space-5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-4); }
.hero-meta { font-size: var(--step-caption); opacity: 0.6; max-width: 42ch; }
.hero-meta a { color: var(--brass-light); }

.hero-demo { position: relative; display: flex; justify-content: center; }
.demo-card {
  width: min(400px, 100%); min-height: 260px; transform: rotate(var(--rot, -2deg));
  padding: var(--space-5) var(--space-5) var(--space-6);
}
.demo-date { position: absolute; top: var(--space-4); right: var(--space-5); font-size: var(--step-caption); opacity: 0.6; }
.demo-text {
  font-family: var(--font-hand-caveat); font-size: 1.7rem; line-height: 1.45;
  white-space: pre-wrap; margin-top: var(--space-5); min-height: 8.5rem;
}
.demo-caret { display: inline-block; width: 2px; background: currentColor; margin-left: 1px; animation: caret-blink 0.9s steps(1) infinite; }
@keyframes caret-blink { 50% { opacity: 0; } }
.demo-postmark {
  position: absolute; right: -14px; bottom: -14px; background: var(--paper);
  box-shadow: var(--shadow-paper); transform: rotate(8deg);
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: var(--space-6); text-align: left; }
  .hero-demo { order: -1; margin-bottom: var(--space-4); }
  .hero-title, .hero-lead, .hero-meta { max-width: none; }
}

/* ---------- how it works ---------- */
.how-section { background: var(--paper); color: var(--ink-charcoal); padding: var(--space-7) 0; }
.section-title {
  font-family: var(--font-display); font-weight: 600; font-size: var(--step-h2);
  max-width: 16ch; margin-bottom: var(--space-6); letter-spacing: -0.01em;
}
.section-title--light { color: var(--chrome-fg, #e9dfc7); }

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-5); grid-template-columns: repeat(3, 1fr); }
.step { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-3); }
.step h3 { font-family: var(--font-display); font-size: var(--step-h3); margin-bottom: 0.3em; }
.step p { opacity: 0.75; font-size: var(--step-small); max-width: 30ch; }

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

/* ---------- open source section ---------- */
.oss-section { padding: var(--space-7) 0; }
.oss-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-6); align-items: center; }
.oss-copy { opacity: 0.8; margin-bottom: var(--space-4); max-width: 46ch; }
.oss-card {
  background: #14110f; border: 1px solid rgba(233,223,199,0.12); border-radius: var(--radius-md);
  padding: var(--space-5); overflow-x: auto;
}
.code-snippet { margin: 0; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.85rem; color: #cdb27c; line-height: 1.7; }
.code-arrow { display: block; color: #8a8378; margin: 0.6em 0; }

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