/* Text-Flow custom styles */
@keyframes fade-in { from { opacity: 0; transform: translateY(4px) } to { opacity: 1; transform: translateY(0) } }
.animate-fade-in { animation: fade-in .6s ease both; }

/* subtle glass effect for header */
.glass { backdrop-filter: saturate(1.2) blur(10px); background: rgba(255,255,255,.06); }

/* Gradient only on hero to avoid too much color */
.hero-bg {
  background-image:
    radial-gradient(70.76% 300.95% at -2.81% -5.01%, #7b02fb 12.75%, rgba(123, 2, 251, 0)),
    radial-gradient(85.03% 509.89% at 100% 97.46%, #07b886 15.8%, rgba(7, 184, 134, 0));
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}

/* Alternating section helpers */
.section-light { background-color: #ffffff; color: #0a0a0a; }
.section-muted { background-color: #f4f4f5; color: #0a0a0a; } /* neutral-100-ish */

/* smooth anchor scrolling */
html { scroll-behavior: smooth; }

/* header shadow for contrast */
header{box-shadow:0 1px 0 rgba(255,255,255,0.06)}
