/* ================================
   hero.css — Hero & Marquee
   ================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 4rem 4rem;
  gap: 4rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%; right: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,255,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

/* Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  animation: fadeUp 0.6s 0.1s ease both;
}

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

/* Desc */
.hero-desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

/* Actions */
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeUp 0.6s 0.3s ease both;
}

/* Right col */
.hero-right {
  animation: fadeUp 0.6s 0.2s ease both;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.tag {
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  color: var(--muted);
  background: var(--bg2);
}

/* Stats */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stat-box {
  background: var(--bg2);
  padding: 1.5rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-num span { color: var(--accent); }

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* Marquee */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
  background: var(--bg2);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-dot {
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
