/* ========================================
   SnapDark — Mobile-First Dark Theme
   ======================================== */

:root {
  --bg-primary: #0D0D0F;
  --bg-secondary: #141418;
  --bg-card: #1A1A20;
  --bg-card-hover: #222228;
  --yellow: #FFFC00;
  --yellow-dim: rgba(255, 252, 0, 0.15);
  --yellow-glow: rgba(255, 252, 0, 0.3);
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0B0;
  --text-muted: #6B6B7B;
  --border: rgba(255, 255, 255, 0.06);
  --danger: #FF4757;
  --danger-dim: rgba(255, 71, 87, 0.15);
  --success: #2ED573;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(255, 252, 0, 0.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== PAGE SYSTEM ===== */
.page {
  display: none;
  min-height: 100dvh;
  width: 100%;
  animation: pageIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.page.active {
  display: flex;
}

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

/* ===== LANDING PAGE ===== */
.landing-container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 40px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100dvh;
  justify-content: center;
  gap: 20px;
}

/* Brand */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: brandFloat 3s ease-in-out infinite;
}

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

.brand-icon {
  position: relative;
}

.brand-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--yellow-glow), transparent 70%);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0; }
}

.brand-name {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.brand-name span {
  background: linear-gradient(135deg, var(--yellow), #FFD600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Tagline */
.tagline {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 320px;
}

.tagline .highlight {
  color: var(--yellow);
  font-weight: 700;
}

/* Badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow-dim);
  border: 1px solid rgba(255, 252, 0, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--yellow);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.badge:hover {
  transform: scale(1.03);
  background: rgba(255, 252, 0, 0.2);
}

/* Feature Card */
.feature-card {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), #FFD600, var(--yellow));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}

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

.feature-icon {
  font-size: 28px;
  line-height: 1;
}

.feature-header h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.feature-desc strong {
  color: var(--yellow);
  font-weight: 600;
}

/* CTA Button */
.btn-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--yellow), #FFD600);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: #0D0D0F;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 20px rgba(255, 252, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
  0%, 75%, 100% { left: -100%; }
  50% { left: 150%; }
}

.btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 2px 10px rgba(255, 252, 0, 0.2);
}

.security-footer {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 15px;
}

.disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.1px;
  margin-top: 12px;
}

/* Expiration Timer */
.expiration-timer {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 71, 87, 0.1);
  border: 1px dashed rgba(255, 71, 87, 0.4);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  width: 100%;
}
.expiration-icon {
  color: #ff4757;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.expiration-text {
  color: #ff4757;
  font-size: 11px;
  text-align: left;
  line-height: 1.4;
}
.expiration-text strong {
  font-size: 13px;
  display: block;
  margin-top: 2px;
}
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* Social Proof Toast */
.social-proof-toast {
  position: fixed;
  bottom: -100px;
  right: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 252, 0, 0.2);
  border-radius: 50px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 9999;
}
.social-proof-toast.show {
  bottom: 20px;
}
.toast-avatar {
  width: 24px;
  height: 24px;
  background: rgba(255, 252, 0, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--yellow);
  flex-shrink: 0;
}
.toast-text {
  font-size: 11px;
  color: var(--text-muted);
}
.toast-text strong {
  color: var(--text-primary);
}

/* App Footer & Legal Modals */
.app-footer {
  width: 100%;
  text-align: center;
  padding: 20px 10px;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: auto;
  position: relative;
  z-index: 10;
}
.app-footer a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0 4px;
  transition: color 0.2s;
}
.app-footer a:hover {
  color: var(--text-primary);
}
.legal-modal {
  text-align: left;
  max-height: 80vh;
  overflow-y: auto;
}
.legal-modal h2 {
  font-size: 18px;
  margin-bottom: 10px;
}
.legal-content {
  font-size: 13px;
  color: var(--text-muted);
  margin: 15px 0 20px;
  line-height: 1.5;
}
.legal-content p {
  margin-bottom: 10px;
}
.legal-content strong {
  color: var(--text-primary);
}

