/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #D4AF37;
  --gold-light: #E8D48B;
  --gold-dark: #B8941F;
  --bg: #0A0A0F;
  --bg-card: #12121A;
  --bg-surface: #1A1A25;
  --text: #F5F5F5;
  --text-secondary: #A0A0B0;
  --text-muted: #6B6B7B;
  --border: rgba(255,255,255,0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1.2; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.gold-text { color: var(--gold); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer;
  border: none; white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: #0A0A0F;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}
.btn-ghost {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(212, 175, 55, 0.06); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 15, 0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 10px 0;
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo-img { width: 36px; height: 36px; border-radius: 8px; }
.nav-logo-text {
  font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--text); letter-spacing: 1px;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--text);
  margin: 5px 0; transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav.menu-open {
  background: #0A0A0F !important;
  border-bottom: 1px solid var(--border);
}
.mobile-menu {
  display: none; flex-direction: column; padding: 0 24px;
  gap: 16px; max-height: 0; overflow: hidden; 
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #0A0A0F;
}
.mobile-menu.open { 
  max-height: 500px; 
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu > a {
  color: var(--text-secondary); text-decoration: none; font-size: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  transition: all 0.2s ease;
}
.mobile-menu > a:hover {
  color: var(--gold);
  padding-left: 8px;
}
.mobile-menu-actions { display: flex; flex-direction: column; gap: 12px; padding-top: 16px; }

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu { display: flex; }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; padding: 120px 24px 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.4;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.5) 0%, rgba(10,10,15,0.9) 80%, var(--bg) 100%);
}
.hero-content {
  position: relative; z-index: 1; text-align: center; max-width: 800px;
}
.hero-badge {
  display: inline-block; padding: 8px 20px; border-radius: 50px;
  background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: 1px;
  margin-bottom: 32px; font-family: 'Outfit', sans-serif;
}
.hero-title {
  font-size: clamp(36px, 6vw, 72px); font-weight: 800; line-height: 1.05;
  margin-bottom: 24px; letter-spacing: -1px;
}
.hero-subtitle {
  font-size: 18px; color: var(--text-secondary); max-width: 600px;
  margin: 0 auto 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; justify-content: center; align-items: center; gap: 40px;
  margin-top: 64px; flex-wrap: wrap;
}
.stat { text-align: center; opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.stat.visible { opacity: 1; transform: translateY(0); }
.stat-value {
  display: block; font-family: 'Outfit', sans-serif; font-size: 32px;
  font-weight: 700; color: var(--gold);
}
.stat-label { font-size: 13px; color: var(--text-muted); letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ── Section Headers ───────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block; font-family: 'Outfit', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  padding: 6px 16px; border-radius: 50px;
  background: rgba(212, 175, 55, 0.08); border: 1px solid rgba(212, 175, 55, 0.15);
}
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; }

/* ── Features ──────────────────────────────────────────────── */
.features { padding: 120px 0; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; transition: all 0.4s ease;
  opacity: 0; transform: translateY(30px);
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover {
  border-color: rgba(212, 175, 55, 0.25); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.feature-icon { margin-bottom: 16px; color: var(--gold); }
.feature-icon svg { stroke: var(--gold); }
.feature-card h3 {
  font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--text);
}
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── How It Works ──────────────────────────────────────────── */
.how-it-works {
  padding: 100px 0; background: var(--bg-card);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; flex-wrap: wrap; max-width: 900px; margin: 0 auto;
}
.step {
  flex: 1; min-width: 200px; text-align: center; padding: 24px;
  opacity: 0; transform: translateY(20px); transition: all 0.5s ease;
}
.step.visible { opacity: 1; transform: translateY(0); }
.step-number {
  font-family: 'Outfit', sans-serif; font-size: 48px; font-weight: 800;
  color: var(--gold); opacity: 0.3; margin-bottom: 12px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-secondary); }
.step-connector {
  width: 60px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 56px; flex-shrink: 0; opacity: 0.3;
}
@media (max-width: 768px) {
  .step-connector { display: none; }
}

