/* ============================================================
   Component · Hero
   ------------------------------------------------------------
   Brand wordmark, floating orbital logo, italic tagline, lede,
   and the CTA buttons. The logo SVG ships with its own SMIL
   satellite animation; the float belongs to the <img> wrapper.
   ============================================================ */

.hero {
  padding: 40px 0 60px;
  text-align: center;
}

/* ---------- Brand wordmark (above the logo) ---------- */
.brand-mark {
  font-size: 15px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  margin: 8px 0 26px;
  animation: rise 0.9s 0.15s var(--ease) both;
}

/* ---------- Logo ---------- */
.logo-stage {
  width: 240px;
  height: 240px;
  margin: 0 auto 36px;
  position: relative;
}

.logo {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible; /* add this */
  animation: logo-float 6.5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0)    rotate(0deg); }
  33%      { transform: translateY(-9px) rotate(-1.3deg); }
  66%      { transform: translateY(6px)  rotate(1.6deg); }
}

/* ---------- Tagline & lede ---------- */
.hero-title {
  font-size: 44px;
  line-height: 1.02;
  font-weight: 400;
  margin: 0 auto 22px;
  max-width: 14ch;
  letter-spacing: -0.015em;
  animation: rise 0.9s 0.4s var(--ease) both;
}

.hero-title em {
  font-style: italic;
  color: var(--ink-2);
}

.hero-lede {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 30ch;
  margin: 0 auto 32px;
  animation: rise 0.9s 0.65s var(--ease) both;
}

.hero-sub {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 auto 16px;
  animation: rise 0.9s 0.5s var(--ease) both;
}

/* ---------- CTAs ---------- */
.cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  animation: rise 0.9s 0.7s var(--ease) both;
}

@media (min-width: 720px) {
  .brand-mark { font-size: 18px; letter-spacing: 0.34em; }
  .hero-title { font-size: 60px; max-width: 12ch; }
  .logo-stage { width: 300px; height: 300px; }
  .cta-row    { flex-direction: row; justify-content: center; }
}
