.hero {
  margin-bottom: 34px;
  position: relative;
  z-index: 2;
}

.hero__heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.hero__name {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--bright);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__name .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-soft);
  flex-shrink: 0;
}

.hero__tagline {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero__cmd {
  color: var(--fg);
  font-size: 15px;
  margin-bottom: 16px;
}
.hero__cmd .prompt { color: var(--accent); margin-right: 8px; }
.hero__cmd .comment { color: var(--dim); }

.hero__desc {
  color: var(--fg);
  max-width: 60ch;
  font-size: 14px;
  line-height: 1.7;
}

.hero__caption {
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 32px;
}
.hero__caption .accent { color: var(--accent); }
