/* ═══════════════════════════════════════════════════════
   PHALA FORCE — Referral · Responsive Premium Design
   ═══════════════════════════════════════════════════════ */

/* ── KEYFRAMES ── */
@keyframes breathe-glow {
  0%, 100% { box-shadow: 0 6px 24px rgba(29,77,230,0.32), 0 2px 8px rgba(75,92,240,0.20), inset 0 1px 0 rgba(255,255,255,0.22); }
  50%       { box-shadow: 0 10px 36px rgba(29,77,230,0.48), 0 4px 14px rgba(75,92,240,0.28), inset 0 1px 0 rgba(255,255,255,0.28); }
}
@keyframes ring-breathe {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(29,77,230,0.45)); }
  50%       { filter: drop-shadow(0 0 14px rgba(29,77,230,0.70)); }
}
@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── TOKENS ── */
:root {
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Satoshi', -apple-system, sans-serif;

  --bg:            #F4F9FF;
  --surface:       #FFFFFF;
  --surface-sunken:#F0F6FF;
  --surface-glow:  linear-gradient(165deg, #FFFFFF 0%, #F8FBFF 50%, #EDF4FF 100%);

  --border:        rgba(13,46,180,0.07);
  --border-strong: rgba(13,46,180,0.15);

  --text:   #0B1F3A;
  --text-2: #4A5A78;
  --text-3: #8FA0BC;

  --primary:      #1D4DE6;
  --primary-deep: #133DD0;
  --primary-14:   rgba(29,77,230,0.14);

  --success:      #0782AA;
  --whatsapp: #25D366;

  --r-sm: 14px; --r-md: 18px; --r-lg: 24px; --r-xl: 28px; --r-full: 9999px;

  --sh-sm:   0 1px 2px rgba(13,46,180,0.05), 0 2px 8px rgba(13,46,180,0.06);
  --sh-md:   0 2px 6px rgba(13,46,180,0.06), 0 10px 28px rgba(13,46,180,0.10);
  --sh-blue: 0 4px 14px rgba(29,77,230,0.28), 0 12px 36px rgba(29,77,230,0.22);

  --tr:      220ms cubic-bezier(0.16,1,0.3,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.5;
  color: var(--text);
  background: #E8F1FF;
  min-height: 100dvh;
}

/* ── APP SCREEN ── */
.phone-screen {
  min-height: 100dvh;
  display: flex; flex-direction: column;
  position: relative; 
  background: var(--bg);
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(13,46,180,0.08);
}

/* ── HEADER ── */
.scr-header {
  height: 64px; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 10;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.scr-header-outer {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 10;
}
.scr-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600; color: var(--text);
}
.header-btn {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-2); transition: all var(--tr);
  box-shadow: 0 2px 8px rgba(13,46,180,0.04);
}
.header-btn:active { transform: scale(0.92); background: var(--bg); }

/* ── CONTENT AREA ── */
.scr-content {
  flex: 1; padding-bottom: 110px;
  display: flex; flex-direction: column;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* ── TAB BAR ── */
.tab-bar {
  padding: 12px 12px 28px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(28px) saturate(1.8);
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr;
  position: fixed; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 100%; max-width: 800px;
  z-index: 20;
}
.tab {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px; cursor: pointer; transition: all var(--tr);
}
.tab svg       { width: 24px; height: 24px; color: var(--text-3); }
.tab-label     { font-size: 11px; font-weight: 600; color: var(--text-3); }
.tab.active svg      { color: var(--primary); }
.tab.active .tab-label { color: var(--primary); }

/* ── EMPTY STATE ── */
.empty-outer { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 20px; }
.empty-hero-block {
  padding: 40px 20px; border-radius: var(--r-xl);
  background: var(--surface-glow);
  border: 1px solid var(--border); text-align: center; box-shadow: var(--sh-sm);
  position: relative; overflow: hidden;
}
.empty-emoji { font-size: 72px; margin-bottom: 16px; display: block; animation: float-gentle 3.5s ease-in-out infinite; }
.empty-title { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.empty-sub   { font-size: 15px; color: var(--text-2); line-height: 1.5; margin-bottom: 24px; }

/* ── ADD HERO CARD ── */
.add-hero {
  margin: 16px 20px 24px; padding: 40px 20px; border-radius: 40px;
  background: var(--surface);
  border: 1px solid var(--border); text-align: center;
  box-shadow: 0 20px 50px rgba(13,46,180,0.08);
  display: flex; flex-direction: column; align-items: center;
}
.add-hero-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #4B6EF0; color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; box-shadow: 0 8px 24px rgba(75,110,240,0.3);
}
.add-hero-icon svg { width: 32px; height: 32px; }
.add-hero-title {
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.add-hero-sub {
  font-size: 14px; font-weight: 500; color: var(--text-3);
}
/* ── LOGIN & OTP ── */
.auth-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--bg);
  max-width: 450px;
  margin: 0 auto;
  width: 100%;
}
.auth-logo-box {
  width: 100px; height: 100px;
  background: #E0EFFF;
  border-radius: 32px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
  box-shadow: 0 12px 32px rgba(13,46,180,0.06);
  animation: float-gentle 4s ease-in-out infinite;
}
.auth-logo-box svg { width: 48px; height: 48px; color: var(--primary); }
.auth-title {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
  text-align: center;
}
.auth-sub {
  font-size: 15px; color: var(--text-2);
  text-align: center; margin-bottom: 40px;
}

.otp-input-group {
  display: flex; gap: 12px;
  margin-bottom: 32px;
  justify-content: center;
}
.otp-input {
  width: 64px; height: 72px;
  border-radius: 16px;
  border: 2px solid var(--border-strong);
  background: var(--surface);
  text-align: center;
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  color: var(--text);
  outline: none;
  transition: all var(--tr);
}
.otp-input:focus {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(29,77,230,0.12);
  transform: translateY(-2px);
}

.resend-box {
  text-align: center; margin-top: 24px;
  font-size: 14px; color: var(--text-2);
}
.resend-link {
  color: var(--primary); font-weight: 700;
  cursor: pointer; text-decoration: none;
}
.resend-link.disabled { color: var(--text-3); cursor: not-allowed; }

.back-auth-btn {
  position: absolute; left: 20px; top: 20px;
  width: 44px; height: 44px; border-radius: 14px;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
}
.whatsapp-btn {
  background: #25D366 !important;
  box-shadow: 0 12px 24px rgba(37,211,102,0.2) !important;
}

/* ── BUTTONS ── */
.submit-btn {
  width: 100%; padding: 18px; border-radius: var(--r-lg);
  background: linear-gradient(135deg, #3B6AFF 0%, #1D4DE6 100%); color: #fff;
  font-size: 16px; font-weight: 700; border: none; cursor: pointer;
  box-shadow: var(--sh-blue); display: flex; align-items: center; justify-content: center; gap: 8px;
}
.submit-btn:active { transform: scale(0.98); }

/* ── FORM ── */
.form-stack { padding: 18px 20px 0; display: flex; flex-direction: column; gap: 16px; }
.form-group { position: relative; }
.form-label {
  font-size: 11px; font-weight: 700; color: var(--text-2);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: block;
}
.form-input-wrap { position: relative; }
.form-input {
  width: 100%; padding: 16px 16px 16px 48px; border-radius: var(--r-md);
  background: var(--surface); border: 1.5px solid var(--border-strong);
  font-family: var(--font-body); font-size: 16px; color: var(--text);
  outline: none; transition: all var(--tr);
}
.form-input-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; color: var(--text-3); pointer-events: none;
  transition: all var(--tr);
}
.form-input:focus + .form-input-icon { color: var(--primary); }
.form-input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 4px 12px rgba(29,77,230,0.08); }