/* ===== QUESTIONS PAGE ===== */
.questions-container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

/* Progress */
.progress-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--bg-card);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--yellow), #FFD600);
  border-radius: 100px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(255, 252, 0, 0.4);
}

.progress-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  text-align: center;
}

/* Question Card */
.question-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  animation: cardIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.question-icon {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 4px;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.question-card h2 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  max-width: 320px;
}

.question-sub {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 300px;
}

.question-sub-legal {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 320px;
  background: var(--bg-card);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.question-sub-legal strong {
  color: var(--yellow);
}

/* Question Buttons */
.question-buttons {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  margin-top: 8px;
}

.btn-yes, .btn-no {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease;
}

.btn-yes {
  background: linear-gradient(135deg, var(--yellow), #FFD600);
  color: #0D0D0F;
  box-shadow: 0 4px 16px rgba(255, 252, 0, 0.2);
}

.btn-yes:active {
  transform: scale(0.95);
  box-shadow: 0 2px 8px rgba(255, 252, 0, 0.15);
}

.btn-no {
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-no:active {
  transform: scale(0.95);
  background: var(--bg-card-hover);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  animation: modalFade 0.25s ease;
}

.modal-overlay.active {
  display: flex;
}

@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 24px 24px;
  text-align: center;
  max-width: 340px;
  width: 100%;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  animation: modalSlide 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.modal-card p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.btn-modal {
  max-width: 200px;
  margin: 0 auto;
}

/* ===== FEATURES PAGE ===== */
.features-container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100dvh;
  justify-content: center;
  gap: 14px;
}

.features-brand {
  margin-bottom: 2px;
}

.brand-sm {
  font-size: 24px !important;
}

/* Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.cap-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.cap-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 252, 0, 0.15);
}

.cap-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.cap-info h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.cap-info p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Anonymous Notice */
.anon-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: rgba(46, 213, 115, 0.08);
  border: 1px solid rgba(46, 213, 115, 0.15);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.anon-icon {
  flex-shrink: 0;
}

.anon-notice strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--success);
  display: block;
  margin-bottom: 2px;
}

.anon-notice p {
  font-size: 11px;
  color: var(--text-muted);
}

/* Feature Card Mini */
.feature-card-mini {
  padding: 14px 20px;
}

.feature-card-mini .feature-header {
  margin-bottom: 0;
}

.feature-card-mini .feature-icon {
  font-size: 22px;
}

.feature-card-mini h2 {
  font-size: 15px;
}

/* Input Group */
.input-group {
  width: 100%;
}

.input-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.input-wrapper {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-wrapper:focus-within {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 252, 0, 0.1);
}

.input-prefix {
  font-size: 16px;
  font-weight: 700;
  color: var(--yellow);
  margin-right: 4px;
}

.input-wrapper input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 14px 0;
}

.input-wrapper input::placeholder {
  color: var(--text-muted);
}

/* ===== TERMINAL PAGE ===== */
.terminal-container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #1C1C24;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #28CA41; }

.terminal-user {
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
  font-family: 'Courier New', monospace;
}

.terminal-body {
  flex: 1;
  background: #0A0A0E;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 16px;
  overflow-y: auto;
  max-height: calc(100dvh - 160px);
  scrollbar-width: none;
}

.terminal-body::-webkit-scrollbar {
  display: none;
}

.terminal-lines {
  font-family: 'Courier New', Consolas, monospace;
  font-size: 11px;
  line-height: 1.6;
  color: var(--success);
  word-break: break-all;
}

.terminal-lines .line {
  opacity: 0;
  animation: termLine 0.15s ease forwards;
}

@keyframes termLine {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.terminal-lines .line-cmd {
  color: var(--yellow);
}

.terminal-lines .line-info {
  color: #5C6BC0;
}

.terminal-lines .line-success {
  color: var(--success);
}

.terminal-lines .line-warn {
  color: #FFB74D;
}

.terminal-lines .line-data {
  color: #80CBC4;
}

.terminal-lines .line-error {
  color: var(--danger);
}

/* Terminal Progress */
.terminal-progress-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1C1C24;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  border: 1px solid var(--border);
  border-top: none;
}

