/* HERO */
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px 0 44px;
  border-bottom: 1px solid var(--line);
}

#sonic-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background: #090907;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(120vw, 1380px);
  aspect-ratio: 1;
  left: 50%;
  top: 18vh;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.82;
  background:
    radial-gradient(circle at 50% 52%, rgba(69, 224, 208, 0.34), transparent 18%),
    radial-gradient(circle at 50% 58%, rgba(160, 255, 97, 0.2), transparent 36%),
    radial-gradient(circle at 50% 100%, rgba(255, 91, 69, 0.18), transparent 42%);
  filter: blur(10px);
  transform: translateX(-50%);
  animation: horizonPulse 4.2s ease-in-out infinite;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.78;
  background:
    radial-gradient(circle at 50% 50%, rgba(120, 255, 80, 0.22), transparent 18%),
    radial-gradient(circle at 50% 78%, rgba(255, 91, 69, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(5, 6, 9, 0.92), rgba(5, 6, 9, 0.35) 42%, rgba(5, 6, 9, 0.35) 58%, rgba(5, 6, 9, 0.92)),
    linear-gradient(180deg, rgba(5, 6, 9, 0.08), rgba(5, 6, 9, 0.42) 68%, rgba(5, 6, 9, 0.94)),
    repeating-linear-gradient(90deg, rgba(240, 234, 220, 0.08) 0 1px, transparent 1px 9vw);
}

.hero .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 46px;
  height: 1px;
  background: currentColor;
}

.hero-title {
  max-width: 940px;
  margin: 28px 0 0;
  font-size: clamp(54px, 7.6vw, 122px);
  text-wrap: balance;
  text-shadow: 0 0 34px rgba(5, 6, 9, 0.9);
}

.hero-title span {
  display: block;
  transform: translateY(36px);
  opacity: 0;
  animation: titleLift 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title span:nth-child(2) { animation-delay: 130ms; }
.hero-title span:nth-child(3) { animation-delay: 260ms; }

.hero-title .accent {
  color: transparent;
  background: linear-gradient(90deg, #ffd36c, #ff6a46 52%, #b8ff65);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: italic;
  font-weight: 360;
  filter: drop-shadow(0 0 18px rgba(255, 106, 70, 0.32));
}

.hero-copy {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(244, 239, 228, 0.82);
  font-size: clamp(18px, 1.5vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}


.hero-actions .button-secondary { backdrop-filter: blur(12px); }
