/* ================================================
   HERO — Section, Particles, Badge, Dashboard Mockup
   ================================================ */

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

/* ── Particles container ── */
#particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.pt {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: pt-rise linear infinite;
}

/* ── Two-column layout ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ── Launch badge ── */
.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}

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

/* ── Heading + text ── */
h1.hero-ttl {
  font-size: clamp(38px, 5.2vw, 66px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.grd {
  background: linear-gradient(130deg, var(--accent) 0%, #4ade80 55%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

p.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 470px;
}

/* ── CTA buttons ── */
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 10px;
}

/* ── Animated stats ── */
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.s-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}

.s-lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── Dashboard mockup ── */
.mock-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.mock-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: mglow 4s ease-in-out infinite;
}

.mock {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 22px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: float 6.5s ease-in-out infinite;
}

.mock-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mock-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ── Stat cards inside mockup ── */
.mock-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.ms-card {
  background: rgba(13, 74, 47, 0.3);
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 10px;
  padding: 12px;
}

.ms-lbl {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 5px;
}

.ms-val {
  font-size: 20px;
  font-weight: 800;
}

.ms-chg {
  font-size: 10px;
  color: var(--accent);
  margin-top: 3px;
}

/* ── Chart inside mockup ── */
.mock-chart {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px;
  margin-bottom: 12px;
}

.mc-lbl {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 10px;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 54px;
}

.bar {
  flex: 1;
  background: linear-gradient(to top, var(--accent), var(--accent-light));
  border-radius: 3px 3px 0 0;
  opacity: 0.7;
}

/* ── Rider status tags ── */
.mock-riders {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.rt {
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
}

.rt-g { background: rgba(34, 197, 94, 0.15); color: var(--accent);  border: 1px solid rgba(34, 197, 94, 0.2); }
.rt-a { background: rgba(245, 158, 11, 0.14); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.2); }
.rt-r { background: rgba(239, 68, 68, 0.14);  color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); }