.terminal-progress-bar {
  flex: 1;
  height: 8px;
  background: #0A0A0E;
  border-radius: 100px;
  overflow: hidden;
}

.terminal-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--success), #69F0AE);
  border-radius: 100px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(46, 213, 115, 0.4);
}

.terminal-progress-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--success);
  font-family: 'Courier New', monospace;
  min-width: 40px;
  text-align: right;
}

/* ===== RESULTS PAGE ===== */
.results-container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.results-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
  background: rgba(46, 213, 115, 0.12);
  border: 1px solid rgba(46, 213, 115, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
}

.results-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.results-title .highlight {
  color: var(--yellow);
}

/* Results Sections */
.results-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.results-section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.results-section-header span {
  font-size: 18px;
}

.results-section-header h3 {
  font-size: 14px;
  font-weight: 700;
}

/* Blurred Data */
.blurred-data {
  padding: 12px 16px;
  position: relative;
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
}

.blurred-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.blurred-row:last-child {
  border-bottom: none;
}

.blurred-label {
  font-size: 12px;
  color: var(--text-muted);
}

.blurred-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Blurred Gallery */
.blurred-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}

.blurred-thumb {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2a2a35, #1a1a25);
  border-radius: 8px;
}

/* Blurred Messages */
.blurred-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.blurred-msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a3a45, #2a2a35);
  flex-shrink: 0;
}

.blurred-msg-content {
  flex: 1;
  min-width: 0;
}

.blurred-msg-name {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}

.blurred-msg-text {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blurred-msg-time {
  font-size: 10px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Blurred Friends */
.blurred-friend-list {
  display: flex;
  gap: 12px;
  padding-bottom: 10px;
  margin-bottom: 4px;
}

.blurred-friend {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.blurred-friend-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a3a45, #2a2a35);
  border: 2px solid rgba(255, 252, 0, 0.2);
}

.blurred-friend-name {
  font-size: 10px;
  color: var(--text-muted);
}

/* Results Unlock */
.results-unlock {
  background: var(--bg-card);
  border: 1.5px solid rgba(255, 252, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 0 30px rgba(255, 252, 0, 0.05);
}

.lock-icon {
  font-size: 36px;
}

.results-unlock p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Map specific */
.blurred-map-wrapper {
  margin: -12px -16px 12px;
  height: 120px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blurred-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: blur(6px) contrast(1.1) brightness(0.6);
  transform: scale(1.1); /* Prevents blurred edges from showing white/transparent */
}

/* Image styles for bitmojis */
.blurred-thumb-img {
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}

.blurred-msg-avatar-img,
.blurred-friend-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-primary);
  flex-shrink: 0;
}

.blurred-friend-avatar-img {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 252, 0, 0.2);
}

/* Pricing Card */
.pricing-card {
  width: 100%;
  background: rgba(255, 252, 0, 0.05);
  border: 1px solid rgba(255, 252, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 4px 0;
}

.pricing-amount {
  font-size: 32px;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 4px;
}

.pricing-detail {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Guarantee Card */
.guarantee-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  background: var(--bg-primary);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: left;
}

.guarantee-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.guarantee-text {
  flex: 1;
}

.guarantee-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.guarantee-text p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Unlock Button */
.btn-unlock {
  margin-top: 4px;
  text-decoration: none;
}

/* Security Footer */
.security-footer {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.security-footer::before {
  content: '🔒';
  font-size: 12px;
}
/* ===== BACKGROUND EFFECTS ===== */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 252, 0, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 214, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--bg-card-hover);
  border-radius: 100px;
}

/* ===== DESKTOP ENHANCEMENTS ===== */
@media (min-width: 768px) {
  .landing-container {
    padding: 60px 24px;
  }

  .brand-name {
    font-size: 44px;
  }

  .tagline {
    font-size: 20px;
  }

  .feature-card {
    padding: 24px;
  }

  .question-card h2 {
    font-size: 26px;
  }
}

