/* Global Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  min-height: 100vh;
  background: black;
  color: #ffffff;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center top,
    rgba(254, 240, 138, 0.12) 0%,
    rgba(254, 240, 138, 0.04) 40%,
    transparent 70%
  );
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(254, 240, 138, 0.08) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(254, 240, 138, 0.08) 1px,
      transparent 1px
    );
  background-size:
    50px 50px,
    80px 80px;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  padding: 60px 24px 0;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 200px;
  height: 200px;
}

.logo-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  border-radius: 50%;
  width: 110%;
  height: 110%;
  border-width: 2px;
  border-style: solid;
  animation: monokaiPulse 4s infinite ease-in-out;
}

@keyframes monokaiPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    border-color: #f92672; /* pink */
    box-shadow: 0 0 8px 2px rgba(249, 38, 114, 0.5);
  }
  25% {
    border-color: #66d9ef; /* cyan */
    box-shadow: 0 0 12px 4px rgba(102, 217, 239, 0.5);
  }
  50% {
    transform: translate(-50%, -50%) scale(0.9);
    border-color: rgba(254, 248, 173, 0.7);
    box-shadow: 0 0 8px 2px rgba(254, 248, 173, 0.5);
  }
  75% {
    border-color: #fd971f; /* orange */
    box-shadow: 0 0 18px 7px rgba(253, 151, 31, 0.5);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    border-color: #f92672; /* back to pink */
    box-shadow: 0 0 8px 2px rgba(249, 38, 114, 0.5);
  }
}

.logo {
  width: 140px;
  height: 140px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 4.43rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #fef08a 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(254, 240, 138, 0.3);
}

.highlight {
  position: relative;
  background: linear-gradient(135deg, #fef08a 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #fef08a 50%,
    transparent 100%
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
  max-width: 825px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #fef08a 0%, #f59e0b 100%);
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 8px 32px rgba(254, 240, 138, 0.4);
  animation: subtlePulse 3s ease-in-out infinite;
}

.coming-soon-badge svg {
  animation: rotate 4s linear infinite;
}

@keyframes subtlePulse {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(254, 240, 138, 0.4);
  }
  50% {
    box-shadow: 0 12px 40px rgba(254, 240, 138, 0.6);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #fef08a 0%, #f59e0b 100%);
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(254, 240, 138, 0.3);
  border: none;
  cursor: pointer;
}

.primary-button:hover:not(.disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(254, 240, 138, 0.4);
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.primary-button.disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(254, 240, 138, 0.3);
  backdrop-filter: blur(10px);
}

.secondary-button:hover {
  background: rgba(254, 240, 138, 0.1);
  border-color: rgba(254, 240, 138, 0.6);
  transform: translateY(-2px);
}

/* Sections */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #fef08a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Section */
.features {
  background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 25% 25%,
      rgba(254, 240, 138, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(245, 158, 11, 0.03) 0%,
      transparent 50%
    );
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(254, 240, 138, 0.1);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(254, 240, 138, 0.3);
  box-shadow: 0 20px 60px rgba(254, 240, 138, 0.1);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(254, 240, 138, 0.2) 0%,
    rgba(245, 158, 11, 0.2) 100%
  );
  border-radius: 20px;
  margin: 0 auto 24px;
  color: #fef08a;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.feature-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Benefits Section */
.benefits {
  background: #0a0a0a;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits-text {
  text-align: left;
}

.benefits-text .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.benefits-text .section-subtitle {
  text-align: left;
  margin: 0 0 40px 0;
  max-width: none;
}

.benefits-list {
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

.check-icon {
  color: #fef08a;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefits-visual {
  position: relative;
}

.visual-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(254, 240, 138, 0.2);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.visual-dots {
  display: flex;
  gap: 8px;
}

.visual-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.visual-dots span:first-child {
  background: #ef4444;
}

.visual-dots span:nth-child(2) {
  background: #f59e0b;
}

.visual-dots span:nth-child(3) {
  background: #10b981;
}

.visual-icon {
  color: #fef08a;
}

.visual-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 120px;
  margin-bottom: 24px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, #f59e0b, #fef08a);
  border-radius: 4px 4px 0 0;
  animation: growBar 2s ease-out;
}

@keyframes growBar {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

.visual-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.visual-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
  position: relative;
  z-index: 2;
}

.cta-content {
  text-align: center;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #fef08a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(254, 240, 138, 0.08) 0%,
    transparent 70%
  );
}

.cta-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 600px;
  color: rgba(254, 240, 138, 0.02);
  z-index: 0;
  width: 600px;
  height: 600px;
}

/* Footer */
.footer {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: #fef08a;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #fef08a;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    max-width: 300px;
  }

  .benefits-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .benefits-text {
    order: 2;
  }

  .benefits-visual {
    order: 1;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-icon {
    width: 300px;
    height: 300px;
  }
}