/* ── SUBMIT BAR ── */
.submit-bar {
  padding: 16px 20px 32px; background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px); border-top: 1px solid var(--border);
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 800px; z-index: 30;
}

/* ── REFERRAL HERO ── */
.ref-hero {
  margin: 16px; padding: 28px; border-radius: 32px;
  background: linear-gradient(160deg, #0C2278 0%, #133DD0 100%);
  color: #fff; position: relative; overflow: hidden;
  box-shadow: 0 20px 40px rgba(12,34,120,0.15);
}
.ref-hero-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; opacity: 0.8; }
.ref-hero-amount { font-family: var(--font-display); font-size: 48px; font-weight: 700; margin: 4px 0; }
.ref-hero-progress { font-size: 15px; font-weight: 500; opacity: 0.8; margin-bottom: 24px; }
.ref-hero-stats { display: flex; gap: 10px; }
.ref-stat-box {
  flex: 1; padding: 12px; border-radius: 18px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  text-align: left;
}
.ref-stat-num { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 2px; }
.ref-stat-label { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; opacity: 0.6; }

/* ── ACTION BUTTONS ── */
.action-row { display: flex; gap: 12px; padding: 0 16px 20px; }
.action-btn {
  flex: 1; padding: 24px 16px; border-radius: 32px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; cursor: pointer; transition: all var(--tr); border: none;
}
.action-btn:active { transform: scale(0.96); }
.btn-share {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,0.2);
}
.btn-manual {
  background: #fff; border: 1.5px solid var(--border);
  color: var(--text); box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}
