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

:root {
  --color-bg: #faf9f7;
  --color-surface: #ffffff;
  --color-surface-alt: #f0eee9;
  --color-border: #e2dfd8;
  --color-text: #2c2c3a;
  --color-text-muted: #6b6b80;
  --color-primary: #6c5ce7;
  --color-primary-light: #a78bfa;
  --color-accent: #b8935a;
  --color-accent-glow: rgba(184, 147, 90, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
}

html {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-accent);
  text-decoration: none;
}

.nav-logo-img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
}

/* Hero */
.hero {
  padding: 80px 0 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.highlight {
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 107, 245, 0.35);
}

.coming-soon-badge {
  background: var(--color-accent-glow);
  color: var(--color-accent);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

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

.hero-visual {
  position: relative;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 50% 40%, #d8d3f7, #eee9f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.moon {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(184, 147, 90, 0.4), 0 0 60px rgba(184, 147, 90, 0.2);
}

.stars {
  position: absolute;
  inset: 0;
}

.star {
  position: absolute;
  color: var(--color-primary);
  font-size: 0.7rem;
  opacity: 0.5;
  animation: twinkle 3s ease-in-out infinite;
}

.star:nth-child(2) { animation-delay: 0.5s; }
.star:nth-child(3) { animation-delay: 1s; }
.star:nth-child(4) { animation-delay: 1.5s; }
.star:nth-child(5) { animation-delay: 2s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.hero-bear {
  width: 180px;
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.1));
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--color-surface);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  text-align: center;
  padding: 32px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Why Content */
.why-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.why-content p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.why-quote {
  color: var(--color-accent) !important;
  font-style: italic;
  font-size: 1.2rem !important;
  font-weight: 600;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  margin-top: auto;
  padding: 32px 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--color-border);
}

.footer-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-illustration {
    order: -1;
  }

  .hero-visual {
    width: 240px;
    height: 240px;
  }

  .hero-bear {
    width: 140px;
  }

  .moon {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 30px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

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