* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors in HSL */
  --background: 0 0% 100%;
  --foreground: 222 47% 11%;
  --card: 0 0% 100%;
  --border: 214 32% 91%;
  --muted-foreground: 215 20% 45%;
  --crypto-blue: 217 91% 60%;
  --crypto-purple: 263 70% 50%;
  --crypto-green: 142 76% 36%;
  --crypto-gold: 45 100% 51%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 1rem;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsl(var(--background)), hsl(var(--card)), hsl(var(--background)));
}

.bg-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, hsla(var(--crypto-blue), 0.15), transparent 50%);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, hsl(var(--border)) 1px, transparent 1px),
    linear-gradient(to bottom, hsl(var(--border)) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000, transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  border-radius: 9999px;
  background: hsla(var(--card), 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid hsl(var(--border));
}

.icon-trending {
  color: hsl(var(--crypto-green));
}

.badge-text {
  font-size: 0.875rem;
  font-family: 'Courier New', monospace;
  color: hsl(var(--muted-foreground));
}

/* Logo */
.logo-container {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.logo {
  width: 12rem;
  height: 12rem;
  object-fit: contain;
  animation: fadeIn 0.6s ease-out;
}

/* Heading */
.heading {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, hsl(var(--crypto-blue)) 0%, hsl(var(--crypto-purple)) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-normal {
  color: hsl(var(--foreground));
}

/* Description */
.description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* CTA Button */
.cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  padding: 1.5rem 2rem;
  background: hsl(var(--crypto-gold));
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px hsla(var(--crypto-gold), 0.5);
  font-weight: 600;
}

.cta-button:hover {
  background: hsl(var(--crypto-gold) / 0.9);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px hsla(var(--crypto-gold), 0.6);
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
  transform: translateX(4px);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, hsl(var(--crypto-blue)) 0%, hsl(var(--crypto-purple)) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Courier New', monospace;
}

.stat-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
}

/* Decorative blobs */
.decorative-blob {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 3s ease-in-out infinite;
}

.blob-left {
  top: 25%;
  left: 2.5rem;
  background: hsla(var(--crypto-blue), 0.2);
}

.blob-right {
  bottom: 25%;
  right: 2.5rem;
  background: hsla(var(--crypto-purple), 0.2);
  animation-delay: 1s;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Design */
@media (min-width: 640px) {
  .heading {
    font-size: 3.75rem;
  }
  
  .description {
    font-size: 1.25rem;
  }
  
  .stat-value {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .heading {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .heading {
    font-size: 6rem;
  }
}

@media (max-width: 640px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .logo {
    width: 10rem;
    height: 10rem;
  }
  
  .hero {
    padding: 3rem 1rem;
  }
}