:root {
  --cream: #FFF8F0;
  --peach: #FFE8D6;
  --pink: #FF8FAB;
  --pink-dark: #FF6B8A;
  --mint: #7DD3C0;
  --sky: #89CFF0;
  --lavender: #C9B1FF;
  --sunny: #FFD93D;
  --coral: #FF8C69;
  --text: #3D2C4D;
  --text-secondary: #7A6B8A;
  --surface: #FFFFFF;
  --radius: 24px;
  --radius-pill: 999px;
  --shadow: 0 8px 32px rgba(201, 177, 255, 0.25);
  --font-heading: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: linear-gradient(135deg, var(--cream) 0%, #FFF0F5 50%, #F0F8FF 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Decorative blobs */
.blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.blob-pink {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -60px;
  background: rgba(255, 143, 171, 0.2);
}

.blob-blue {
  width: 200px;
  height: 200px;
  top: 40%;
  left: -80px;
  background: rgba(137, 207, 240, 0.22);
}

.blob-yellow {
  width: 160px;
  height: 160px;
  bottom: 10%;
  right: 5%;
  background: rgba(255, 217, 61, 0.2);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(240, 228, 248, 0.8);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--pink-dark);
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  display: block;
}

.icon-logo {
  width: 28px;
  height: 28px;
  color: var(--pink-dark);
  stroke: var(--pink-dark);
}

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

.nav a {
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--pink-dark);
}

.nav a.nav-active {
  color: var(--pink-dark);
}

.nav-cta {
  background: var(--pink);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(255, 107, 138, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Lucide icons */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-inline {
  width: 1.15em;
  height: 1.15em;
  margin-right: 0.2em;
}

.icon-heart {
  color: var(--sunny);
  stroke: var(--sunny);
}

.icon-section {
  width: 48px;
  height: 48px;
  color: var(--pink-dark);
  stroke: var(--pink-dark);
  margin: 0 auto 0.5rem;
  display: block;
}

.icon-step {
  width: 40px;
  height: 40px;
  color: var(--pink);
  stroke: var(--pink);
  margin: 0.5rem auto;
  display: block;
}

.icon-feature {
  width: 36px;
  height: 36px;
  color: var(--tint, var(--pink));
  stroke: var(--tint, var(--pink));
  margin-bottom: 0.75rem;
  display: block;
}

.icon-quote {
  width: 32px;
  height: 32px;
  color: var(--lavender);
  stroke: var(--lavender);
  margin: 0 auto 1rem;
  display: block;
  opacity: 0.6;
}

.icon-cta {
  width: 56px;
  height: 56px;
  color: white;
  stroke: white;
  margin: 0 auto 1rem;
  display: block;
}

.icon-app {
  width: 28px;
  height: 28px;
  color: var(--pink-dark);
  stroke: var(--pink-dark);
  margin: 0 auto 0.25rem;
  display: block;
}

.icon-mascot {
  width: 40px;
  height: 40px;
  color: var(--pink);
  stroke: var(--pink);
  margin: 0 auto 0.25rem;
  display: block;
}

.icon-tiny {
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: -2px;
  margin-right: 2px;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 0.25rem;
}

.menu-btn .icon {
  width: 24px;
  height: 24px;
}

/* Store buttons */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--text);
  color: white;
  padding: 0.65rem 1.25rem;
  border-radius: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid #2a1f35;
  box-shadow: 0 6px 20px rgba(61, 44, 77, 0.25);
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(61, 44, 77, 0.3);
}

.store-btn-lg {
  padding: 0.85rem 1.5rem;
}

.store-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.store-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-text small {
  font-size: 0.65rem;
  opacity: 0.85;
}

.store-text strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.eyebrow {
  font-weight: 700;
  color: var(--pink-dark);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

@media (min-width: 961px) {
  .eyebrow {
    justify-content: flex-start;
  }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-lead strong {
  color: var(--pink-dark);
}

.hero-stores {
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: var(--peach);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--sunny);
}

/* Phone mockup */
.hero-phone {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 280px;
  background: var(--text);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow), 0 24px 48px rgba(61, 44, 77, 0.2);
  transform: rotate(2deg);
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: var(--text);
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
}

.phone-screen {
  background: var(--cream);
  border-radius: 28px;
  padding: 1.25rem;
  min-height: 420px;
}

.app-header {
  text-align: center;
  margin-bottom: 1rem;
}

.app-header strong {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--pink-dark);
  display: block;
}

.app-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  border: 2px solid var(--lavender);
  text-align: center;
}

.app-card.alert {
  background: #FFE8E8;
  border-color: var(--coral);
}

.app-mascot {
  display: none;
}

.app-card .icon-mascot {
  display: block;
}

.app-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.app-card p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.app-metrics {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
}

.app-metrics span {
  background: rgba(137, 207, 240, 0.25);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.app-btn {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.app-btn.success {
  background: #6BCB77;
  color: white;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-alt {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  margin: 2rem auto;
  max-width: calc(1200px - 4rem);
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-emoji {
  display: none;
}

.step-emoji {
  display: none;
}

.cta-emoji {
  display: none;
}

.section-head h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  border: 2px solid var(--border, #F0E4F8);
  box-shadow: var(--shadow);
  position: relative;
}

.step-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
}

.step-card .icon-step {
  margin: 0.5rem auto;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 2px solid color-mix(in srgb, var(--tint) 40%, transparent);
  background: color-mix(in srgb, var(--tint) 12%, white);
  transition: transform 0.2s;
}

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

.feature-card .icon-feature {
  color: var(--tint);
  stroke: var(--tint);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Quote */
.quote-section {
  text-align: center;
  padding: 3rem 2rem;
}

blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--text);
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.5;
}

/* CTA */
.cta-section {
  padding-bottom: 6rem;
}

.cta-card {
  background: linear-gradient(135deg, var(--pink) 0%, var(--lavender) 100%);
  border-radius: 40px;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  box-shadow: 0 16px 48px rgba(255, 107, 138, 0.35);
}

.cta-card .icon-cta {
  margin-bottom: 1rem;
}

.cta-card h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cta-card p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.cta-card .store-buttons {
  justify-content: center;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  background: var(--text);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer .logo {
  color: white;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer a {
  color: var(--pink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-disclaimer {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile nav */
.nav.open {
  display: flex;
}

/* Responsive */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
  }

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

  .hero-stores,
  .store-buttons {
    justify-content: center;
  }

  .hero-phone {
    order: -1;
  }

  .phone-frame {
    transform: none;
    width: 260px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1.5rem;
    border-bottom: 2px solid #F0E4F8;
    gap: 1rem;
  }

  .nav.open {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

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

  .header {
    padding: 1rem;
  }

  .section {
    padding: 3rem 1.25rem;
  }

  .cta-card {
    padding: 3rem 1.5rem;
    border-radius: 28px;
  }

  .store-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Legal / privacy pages */
.legal-page {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.legal-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  padding: 2.5rem 2rem;
  border: 2px solid #F0E4F8;
  box-shadow: var(--shadow);
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.legal-card h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.legal-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.legal-card section {
  margin-bottom: 2rem;
}

.legal-card h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--pink-dark);
  margin-bottom: 0.75rem;
}

.legal-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text);
  margin: 1rem 0 0.5rem;
}

.legal-card p,
.legal-card li {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal-card ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.legal-card a {
  color: var(--pink-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-back {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #F0E4F8;
}

.legal-back a {
  font-weight: 700;
  color: var(--pink-dark);
}
