.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 100px 0 72px;
  overflow: hidden;
  background: var(--bg);
}

/* Ambient background glow */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(16,212,168,.08) 0%, rgba(8,145,178,.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  pointer-events: none;
  z-index: 0;
}

.hero .container { position: relative; z-index: 2; }
.hero-inner { text-align: center; margin: 0 auto; max-width: 820px; }

/* Brand label */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(16,212,168,.08);
  border: 1px solid rgba(16,212,168,.2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  animation: fadeUp .6s ease both;
}

.hero-title {
  margin: 0 0 20px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text);
  animation: fadeUp .6s .1s ease both;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.7;
  animation: fadeUp .6s .2s ease both;
}

/* Tagline banner */
.hero-tagline {
  display: inline-block;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text);
  font-weight: 400;
  line-height: 1.55;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 14px 20px;
  margin: 0 0 28px;
  animation: fadeUp .6s .25s ease both;
}
.hero-tagline strong { color: var(--brand); font-weight: 700; }
.hero-tagline .brand-text { color: var(--brand); }

.hero .cta-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .6s .3s ease both;
}

.hero-subnote {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  animation: fadeUp .6s .35s ease both;
}

/* Hero points */
.hero-points {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  animation: fadeUp .6s .4s ease both;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.point-icon {
  font-size: 16px;
  color: var(--brand);
  flex-shrink: 0;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .6;
  animation: breathe 3s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: .25; transform: translate(-50%, 0); }
  50%       { opacity: .7;  transform: translate(-50%, -5px); }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }
  .hero-points {
    gap: 14px;
    flex-direction: column;
    align-items: center;
  }
}
