/* Global branding styles: gradient text and marquee animation */
:root {
  --gp-primary: #6366f1; /* indigo-500 */
  --gp-accent: #22d3ee;  /* cyan-400 */
}

.gradient-text {
  background: linear-gradient(90deg, var(--gp-primary), var(--gp-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.animate-gradient {
  animation: gpGradientHue 6s ease-in-out infinite alternate;
}

@keyframes gpGradientHue {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(25deg); }
}

/* Marquee animation for welcome message */
.brand-marquee-run {
  will-change: transform;
  animation: gpMarqueeLeft 8s linear 1;
}

@keyframes gpMarqueeLeft {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Container for the brand marquee in the sidebar subtitle */
.brand-marquee-container {
  display: inline-block;
  max-width: 10rem;
  overflow: hidden;
  vertical-align: middle;
}