.action-btn-title { font-size: 17px; font-weight: 700; }
.action-btn-sub { font-size: 12px; font-weight: 500; opacity: 0.8; }

/* ── REFERRAL CARDS ── */
.ref-list { 
  padding: 0 16px; 
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .ref-list {
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 16px;
  }
  .ref-hero {
    margin: 20px 16px;
  }
}
.ref-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 18px; margin-bottom: 12px;
  box-shadow: var(--sh-sm);
}
.ref-card-top { display: flex; align-items: center; gap: 14px; }
.ref-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary-14); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.ref-meta { flex: 1; }
.ref-name { font-weight: 700; color: var(--text); }
.ref-village { font-size: 13px; color: var(--text-2); }
.ref-amount { font-weight: 700; color: var(--primary); }

/* ── DETAIL UI COMPONENTS ── */
.detail-section-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  margin: 24px 20px 12px; color: var(--text);
}
.detail-card {
  margin: 0 20px 12px; padding: 18px; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}

/* Timeline */
.timeline {
  display: flex; flex-direction: column; gap: 0;
  padding: 8px 4px;
}
.timeline-item {
  display: flex; gap: 20px; position: relative;
  padding-bottom: 24px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-line {
  position: absolute; left: 17px; top: 34px; bottom: -8px;
  width: 2.5px; background: #E0E7FF; border-radius: 2px;
}
.timeline-line.done { background: var(--primary); }
.timeline-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 2.5px solid #E0E7FF;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; font-weight: 700; color: var(--text-3); font-size: 14px;
  flex-shrink: 0; transition: all var(--tr);
}
.timeline-dot.done { background: var(--primary); border-color: var(--primary); color: #fff; }
.timeline-dot.current { border-color: var(--primary); color: var(--primary); box-shadow: 0 0 12px rgba(29,77,230,0.2); }

.timeline-content { flex: 1; }
.timeline-title { font-weight: 700; color: var(--text); margin-bottom: 2px; font-size: 15px; }
.timeline-sub { font-size: 13px; color: var(--text-2); margin-bottom: 4px; }
.timeline-date { font-size: 12px; font-weight: 700; color: var(--primary); }
.timeline-item.future .timeline-title { color: var(--text-3); }
.timeline-item.future .timeline-sub { color: var(--text-3); }

/* Payout Card */
.payout-card {
  display: flex; align-items: center; gap: 16px;
}
.payout-icon-box {
  width: 44px; height: 44px; border-radius: 12px;
  background: #F0F6FF; color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.payout-meta { flex: 1; }
.payout-label { font-weight: 700; color: var(--text); font-size: 14px; }
.payout-sub { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.payout-value { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--primary); }
.payout-value.pending { color: var(--text-3); }

/* Detail List */
.detail-list { display: flex; flex-direction: column; gap: 16px; }
.detail-row { display: flex; justify-content: space-between; align-items: center; }
.detail-label { font-size: 14px; color: var(--text-2); }
.detail-val { font-size: 14px; font-weight: 700; color: var(--text); }

/* Footer Note */
.footer-note {
  margin: 20px; padding: 14px 18px; border-radius: 20px;
  background: #E8F5FF; border: 1px solid rgba(29,77,230,0.1);
  display: flex; gap: 12px; align-items: center;
  font-size: 13px; color: var(--text-2); line-height: 1.4;
}

.spin { animation: spin 1s linear infinite; width: 18px; height: 18px; }

#nav-container {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    z-index: 20;
}
.scr-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* ── RULES UI ── */
.rules-video {
  margin: 16px 20px; padding: 32px 20px 0; border-radius: 24px;
  background: linear-gradient(180deg, #1E3A8A 0%, #0F172A 100%);
  color: #fff; text-align: center; overflow: hidden;
}
.video-play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; border: 1px solid rgba(255,255,255,0.2);
}
.rules-video-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.rules-video-sub { font-size: 13px; opacity: 0.6; margin-bottom: 32px; }
.video-footer {
  background: rgba(0,0,0,0.3); padding: 12px; margin: 0 -20px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; font-weight: 600; border-top: 1px solid rgba(255,255,255,0.1);
}

.lang-row { display: flex; gap: 12px; padding: 0 20px 20px; }
.lang-btn {
  flex: 1; padding: 14px; border-radius: 12px;
  background: #0F172A; color: #fff; border: none;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 700; cursor: pointer;
}

.rules-info-box {
  margin: 0 20px 24px; padding: 24px; border-radius: 24px;
  background: #1D4DE6; color: #fff; line-height: 1.5; font-size: 15px; font-weight: 500;
}

.rules-section-title {
  font-size: 11px; font-weight: 800; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 1px; margin: 24px 20px 12px;
}

.rules-table {
  margin: 0 20px; border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; background: #fff;
}
.rules-table-row {
  display: flex; padding: 14px 16px; border-bottom: 1px solid var(--border);
  align-items: center; justify-content: space-between;
}
.rules-table-row:last-child { border-bottom: none; }
.rules-table-hdr { background: #F8FAFC; color: var(--text-3); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.rules-table-cell { font-size: 14px; color: var(--text); font-weight: 600; }
.rules-table-cell.bold { font-family: var(--font-display); color: var(--primary); font-size: 16px; }

.rules-point {
  display: flex; gap: 16px; padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.rules-point:last-child { border-bottom: none; }
.rules-point-num {
  width: 28px; height: 28px; border-radius: 50%; background: #EFF6FF;
  color: var(--primary); display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.rules-point-text { font-size: 14px; color: var(--text-2); line-height: 1.5; }
.rules-point-text strong { color: var(--primary); }

/* ── STEP INDICATOR (Auth Progress) ── */
.step-indicator {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 32px;
}
.step-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-strong);
  transition: all var(--tr);
}
.step-dot.active {
  background: var(--primary);
  width: 28px; border-radius: 5px;
  box-shadow: 0 2px 8px rgba(29,77,230,0.3);
}
.step-dot.done { background: var(--primary); }

/* ── VALUE PROP HERO (Login) ── */
.value-hero {
  width: 100%; border-radius: 24px;
  background: linear-gradient(160deg, #0C2278 0%, #1D4DE6 50%, #3B6AFF 100%);
  padding: 32px 24px; text-align: center; color: #fff;
  margin-bottom: 32px; position: relative; overflow: hidden;
  box-shadow: 0 16px 40px rgba(29,77,230,0.25);
}
.value-hero::before {
  content: ''; position: absolute; top: -30%; right: -20%;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.value-hero::after {
  content: ''; position: absolute; bottom: -20%; left: -10%;
  width: 150px; height: 150px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.value-hero-emoji {
  font-size: 48px; margin-bottom: 12px; display: block;
  animation: float-gentle 3s ease-in-out infinite;
  position: relative; z-index: 1;
}
.value-hero-title {
  font-family: var(--font-display); font-size: 24px; font-weight: 800;
  line-height: 1.2; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.value-hero-sub {
  font-size: 13px; opacity: 0.85; line-height: 1.5;
  position: relative; z-index: 1;
}
.social-proof {
  margin-top: 16px; padding: 10px 16px; border-radius: 99px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(4px);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; border: 1px solid rgba(255,255,255,0.15);
  position: relative; z-index: 1;
}

/* ── REWARD REMINDER BADGE ── */
.reward-reminder {
  width: 100%; padding: 14px 20px; border-radius: 16px;
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 1.5px solid #6EE7B7;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: #065F46;
  margin-bottom: 24px;
}
.reward-reminder-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: #059669; color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px;
}

/* ── INVITED SPLASH ── */
.invited-splash {
  width: 100%; padding: 28px 24px; border-radius: 24px;
  background: linear-gradient(160deg, #FDF8F0 0%, #FEF3C7 50%, #FDE68A 100%);
  border: 1.5px solid #F59E0B;
  text-align: center; margin-bottom: 24px;
  position: relative; overflow: hidden;
}
.invited-splash::before {
  content: '🎊'; position: absolute; top: -8px; left: 12px;
  font-size: 40px; opacity: 0.3; transform: rotate(-15deg);
}
.invited-splash::after {
  content: '🎉'; position: absolute; bottom: -8px; right: 12px;
  font-size: 40px; opacity: 0.3; transform: rotate(15deg);
}
.invited-splash-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: #92400E; margin-bottom: 4px; position: relative; z-index: 1;
}
.invited-splash-sub {
  font-size: 13px; color: #B45309; position: relative; z-index: 1;
}

/* ── WHATSAPP CONTEXT BADGE ── */
.wa-context {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 14px;
  background: #F0FFF4; border: 1px solid #C6F6D5;
  margin-bottom: 20px; width: 100%;
}
.wa-context svg { color: #25D366; flex-shrink: 0; }
.wa-context-text { font-size: 13px; color: #276749; font-weight: 500; line-height: 1.4; }

/* ── STATUS MESSAGE CTAs ── */
.status-cta-row {
  display: flex; flex-direction: column; gap: 12px;
  width: 100%; margin-top: 32px;
}
.status-cta {
  padding: 16px; border-radius: var(--r-lg);
  font-size: 15px; font-weight: 700; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all var(--tr);
}
.status-cta:active { transform: scale(0.97); }
.status-cta-primary {
  background: linear-gradient(135deg, #3B6AFF 0%, #1D4DE6 100%);
  color: #fff; box-shadow: var(--sh-blue);
}
.status-cta-secondary {
  background: var(--surface); color: var(--text);
  border: 1.5px solid var(--border-strong);
}

/* ── EMPTY DASHBOARD STATE ── */
.empty-dashboard {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 24px; text-align: center;
}
.empty-dashboard-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--primary-14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; animation: float-gentle 4s ease-in-out infinite;
}
.empty-dashboard-icon svg { width: 36px; height: 36px; color: var(--primary); }
.empty-dashboard-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.empty-dashboard-sub {
  font-size: 14px; color: var(--text-2); line-height: 1.5;
  max-width: 280px; margin-bottom: 24px;
}

