/* ============================================================================
 * HERO — full-bleed intro with animated GNN background, eyebrow, name, CTAs
 * ==========================================================================*/

.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  isolation: isolate;
}

/* Layered backgrounds — gradients, animated SVG net, subtle grid overlay */
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(0,180,166,0.08), transparent 60%),
    radial-gradient(900px 500px at 90% 80%,  rgba(0,180,166,0.06), transparent 60%),
    var(--bg);
}
.hero-net {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%;
  opacity: 0.85;
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(36,48,68,0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,48,68,0.22) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
}

/* Eyebrow chip + pulsing dot */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px 6px 8px; border-radius: 999px;
  background: var(--teal-soft); color: var(--teal);
  border: 1px solid var(--teal-line);
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,180,166,0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,180,166,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(0,180,166,0.04); }
}

/* The big name */
.hero h1 {
  font-size: clamp(44px, 7.4vw, 92px);
  line-height: 1.02; letter-spacing: -0.035em;
  font-weight: 800; margin: 0 0 18px;
  background: linear-gradient(180deg, #FFFFFF 0%, #C7D2E1 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-role {
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--text); font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.hero-role .accent { color: var(--teal); }
.hero-tag {
  max-width: 640px;
  color: var(--text-dim);
  font-size: 17px;
  margin: 0 0 36px;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Floating socials in the top-right */
.hero-socials {
  position: absolute; right: 28px; top: 96px;
  display: flex; gap: 10px;
}

/* Meta facts strip below the buttons */
.hero-meta {
  margin-top: 60px;
  display: flex; flex-wrap: wrap; gap: 36px;
  color: var(--text-mute);
  font-size: 13px;
}
.hero-meta span strong {
  color: var(--text);
  font-weight: 600;
}

/* "Scroll" hint */
.scroll-hint {
  position: absolute; left: 50%; bottom: 28px;
  transform: translateX(-50%);
  color: var(--text-mute);
  font-size: 11.5px; letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint .line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--teal-line), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
