/* ===================================================================
   V3 (light / original palette) — interaction layer + graphic panels
   The pages keep their original gold/blue/off-white inline styling.
   This file only adds: scroll-reveal, and dark "feature panels" for the
   dark-designed SVG graphics so they stay readable on a light page.
   =================================================================== */

/* scroll reveal (JS adds .reveal then .in; no JS = visible) */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal.in { opacity: 1; transform: none; transition: none; } }

/* section graphics: dark-designed SVGs sit on their own dark panel */
.fig { margin: 20px auto 34px; text-align: center; }
.fig img {
  display: inline-block; height: auto; max-width: 100%;
  background: #0a0e1a;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(10, 14, 26, 0.18);
  border: 1px solid rgba(10, 14, 26, 0.06);
}
.fig .cap { font-size: 13.5px; font-style: italic; color: #6b6f78; margin: 12px auto 0; max-width: 560px; }

/* --- waitlist form: honeypot + submit status --- */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-status {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14.5px;
  line-height: 1.5;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-ok   { background: #e8f1ec; color: #1f5c39; border: 1px solid #bcd9c8; }
.form-status.is-err  { background: #fdecec; color: #8a2020; border: 1px solid #f0c4c4; }
