#ora-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 99998;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
#ora-overlay.ora-visible { display: flex; }

#ora-popup {
  background: #171717;
  border: 1px solid #2a2a2a;
  border-top: 3px solid #c0272d;
  width: 100%;
  max-width: 440px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  animation: oraFadeUp 0.4s ease both;
}
#ora-popup::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}
#ora-popup::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, transparent 50%, #c0272d 50%);
  opacity: 0.15;
}
@keyframes oraFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

#ora-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none;
  color: #555; font-size: 24px;
  cursor: pointer; line-height: 1; padding: 0; z-index: 1;
}
#ora-close:hover { color: #fff; }

.ora-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ora-eyebrow-line { display: block; width: 28px; height: 2px; background: #c0272d; flex-shrink: 0; }
.ora-eyebrow-text { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; text-transform: uppercase; color: #c0272d; letter-spacing: 0; }

.ora-title { font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 700; text-transform: uppercase; letter-spacing: 0; line-height: 1.1; color: #f2f2f2; margin-bottom: 10px; }
.ora-desc { font-family: 'Roboto', sans-serif; font-size: 14px; color: #888; line-height: 1.6; margin-bottom: 24px; letter-spacing: 0; }

.ora-form { display: flex; flex-direction: column; gap: 14px; }
.ora-field { display: flex; flex-direction: column; gap: 6px; }
.ora-field label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; text-transform: uppercase; color: #888; letter-spacing: 0; }
.ora-field input[type="text"],
.ora-field input[type="email"] {
  width: 100%; background: #1f1f1f; border: 1px solid #2a2a2a;
  color: #f2f2f2; font-family: 'Roboto', sans-serif; font-size: 14px;
  padding: 12px 14px; border-radius: 3px; outline: none;
  box-sizing: border-box; letter-spacing: 0; -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ora-field input:focus { border-color: #c0272d; box-shadow: 0 0 0 3px rgba(192,39,45,0.25); }
.ora-field input::placeholder { color: #444; }
.ora-hp { display: none !important; }

.ora-divider { border: none; border-top: 1px solid #2a2a2a; margin: 4px 0; }

.ora-consents { display: flex; flex-direction: column; gap: 12px; }
.ora-consent-item { display: flex; align-items: flex-start; gap: 12px; }
.ora-consent-item input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 16px; height: 16px; min-width: 16px;
  background: #1f1f1f; border: 1px solid #2a2a2a; border-radius: 2px;
  cursor: pointer; margin-top: 2px; position: relative; flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.ora-consent-item input[type="checkbox"]:checked { background: #c0272d; border-color: #c0272d; }
.ora-consent-item input[type="checkbox"]:checked::after {
  content: ''; position: absolute;
  left: 4px; top: 1px; width: 5px; height: 9px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg);
}
.ora-consent-item input[type="checkbox"]:focus { outline: none; box-shadow: 0 0 0 3px rgba(192,39,45,0.25); }
.ora-consent-item label { font-family: 'Roboto', sans-serif; font-size: 11px; color: #888; line-height: 1.6; cursor: pointer; letter-spacing: 0; }
.ora-consent-item label a { color: #c0272d; text-decoration: underline; text-underline-offset: 2px; }
.ora-consent-item label a:hover { color: #fff; }
.ora-req { color: #c0272d; }

.ora-submit {
  margin-top: 6px; width: 100%; background: #c0272d; color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0; padding: 14px 20px;
  border: none; border-radius: 3px; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ora-submit:hover { background: #991e23; box-shadow: 0 4px 20px rgba(192,39,45,0.25); transform: translateY(-1px); }
.ora-submit:active { transform: translateY(0); box-shadow: none; }

.ora-note { margin-top: 16px; font-family: 'Roboto', sans-serif; font-size: 11px; color: #555; text-align: center; line-height: 1.5; letter-spacing: 0; }