/* ── Pricing ───────────────────────────────────────────────── */
.pricing { padding: 120px 0; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 960px; margin: 0 auto;
}
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 32px;
  display: flex; flex-direction: column; position: relative;
  opacity: 0; transform: translateY(30px); transition: all 0.5s ease;
}
.pricing-card.visible { opacity: 1; transform: translateY(0); }
.pricing-card-featured {
  border-color: var(--gold);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.1);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0A0A0F; font-size: 12px; font-weight: 700;
  padding: 6px 20px; border-radius: 50px; font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
}
.pricing-tier {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Outfit', sans-serif; font-size: 44px; font-weight: 800;
  margin-bottom: 4px;
}
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.pricing-period { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.pricing-features {
  list-style: none; flex: 1; margin-bottom: 32px;
}
.pricing-features li {
  padding: 8px 0; font-size: 14px; color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li::before {
  content: '✓'; color: var(--gold); font-weight: 700; font-size: 14px;
}

/* ── About ─────────────────────────────────────────────────── */
.about { padding: 120px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-content p {
  font-size: 16px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.7;
}
.about-links { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.about-visual { display: flex; flex-direction: column; gap: 16px; }
.about-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 24px;
  opacity: 0; transform: translateX(30px); transition: all 0.5s ease;
}
.about-card.visible { opacity: 1; transform: translateX(0); }
.about-card-icon { margin-bottom: 8px; color: var(--gold); }
.about-card-icon svg { stroke: var(--gold); }
.about-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.about-card p { font-size: 13px; color: var(--text-muted); }

/* ── CTA ───────────────────────────────────────────────────── */
.cta { padding: 100px 0; }
.cta-inner {
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border); border-radius: 24px;
  padding: 80px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(212,175,55,0.05) 0%, transparent 60%);
}
.cta-inner h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 16px; position: relative; }
.cta-inner p { color: var(--text-secondary); font-size: 17px; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; }
.cta-actions { position: relative; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  padding: 64px 0 32px; border-top: 1px solid var(--border);
  background: var(--bg-card);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo { width: 48px; height: 48px; border-radius: 10px; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
.footer-copyright { font-size: 12px; color: var(--text-muted); margin-top: 16px; }
.footer-links h4 {
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links a {
  display: block; color: var(--text-secondary); text-decoration: none;
  font-size: 14px; padding: 4px 0; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-location { font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.footer-region {
  display: block; font-size: 14px; color: var(--text-secondary); padding: 4px 0;
}

/* ── Region Selector ───────────────────────────────────────── */
.region-selector { position: relative; }
.region-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 50px; background: rgba(255,255,255,0.06);
  border: 1px solid var(--border); color: var(--text); cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 13px; transition: all 0.2s;
}
.region-btn:hover { border-color: var(--gold); }
.region-flag { font-size: 16px; }
.region-name { font-weight: 500; }
.region-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 6px; min-width: 200px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4); opacity: 0;
  transform: translateY(-8px); pointer-events: none;
  transition: all 0.2s ease; z-index: 1000;
  display: flex; flex-direction: column;
}
.region-dropdown.open {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.region-option {
  display: block; width: 100%; padding: 10px 14px;
  background: none; border: none; color: var(--text-secondary);
  font-family: 'Inter', sans-serif; font-size: 14px; text-align: left;
  cursor: pointer; border-radius: 8px; transition: all 0.15s;
}
.region-option:hover {
  background: rgba(212, 175, 55, 0.08); color: var(--text);
}

/* ── AI Section ────────────────────────────────────────────── */
.ai-section {
  padding: 120px 0; background: var(--bg-card);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.ai-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .ai-grid { grid-template-columns: 1fr; }
}
.ai-side { display: flex; flex-direction: column; gap: 24px; }
.ai-card {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  opacity: 0; transform: translateY(20px); transition: all 0.5s ease;
  position: relative; overflow: hidden;
}
.ai-card.visible { opacity: 1; transform: translateY(0); }
.ai-card-main {
  border-color: rgba(212, 175, 55, 0.2);
  background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, var(--bg-surface) 100%);
}
.ai-card-badge {
  position: absolute; top: 16px; right: 16px;
  padding: 4px 12px; border-radius: 50px;
  background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold); font-size: 11px; font-weight: 600;
  letter-spacing: 0.5px; font-family: 'Outfit', sans-serif;
}
.ai-card-icon { margin-bottom: 16px; color: var(--gold); }
.ai-card-icon svg { stroke: var(--gold); }
.ai-card h3 {
  font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--text);
}
.ai-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.ai-highlights {
  list-style: none; margin-top: 20px; padding: 0;
}
.ai-highlights li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 14px; color: var(--text-secondary);
}
.ai-check {
  color: var(--gold); font-weight: 700; font-size: 14px; flex-shrink: 0;
  margin-top: 1px;
}

