body { min-width: 0; }

/* ── Page chrome (shared with site) ── */
.page { max-width: 1280px; margin: 0 auto; padding: 0 64px; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}
.nav-brand { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-brand .mark { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; }
.nav-brand .word {
  font-family: var(--sans); font-weight: 400;
  font-size: 13px; letter-spacing: 0.42em; text-transform: uppercase;
  opacity: 0.85;
}
.nav-links { display: flex; gap: 48px; justify-content: center; flex: 1; }
.nav-links a {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--ink); text-decoration: none;
  opacity: 0.75; transition: opacity 200ms;
}
.nav-links a:hover { opacity: 1; }
.nav-cta { flex-shrink: 0; }

.btn {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; padding: 14px 22px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--bone); cursor: pointer; text-decoration: none;
  display: inline-block; transition: background 200ms, color 200ms, border-color 200ms;
  white-space: nowrap;
}
.btn:hover { background: var(--brass); border-color: var(--brass); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* ── Stage ── */
.stage {
  min-height: calc(100vh - 200px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 0;
}

.stage-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 48px;
}
.stage-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brass);
  animation: breathe 2.6s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.78); }
}

.stage h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: 88px; line-height: 1; letter-spacing: -0.02em;
  margin: 0 0 32px;
}
.stage h1 em {
  font-style: italic; color: var(--brass);
  font-weight: 300;
}

.stage-body {
  font-size: 17px; line-height: 1.75; max-width: 520px;
  opacity: 0.78; margin: 0 auto 48px;
}

.stage-actions {
  display: flex; gap: 14px; justify-content: center;
}

/* ── Footer (compact, matches site) ── */
.foot {
  padding: 56px 0 40px;
  background: var(--surface-inverse);
  color: var(--on-surface-inverse);
}
.foot-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.foot-row .word {
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.42em;
  text-transform: uppercase;
}
.foot-row .meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  opacity: 0.55;
}
