/* =========================================================
   07-hero-text.css — HERO TEXT BLOCK COMPONENT
   Depends on: 01-tokens.css
   ========================================================= */

.hero-text { flex: 1; text-align: center; padding-top: var(--sp-2); }
@media (min-width: 700px) { .hero-text { text-align: left; } }

.hero-text__badge {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: var(--fs-xs); letter-spacing: 0.42em;
  color: var(--clr-bg-900);
  background: var(--grad-badge);
  padding: 0.32em 1.3em;
  border-radius: 2px; text-transform: uppercase;
  margin-bottom: var(--sp-6);
}

.hero-text__headline {
  font-family: var(--font-serif);
  font-size: var(--fs-xl); font-weight: 700;
  line-height: 1.32; color: var(--clr-text);
  margin-bottom: var(--sp-4);
}
.hero-text__headline em {
  font-style: normal;
  background: var(--grad-amber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text__desc {
  font-size: var(--fs-md); line-height: 1.78;
  color: var(--clr-muted); max-width: 440px;
  margin-bottom: var(--sp-6);
}

.hero-text__cofound {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  background: rgba(200,137,10,.1);
  border: 1px solid rgba(200,137,10,.28);
  border-radius: 4px; padding: .55rem 1.1rem;
  font-family: var(--font-serif);
  font-size: var(--fs-xs); letter-spacing: .14em;
  color: var(--clr-gold-400);
}
.hero-text__cofound::before { content: '✦'; color: var(--clr-gold-200); }
