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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.hero-container {
  min-height: 100vh;
  background: #000;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.background-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(0, 0, 0, 1) 50%, rgba(59, 130, 246, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  min-height: 80vh;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.text-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .text-content {
    padding-right: 32px;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(147, 51, 234, 0.3);
  background: rgba(147, 51, 234, 0.1);
  color: rgb(196, 181, 253);
  font-size: 14px;
  width: fit-content;
}

.sparkles-icon {
  width: 16px;
  height: 16px;
}

.heading-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.main-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

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

.gradient-text {
  background: linear-gradient(90deg, rgb(196, 181, 253) 0%, rgb(251, 182, 206) 50%, rgb(147, 197, 253) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description {
  font-size: 1.25rem;
  color: rgb(209, 213, 219);
  line-height: 1.6;
  max-width: 32rem;
}

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

.button-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
}

@media (min-width: 640px) {
  .button-group {
    flex-direction: row;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 32px;
  font-size: 1.125rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}

.btn-primary {
  background: linear-gradient(90deg, rgb(147, 51, 234) 0%, rgb(59, 130, 246) 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(90deg, rgb(126, 34, 206) 0%, rgb(37, 99, 235) 100%);
}

.btn-outline {
  border: 1px solid rgb(75, 85, 99);
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: rgb(31, 41, 55);
}

.arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

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

.features {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  font-size: 14px;
  color: rgb(156, 163, 175);
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: rgb(34, 197, 94);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animation-container {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .animation-container {
    justify-content: flex-end;
  }
}

.shader-wrapper {
  position: relative;
}

.glow-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(147, 51, 234, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
  filter: blur(48px);
  transform: scale(1.1);
}

.pulsing-border-shader {
  position: relative;
  width: 535px;
  height: 511px;
  border-radius: 0px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 25.22%, rgba(78, 7, 47, 1) 43.89%, rgba(0, 0, 0, 0) 60.04%);
}

#shaderCanvas {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.floating-dot {
  position: absolute;
  border-radius: 50%;
  animation: bounce 2s infinite;
}

.dot-1 {
  top: -16px;
  right: -16px;
  width: 12px;
  height: 12px;
  background: rgb(196, 181, 253);
  animation-delay: 0s;
}

.dot-2 {
  top: 33%;
  left: -24px;
  width: 8px;
  height: 8px;
  background: rgb(147, 197, 253);
  animation-delay: 1s;
}

.dot-3 {
  bottom: 25%;
  right: -32px;
  width: 16px;
  height: 16px;
  background: rgb(251, 182, 206);
  animation-delay: 2s;
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 128px;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .pulsing-border-shader {
    width: 300px;
    height: 287px;
  }

  .main-heading {
    font-size: 2.5rem;
  }

  .description {
    font-size: 1.125rem;
  }

  .features {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}
