/* ============================================================
   Landing / hero
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.hero__body {
  flex: 1;
  display: grid;
  place-items: center;
  padding: var(--sp-6) var(--sp-5);
}

.hero__inner {
  width: var(--shell);
  display: grid;
  gap: var(--sp-4);
  justify-items: start;
  animation: rise 1s var(--ease) both;
}

.hero__title {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(60px, 10vw, 128px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}
.hero__x {
  font-weight: 700;
  color: var(--quantum);
  text-shadow: 0 0 34px var(--glow);
}

.hero__subtitle {
  max-width: 40ch;
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  align-items: center;
  margin-top: var(--sp-2);
}

.hero__meta {
  margin-top: var(--sp-3);
  color: var(--muted-2);
}

.hero__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-top: 1px solid var(--border);
  color: var(--muted-2);
}
.hero__footer a { text-decoration: none; }
.hero__footer a:hover { color: var(--text); }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .hero__body { padding: var(--sp-5) var(--sp-4); }
  .hero__footer { flex-direction: column; gap: var(--sp-2); align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__inner { animation: none; }
}
