@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #050810;
  --bg-elevated: #0A0E1A;
  --bg-card: #0F1320;
  --bg-card-hover: #151A2E;
  --surface: #1A1F35;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  --purple: #8B5CF6;
  --purple-light: #A78BFA;
  --purple-dark: #7C3AED;
  --pink: #EC4899;
  --blue: #3B82F6;
  --cyan: #06B6D4;
  --amber: #F59E0B;
  --emerald: #10B981;
  --red: #EF4444;

  --text: #F1F5F9;
  --text-2: #CBD5E1;
  --text-3: #94A3B8;
  --text-4: #64748B;

  --grad-primary: linear-gradient(135deg, #7C3AED, #EC4899);
  --grad-secondary: linear-gradient(135deg, #3B82F6, #06B6D4);
  --grad-warm: linear-gradient(135deg, #F59E0B, #EF4444);

  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --container: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--surface) var(--bg);
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-4); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── NOISE OVERLAY ─── */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ─── PARTICLE CANVAS ─── */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 8, 16, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 var(--border), 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 0.7rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-3);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.nav-cta):hover { color: var(--text); }

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--grad-primary) !important;
  color: #fff !important;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(124, 58, 237, 0.35);
}

.nav-cta::after { display: none !important; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  pointer-events: none;
  will-change: transform;
}

.hero-glow.g1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -150px;
  background: var(--purple-dark);
  opacity: 0.2;
}

.hero-glow.g2 {
  width: 600px;
  height: 600px;
  bottom: -250px;
  left: -200px;
  background: var(--pink);
  opacity: 0.12;
}

.hero-glow.g3 {
  width: 400px;
  height: 400px;
  top: 35%;
  left: 45%;
  background: var(--blue);
  opacity: 0.08;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: var(--purple-light);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}

.trust-avatar:first-child { margin-left: 0; }

.hero-trust span {
  font-size: 0.85rem;
  color: var(--text-4);
  font-weight: 500;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-glow {
  position: absolute;
  width: 300px;
  height: 500px;
  background: var(--grad-primary);
  filter: blur(100px);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 580px;
  background: var(--bg-elevated);
  border-radius: 44px;
  border: 2.5px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.phone-dynamic-island {
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  margin: 10px auto 0;
  position: relative;
  z-index: 3;
}

.phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 20px 2px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-3);
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-3);
}

.phone-app-header {
  text-align: center;
  padding: 8px 16px 12px;
  border-bottom: 1px solid var(--border);
}

.phone-app-header h3 {
  font-size: 0.95rem;
  font-weight: 700;
}

.phone-app-header p {
  font-size: 0.65rem;
  color: var(--text-4);
  margin-top: 1px;
}

.phone-feed {
  flex: 1;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.phone-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border-radius: 12px;
  padding: 10px 12px;
  opacity: 0;
  transform: translateX(20px);
  animation: card-slide-in 0.5s ease-out forwards;
}

.phone-card[data-anim="1"] { animation-delay: 0.6s; }
.phone-card[data-anim="2"] { animation-delay: 0.9s; }
.phone-card[data-anim="3"] { animation-delay: 1.2s; }
.phone-card[data-anim="4"] { animation-delay: 1.5s; }

@keyframes card-slide-in {
  to { opacity: 1; transform: translateX(0); }
}

.phone-card-avatar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex-shrink: 0;
}

.phone-card-body {
  flex: 1;
  min-width: 0;
}

.phone-card-body strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
}

.phone-card-body p {
  font-size: 0.62rem;
  color: var(--text-4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-card-time {
  font-size: 0.58rem;
  color: var(--text-4);
  flex-shrink: 0;
}

.phone-tab-bar {
  display: flex;
  justify-content: space-around;
  padding: 10px 0 20px;
  border-top: 1px solid var(--border);
}

.tab-item {
  color: var(--text-4);
  transition: color var(--transition);
}

.tab-item.active { color: var(--purple); }

/* ─── MARQUEE ─── */
.marquee-section {
  padding: 2rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-content span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-4);
  padding: 0 0.5rem;
  letter-spacing: -0.01em;
}

.marquee-content .dot-sep {
  font-size: 1.2rem;
  color: var(--purple);
  padding: 0 1rem;
}

/* ─── STATS ─── */
.stats-section {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-icon.purple { background: rgba(139, 92, 246, 0.12); color: var(--purple); }
.stat-icon.pink { background: rgba(236, 72, 153, 0.12); color: var(--pink); }
.stat-icon.blue { background: rgba(59, 130, 246, 0.12); color: var(--blue); }
.stat-icon.amber { background: rgba(245, 158, 11, 0.12); color: var(--amber); }

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-4);
  margin-top: 0.3rem;
  font-weight: 500;
}

/* ─── SECTION HEADER ─── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  background: rgba(124, 58, 237, 0.1);
  color: var(--purple-light);
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(124, 58, 237, 0.15);
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-header p {
  color: var(--text-3);
  font-size: 1.05rem;
}

/* ─── FEATURES BENTO ─── */
.features-section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--transition), width var(--transition);
  box-shadow: 0 0 20px 5px rgba(124, 58, 237, 0.15);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover .feature-card-glow {
  opacity: 1;
  width: 100%;
}

