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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.custom-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.15s ease;
  mix-blend-mode: difference;
}

.custom-cursor.hover {
  transform: scale(2);
  opacity: 0.5;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #09090b;
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://hoirqrkdgbmvpwutwuwj.supabase.co/storage/v1/object/public/assets/assets/a72ca2f3-9dd1-4fe4-84ba-fe86468a5237_3840w.webp?w=800&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  mask-image: linear-gradient(180deg, transparent, black 0%, black 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 0%, black 70%, transparent);
}

.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding-top: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  transition: background-color 0.3s;
}

.badge:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.badge-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #d4d4d8;
}

.icon-star {
  width: 0.875rem;
  height: 0.875rem;
  color: #facc15;
}

.hero-heading {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  mask-image: linear-gradient(180deg, black 0%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 80%, transparent 100%);
}

.gradient-text {
  background: linear-gradient(to bottom right, white, white, #ffcd75);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #a1a1aa;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background-color: white;
  color: #09090b;
  transition: all 0.3s, opacity 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  transform: scale(1.02);
  background-color: #e4e4e7;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.icon-arrow,
.icon-play {
  width: 1rem;
  height: 1rem;
}

.btn-primary:hover .icon-arrow {
  transform: translateX(4px);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stats-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  backdrop-filter: blur(24px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  margin-top: -4rem;
  margin-right: -4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  filter: blur(60px);
  pointer-events: none;
}

.card-content {
  position: relative;
  z-index: 10;
}

.stats-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-target,
.icon-crown {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: white;
}

.stat-label {
  font-size: 0.75rem;
  color: #a1a1aa;
}

.progress-section {
  margin-bottom: 2rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.progress-label {
  color: #a1a1aa;
}

.progress-value {
  color: white;
  font-weight: 500;
}

.progress-bar {
  width: 100%;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(39, 39, 42, 0.5);
  overflow: hidden;
}

.progress-fill {
  width: 98%;
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(to right, white, #a1a1aa);
}

.divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.mini-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  cursor: default;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.stat-text {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #71717a;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
}

.tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #d4d4d8;
}

.pulse-container {
  position: relative;
  display: flex;
  width: 0.5rem;
  height: 0.5rem;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #4ade80;
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #22c55e;
}

.icon-crown {
  width: 0.75rem;
  height: 0.75rem;
  color: #eab308;
}

.marquee-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  backdrop-filter: blur(24px);
}

.marquee-title {
  padding: 0 2rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #a1a1aa;
}

.marquee-container {
  position: relative;
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.marquee-content {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  padding: 0 1rem;
  animation: marquee 40s linear infinite;
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  transition: all 0.3s;
  cursor: default;
  filter: grayscale(1);
}

.brand-item:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: grayscale(0);
}

.brand-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
  fill: currentColor;
}

.brand-name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: white;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.animate-fade-in {
  animation: fadeSlideIn 0.8s ease-out forwards;
  opacity: 0;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

@media (min-width: 640px) {
  .hero-container {
    padding: 5rem 1.5rem 3rem;
  }

  .hero-left {
    gap: 1.5rem;
    padding-top: 1.5rem;
  }

  .badge-text {
    font-size: 0.75rem;
  }

  .hero-heading {
    font-size: 2.75rem;
    line-height: 1;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
  }

  .cta-buttons {
    flex-direction: row;
  }

  .stats-card {
    padding: 2rem;
  }

  .stat-number {
    font-size: 1.875rem;
  }

  .stat-label {
    font-size: 0.875rem;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .stat-text {
    font-size: 0.625rem;
  }

  .mini-stats {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-container {
    padding: 6rem 1.5rem 4rem;
  }

  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
  }

  .hero-left {
    grid-column: span 7;
    gap: 2rem;
    padding-top: 2rem;
  }

  .hero-right {
    grid-column: span 5;
    margin-top: 3rem;
  }

  .hero-heading {
    font-size: 3.75rem;
    line-height: 0.95;
  }

  .hero-description {
    font-size: 1.125rem;
    line-height: 1.75;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-text {
    font-size: 0.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-container {
    padding: 8rem 2rem 5rem;
  }

  .hero-heading {
    font-size: 4.5rem;
    line-height: 0.9;
  }
}
