/* =========================
   DISCLAIMER STRIP (MATCH HEADER 1:1)
   ========================= */

.disclaimer-wrap {
  max-width: 1300px;
  margin: 14px auto 0; /* EXACT SAME AS HEADER */
}

.disclaimer-strip {
  background: #0f172a;
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.4;

  padding: 8px 20px;
  text-align: center;

  border-radius: 18px; /* SAME RADIUS AS HEADER */
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12); /* SAME SHADOW FEEL */
  border: 1px solid rgba(15, 23, 42, 0.35);
}

.disclaimer-strip p {
  margin: 0;
}

.disclaimer-strip a {
  color: #38bdf8;
  font-weight: 600;
  text-decoration: none;
}

.disclaimer-strip a:hover {
  text-decoration: underline;
}

.divider {
  margin: 0 8px;
  opacity: 0.6;
}

/* Mobile */
@media (max-width: 768px) {
  .disclaimer-wrap {
    margin: 10px 12px 0;
  }

  .disclaimer-strip {
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 14px;
  }
}

/* ================= WIZARD OVERLAYS ================= */

.wizard-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.wizard-overlay.show {
  display: flex;
}

.wizard-box {
  position: relative;
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  padding: 24px 22px;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.45);
  animation: wizardPop 0.25s ease-out;
}

@keyframes wizardPop {
  from {
    transform: scale(0.96);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.wizard-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  color: #334155;
}

.wizard-status {
  margin-top: 12px;
  font-size: 13px;
  color: #475569;
}

/* ===== FIX SIMPLE WIZARD SIZE ===== */

.wizard-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.wizard-overlay.show {
  display: flex;
}

.wizard-box {
  background: #ffffff;
  width: 100%;
  max-width: 460px;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
}

.wizard-box h3 {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 700;
}

.wizard-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wizard-box input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
}

.wizard-box button {
  padding: 12px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.wizard-status {
  font-size: 12px;
  color: #6b7280;
}

/* ===============================
   GLOBAL TYPOGRAPHY SCALE
   =============================== */

html {
  font-size: 16px; /* default browser = 16px */
}

/* Increase overall text size */
@media (min-width: 768px) {
  html {
    font-size: 17px; /* desktop */
  }
}

@media (min-width: 1280px) {
  html {
    font-size: 18px; /* large screens */
  }
}
