/* ══════════════════════════════════════════════════════════════
   Hero — NewLayoutC only. Centered copy over a constellation
   (chaos → grid) background. Loaded via head.html NewLayoutC block.
   Namespaced .v2c-hero to avoid colliding with the shared .v2-hero.
   ══════════════════════════════════════════════════════════════ */
.v2c-hero {
  position: relative;
  overflow: hidden;
  background: #0B1727;
}
.v2c-hero__bg {
  position: absolute;
  inset: 0;
  background: url('/assets/img/index_v2/hero-constellation.webp') center/cover no-repeat;
}
/* Heavy graduated scrim (Variation G): keeps copy crisp, lets the
   constellation read as subtle texture behind it. */
.v2c-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 68% 76% at 50% 50%,
      rgba(11,23,39,.72) 0%,
      rgba(11,23,39,.48) 55%,
      rgba(11,23,39,.20) 100%),
    linear-gradient(180deg, rgba(11,23,39,.40) 0%, rgba(11,23,39,.58) 62%, rgba(11,23,39,1) 100%);
}
.v2c-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 104px 16px 96px;
  text-align: center;
}
.v2c-hero__headline {
  font-family: 'Anybody', sans-serif;
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}
.v2c-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(224, 236, 255, 0.85);
  max-width: 600px;
  margin: 20px auto 34px;
  line-height: 1.6;
}
.v2c-hero__ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.v2c-hero__meta {
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}
.v2c-hero__social {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}
.v2c-hero__avatars { display: flex; }
.v2c-hero__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: -6px;
  border: 2px solid #0B1727;
}
.v2c-hero__avatar img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 767px) {
  .v2c-hero__inner { padding: 72px 16px 64px; }
}
