/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #00c92c;
  --green-dark: #009f24;
  --green-light: #e8f9ec;
  --green-glow: rgba(0, 201, 44, 0.25);
  --bg: #ffffff;
  --white: #ffffff;
  --black: #111111;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.24s; }
.fade-in-delay-3 { transition-delay: 0.36s; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.nav-logo img {
  height: 36px;
  display: block;
}
.nav-business-link {
  font-size: 0.8rem;
  color: var(--gray);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid var(--gray-light);
  border-radius: 999px;
  transition: all 0.2s;
}
.nav-business-link:hover {
  color: var(--black);
  border-color: #ccc;
  background: var(--white);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0d1f10 0%, #0a2e10 50%, #122b14 100%);
  padding: 80px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #00c92c, transparent 70%);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.hero-blob-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #009f24, transparent 70%);
  bottom: -50px; left: 10%;
  animation: blobFloat 10s ease-in-out infinite alternate-reverse;
}
.hero-blob-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, #00c92c, transparent 70%);
  top: 50%; left: 40%;
  animation: blobFloat 6s ease-in-out infinite alternate;
}
@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,201,44,0.15);
  border: 1px solid rgba(0,201,44,0.35);
  color: #6dffab;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.hero-badge-coin { font-size: 1rem; }

.hero-headline {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-headline-accent {
  background: linear-gradient(90deg, #00c92c, #6dffab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Store buttons */
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-store {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 170px;
}
.btn-store:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.btn-store-apple {
  background: var(--white);
  color: var(--black);
}
.btn-store-google {
  background: var(--green);
  color: var(--white);
}

.btn-store-light.btn-store-apple {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-store-light.btn-store-google {
  background: var(--white);
  color: var(--green-dark);
}

.store-icon { width: 24px; height: 24px; flex-shrink: 0; }
.store-label { display: block; font-size: 0.65rem; opacity: 0.7; line-height: 1; margin-bottom: 2px; }
.store-name { display: block; font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800; line-height: 1; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}
.proof-avatars { display: flex; }
.proof-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #0d1f10;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-left: -6px;
}
.proof-avatars .proof-avatar:first-child { margin-left: 0; }

/* ===== PHONE SCREENSHOTS (hero) ===== */
.hero-phones { display: flex; justify-content: center; }

.phone-stack {
  position: relative;
  width: 320px;
  height: 520px;
}

.screenshot-phone {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
  line-height: 0;
}
.screenshot-phone img {
  width: 100%;
  display: block;
  border-radius: 40px;
}

.screenshot-back {
  width: 220px;
  top: 60px; left: -10px;
  transform: rotate(-8deg);
  opacity: 0.82;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55));
  z-index: 1;
}

.screenshot-front {
  width: 240px;
  top: 10px; right: 0px;
  transform: rotate(4deg);
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.65));
  z-index: 2;
  animation: phoneFloat 5s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50%       { transform: rotate(4deg) translateY(-10px); }
}

/* ===== SCREENSHOT SHOWCASE ===== */
.screenshots {
  padding: 100px 0;
  background: #ffffff;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}

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

.screenshot-item picture,
.screenshot-item picture img {
  width: 100%;
  max-width: 200px;
  border-radius: 32px;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.18));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.screenshot-item:hover picture,
.screenshot-item:hover picture img {
  transform: translateY(-8px) scale(1.02);
  filter: drop-shadow(0 28px 56px rgba(0,0,0,0.28));
}

.screenshot-caption {
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.6;
  max-width: 180px;
}

/* Floating badges */
.floating-badge {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--black);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  z-index: 10;
}
.badge-coins {
  bottom: 60px; left: -50px;
  animation: badgeBob 4s ease-in-out infinite;
}
.badge-share {
  top: 80px; right: -50px;
  animation: badgeBob 4.5s ease-in-out infinite 0.5s;
}
@keyframes badgeBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 36px 24px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 0 40px;
  flex: 1;
  min-width: 120px;
}
.stat-number {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-light);
  flex-shrink: 0;
}

/* ===== SECTION SHARED ===== */
.section-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-light);
  border: 1px solid rgba(0,201,44,0.25);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.accent { color: var(--green-dark); }
.section-sub { color: var(--gray); font-size: 1rem; line-height: 1.7; }

/* ===== FEATURES ===== */
.features { padding: 100px 0; background: #f4f4f4; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 56px; height: 56px;
  margin-bottom: 18px;
}
.feature-icon svg { width: 100%; height: 100%; }

.feature-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--black);
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.feature-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 3px 10px;
  border-radius: 999px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 100px 0; background: #f4f4f4; }

.steps-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.step-number {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,201,44,0.35);
  flex-shrink: 0;
}
.step-content h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}
.step-arrow {
  font-size: 1.8rem;
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
}

/* ===== URGENCY CTA ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0d1f10 0%, #0a2e10 60%, #0f2a10 100%);
  padding: 100px 0;
  text-align: center;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.cta-blob-1 {
  width: 400px; height: 400px;
  background: var(--green);
  top: -100px; left: -80px;
}
.cta-blob-2 {
  width: 300px; height: 300px;
  background: var(--green-dark);
  bottom: -80px; right: -60px;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-pulse-ring {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(0,201,44,0.4);
  margin: 0 auto 24px;
  animation: ringPulse 2s ease-in-out infinite;
  position: relative;
}
.cta-pulse-ring::after {
  content: '⚡';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.1); opacity: 0.7; }
}

.cta-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #6dffab;
  background: rgba(0,201,44,0.15);
  border: 1px solid rgba(0,201,44,0.3);
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.cta-headline {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-headline span { color: var(--green); }
.cta-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-store-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.cta-live-feed {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  padding: 8px 18px;
  border-radius: 999px;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: livePulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo img { height: 28px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green-dark); }
.footer-business-link { font-weight: 600 !important; }
.footer-copy { font-size: 0.78rem; color: #aaa; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-phones { order: -1; }
  .hero-badge, .hero-social-proof { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .phone-stack { width: 260px; height: 400px; }
  .screenshot-back { width: 180px; }
  .screenshot-front { width: 200px; }
  .badge-coins { left: -30px; }
  .badge-share { right: -30px; }
  .stat-item { padding: 0 16px; }
  .stat-divider { display: none; }
  .steps-row { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .screenshots-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 0 80px; }
  .features { padding: 72px 0; }
  .how-it-works { padding: 72px 0; }
  .screenshots { padding: 72px 0; }
  .cta-section { padding: 72px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .badge-coins, .badge-share { display: none; }
  .screenshots-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .screenshot-item img { max-width: 140px; border-radius: 24px; }
  .phone-stack { width: 220px; height: 360px; }
  .screenshot-back { width: 160px; }
  .screenshot-front { width: 175px; }
}
