/* ==========================================================================
   GOSPEL CLIPS — Waitlist & Payments Stylesheet
   ========================================================================== */

/* ── Glow Backgrounds ────────────────────────────────────────────────────── */
.glow-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background-color: var(--darkest);
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
}

.glow-circle-1 {
  top: -10%;
  left: 15%;
  width: 40vw;
  height: 40vw;
  background: var(--electric-blue);
}

.glow-circle-2 {
  bottom: 10%;
  right: 10%;
  width: 35vw;
  height: 35vw;
  background: var(--gold);
}

/* ── Page Layout ─────────────────────────────────────────────────────────── */
body {
  background-color: var(--darkest);
  color: var(--white);
  overflow-x: hidden;
}

.waitlist-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.waitlist-header {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 15, 30, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 48px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.02);
}

.back-home-link {
  color: var(--white-60);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.back-home-link:hover {
  color: var(--gold);
}

.waitlist-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.waitlist-header-right .btn-sm {
  padding: 8px 16px;
  font-size: 0.84rem;
  border-radius: 8px;
  cursor: pointer;
}

.waitlist-header-right .nav-user-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.waitlist-header-right .user-avatar-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f39c12);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  overflow: hidden;
}

.waitlist-header-right .user-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.waitlist-header-right .user-display-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.waitlist-header-right .btn-nav-logout {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white-80);
  font-size: 0.78rem;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.waitlist-header-right .btn-nav-logout:hover {
  background: rgba(255, 71, 87, 0.2);
  border-color: rgba(255, 71, 87, 0.5);
  color: #ff6b81;
}

/* ── Hero Section ────────────────────────────────────────────────────────── */
.waitlist-hero {
  max-width: 800px;
  margin: 60px auto 40px auto;
  text-align: center;
}

.waitlist-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(240, 165, 0, 0.1);
  border: 1px solid rgba(240, 165, 0, 0.2);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.waitlist-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--white) 30%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.waitlist-subtitle {
  font-size: 1.1rem;
  color: var(--white-80);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 30px auto;
}

/* ── Counter Card ────────────────────────────────────────────────────────── */
.waitlist-counter-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  margin-top: 10px;
}

.counter-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}

.counter-text strong {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Counter Loading Animation */
.counter-loading-dots {
  display: flex;
  align-items: center;
  gap: 4px;
}

.counter-loading-dots span {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  animation: dot-pulse 1.4s infinite ease-in-out both;
}

.counter-loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.counter-loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes dot-pulse {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* ── Pricing Grid ────────────────────────────────────────────────────────── */
.waitlist-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 40px auto;
}

.plan-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--white-08);
  border-radius: 24px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(130deg, transparent 40%, rgba(255, 255, 255, 0.03) 60%, transparent 80%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.plan-card:hover::before {
  transform: translateX(100%);
}

.plan-card:hover {
  transform: translateY(-5px);
  border-color: var(--white-20);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Recommended/Best Offer Card Highlight */
.recommended-card {
  border: 1px solid rgba(240, 165, 0, 0.3);
  background: radial-gradient(circle at top right, rgba(240, 165, 0, 0.05), rgba(255, 255, 255, 0.01));
  box-shadow: 0 10px 40px rgba(240, 165, 0, 0.05);
}

.recommended-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(240, 165, 0, 0.15);
}

.card-badge {
  position: absolute;
  top: 32px;
  right: -52px;
  background: var(--gold);
  color: var(--darkest);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 6px 0;
  transform: rotate(45deg);
  letter-spacing: 1px;
  width: 200px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.card-tier {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white-40);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.recommended-card .card-tier {
  color: var(--gold);
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}

.card-price .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white-80);
}

.card-price .amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
}

.card-price .period {
  font-size: 0.9rem;
  color: var(--white-40);
  margin-left: 4px;
}

