h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(204, 0, 255, 0.3);
  margin-bottom: 24px;
}

h1.hero-title .accent {
  color: var(--purple-bright);
  text-shadow: 0 0 30px rgba(204, 0, 255, 0.3);
}

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.01em;
}

h2.section-title .accent { color: var(--purple-bright); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
}

.about-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
