.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(7rem, 14vh, 10rem) 0 clamp(4rem, 8vh, 6rem);
  background: var(--gradient-hero);
}

/* Subtle dot grid background */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(31, 60, 245, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
  pointer-events: none;
}

/* Soft blue glow */
.hero-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55vw;
  height: 65vh;
  background: radial-gradient(ellipse, rgba(31, 60, 245, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Second glow — gold tint bottom-left for brand identity */
.hero-glow::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -30%;
  width: 40vw;
  height: 40vh;
  background: radial-gradient(ellipse, rgba(200, 169, 110, 0.05) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  font-family: 'Syne', sans-serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--color-text-primary);
}

.hero-h1 .accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

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

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-metric-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1;
}

.hero-metric-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  max-width: 180px;
  line-height: 1.4;
}

.hero-metric-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .hero-h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-metrics {
    gap: 24px;
  }

  .hero-metric-value {
    font-size: 1.4rem;
  }
}