/* ── Price currency ────────────────────────────────────────── */
.price-currency {
  font-size: 20px; font-weight: 500; color: var(--text-muted);
  vertical-align: super; margin-right: 2px;
}

/* ── Apps Coming Soon ─────────────────────────────────────── */
.apps-coming-soon {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.03) 0%, var(--bg) 100%);
}
.apps-inner {
  text-align: center; max-width: 600px; margin: 0 auto;
  opacity: 0; transform: translateY(20px); transition: all 0.6s ease;
}
.apps-inner.visible { opacity: 1; transform: translateY(0); }
.apps-badge {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  background: rgba(212, 175, 55, 0.08); border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold); font-size: 13px; font-weight: 600;
  letter-spacing: 0.5px; font-family: 'Outfit', sans-serif;
  margin-bottom: 20px;
}
.apps-inner h2 {
  font-size: clamp(24px, 4vw, 36px); font-weight: 700; margin-bottom: 16px;
}
.apps-inner p {
  font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px;
}
.apps-stores { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px; border-radius: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 14px; font-weight: 500;
  font-family: 'Inter', sans-serif; text-decoration: none;
  transition: all 0.3s ease;
}
.store-badge svg { flex-shrink: 0; }
a.store-badge-live {
  color: var(--text); border-color: rgba(212, 175, 55, 0.3);
  cursor: pointer;
}
a.store-badge-live:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}
.store-badge-pending {
  opacity: 0.5; cursor: default;
}

/* ── WhatsApp FAB ─────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease; text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-fab::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: whatsapp-pulse 2s ease-in-out infinite;
}
@keyframes whatsapp-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0; }
}
.whatsapp-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--bg-card); color: var(--text); font-size: 13px;
  font-weight: 500; font-family: 'Inter', sans-serif;
  padding: 8px 16px; border-radius: 8px; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3); border: 1px solid var(--border);
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; }

/* ── Pricing trial badge ──────────────────────────────────── */
.pricing-trial {
  color: var(--gold) !important; font-weight: 600;
}
.pricing-trial::before {
  content: '★' !important;
}

