/* ============================================================
   HERO — Sección principal + Ticker
   ============================================================ */

#hero {
  height: 100vh;
  min-height: 600px;
  background: var(--bg-dark);
  color: var(--text-inv);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 2.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent, transparent 59px,
      rgba(255,255,255,0.04) 59px,
      rgba(255,255,255,0.04) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent, transparent 59px,
      rgba(255,255,255,0.04) 59px,
      rgba(255,255,255,0.04) 60px
    );
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
  position: relative;
}

.hero-headline {
  font-size: clamp(3rem, 9vw, 10rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  position: relative;
  max-width: 1100px;
}
.hero-headline em { font-style: italic; font-weight: 300; }

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 3rem;
  position: relative;
}

.hero-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  max-width: 340px;
  line-height: 1.7;
}

.hero-scroll-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hero-scroll-line::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { width: 40px; }
  50%       { width: 70px; }
}

/* ── Ticker ── */
.ticker-wrap {
  background: var(--text);
  color: var(--text-inv);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 3rem;
}
.ticker-dot { opacity: 0.3; padding: 0 1rem; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