.card-description {
  font-size: 0.95rem;
  color: var(--white-60);
  line-height: 1.5;
  margin-bottom: 30px;
  min-height: 45px;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.card-features li {
  font-size: 0.95rem;
  color: var(--white-80);
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-features li.disabled {
  color: var(--white-40);
}

.check-icon {
  color: var(--success);
  font-weight: bold;
}

.cross-icon {
  color: var(--danger);
  font-weight: bold;
}

/* ── Accordion for Extra Plans ───────────────────────────────────────────── */
.more-plans-accordion {
  margin: 40px auto;
  max-width: 900px;
}

.accordion-toggle {
  background: none;
  border: none;
  color: var(--white-60);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.accordion-toggle:hover {
  color: var(--gold);
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.accordion-toggle.active .arrow-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion-content.open {
  max-height: 1000px; /* high enough limit */
}

.accordion-inner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.mini-card {
  padding: 25px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.01);
}

.mini-features {
  margin-bottom: 20px;
  gap: 8px;
}

.mini-features li {
  font-size: 0.85rem;
}

/* ── Interactive Form System ────────────────────────────────────────────── */
.form-section-wrapper {
  margin: 40px auto;
  max-width: 650px;
  width: 100%;
}

.glassmorphic-form {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--white-10);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.close-form-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white-40);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.close-form-btn:hover {
  color: var(--white);
}

.form-header {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.form-subheading {
  font-size: 0.95rem;
  color: var(--white-60);
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white-80);
}

label .required {
  color: var(--danger);
}

label .optional {
  font-weight: 400;
  color: var(--white-40);
  font-size: 0.8rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"] {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--white-10);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(240, 165, 0, 0.15);
}

.input-tip {
  font-size: 0.75rem;
  color: var(--white-40);
}

/* ── Payment Info Box ────────────────────────────────────────────────────── */
.payment-info-box {
  background: rgba(240, 165, 0, 0.02);
  border: 1px solid rgba(240, 165, 0, 0.25);
  border-radius: 20px;
  padding: 24px;
  margin: 25px 0;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.payment-console-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.pulse-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px var(--success);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.payment-box-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
  flex-grow: 1;
}

.badge-instant {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid var(--success);
  color: #86efac;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 3px 8px;
  border-radius: 12px;
}

.payment-box-text {
  font-size: 0.9rem;
  color: var(--white-80);
  line-height: 1.5;
  margin-bottom: 20px;
}

.highlight-price {
  color: var(--gold);
  font-size: 1.05rem;
}

/* ── Stripe-Style Provider Tabs ─────────────────────────────────────────── */
.payment-tabs-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 18px;
  scrollbar-width: none;
}

.payment-tabs-nav::-webkit-scrollbar {
  display: none;
}

.pay-tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--white-10);
  border-radius: 10px;
  color: var(--white-70);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.pay-tab-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  border-color: var(--white-20);
}

.pay-tab-btn.active {
  background: rgba(240, 165, 0, 0.12);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 15px rgba(240, 165, 0, 0.2);
}

/* ── Dynamic Account Display Panel ───────────────────────────────────────── */
.account-display-panel {
  background: rgba(10, 15, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.account-hero-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.account-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.provider-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--white-50);
  font-weight: 600;
}

.number-copy-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.active-account-number {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
}

.copy-action-btn {
  background: rgba(240, 165, 0, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.copy-action-btn:hover {
  background: var(--gold);
  color: var(--darkest);
  transform: translateY(-1px);
}

.copy-action-btn.copied {
  background: var(--success);
  border-color: var(--success);
  color: var(--darkest);
}

.account-holder-badge {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.holder-title {
  font-size: 0.75rem;
  color: var(--white-40);
}

.holder-name {
  font-size: 0.95rem;
  color: var(--white-90);
}

.account-instruction-bar {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--white-60);
}

.verification-inputs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.donation-accounts-snippet {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--white-10);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--white-70);
  margin-bottom: 20px;
}

/* ── Live Radar Verification Modal Overlay (Stripe Style) ─────────────────── */
.verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 8, 18, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.verification-modal {
  max-width: 480px;
  width: 100%;
  padding: 35px 30px;
  border: 1px solid rgba(240, 165, 0, 0.3);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(240, 165, 0, 0.15);
}

