/* =========================
   DISCLAIMER STRIP — Green Theme
   ========================= */

.disclaimer-wrap {
  max-width: 1300px;
  margin: 14px auto 0;
}

.disclaimer-strip {
  background: linear-gradient(135deg, #042f2e, #022c22);
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.4;
  padding: 8px 20px;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(7,181,168,0.08);
  border: 1px solid rgba(7,181,168,0.15);
}

.disclaimer-strip p {
  margin: 0;
}

.disclaimer-strip a {
  color: #6ee7b7;
  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(2,44,34,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(7,181,168,0.2);
  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-box h3 {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 700;
}

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

.wizard-box input,
.wizard-box select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #e5e7eb;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.wizard-box input:focus,
.wizard-box select:focus {
  outline: none;
  border-color: #07b5a8;
  box-shadow: 0 0 0 3px rgba(7,181,168,0.1);
}

.wizard-box button {
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #07b5a8, #22c55e);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
}

.wizard-box button:hover {
  box-shadow: 0 8px 24px rgba(7,181,168,0.25);
  transform: translateY(-1px);
}

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

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

html {
  font-size: 16px;
}

@media (min-width: 768px) {
  html {
    font-size: 17px;
  }
}

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

/* ==============================
   SCROLL REVEAL ANIMATIONS
   ============================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-children.visible > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-children.visible > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-children.visible > *:nth-child(8) { transition-delay: 0.4s; }

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
