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

:root {
  --bg:           #0D0404;
  --bg-2:         #180808;
  --bg-3:         #240D0D;
  --bg-card:      rgba(255, 255, 255, 0.03);
  --red:          #DC2626;
  --red-bright:   #EF4444;
  --red-muted:    rgba(220, 38, 38, 0.12);
  --red-border:   rgba(220, 38, 38, 0.25);
  --blue:         #2563EB;
  --blue-bright:  #3B82F6;
  --text:         #F9FAFB;
  --text-muted:   #9CA3AF;
  --text-subtle:  #6B7280;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --radius-xl:    36px;
  --shadow-glow:  0 0 60px rgba(220, 38, 38, 0.15);
  --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

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

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }

p { line-height: 1.7; color: var(--text-muted); }

a { color: inherit; text-decoration: none; }

.gradient-text {
  background: linear-gradient(135deg, var(--red-bright) 0%, #F97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1rem;
}

/* ─── Utility ────────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 24px rgba(220, 38, 38, 0.35);
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-ghost-sm:hover {
  color: var(--text);
  border-color: var(--red-border);
  background: var(--red-muted);
}

/* Hero contribute banner */
.hero-contribute-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(220, 38, 38, 0.07);
  border: 1px solid var(--red-border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.hero-contribute-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.7);
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-contribute-link {
  color: var(--red-bright);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(239, 68, 68, 0.4);
  transition: var(--transition);
}
.hero-contribute-link:hover {
  color: #fff;
  text-decoration-color: rgba(239, 68, 68, 0.8);
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.btn-store:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.btn-store .store-meta { display: flex; flex-direction: column; text-align: left; }
.btn-store .store-label { font-size: 0.7rem; opacity: 0.7; letter-spacing: 0.05em; }
.btn-store .store-name { font-size: 1rem; font-weight: 700; }

/* ─── Navigation ─────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: var(--transition);
  padding: 0 24px;
}

nav.scrolled {
  background: rgba(13, 4, 4, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--red-border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.nav-links a:hover { color: var(--text); }

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(220, 38, 38, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(220, 38, 38, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--red-muted);
  border: 1px solid var(--red-border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--red-bright);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
  animation: pulse 2s infinite;
}

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

.hero-content h1 { margin-bottom: 24px; }

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── Hero Visual / Phone Mockup ─────────────────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-phone-wrap {
  position: relative;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.6));
}

.hero-phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.phone {
  width: 260px;
  background: #1A1A1A;
  border-radius: 44px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 14px 10px;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 0 0 1px rgba(0,0,0,0.5);
}

.phone-island {
  width: 80px;
  height: 26px;
  background: #0D0D0D;
  border-radius: 100px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
}

.phone-island::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #1a1a2e;
  border-radius: 50%;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.phone-screen {
  border-radius: 32px;
  overflow: hidden;
  background: #121212;
  aspect-ratio: 9/18;
  display: flex;
  flex-direction: column;
}

.phone-screen-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-subtle);
  font-size: 0.7rem;
  text-align: center;
  padding: 20px;
}

.phone-screen-placeholder .placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.4;
}

.phone-screen-placeholder .placeholder-label {
  opacity: 0.5;
  line-height: 1.4;
}

.phone-home-bar {
  width: 100px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 100px;
  margin: 10px auto 0;
}

/* Floating badge cards */
.hero-float-card {
  position: absolute;
  background: rgba(30, 10, 10, 0.9);
  border: 1px solid var(--red-border);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.hero-float-card.card-left {
  left: -60px;
  top: 25%;
  animation: floatLeft 4s ease-in-out infinite;
}

.hero-float-card.card-right {
  right: -60px;
  bottom: 30%;
  animation: floatRight 4s ease-in-out infinite 1s;
}

.float-icon {
  font-size: 1.4rem;
  width: 36px;
  height: 36px;
  background: var(--red-muted);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-meta { display: flex; flex-direction: column; }
.float-title { font-weight: 600; color: var(--text); line-height: 1.2; }
.float-sub { color: var(--text-muted); font-size: 0.72rem; margin-top: 2px; }

@keyframes floatLeft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatRight {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ─── Features ───────────────────────────────────────────────────────────── */
#features {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}

.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.features-header p { margin-top: 16px; font-size: 1.05rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--red-border);
}

.feature-card {
  background: var(--bg-card);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-muted);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover .feature-icon {
  background: var(--red);
  transform: scale(1.05);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--red-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

.feature-card p {
  font-size: 0.88rem;
  position: relative;
  z-index: 1;
}

/* ─── Screenshots ────────────────────────────────────────────────────────── */
#screenshots { background: var(--bg-2); overflow: hidden; }

.screenshots-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.screenshots-header p { margin-top: 16px; }

.screenshots-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 24px 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  max-width: 1200px;
  margin: 0 auto;
}

.screenshots-track::-webkit-scrollbar { display: none; }

.screenshot-item {
  flex-shrink: 0;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.screenshot-phone {
  width: 220px;
  background: #1A1A1A;
  border-radius: 38px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 12px 8px;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0,0,0,0.4);
  transition: var(--transition);
}

.screenshot-phone:hover {
  transform: translateY(-8px);
  box-shadow:
    0 48px 80px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(220, 38, 38, 0.1);
}

.screenshot-island {
  width: 60px;
  height: 20px;
  background: #0D0D0D;
  border-radius: 100px;
  margin: 0 auto 8px;
}

.screenshot-screen {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/18;
  background: #121212;
  position: relative;
}

.screenshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.screenshot-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--bg-3) 0%, #0D0D0D 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-subtle);
  font-size: 0.65rem;
  text-align: center;
  padding: 16px;
}

.screenshot-placeholder .ph-icon { font-size: 2rem; opacity: 0.35; }
.screenshot-placeholder .ph-screen { font-weight: 600; font-size: 0.75rem; color: var(--text-muted); opacity: 0.7; }
.screenshot-placeholder .ph-desc { opacity: 0.5; line-height: 1.4; }

.screenshot-home-bar {
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  margin: 8px auto 0;
}

.screenshot-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}

/* Scroll hint arrows */
.screenshots-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.screenshots-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}

