/* ── Hero ── */
.hero-section {
  padding: 5rem 2rem;
  background: var(--background);
  background-image:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(245, 158, 11, 0.12), transparent),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(139, 92, 246, 0.08), transparent);
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 2rem;
}

.hero-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
}

.hero-crypto {
  color: var(--primary);
  display: inline-block;
}

.hero-pulse {
  color: var(--muted-foreground);
  display: inline-block;
}

.hero-sub {
  color: var(--muted-foreground);
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0 0 2rem 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-filled {
  padding: 0.65rem 1.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary-filled:hover {
  background: #d97706;
  transform: translateY(-2px);
  color: var(--primary-foreground);
}

@keyframes shimmer-once {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.btn-primary-filled {
  background-image: linear-gradient(
    105deg,
    var(--primary) 40%,
    rgba(255, 255, 255, 0.25) 50%,
    var(--primary) 60%
  );
  background-size: 200% auto;
  animation: shimmer-once 0.8s ease 0.4s 1;
}

.btn-primary-outline {
  padding: 0.65rem 1.5rem;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

.btn-primary-outline:hover {
  background: rgba(245, 158, 11, 0.1);
  color: var(--primary);
}

.hero-lottie {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Stats ── */
.stats-section {
  padding: 4rem 2rem;
  background: var(--muted);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.15);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

/* ── Features ── */
.features-section {
  padding: 5rem 2rem;
  background: var(--background);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 3rem;
}

.features-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 2rem 0;
}

.bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bullet-list li {
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.bullet-icon {
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 2px;
}

/* ── Testimonials ── */
.testimonials-section {
  padding: 5rem 0;
  background: var(--muted);
  overflow: hidden;
}

.section-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 3rem 0;
  padding: 0 2rem;
}

.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee-left 40s linear infinite;
}

.marquee-track.reverse {
  animation: marquee-right 40s linear infinite;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  width: 280px;
  flex-shrink: 0;
}

.testimonial-card:hover {
  border-color: var(--glass-border);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

.testimonial-stars {
  color: var(--primary);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.testimonial-quote {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

/* ── Why Us ── */
.why-section {
  padding: 5rem 2rem;
  background: var(--background);
}

.why-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.why-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
}

.why-us {
  border-color: var(--primary);
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.15);
}

.why-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted-foreground);
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.why-us-title {
  color: var(--primary);
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-list li {
  color: var(--foreground);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.why-x {
  color: var(--color-down);
  font-weight: 700;
  flex-shrink: 0;
}

.why-check {
  color: var(--color-up);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .stats-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-lottie {
    display: none;
  }
  .features-inner {
    grid-template-columns: 1fr;
  }
  .features-lottie {
    display: none;
  }
  .why-inner {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
