#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 62px;
  overflow: hidden;
}

/* Subtle dot grid texture */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--fg) 0.8px, transparent 0.8px);
  background-size: 30px 30px;
  opacity: 0.045;
  pointer-events: none;
}

/* Radial vignette fades the grid toward the bottom */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 110% 90% at 50% 110%, var(--bg) 0%, transparent 65%);
  pointer-events: none;
}

.hero-c {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 72px 0 96px;
}
.hero-ey {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-m);
  margin-bottom: 28px;
}
.hero-h1 {
  font-size: clamp(52px, 8.5vw, 100px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.97;
  color: var(--fg);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  color: var(--fg-m);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 52px;
}

/* Capability strip below CTAs */
.hero-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 20px;
  border-top: 1px solid var(--border-sub);
}
.si {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-m);
  letter-spacing: 0.04em;
  padding-right: 18px;
  margin-right: 18px;
  border-right: 1px solid var(--border);
}
.si:last-child { border-right: none; padding-right: 0; margin-right: 0; }
