/* Global text highlight fix for hero and key sections */
.terminal-text, .typed-text, .text-gradient, .cursor {
  color: var(--brand-primary) !important;
  font-weight: 700 !important;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.text-gradient {
  background: linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.typed-text {
  color: var(--brand-secondary) !important;
}

.cursor {
  color: var(--brand-primary) !important;
}
