.hero {
  min-height: 100vh;
  height: auto;
  padding-top: 70px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #020b16 0%, #031c2d 50%, #022832 100%);
  color: white;
  overflow: hidden;
  box-sizing: border-box;
}

#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 20px;
}

.tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
}

.tag::before {
  content: '—— ';
  color: #00d2b9;
}
.tag::after {
  content: ' ——';
  color: #00d2b9;
}

.hero-content h1 {
  font-size: clamp(40px, 6vw, 82px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -1px;
}

.hero-content h1 span {
  color: #00d2b9;
}

.hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-block;
}

.btn.primary {
  background: #00d2b9;
  color: #020b16;
}

.btn.primary:hover {
  background: #00b8a0;
}

.btn.secondary {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn.secondary:hover {
  border-color: #00d2b9;
  color: #00d2b9;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 210, 185, 0.2);
  border-radius: 8px;
  padding: 10px 18px;
}

.hero-stat-value {
  font-size: 15px;
  font-weight: 800;
  color: #00d2b9;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
  cursor: pointer;
}

.scroll-arrow {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}