.radar-box {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-pulse, .radar-pulse-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: radarWave 2.4s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.radar-pulse-2 {
  animation-delay: 1.2s;
}

@keyframes radarWave {
  0% { transform: scale(0.4); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}

.radar-center-icon {
  font-size: 2.2rem;
  z-index: 2;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.verification-modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.verification-modal-sub {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.5;
  margin-bottom: 24px;
}

.verif-steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--white-05);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 22px;
}

.verif-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--white-40);
  transition: all 0.3s ease;
  line-height: 1.4;
}

.verif-step .step-dot {
  margin-top: 4px;
  flex-shrink: 0;
}

.verif-step .step-label {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.verif-step.active {
  color: var(--gold);
  font-weight: 600;
}

.verif-step.completed {
  color: var(--success);
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white-20);
}

.verif-step.active .step-dot {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulseDot 1s infinite;
}

.verif-step.completed .step-dot {
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}

.verif-countdown-wrapper {
  margin-bottom: 20px;
}

.verif-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.verif-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), #58a6ff);
  transition: width 1s linear;
}

.verif-timer-text {
  font-size: 0.78rem;
  color: var(--white-50);
}

.verif-actions {
  display: flex;
  justify-content: center;
}

/* ── Error Msg ───────────────────────────────────────────────────────────── */
.form-error-msg {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--danger);
  color: var(--white-95);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin: 20px 0;
}

/* ── Donations Section ───────────────────────────────────────────────────── */
.donation-section {
  max-width: 650px;
  margin: 60px auto;
  width: 100%;
}

.donation-header .heart-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
  animation: heartbeat 1.5s infinite ease-in-out;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  30% { transform: scale(1.15); }
  60% { transform: scale(1); }
}

.quick-amounts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 12px;
  margin-bottom: 15px;
}

.amount-badge {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--white-10);
  color: var(--white-80);
  padding: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-badge:hover {
  border-color: var(--gold-50);
  color: var(--gold);
}

.amount-badge.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--darkest);
}

.custom-amount-input {
  position: relative;
  grid-column: span 2;
  display: flex;
  align-items: center;
}

.rs-prefix {
  position: absolute;
  left: 12px;
  color: var(--white-40);
  font-size: 0.9rem;
  font-weight: 600;
}

.custom-amount-input input {
  width: 100%;
  padding-left: 35px !important;
}

/* ── Waitlist Button Styles (Inherits design system from styles.css) ────────── */
.waitlist-btn {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  display: block;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffc107);
  border: none;
  color: var(--darkest);
  box-shadow: 0 4px 15px rgba(240, 165, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 165, 0, 0.4);
  background: linear-gradient(135deg, #ffc107, var(--gold));
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--white-20);
  color: var(--white);
}

