/* ═══════════════════════════════════════════
   ANKR App Styles — Matching Landing Page Design
   ═══════════════════════════════════════════ */

:root {
  --ink: #0a0a0f;
  --warm: #f5f0eb;
  --accent: #2563eb;
  --accent-soft: #dbeafe;
  --harbor: #1e3a5f;
  --light-harbor: #2d5a8e;
  --glow: #f59e0b;
  --sand: #faf7f2;
  --success: #10b981;
  --danger: #ef4444;
  --muted: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; }

/* ─── APP LAYOUT ──────────────────────────── */
.app-container { min-height: 100vh; display: flex; flex-direction: column; }

.app-nav {
  background: var(--harbor);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.app-nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-nav-logo svg { width: 22px; height: 22px; color: var(--glow); }

.app-nav-links { display: flex; gap: 4px; align-items: center; }

.app-nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}

.app-nav-links a:hover, .app-nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.app-nav-links a.active { background: rgba(37, 99, 235, 0.25); }

.nav-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--glow));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: 'Space Grotesk', sans-serif;
}

.btn-logout {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-logout:hover { color: #fff; border-color: rgba(255,255,255,0.3); }

.app-content {
  flex: 1;
  padding: 40px 24px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

/* ─── AUTH PAGES ──────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(175deg, var(--harbor) 0%, #0f2940 55%, var(--ink) 100%);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.auth-page::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 30%, rgba(245, 158, 11, 0.06) 0%, transparent 40%);
  animation: drift 20s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(2%, -1%) rotate(1deg); }
  66% { transform: translate(-1%, 2%) rotate(-1deg); }
}

.auth-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

.auth-card h1 {
  font-size: 1.8rem;
  color: var(--harbor);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.auth-card .auth-sub {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.5;
}

.auth-card .auth-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--harbor);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-card .auth-logo svg { width: 20px; height: 20px; color: var(--glow); }

/* ─── FORMS ───────────────────────────────── */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--harbor);
  margin-bottom: 6px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e4df;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  background: var(--sand);
  color: var(--ink);
  transition: all 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea { min-height: 100px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  width: 100%;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

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

.btn-secondary {
  background: #fff;
  color: var(--harbor);
  border: 2px solid #e8e4df;
}

.btn-secondary:hover { border-color: var(--harbor); }

.btn-glow {
  background: linear-gradient(135deg, var(--glow), #d97706);
  color: #fff;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-glow:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 8px;
  width: auto;
}

.btn-ghost:hover { text-decoration: underline; }

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

.auth-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}

.auth-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.auth-footer a:hover { text-decoration: underline; }

.error-msg {
  background: #fef2f2;
  color: var(--danger);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid #fecaca;
  display: none;
}

.error-msg.visible { display: block; }

/* ─── ONBOARDING ──────────────────────────── */
.onboarding-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 0;
}

.onboarding-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}

.progress-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.progress-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e8e4df;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 8px;
  transition: all 0.3s;
}

.progress-step.active .progress-dot {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.progress-step.done .progress-dot {
  background: var(--success);
  color: #fff;
}

.progress-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-family: 'Space Grotesk', sans-serif;
}

.progress-step.active .progress-label { color: var(--accent); }
.progress-step.done .progress-label { color: var(--success); }

.progress-line {
  flex: 0 0 60px;
  height: 2px;
  background: #e8e4df;
  margin-bottom: 20px;
}

.progress-line.done { background: var(--success); }

.onboarding-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
}

