/* Lightning IQ 2.0 — home hero motion. Letterboxed 16:9 stage, no layout shift. */
.liq-hero {
  position: relative;
  width: 100%;
  background: #0B1B24;
  overflow: hidden;
}
.liq-hero__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;   /* reserves height before JS runs: no CLS */
  overflow: hidden;
}
@supports not (aspect-ratio: 16 / 9) {
  .liq-hero__frame { height: 0; padding-bottom: 56.25%; }
}
.liq-hero__frame canvas { display: block; }

/* Indexed copy. Visible only when the motion runtime never mounts. */
.liq-hero__fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  font-family: Montserrat, system-ui, sans-serif;
  color: #F5F9FC;
}
.liq-hero__frame:not([data-mounted]) ~ .liq-hero__fallback { display: flex; }
.liq-hero__fallback h1 {
  margin: 0;
  font-weight: 200;
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  line-height: 1.05;
}
.liq-hero__fallback p {
  margin: 0;
  font-weight: 600;
  font-size: clamp(0.8rem, 1.2vw, 1.05rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C6D4DD;
}
.liq-hero__fallback-cta {
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  background: #FAB022;
  color: #022430;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 140ms ease-out, transform 140ms ease-out;
}
.liq-hero__fallback-cta:hover { background: #DCA727; }
.liq-hero__fallback-cta:active { transform: scale(0.98); }
.liq-hero__fallback-cta:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(46, 169, 225, 0.55); }