.btn-ghost:hover {
  background: var(--white-05);
  border-color: var(--white-40);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ── Submit Button & Loader ──────────────────────────────────────────────── */
.submit-btn {
  background: linear-gradient(135deg, var(--gold), #ffc107);
  border: none;
  color: var(--darkest);
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(240, 165, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  position: relative;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(240, 165, 0, 0.45);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-loader {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: var(--darkest);
  border-radius: 50%;
  animation: button-spin 0.8s infinite linear;
}

@keyframes button-spin {
  to { transform: rotate(360deg); }
}

/* ── Success Overlay Modal ────────────────────────────────────────────────── */
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 9, 18, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-card {
  max-width: 500px;
  width: 100%;
  animation: modal-enter 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes modal-enter {
  from { transform: translateY(30px) scale(0.9); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.success-icon-badge {
  font-size: 4rem;
  margin-bottom: 20px;
}

.success-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--gold);
}

.success-msg {
  font-size: 1.05rem;
  color: var(--white-80);
  line-height: 1.6;
  margin-bottom: 30px;
}

.success-sharing-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--white-08);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 25px;
}

.success-sharing-box p {
  font-size: 0.95rem;
  margin-top: 0;
  margin-bottom: 15px;
}

.share-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.share-btn {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.whatsapp-share {
  background: var(--whatsapp-green);
  color: white;
}

.whatsapp-share:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}

.facebook-share {
  background: #1877f2;
  color: white;
}

.facebook-share:hover {
  background: #166fe5;
  transform: translateY(-2px);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.waitlist-footer {
  padding: 40px 0 20px 0;
  font-size: 0.85rem;
  color: var(--white-40);
}

/* ── Utilities ───────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.margin-top-20 { margin-top: 20px; }
.margin-bottom-15 { margin-bottom: 15px; }

/* ═══════════════════════════════════════════════════════════════════
   ENTERPRISE VIRAL REFERRAL & LAUNCH GRANT ENGINE STYLES
   ═══════════════════════════════════════════════════════════════════ */

.referral-launch-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 6px 16px;
  border-radius: 9999px;
  margin: 0 auto 18px auto;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  white-space: nowrap;
  max-width: 95vw;
}

.referral-launch-banner:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.banner-badge {
  background: rgba(240, 165, 0, 0.14);
  border: 1px solid rgba(240, 165, 0, 0.25);
  color: #f0a500;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-block;
}

.banner-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.banner-text strong {
  color: #ffffff;
  font-weight: 600;
}

.banner-action {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.referral-launch-banner:hover .banner-action {
  color: #ffffff;
  transform: translateX(2px);
}

.card-referral-alternative {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.or-separator {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}

.btn-referral-unlock-cta {
  width: 100%;
  padding: 10px 14px;
  background: rgba(240, 165, 0, 0.06);
  border: 1px dashed rgba(240, 165, 0, 0.45);
  color: #f0a500;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-referral-unlock-cta:hover {
  background: rgba(240, 165, 0, 0.15);
  border-style: solid;
  border-color: #f0a500;
  transform: translateY(-1px);
}

/* ── Referral Modal Overlay & Card ─────────────────────────────────────── */
.referral-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
}

.referral-modal {
  position: relative;
  background: linear-gradient(145deg, rgba(20, 20, 32, 0.95), rgba(10, 10, 18, 0.98));
  border: 1px solid rgba(240, 165, 0, 0.3);
  border-radius: 24px;
  padding: 36px 30px;
  max-width: 540px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(240, 165, 0, 0.15);
  animation: modalPopIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPopIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.referral-header-badge {
  display: inline-block;
  background: rgba(240, 165, 0, 0.15);
  border: 1px solid rgba(240, 165, 0, 0.4);
  color: #f0a500;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.referral-modal-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}

.referral-modal-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 22px;
}

.referral-progress-card {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 22px;
  text-align: left;
}

.progress-status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.progress-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.progress-count-badge {
  font-size: 0.78rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 9999px;
  background: rgba(240, 165, 0, 0.18);
  color: #f0a500;
  border: 1px solid rgba(240, 165, 0, 0.3);
}

.ref-progress-bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.ref-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #f0a500, #10b981);
  border-radius: 9999px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-footer-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.referral-link-box {
  margin-bottom: 16px;
  text-align: left;
}

.ref-input-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.ref-copy-input-group {
  display: flex;
  gap: 8px;
}

.ref-copy-input-group input {
  flex: 1;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #f0a500;
  font-weight: 600;
  font-family: monospace;
}

.btn-copy-ref {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-copy-ref:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.ref-actions-group {
  margin-bottom: 18px;
}

.ref-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.ref-btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ae06d, #149c8d);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.ref-criteria-footer {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}

/* ═══════════════════════════════════════════════════════════════════
   WAITLIST MEMBER STATUS DASHBOARD (Persistent State Lock)
   ═══════════════════════════════════════════════════════════════════ */

.waitlist-dashboard-section {
  max-width: 820px;
  margin: 10px auto 40px auto;
  width: 100%;
  animation: modalPopIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.waitlist-dashboard-card {
  background: linear-gradient(145deg, rgba(20, 24, 40, 0.95), rgba(10, 14, 26, 0.98));
  border: 1px solid rgba(240, 165, 0, 0.35);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 45px rgba(240, 165, 0, 0.12);
}

.dash-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 14px;
}

.dash-user-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dash-avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f39c12);
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(240, 165, 0, 0.3);
}

.dash-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dash-welcome-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 2px 0;
  line-height: 1.2;
}

.dash-user-email {
  font-size: 0.85rem;
  color: var(--white-60);
}

.dash-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(240, 165, 0, 0.15);
  border: 1px solid rgba(240, 165, 0, 0.4);
  color: #f0a500;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-tier-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f0a500;
  box-shadow: 0 0 10px #f0a500;
  animation: pulseDot 2s infinite ease-in-out;
}

.dash-status-hero {
  text-align: center;
  padding: 26px 22px;
  border-radius: 18px;
  margin-bottom: 24px;
}

.dash-status-hero.success-theme {
  background: rgba(46, 213, 115, 0.08);
  border: 1px solid rgba(46, 213, 115, 0.3);
}

.dash-status-hero.pending-theme {
  background: rgba(240, 165, 0, 0.08);
  border: 1px solid rgba(240, 165, 0, 0.3);
}

.dash-status-hero.starter-theme {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.dash-hero-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.dash-hero-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}

.dash-hero-sub {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto;
}

.dash-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.dash-detail-item {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-detail-item .detail-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white-40);
  font-weight: 600;
}

.dash-detail-item .detail-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.dash-blessing-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(240, 165, 0, 0.06);
  border: 1px dashed rgba(240, 165, 0, 0.4);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 24px;
  text-align: left;
}