.onboarding-card h2 {
  font-size: 1.6rem;
  color: var(--harbor);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.onboarding-card .subtitle {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.5;
}

/* ─── VALUES PICKER ───────────────────────── */
.category-section { margin-bottom: 36px; }

.category-header {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--glow);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e8e4df;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.value-chip {
  padding: 10px 18px;
  border-radius: 100px;
  border: 2px solid #e8e4df;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.value-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.value-chip.selected {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.value-chip .chip-desc {
  display: none;
}

.values-count {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 20px;
  font-family: 'Space Grotesk', sans-serif;
}

.values-count strong { color: var(--accent); }

/* ─── LOOKING FOR CHIPS ───────────────────── */
.looking-for-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.lf-chip {
  padding: 12px 20px;
  border-radius: 14px;
  border: 2px solid #e8e4df;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lf-chip:hover { border-color: var(--glow); color: var(--harbor); }

.lf-chip.selected {
  border-color: var(--glow);
  background: #fffbeb;
  color: var(--harbor);
  font-weight: 600;
}

.lf-chip .lf-icon { font-size: 1.1rem; }

/* ─── DISCOVER / MATCH CARDS ──────────────── */
.discover-header {
  text-align: center;
  margin-bottom: 40px;
}

.discover-header h1 {
  font-size: 2rem;
  color: var(--harbor);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.discover-header p {
  color: #888;
  font-size: 1rem;
}

.match-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.match-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.match-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.match-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--harbor), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.match-info h3 {
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.match-meta {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.match-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.compatibility-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.compat-high {
  background: #d1fae5;
  color: #065f46;
}

.compat-medium {
  background: #fef3c7;
  color: #92400e;
}

.compat-low {
  background: #f3f4f6;
  color: #6b7280;
}

.match-bio {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 20px;
}

.shared-values-section {
  margin-bottom: 20px;
}

.shared-values-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--glow);
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
}

.shared-value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shared-tag {
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
}

.match-actions {
  display: flex;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #f0ebe5;
}

.btn-like {
  flex: 1;
  padding: 12px;
  border-radius: 12px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--accent);
  color: #fff;
}

.btn-like:hover { background: #1d4ed8; transform: translateY(-1px); }

.btn-skip {
  flex: 0 0 auto;
  padding: 12px 20px;
  border-radius: 12px;
  border: 2px solid #e8e4df;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  color: #aaa;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-skip:hover { border-color: #ccc; color: #666; }

/* ─── MUTUAL MATCH POPUP ─────────────────── */
.match-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s;
}

.match-popup {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.match-popup h2 {
  font-size: 1.8rem;
  color: var(--harbor);
  margin-bottom: 12px;
}

.match-popup p { color: #888; margin-bottom: 24px; }

.match-popup .match-hearts {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* ─── MATCHES LIST ────────────────────────── */
.matches-header {
  text-align: center;
  margin-bottom: 40px;
}

.matches-header h1 {
  font-size: 2rem;
  color: var(--harbor);
  margin-bottom: 8px;
}

.matches-header p { color: #888; }

.matched-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.2s;
  cursor: pointer;
}

.matched-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.matched-card .match-avatar { width: 56px; height: 56px; font-size: 1.2rem; }

.matched-card-info { flex: 1; }
.matched-card-info h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 2px; }
.matched-card-meta { font-size: 0.85rem; color: var(--muted); }

/* ─── PROFILE PAGE ────────────────────────── */
.profile-header {
  text-align: center;
  padding: 48px 0;
  background: linear-gradient(175deg, var(--harbor), #0f2940);
  border-radius: 24px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.profile-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
}

.profile-avatar-lg {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--glow), #d97706);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  border: 4px solid rgba(255,255,255,0.2);
}

.profile-header h1 {
  font-size: 1.6rem;
  color: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 4px;
}

.profile-header .profile-location {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.profile-section {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 20px;
  border: 1px solid rgba(0,0,0,0.04);
}

.profile-section h3 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--glow);
  margin-bottom: 16px;
  font-family: 'Space Grotesk', sans-serif;
}

.profile-bio {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

.profile-values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-value-tag {
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
}

.profile-looking-for {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-lf-tag {
  padding: 10px 18px;
  border-radius: 12px;
  background: #fffbeb;
  color: var(--harbor);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #fef3c7;
}

/* ─── EMPTY STATES ────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 24px;
}

.empty-state .empty-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.empty-state h2 {
  font-size: 1.4rem;
  color: var(--harbor);
  margin-bottom: 12px;
}

.empty-state p {
  color: #888;
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ─── LOADING ─────────────────────────────── */
.loading {
  text-align: center;
  padding: 60px 24px;
  color: var(--muted);
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e8e4df;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

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

/* ─── VERIFIED BADGE ─────────────────────── */
.verified-badge {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 4px;
}

.verified-badge svg {
  filter: drop-shadow(0 1px 3px rgba(37, 99, 235, 0.3));
}

.verified-sm svg { width: 16px; height: 16px; }
.verified-md svg { width: 20px; height: 20px; }
.verified-lg svg { width: 24px; height: 24px; }

/* Nav verified dot on avatar */
.nav-avatar {
  position: relative;
}

.nav-verified-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: #2563eb;
  border-radius: 50%;
  border: 2px solid var(--harbor);
}

.nav-verified-dot::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 2.5px;
  width: 4px;
  height: 6px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

/* Nav verify button */
.nav-verify-btn {
  background: linear-gradient(135deg, var(--glow), #d97706) !important;
  color: #fff !important;
  padding: 6px 14px !important;
  border-radius: 100px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  animation: gentle-pulse 2s ease-in-out infinite;
}

@keyframes gentle-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
}

/* ─── CAPTCHA ────────────────────────────── */
.captcha-group {
  background: #f8f6f3;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e8e4df;
}

.captcha-group label {
  color: var(--harbor) !important;
  font-size: 1rem !important;
}

.captcha-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 6px;
}

/* ─── VERIFICATION PAGE ──────────────────── */
.verify-card {
  text-align: center;
}

.verify-shield {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.verify-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
  text-align: left;
}

.verify-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: #f8f6f3;
  border-radius: 12px;
  font-size: 0.92rem;
  color: #555;
}

.vb-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

/* Camera feed */
.camera-container {
  margin: 24px 0;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.camera-feed {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  transform: scaleX(-1); /* Mirror for selfie */
  border-radius: 20px;
}

.captured-preview {
  width: 100%;
}

.captured-preview img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 20px;
}

.verify-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Verification success popup */
.verify-success .verified-badge-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent);
  margin: 20px 0;
  padding: 16px;
  background: var(--accent-soft);
  border-radius: 12px;
}

/* Profile verified banner */
.profile-verified-banner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #bfdbfe;
  font-family: 'Space Grotesk', sans-serif;
  position: relative;
  z-index: 2;
}

/* ─── DISCOVER FILTERS ───────────────────── */
.discover-filters {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 2px solid #e8e4df;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  color: #888;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.filter-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-toggle.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.filter-check {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid #ddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  transition: all 0.2s;
}

.filter-toggle.active .filter-check {
  background: var(--accent);
  border-color: var(--accent);
}

/* ─── HIDDEN ──────────────────────────────── */
.hidden { display: none !important; }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 768px) {
  .app-content { padding: 24px 16px; }
  .auth-card { padding: 36px 28px; }
  .onboarding-card { padding: 32px 24px; }
  .match-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .match-card-header { flex-direction: column; text-align: center; }
  .app-nav-links { display: none; }
  .progress-line { flex: 0 0 24px; }
  .progress-label { font-size: 0.65rem; }
  .camera-feed { max-height: 300px; }
  .verify-benefits { margin: 20px 0; }
}

/* ─── MOBILE NAV TOGGLE ──────────────────── */
.mobile-nav-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 768px) {
  .mobile-nav-btn { display: block; }
  .app-nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--harbor);
    flex-direction: column;
    padding: 12px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
  }
}
