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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #1f2326;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(224, 224, 224, 0.3);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #616161;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #d25df7;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-logo h2 {
  color: #d25df7;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(
    180deg,
    rgba(233, 182, 249, 0.63) 15%,
    rgba(233, 182, 249, 0.2) 82%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: -1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 2rem 0 1.5rem 0;
  color: #0f1418;
  line-height: 1.2;
}

.brand-text {
  color: #d25df7;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #616161;
  line-height: 1.7;
}

.launch-text {
  font-size: 1.1rem;
  color: #757f87;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}


/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cube-container {
  position: relative;
  width: 320px;
  height: 320px;
}

.cube-main {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #e9b6f9, #d25df7, #c641ef);
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(210, 93, 247, 0.4),
    0 10px 20px rgba(210, 93, 247, 0.2);
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.cube-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(210, 93, 247, 0.3), transparent);
  border-radius: 50%;
  animation: shadowFloat 6s ease-in-out infinite;
}

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

@keyframes shadowFloat {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-50%) scale(0.8);
    opacity: 0.2;
  }
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(210, 93, 247, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(210, 93, 247, 0.2);
}

.status-badge.small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #d25df7;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.status-text {
  font-weight: 600;
  color: #d25df7;
  font-size: 0.9rem;
}

/* Buttons */
.btn {
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 200px;
}

.btn-primary {
  background: #d25df7;
  color: white;
}

.btn-primary:hover {
  background: #c641ef;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(210, 93, 247, 0.4);
}



/* Footer */
.footer {
  background: #0f1418;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-brand h3 {
  color: #d25df7;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-brand p {
  color: #9e9e9e;
  margin-bottom: 0.5rem;
}

.footer-brand .contact-email {
  color: #d25df7;
  text-decoration: none;
  font-weight: 500;
}

.footer-status {
  text-align: right;
}

.footer-status p {
  color: #9e9e9e;
  margin-top: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #616161;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #9e9e9e;
  margin: 0;
}

.footer-bottom a {
  color: #d25df7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #e9b6f9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-actions {
    align-items: center;
  }

  .newsletter-inline {
    flex-direction: column;
    max-width: 300px;
  }

  .btn {
    min-width: 280px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-status {
    text-align: center;
  }

  .cube-main {
    width: 250px;
    height: 250px;
  }

  .cube-container {
    width: 270px;
    height: 270px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .btn {
    min-width: 100%;
    padding: 1rem 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  .cube-main {
    width: 200px;
    height: 200px;
  }

  .cube-container {
    width: 220px;
    height: 220px;
  }

  .nav-logo h2 {
    font-size: 1.25rem;
  }
}
