#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(26,58,122,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0,200,255,0.05) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-left: max(24px, calc(50vw - 600px));
  padding: 120px 24px 80px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease both;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.headline-line { display: block; }
.headline-line:nth-child(1) { animation: fadeInUp 0.8s ease 0.1s both; }
.headline-line:nth-child(2) { animation: fadeInUp 0.8s ease 0.25s both; }
.headline-line:nth-child(3) { animation: fadeInUp 0.8s ease 0.4s both; }

.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.75s both;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeInUp 0.8s ease 0.9s both;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.badge::before {
  content: '◈';
  color: var(--accent-cyan);
  font-size: 0.7rem;
}
