/* ========================================================
   HERO.CSS — Hero Section, Marquee, Featured Work
   ======================================================== */

/* ===== HERO SECTION ===== */

.hero {
  position: relative;
  padding-top: 72px;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  z-index: 0;
}

.hero-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="800" height="800"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%" height="100%" filter="url(%23noise)" opacity="0.03"/%3E%3C/svg%3E');
  opacity: 1;
}

.hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(200, 240, 0, 0.04) 0%, transparent 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ===== HERO LABEL ===== */

.hero-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
  opacity: 0;
}

.label-line {
  display: inline-block;
  width: 3rem;
  height: 1px;
  background: var(--accent-dim);
}

/* ===== HERO TITLE ===== */

.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: 0.9;
  margin: 0 0 var(--space-md) 0;
  color: var(--text-primary);
  opacity: 0;
}

.hero-title span {
  color: var(--accent);
}

/* ===== HERO SUBTEXT ===== */

.hero-subtext {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--fs-body);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  opacity: 0;
}

/* ===== HERO CTAs ===== */

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  opacity: 0;
}

.hero-ctas .btn {
  margin: 0.25rem;
}

/* ===== SCROLL INDICATOR ===== */

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
  100% {
    opacity: 0.3;
  }
}

/* ===== MARQUEE STRIP ===== */

.marquee-wrap {
  background: var(--accent);
  color: var(--text-inverse);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 50;
}

.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: 0.15em;
  font-weight: 700;
}

.marquee span {
  padding-right: 4rem;
}

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

.marquee-wrap:hover .marquee {
  animation-play-state: paused;
}


