/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 50% 38%, rgba(110,79,232,0.10) 0%, rgba(110,79,232,0) 70%),
    var(--white);
}

.hero__field {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 130vw);
  height: min(900px, 130vw);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__field svg { width: 100%; height: 100%; }

.hero__ring {
  fill: none;
  stroke: var(--violet-300);
  opacity: 0.35;
  transform-origin: center;
  animation: aura-pulse 7s var(--ease-out) infinite;
}
.hero__ring--2 { stroke: var(--navy-600); opacity: 0.22; animation-delay: -2.3s; }
.hero__ring--3 { stroke: var(--violet-500); opacity: 0.16; animation-delay: -4.6s; }

@keyframes aura-pulse {
  0%   { transform: scale(0.86); opacity: 0; }
  12%  { opacity: 0.35; }
  55%  { opacity: 0.14; }
  100% { transform: scale(1.35); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--gutter);
}

.hero__content .eyebrow { justify-content: center; }

.hero h1 {
  font-size: clamp(38px, 6.4vw, 74px);
  color: var(--navy-900);
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--violet-500), var(--navy-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  margin: 26px auto 0;
  max-width: 540px;
  color: var(--grey-600);
  font-size: 18px;
}

.hero__actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__meta {
  margin-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 56px);
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--grey-400);
  text-transform: uppercase;
}

.hero__meta span b {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy-900);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: 2px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-400);
  z-index: 2;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--grey-400), transparent);
  animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 640px) {
  .hero__meta { gap: 28px; }
}
