.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  min-height: 100svh;
}

.hero__brand {
  max-width: 16rem;
}

.hero__logo {
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-gold-deep);
}

.hero__title {
  font-size: var(--text-xl);
  letter-spacing: var(--tracking-tight);
}

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

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}