.feature-lg {
  grid-row: span 2;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.feature-icon-wrap.purple { background: rgba(139, 92, 246, 0.12); color: var(--purple); }
.feature-icon-wrap.pink { background: rgba(236, 72, 153, 0.12); color: var(--pink); }
.feature-icon-wrap.blue { background: rgba(59, 130, 246, 0.12); color: var(--blue); }
.feature-icon-wrap.amber { background: rgba(245, 158, 11, 0.12); color: var(--amber); }
.feature-icon-wrap.green { background: rgba(16, 185, 129, 0.12); color: var(--emerald); }
.feature-icon-wrap.red { background: rgba(239, 68, 68, 0.12); color: var(--red); }

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--text-3);
  font-size: 0.92rem;
  line-height: 1.65;
}

.feature-visual {
  margin-top: 1.5rem;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface);
  border-radius: var(--radius-xs);
  padding: 0.65rem 0.9rem;
  margin-bottom: 0.5rem;
  transition: transform var(--transition);
}

.mini-card:hover { transform: translateX(4px); }

.mc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mini-card span {
  font-size: 0.82rem;
  font-weight: 600;
  flex: 1;
}

.mini-card small {
  font-size: 0.72rem;
  color: var(--text-4);
}

.interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.interest-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.interest-tag:hover {
  transform: scale(1.05);
  border-color: var(--tag-color, var(--purple));
  background: rgba(255, 255, 255, 0.06);
}

/* ─── HOW IT WORKS ─── */
.how-section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

.steps-timeline {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

.step-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  padding: 2rem 0;
}

.step-connector {
  position: absolute;
  left: 27px;
  top: 64px;
  bottom: -2rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), var(--purple-light), rgba(139, 92, 246, 0.1));
}

.step-item:last-child .step-connector { display: none; }

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--purple-light);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition);
}

.step-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-hover);
}

.step-card-icon {
  color: var(--purple-light);
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.step-card p {
  color: var(--text-3);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ─── FAQ ─── */
.faq-section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover,
.faq-item.open {
  border-color: var(--border-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--purple-light); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-4);
  transition: transform 0.3s ease, color 0.3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--purple-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.3rem;
  color: var(--text-3);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--purple-light);
  text-decoration: underline;
}

/* ─── CTA ─── */
.cta-section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

.cta-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 28px;
  padding: 5rem 3rem;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: var(--purple-dark);
  filter: blur(140px);
  opacity: 0.15;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--text-3);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #fff;
  color: #000;
  padding: 0.85rem 1.8rem;
  border-radius: 16px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.store-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.store-label small {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.6;
}

.store-label strong {
  font-weight: 700;
  font-size: 1.05rem;
}

/* ─── FOOTER ─── */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-4);
  font-size: 0.9rem;
  margin-top: 0.8rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-4);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--text-3);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--text-4);
  font-size: 0.83rem;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

@keyframes anim-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .features-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-lg {
    grid-row: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 8, 16, 0.95);
    backdrop-filter: blur(24px);
    padding: 1.5rem 2rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }
  .mobile-toggle { display: flex; }

  .hero { padding: 7rem 0 3rem; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content { max-width: 100%; }
  .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }

  .phone-mockup {
    width: 240px;
    height: 500px;
    border-radius: 36px;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .features-bento { grid-template-columns: 1fr; }
  .feature-lg { grid-row: span 1; }

  .step-item { gap: 1.2rem; }
  .step-num { width: 44px; height: 44px; font-size: 1rem; }
  .step-connector { left: 21px; }

  .cta-box { padding: 3rem 1.5rem; border-radius: var(--radius); }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand { grid-column: span 1; }
  .footer-inner { text-align: center; }
  .footer-brand p { margin: 0.8rem auto 0; }
  .footer-brand .nav-logo { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }

  .hero h1 { font-size: 2.2rem; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .stat-card { padding: 1.5rem 1rem; }
  .stat-number { font-size: 1.8rem; }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-btn { width: 100%; justify-content: center; }
}

/* ─── PRIVACY PAGE ─── */
.privacy-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 7rem 2rem 4rem;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-4);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: color var(--transition);
}

.privacy-back:hover { color: var(--text); }

.privacy-page h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.privacy-page .updated {
  color: var(--text-4);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 3rem;
}

.privacy-placeholder {
  background: var(--bg-card);
  border: 1px dashed rgba(124, 58, 237, 0.2);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  margin: 2rem 0 3rem;
}

.privacy-placeholder .ph-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.privacy-placeholder h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.privacy-placeholder p {
  color: var(--text-4);
  font-size: 0.92rem;
}

.privacy-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2.5rem 0 0.8rem;
  color: var(--purple-light);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.privacy-page .content-p,
.privacy-page .content-li {
  color: var(--text-3);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.privacy-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-page a {
  color: var(--purple-light);
  text-decoration: underline;
}

.privacy-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.privacy-footer p {
  color: var(--text-4);
  font-size: 0.83rem;
}