/* ── Cookie Consent Banner ────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; z-index: 1100;
  max-width: 380px; background: rgba(18, 18, 26, 0.95);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(120%); opacity: 0;
}
.cookie-banner.show {
  transform: translateY(0); opacity: 1;
}
.cookie-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.cookie-icon { color: var(--gold); font-size: 18px; }
.cookie-banner h4 { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 0; }
.cookie-banner p { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.5; }
.cookie-choices { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.choice-label { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-secondary); cursor: pointer; }
.choice-label input[type="checkbox"] {
  accent-color: var(--gold); width: 14px; height: 14px;
}
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
@media (max-width: 480px) {
  .cookie-banner { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}

/* ── Interactive Scanner Sandbox ── */
.sandbox-container {
  margin-top: 64px;
  background: rgba(26, 26, 37, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  backdrop-filter: blur(10px);
}
.sandbox-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
  color: var(--text);
  background: linear-gradient(135deg, var(--text) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sandbox-desc {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
}
.sandbox-workspace {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .sandbox-workspace {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.sandbox-image-pane {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sandbox-preview-box {
  position: relative;
  height: 380px;
  background: #06060A;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sandbox-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sandbox-placeholder {
  text-align: center;
  color: var(--text-muted);
  padding: 24px;
}
.sandbox-placeholder svg {
  margin-bottom: 12px;
  color: var(--text-muted);
  opacity: 0.5;
}
.sandbox-placeholder p {
  font-size: 14px;
}
.sandbox-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sample-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.sample-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.sample-btn img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.sample-btn span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}
.sample-btn:hover {
  border-color: rgba(212, 175, 55, 0.4);
}
.sample-btn:hover img {
  opacity: 0.9;
}
.sample-btn.active {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}
.sample-btn.active img {
  opacity: 1;
}
.upload-area {
  display: flex;
  justify-content: center;
}
.btn-upload {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  border-style: solid;
}
.hidden {
  display: none !important;
}

/* Scanner Sweeping Line Animation */
.scanner-laser {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 12px var(--gold);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}
.scanner-laser.scanning {
  animation: sweep 2.5s infinite linear;
  opacity: 1;
}
@keyframes sweep {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

/* Right Pane: Results */
.sandbox-data-pane {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.data-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.02);
}
.data-header h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.status-indicator {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
}
.status-scanning {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  animation: statusPulse 1.5s infinite alternate;
}
.status-success {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}
.status-error {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}
@keyframes statusPulse {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

.data-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
}
.idle-state, .error-state {
  text-align: center;
  color: var(--text-muted);
}
.idle-state p, .error-state p {
  font-size: 14px;
  max-width: 280px;
  margin: 12px auto 0;
}
.error-state svg {
  color: #ef4444;
}
.loading-state {
  text-align: center;
  color: var(--gold);
}
.loading-state p {
  font-size: 14px;
  margin-top: 16px;
  font-weight: 500;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(212, 175, 55, 0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s infinite linear;
  margin: 0 auto;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.customer-info-box {
  margin-bottom: 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}
.customer-info-box h5, .measurements-box h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 12px;
}
.notes-box {
  font-size: 14px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.notes-box p {
  color: var(--text-secondary);
  margin-top: 4px;
}
.text-warning {
  color: #ff9800;
  font-size: 13px;
  line-height: 1.5;
  display: block;
}

.measurements-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.measurements-table th {
  text-align: left;
  padding: 8px 12px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 12px;
  border-bottom: 1px solid var(--border);
}
.measurements-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
.measurements-table tr:last-child td {
  border-bottom: none;
}
.table-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 24px !important;
  font-style: italic;
}

.conf-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}
.conf-high {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}
.conf-medium {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}
.conf-low {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

/* ── P0: Inline Signup Form ─────────────────────────────────── */
.inline-signup {
  max-width: 520px;
  margin: 0 auto;
}
.signup-form {
  background: rgba(18, 18, 26, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(16px);
}
.signup-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.signup-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: all 0.2s;
}
.signup-input:focus {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.04);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.signup-input::placeholder {
  color: var(--text-muted);
}
.otp-input {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.35em;
  font-family: 'Outfit', sans-serif;
}
.otp-input::placeholder {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
}
.signup-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 16px;
  border-radius: 12px;
}
.signup-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}
.signup-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
}
.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(10, 10, 15, 0.2);
  border-top-color: #0A0A0F;
  border-radius: 50%;
  animation: spin 0.8s infinite linear;
  vertical-align: middle;
  margin-right: 4px;
}

/* ── P0: Signup Step Transitions ──────────────────────────── */
.signup-step {
  animation: stepFadeIn 0.4s ease;
}
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.signup-step-header {
  text-align: center;
  margin-bottom: 20px;
}
.signup-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 12px;
}
.signup-step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.signup-step-desc {
  font-size: 14px;
  color: var(--text-secondary);
}
.otp-input {
  text-align: center;
  font-size: 24px !important;
  font-weight: 700;
  letter-spacing: 8px;
  font-family: 'Outfit', sans-serif;
}
.signup-error {
  font-size: 13px;
  color: #ef4444;
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
  padding: 8px 12px;
  background: rgba(239, 68, 68, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, 0.15);
}
.signup-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.signup-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ── P0: Loading Bridge ──────────────────────────────────── */
.loading-bridge {
  text-align: center;
}
.loading-bridge-content {
  padding: 16px 0 8px;
}
.loading-bridge-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 16px;
  animation: checkPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes checkPop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
.loading-bridge-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.loading-bridge-msg {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  min-height: 24px;
  transition: opacity 0.3s;
}
.loading-bridge-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}
.loading-bridge-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.loading-bridge-sub {
  font-size: 12px;
  color: var(--text-muted);
}
.loading-bridge-fallback {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  animation: stepFadeIn 0.4s ease;
}
.loading-bridge-fallback p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.loading-bridge-stores {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── P4: Social Proof Section ───────────────────────────────── */
.social-proof {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
}
.proof-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.proof-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
@media (max-width: 768px) {
  .proof-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
}
.proof-quote blockquote {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin: 20px 0 24px;
  position: relative;
}
.proof-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.proof-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0A0A0F;
  flex-shrink: 0;
}
.proof-author strong {
  display: block;
  font-size: 15px;
  color: var(--text);
}
.proof-author span {
  font-size: 13px;
  color: var(--text-muted);
}
.proof-stats-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.proof-stat {
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  text-align: center;
}
.proof-stat-value {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.proof-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Pricing grid: 3 columns ──────────────────────────────── */
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1060px;
}
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

