:root {
  color-scheme: light;
}

body {
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  background-color: #f7f9fc;
}

.page-aurora {
  position: fixed;
  inset: 0;
  background: radial-gradient(
      circle at top left,
      rgba(46, 196, 182, 0.14),
      transparent 45%
    ),
    radial-gradient(
      circle at 30% 80%,
      rgba(13, 27, 42, 0.12),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(244, 211, 94, 0.12),
      transparent 45%
    );
  z-index: -1;
}

.nav-link {
  color: #12263a;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #2ec4b6;
}

.btn-primary,
.btn-secondary {
  border-radius: 999px;
  padding: 0.65rem 1.6rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: #0d1b2a;
  color: #f7f9fc;
  box-shadow: 0 14px 28px rgba(13, 27, 42, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(13, 27, 42, 0.25);
}

.btn-secondary {
  border: 1px solid rgba(13, 27, 42, 0.2);
  color: #0d1b2a;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 196, 182, 0.6);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 196, 182, 0.4);
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0d1b2a;
  background: rgba(46, 196, 182, 0.1);
}

.pill-teal {
  background: rgba(46, 196, 182, 0.15);
  color: #0d1b2a;
}

.badge {
  border-radius: 999px;
  border: 1px solid rgba(13, 27, 42, 0.15);
  padding: 0.4rem 0.9rem;
  font-weight: 600;
  background: white;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-card {
  position: relative;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.6;
  animation: float 8s ease-in-out infinite;
}

.hero-orb-teal {
  width: 220px;
  height: 220px;
  background: rgba(46, 196, 182, 0.5);
  top: -40px;
  left: -40px;
}

.hero-orb-sun {
  width: 180px;
  height: 180px;
  background: rgba(244, 211, 94, 0.6);
  bottom: -40px;
  right: -20px;
  animation-delay: -2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section {
  position: relative;
}

.info-card,
.feature-card,
.future-card {
  border-radius: 16px;
  background: #f7f9fc;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(13, 27, 42, 0.08);
}

.info-title {
  font-weight: 600;
  font-size: 1rem;
}

.info-text {
  margin-top: 0.35rem;
  color: #12263a;
  opacity: 0.75;
}

.product-card {
  border-radius: 20px;
  background: #0d1b2a;
  color: #f7f9fc;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(13, 27, 42, 0.25);
}

.product-card ul li {
  padding-left: 1.2rem;
  position: relative;
}

.product-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #2ec4b6;
  border-radius: 50%;
}

.future-card {
  background: white;
  padding: 2rem;
  box-shadow: 0 16px 30px rgba(13, 27, 42, 0.12);
}

.roadmap-item {
  border-radius: 999px;
  background: rgba(13, 27, 42, 0.08);
  padding: 0.5rem 1rem;
  font-weight: 600;
}

.feature-card {
  background: white;
  padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(13, 27, 42, 0.12);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-text {
  margin-top: 0.4rem;
  color: #12263a;
  opacity: 0.7;
}

.coming-soon {
  border-radius: 999px;
  border: 1px solid rgba(13, 27, 42, 0.2);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #12263a;
  background: rgba(13, 27, 42, 0.05);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(13, 27, 42, 0.15);
  padding: 0.75rem 0.9rem;
  background: #f7f9fc;
}

.form-input:focus {
  outline: none;
  border-color: rgba(46, 196, 182, 0.8);
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.2);
}

.social-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2ec4b6;
  display: inline-block;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.7rem;
  }
}
