/* ── POWA · Coming Soon ───────────────────────────────────────────────
   Standalone landing page. On-brand with the POWA "Indice vivo" system:
   Aspekta typeface, ink black on the animated gold hero. ──────────────── */

/* Aspekta — self-hosted (weights used on this page) */
@font-face {
  font-family: "Aspekta";
  src: url("../fonts/Aspekta-550.otf") format("opentype");
  font-weight: 550;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aspekta";
  src: url("../fonts/Aspekta-700.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* POWA gold — sampled from the hero video; used as the no-video fallback */
  --powa-gold: #f4ce16;
  --powa-ink: #191918;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100svh;
  background: var(--powa-gold);
  color: var(--powa-ink);
  font-family: "Aspekta", system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow: hidden;
}

/* Full-bleed animated gold background */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

/* Centered content stack */
.stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2.25rem, 6vh, 4.5rem);
  min-height: 100svh;
  padding: 6vh 1.5rem;
  text-align: center;
}

.tagline {
  margin: 0;
  font-weight: 550;
  font-size: clamp(1.35rem, 1rem + 1.8vw, 2.25rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.wordmark {
  margin: 0;
  line-height: 0;
}

.wordmark img {
  display: block;
  width: clamp(220px, 34vw, 460px);
  height: auto;
}

.status {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1rem, 0.85rem + 0.7vw, 1.35rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Respect reduced-motion: freeze the hero, lean on the poster/fallback */
@media (prefers-reduced-motion: reduce) {
  .bg-video {
    display: none;
  }
  body {
    background:
      var(--powa-gold) url("../img/powa-hero-poster.jpg") center / cover no-repeat;
  }
}
