/* Shared full-viewport Framer embed (same behavior as Home International) */
:root {
  color-scheme: dark;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #02030a;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
/* Fixed positioning avoids height:100% collapse on some routes / browsers */
.pa-framer-frame {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #02030a;
}
.framer-badge-strip {
  position: fixed;
  left: 0;
  width: 100vw;
  bottom: 10px;
  height: 64px;
  background: #02030a;
  z-index: 10000;
  pointer-events: none;
}
@media (max-width: 640px) {
  .framer-badge-strip {
    bottom: 8px;
    height: 72px;
  }
}
