@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --bg-elevated: #1a1a25;
  --fg: #e8e6f0;
  --fg-muted: #8a879a;
  --accent-baby: #7eb8e0;
  --accent-fashion: #d4a0e8;
  --accent-summer: #f0c760;
  --border: rgba(255,255,255,0.06);
  --glow-baby: rgba(126,184,224,0.15);
  --glow-fashion: rgba(212,160,232,0.15);
  --glow-summer: rgba(240,199,96,0.15);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(126,184,224,0.08) 0%, rgba(212,160,232,0.06) 40%, rgba(240,199,96,0.04) 70%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.02);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-summer);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero h1 .word-baby { color: var(--accent-baby); }
.hero h1 .word-fashion { color: var(--accent-fashion); }
.hero h1 .word-summer { color: var(--accent-summer); }

.hero .lede {
  font-size: 1.25rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* STORES SECTION */
.stores {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stores-header {
  text-align: center;
  margin-bottom: 4rem;
}

.stores-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.stores-header p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.store-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.store-card:hover {
  transform: translateY(-4px);
}

.store-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.store-card.baby::before { background: linear-gradient(90deg, var(--accent-baby), transparent); }
.store-card.baby:hover { border-color: rgba(126,184,224,0.3); }
.store-card.fashion::before { background: linear-gradient(90deg, var(--accent-fashion), transparent); }
.store-card.fashion:hover { border-color: rgba(212,160,232,0.3); }
.store-card.summer::before { background: linear-gradient(90deg, var(--accent-summer), transparent); }
.store-card.summer:hover { border-color: rgba(240,199,96,0.3); }

.store-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.store-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.store-card.baby h3 { color: var(--accent-baby); }
.store-card.fashion h3 { color: var(--accent-fashion); }
.store-card.summer h3 { color: var(--accent-summer); }

.store-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.store-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.store-tags span {
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  border: 1px solid var(--border);
  color: var(--fg-muted);
}

/* WHY SECTION */
.why {
  padding: 6rem 2rem;
  background: var(--bg-card);
}

.why-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.why h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 4rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.why-item {
  padding: 2rem;
  border-radius: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.why-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.why-item p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* CLOSING */
.closing {
  padding: 8rem 2rem;
  text-align: center;
}

.closing h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto;
}

/* FOOTER */
footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

footer p {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stores-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    min-height: 70vh;
    padding: 3rem 1.5rem;
  }
  
  .stores, .why, .closing {
    padding: 4rem 1.5rem;
  }
}
/* STORE CTA BUTTONS (landing page) */
.store-cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.baby-cta {
  background: rgba(126,184,224,0.12);
  border: 1px solid rgba(126,184,224,0.3);
  color: var(--accent-baby);
}
.baby-cta:hover {
  background: rgba(126,184,224,0.2);
  transform: translateX(2px);
}

.coming-soon-cta {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  cursor: default;
  opacity: 0.6;
}