.screenshots-nav button:hover {
  background: var(--red-muted);
  border-color: var(--red-border);
}

/* ─── How It Works ───────────────────────────────────────────────────────── */
#how-it-works {
  background: var(--bg);
}

.steps-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.steps-header p { margin-top: 16px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-border), transparent);
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--red-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red-bright);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; }

/* ─── Download CTA ───────────────────────────────────────────────────────── */
#download {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 50%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}

#download::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.download-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.download-inner h2 { margin-bottom: 16px; }
.download-inner > p { font-size: 1.05rem; margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }

.download-stores {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand { max-width: 280px; }
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; }

.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: var(--text-muted); transition: var(--transition); }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.82rem; color: var(--text-subtle); }

.footer-badges { display: flex; gap: 8px; }
.footer-badge {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-subtle);
}

/* ─── Community Database ─────────────────────────────────────────────────── */
.section-dark {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(220,38,38,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 10% 80%, rgba(37,99,235,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.db-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.db-header h2 { margin-bottom: 16px; }
.db-header > p { font-size: 1.05rem; }

.db-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.db-stat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.db-stat-card:hover {
  border-color: var(--red-border);
  background: rgba(220,38,38,0.04);
}
.db-stat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--red-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.db-stat-icon svg { width: 20px; height: 20px; stroke: var(--red-bright); }
.db-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.db-stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

.db-contribute {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.db-contribute-text h3 { font-size: 1.6rem; margin-bottom: 14px; }
.db-contribute-text > p { margin-bottom: 28px; }

.db-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.db-perks li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.perk-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.db-perks strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.db-perks span { font-size: 0.85rem; color: var(--text-muted); }

.db-cta { margin-top: 4px; }

.db-contribute-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.db-leaderboard {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.db-lb-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.db-lb-header svg { stroke: var(--red-bright); }

.db-lb-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}
.db-lb-row:last-child { border-bottom: none; }
.db-lb-row:hover { background: rgba(255,255,255,0.02); }

.db-lb-row--you {
  background: rgba(220,38,38,0.04);
  border-top: 1px dashed var(--red-border);
}
.db-lb-row--you .db-lb-name { color: var(--red-bright); font-style: italic; }

.db-lb-rank {
  width: 24px;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.rank-1 { color: #F59E0B; }
.rank-2 { color: #9CA3AF; }
.rank-3 { color: #B45309; }

.db-lb-name { flex: 1; font-size: 0.9rem; color: var(--text); }
.db-lb-pts {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.db-recent-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
}

.db-recent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.db-recent-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.db-recent-title { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.db-recent-sub { font-size: 0.78rem; color: var(--text-muted); }

.db-recent-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: #22C55E;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ─── Scroll Animations ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-content p { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-float-card.card-left { left: -20px; }
  .hero-float-card.card-right { right: -20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .db-grid { grid-template-columns: 1fr; }
  .db-contribute { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(13, 4, 4, 0.97);
    padding: 24px;
    border-bottom: 1px solid var(--red-border);
    gap: 20px;
  }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 28px 24px; }
  .hero-float-card { display: none; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  .phone { width: 220px; }
  .download-stores { flex-direction: column; align-items: center; }
}