.dash-blessing-box .blessing-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.dash-blessing-box p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.dash-action-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.dash-upgrade-callout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
  text-align: left;
}

.dash-upgrade-callout .callout-content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.dash-upgrade-callout .callout-content p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--white-70);
}

.dash-referral-hub {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(240, 165, 0, 0.25);
  border-radius: 18px;
  padding: 22px 20px;
  text-align: left;
}

.dash-ref-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.dash-ref-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px 0;
}

.dash-ref-desc {
  font-size: 0.82rem;
  color: var(--white-60);
  margin: 0;
}

.dash-ref-count-badge {
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(240, 165, 0, 0.2);
  color: #f0a500;
  border: 1px solid rgba(240, 165, 0, 0.4);
}

.dash-progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
}

.dash-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f0a500, #10b981);
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dash-ref-share-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dash-ref-input-wrap {
  display: flex;
  flex: 1;
  min-width: 240px;
  gap: 8px;
}

.dash-ref-input-wrap input {
  flex: 1;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #f0a500;
  font-weight: 600;
  font-family: monospace;
}

.dash-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  white-space: nowrap;
}

.dash-btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ae06d, #149c8d);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   MOBILE RESPONSIVE SYSTEM (Strict & Final Overrides)
   ========================================================================== */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .waitlist-wrapper {
    padding: 10px 12px !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  /* Header: Logo on Left, User Badge / Auth on Right */
  .waitlist-header {
    padding: 10px 0 !important;
    width: 100% !important;
  }

  .header-container {
    padding: 0 4px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .logo-img {
    height: 32px !important;
    max-width: 130px !important;
  }

  /* Hide the redundant "Back to Home" on mobile because the Logo is already the Home link */
  .back-home-link {
    display: none !important;
  }

  .waitlist-header-right {
    gap: 6px !important;
    display: flex !important;
    align-items: center !important;
  }

  .waitlist-header-right .btn-sm {
    padding: 6px 10px !important;
    font-size: 0.75rem !important;
  }

  .waitlist-header-right .nav-user-container {
    gap: 6px !important;
    padding: 3px 8px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(240, 165, 0, 0.3) !important;
    border-radius: 999px !important;
  }

  .waitlist-header-right .user-avatar-circle {
    width: 26px !important;
    height: 26px !important;
    font-size: 0.72rem !important;
  }

  .waitlist-header-right .user-display-name {
    max-width: 65px !important;
    font-size: 0.76rem !important;
  }

  .waitlist-header-right .btn-nav-logout {
    padding: 3px 7px !important;
    font-size: 0.7rem !important;
  }

  /* Hero Section */
  .waitlist-hero {
    margin: 24px auto 16px auto !important;
    padding: 0 4px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .waitlist-title {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
    word-break: break-word !important;
  }

  .waitlist-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 18px !important;
    padding: 0 4px !important;
  }

  .waitlist-counter-card {
    padding: 10px 14px !important;
    font-size: 0.82rem !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Referral Launch Banner on Mobile */
  .referral-launch-banner {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 12px !important;
    gap: 6px 10px !important;
    border-radius: 14px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    margin: 0 auto 16px auto !important;
  }

  .banner-badge {
    font-size: 0.68rem !important;
    padding: 2px 7px !important;
  }

  .banner-text-desktop {
    display: none !important;
  }

  .banner-text-mobile {
    display: inline !important;
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
  }

  .banner-action {
    font-size: 0.74rem !important;
    color: var(--gold) !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }

  /* Pricing Cards & Forms */
  .waitlist-pricing-grid {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
    gap: 20px !important;
  }

  .plan-card {
    padding: 24px 16px !important;
    box-sizing: border-box !important;
  }

  .glassmorphic-form {
    padding: 20px 14px !important;
    box-sizing: border-box !important;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
  }

  .accounts-grid {
    grid-template-columns: 1fr !important;
  }

  .verification-inputs-grid {
    grid-template-columns: 1fr !important;
  }

  /* Payment Radar Verification Modal Mobile */
  .verification-overlay {
    padding: 12px !important;
    box-sizing: border-box !important;
  }

  .verification-modal {
    padding: 24px 16px !important;
    border-radius: 20px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .verification-modal-title {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
  }

  .verification-modal-sub {
    font-size: 0.84rem !important;
    line-height: 1.45 !important;
    margin-bottom: 18px !important;
    word-break: break-word !important;
  }

  .radar-box {
    width: 74px !important;
    height: 74px !important;
    margin: 0 auto 14px auto !important;
  }

  .radar-center-icon {
    font-size: 1.8rem !important;
  }

  .verif-steps-list {
    padding: 12px 14px !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .verif-step {
    font-size: 0.8rem !important;
    gap: 8px !important;
    line-height: 1.35 !important;
    align-items: flex-start !important;
  }

  .step-dot {
    margin-top: 4px !important;
    flex-shrink: 0 !important;
  }

  .step-label {
    flex: 1 !important;
    min-width: 0 !important;
    word-break: break-word !important;
  }

  /* Waitlist Member Status Dashboard Mobile */
  .waitlist-dashboard-section {
    margin: 10px auto 25px auto !important;
  }

  .waitlist-dashboard-card {
    padding: 22px 16px !important;
    border-radius: 20px !important;
  }

  .dash-header-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding-bottom: 16px !important;
    margin-bottom: 18px !important;
  }

  .dash-user-meta {
    width: 100% !important;
  }

  .dash-avatar-circle {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
  }

  .dash-welcome-name {
    font-size: 1.15rem !important;
  }

  .dash-tier-badge {
    font-size: 0.74rem !important;
    padding: 4px 12px !important;
    align-self: flex-start !important;
  }

  .dash-status-hero {
    padding: 20px 14px !important;
    margin-bottom: 18px !important;
  }

  .dash-hero-icon {
    font-size: 2.4rem !important;
  }

  .dash-hero-title {
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
  }

  .dash-hero-sub {
    font-size: 0.84rem !important;
    line-height: 1.45 !important;
  }

  .dash-details-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
  }

  .dash-detail-item {
    padding: 10px 12px !important;
  }

  .dash-detail-item .detail-val {
    font-size: 0.86rem !important;
  }

  .dash-blessing-box {
    padding: 12px 14px !important;
    margin-bottom: 18px !important;
  }

  .dash-blessing-box p {
    font-size: 0.8rem !important;
  }

  .dash-action-buttons {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .dash-action-buttons .btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .dash-upgrade-callout {
    padding: 14px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .dash-upgrade-callout .btn {
    width: 100% !important;
  }

  .dash-referral-hub {
    padding: 16px 14px !important;
    border-radius: 14px !important;
  }

  .dash-ref-title {
    font-size: 0.88rem !important;
    line-height: 1.3 !important;
  }

  .dash-ref-desc {
    font-size: 0.76rem !important;
  }

  .dash-ref-share-row {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .dash-ref-input-wrap {
    min-width: 100% !important;
  }

  .dash-btn-whatsapp {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px !important;
    font-size: 0.86rem !important;
  }
}

