/* =====================================================
   ØRENO — Homepage beta announcement popup
   Same visual language as verify.css's modal (backdrop blur,
   card entrance, gold accent) — index.html only.
===================================================== */

.bp-root {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 260ms ease;
  font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}
.bp-root.is-open { opacity: 1; pointer-events: auto; }
.bp-root, .bp-root * { cursor: default; }
.bp-root .bp-btn,
.bp-root .bp-close,
.bp-root [data-bp-close] { cursor: pointer; }

/* Hide the global custom cursor while the popup is open — same convention verify.css establishes */
body.bp-modal-open .cursor-blob { opacity: 0 !important; }
body.bp-modal-open { cursor: auto; }

.bp-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 8, 8, 0.62);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.bp-card {
  position: relative;
  width: 100%; max-width: 420px;
  background: #F5F3EE;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 4px;
  padding: 34px 30px 28px;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.55),
              0 0 0 1px rgba(212, 160, 23, 0.05);
  transform: translateY(14px) scale(0.98);
  transition: transform 340ms cubic-bezier(.2, .8, .2, 1);
}
.bp-root.is-open .bp-card { transform: translateY(0) scale(1); }

.bp-close {
  position: absolute; top: 14px; right: 14px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: none;
  color: rgba(10, 10, 10, 0.45);
  border-radius: 50%;
  transition: background 180ms ease, color 180ms ease;
}
.bp-close:hover { background: rgba(10, 10, 10, 0.05); color: #0A0A0A; }
.bp-close svg { width: 14px; height: 14px; }

.bp-kicker {
  display: inline-block;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #d4a017;
  margin: 0 0 12px;
}
.bp-title {
  font-size: 22px; font-weight: 500; letter-spacing: -0.4px; line-height: 1.25;
  color: #0A0A0A; margin: 0 0 10px;
}
.bp-sub {
  font-size: 13px; line-height: 1.6;
  color: rgba(10, 10, 10, 0.58);
  margin: 0 0 24px;
}
.bp-sub strong { font-weight: 600; color: #0A0A0A; }

.bp-actions { display: flex; flex-direction: column; gap: 10px; }
.bp-btn {
  appearance: none; border: none; text-decoration: none; text-align: center;
  font: inherit; font-size: 13px; letter-spacing: 0.02em;
  padding: 14px 18px; border-radius: 3px;
  transition: background 200ms ease, color 200ms ease;
}
.bp-btn-primary { background: #0A0A0A; color: #F5F3EE; }
.bp-btn-primary:hover { background: #1a1a1a; }
.bp-btn-ghost {
  background: transparent; color: rgba(10, 10, 10, 0.50);
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px;
}
.bp-btn-ghost:hover { color: #0A0A0A; }

@media (max-width: 420px) {
  .bp-card { padding: 28px 22px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .bp-root, .bp-card { transition: none; }
}
