header.top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0;
  letter-spacing: -0.01em;
}

.subtitle {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 2px 0 0;
}

.step-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
}

.step-pill b {
  color: var(--navy);
  font-weight: 600;
}

/* ── User nav (top-right of header) ─────────────────────────────────── */

.user-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.user-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  padding-right: 4px;
}

.user-nav-btn {
  font-size: 12px;
  padding: 5px 12px;
  text-decoration: none;
}
