/* ─── HERO LAYOUT ─────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--bg-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--bg-border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(29,106,245,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero-content { flex: 1 1 0; min-width: 0; }

.hero-visual {
  flex: 0 0 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 48px rgba(29,106,245,0.05));
}

.hero-illustration {
  width: 100%;
  max-width: 460px;
  height: auto;
}

/* ─── HERO TYPOGRAPHY ─────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(29,106,245,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.accent { color: var(--accent); }

.hero-sub-accent {
  position: relative;
  display: inline-block;
  min-width: 220px;
  height: 1.2em;
  vertical-align: bottom;
}

.cycle-word {
  position: absolute;
  left: 0;
  white-space: nowrap;
  color: var(--accent);
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  animation: cycleWord 8s infinite;
  animation-delay: calc(var(--i) * 2s);
}

@keyframes cycleWord {
  0%   { opacity: 0; transform: translateY(6px); }
  6%   { opacity: 1; transform: translateY(0); }
  22%  { opacity: 1; transform: translateY(0); }
  28%  { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 0; transform: translateY(-6px); }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

/* ─── HERO STATS BAR ──────────────────────────── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-mono);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--bg-border);
}

.stat-pin {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ─── LIVE DOT ────────────────────────────────── */
.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.live-dot::before,
.live-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.live-dot::before { background: rgba(63,185,80,0.9); }

.live-dot::after {
  background: rgba(63,185,80,0.45);
  animation: livePulse 1.8s ease-out infinite;
}

@keyframes livePulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}
