/* === DOSI DESIGN SYSTEM === */
/* Warm pink/coral — soft, maternal, approachable */

:root {
  --pink:        #E8677C;
  --pink-dark:   #C94D63;
  --pink-light:  #FDEEF1;
  --pink-mid:    #F9D0D8;
  --blush:       #FFF5F7;
  --cream:       #FFF9F5;
  --navy:        #1A1A2E;
  --navy-mid:    #2D2D44;
  --charcoal:    #4A4A5A;
  --muted:       #8A8A9A;
  --white:       #FFFFFF;
  --gold:        #F5A623;
  --blue-fb:     #1877F2;
  --blue-tg:     #229ED9;
  --radius-sm:   10px;
  --radius:      18px;
  --radius-lg:   28px;
  --radius-pill: 100px;
  --shadow-sm:   0 2px 12px rgba(232,103,124,0.10);
  --shadow:      0 6px 30px rgba(232,103,124,0.14);
  --shadow-lg:   0 16px 48px rgba(232,103,124,0.18);
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--blush);
  color: var(--navy);
  font-family: 'Nunito', 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-pink { background: var(--pink); color: var(--white); box-shadow: var(--shadow); }
.btn-pink:hover { background: var(--pink-dark); box-shadow: var(--shadow-lg); }

.btn-outline-pink { background: transparent; color: var(--pink); border: 2px solid var(--pink); }
.btn-outline-pink:hover { background: var(--pink-light); }

.btn-white { background: var(--white); color: var(--pink); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.btn-white:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.18); }

.btn-blue-fb { background: var(--blue-fb); color: var(--white); box-shadow: 0 4px 20px rgba(24,119,242,0.25); }
.btn-blue-fb:hover { opacity: 0.9; }

.btn-outline-tg { background: transparent; color: var(--blue-tg); border: 2px solid var(--blue-tg); }
.btn-outline-tg:hover { background: rgba(34,158,217,0.08); }

/* ===== FLOATING HEARTS ===== */
.hearts-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.heart {
  position: absolute;
  opacity: 0.32;
  animation: floatHeart 6s ease-in-out infinite;
  user-select: none;
}
.heart:nth-child(1) { top: 18%; left: 6%;   animation-delay: 0s;   font-size: 1.3rem; }
.heart:nth-child(2) { top: 40%; right: 5%;  animation-delay: 1.5s; font-size: 1rem; }
.heart:nth-child(3) { top: 65%; left: 4%;   animation-delay: 3s;   font-size: 0.85rem; }
.heart:nth-child(4) { top: 22%; right: 10%; animation-delay: 2s;   font-size: 1.5rem; }
.heart:nth-child(5) { bottom: 22%; left: 9%; animation-delay: 4s;  font-size: 1rem; }
.heart:nth-child(6) { bottom: 35%; right: 7%; animation-delay: 0.7s; font-size: 0.8rem; }

@keyframes floatHeart {
  0%, 100% { transform: translateY(0) rotate(-8deg); opacity: 0.28; }
  50%       { transform: translateY(-18px) rotate(8deg); opacity: 0.5; }
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,245,247,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,103,124,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', 'Syne', serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--pink);
  letter-spacing: -0.02em;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--pink);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--pink); }
.nav-cta { padding: 10px 22px; font-size: 0.88rem; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  font-size: 1.4rem;
  color: var(--charcoal);
  line-height: 1;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 18px;
  border-top: 1px solid var(--pink-mid);
  background: var(--blush);
  gap: 2px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-mobile a:hover { color: var(--pink); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 72px 0 80px;
  background: linear-gradient(180deg, #FFF0F3 0%, #FFF5F7 60%, #FFF9F5 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  border: 1px solid var(--pink-mid);
}
.hero h1 {
  font-family: 'Fraunces', 'Syne', serif;
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.hero h1 em { font-style: italic; color: var(--pink); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--charcoal);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 34px;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero-free-note {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-free-note .check { color: var(--pink); }

/* Phone mockup */
.hero-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-mockup {
  width: 255px;
  background: #1A1A2E;
  border-radius: 40px;
  padding: 14px 8px 18px;
  box-shadow: 0 32px 80px rgba(26,26,46,0.3), 0 0 0 7px rgba(26,26,46,0.07);
  position: relative;
  animation: phonefloat 4s ease-in-out infinite;
}
@keyframes phonefloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.phone-notch {
  width: 80px; height: 20px;
  background: #1A1A2E;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 6px;
}
.phone-screen {
  background: #FFF;
  border-radius: 28px;
  overflow: hidden;
  min-height: 410px;
  display: flex;
  flex-direction: column;
}
.phone-header {
  background: linear-gradient(135deg, #FFF0F3 0%, #FFE4EA 100%);
  padding: 14px 12px 10px;
  border-bottom: 1px solid var(--pink-mid);
}
.phone-greeting { font-size: 0.8rem; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.phone-sched-label { font-size: 0.62rem; font-weight: 700; color: var(--charcoal); }
.phone-date { font-size: 0.58rem; color: var(--muted); margin-top: 1px; }

.phone-timeline { padding: 10px 10px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.t-item {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 8px;
  border-radius: 9px;
  background: #FAFAFA;
}
.t-item.done { background: #F0FFF4; }
.t-item.soon { background: #FFF0F3; }

.t-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); flex-shrink: 0; }
.t-item.done .t-dot { background: #34C759; }
.t-item.soon .t-dot { background: var(--pink); animation: pdot 1.4s ease infinite; }

@keyframes pdot {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.4); opacity: 0.6; }
}
.t-info { flex: 1; min-width: 0; }
.t-time { font-size: 0.55rem; font-weight: 700; color: var(--muted); }
.t-med  { font-size: 0.63rem; font-weight: 800; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.t-badge {
  font-size: 0.5rem; font-weight: 800;
  padding: 2px 6px; border-radius: 5px;
  white-space: nowrap;
}
.t-badge.taken { background: #E8FAF0; color: #27AE60; }
.t-badge.soon  { background: var(--pink-light); color: var(--pink-dark); }

.phone-bottom-nav {
  display: flex; justify-content: space-around; align-items: center;
  padding: 8px 6px 10px;
  border-top: 1px solid #F0F0F0;
  background: white;
}
.pnav-icon { font-size: 1rem; color: var(--muted); display: flex; flex-direction: column; align-items: center; gap: 2px; }
.pnav-icon.active { color: var(--pink); }
.pnav-icon span { font-size: 0.4rem; font-weight: 700; }
.pnav-add {
  width: 34px; height: 34px; margin-top: -12px;
  background: var(--pink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem; font-weight: 700;
  box-shadow: 0 4px 14px rgba(232,103,124,0.45);
}

.pill {
  background: var(--bg-warm);
  color: var(--fg-light);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.05);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(76,175,125,0.25);
}

.hero-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(76,175,125,0.35);
}

/* ===== PROBLEM ===== */
.problem {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-family: 'Fraunces', 'Syne', serif;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pain-card {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--pink-mid);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pain-illo { font-size: 3rem; margin-bottom: 12px; display: block; }
.pain-card h3 { font-size: 0.9rem; font-weight: 800; color: var(--navy); line-height: 1.3; }
.pain-card p  { font-size: 0.8rem; color: var(--muted); margin-top: 6px; }

/* ===== FEATURES ===== */
.features-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 22px;
  border: 1px solid rgba(232,103,124,0.1);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
  width: 50px; height: 50px;
  background: var(--pink-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.feature-card h3 {
  font-family: 'Fraunces', 'Syne', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.feature-card p { font-size: 0.85rem; color: var(--charcoal); line-height: 1.6; }
.badge-soon {
  position: absolute; top: 12px; right: 12px;
  background: var(--pink-mid); color: var(--pink-dark);
  font-size: 0.65rem; font-weight: 800;
  padding: 3px 8px; border-radius: var(--radius-pill);
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ===== FOOTER CTA ===== */
.footer-cta {
  padding: 80px 0;
  background: var(--pink);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-cta-inner { position: relative; z-index: 1; }
.footer-cta h2 {
  font-family: 'Fraunces', 'Syne', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800; color: var(--white);
  line-height: 1.25; margin-bottom: 30px;
  max-width: 540px; margin-left: auto; margin-right: auto;
}
.footer-cta .hearts-wrap .heart { color: white; }

/* ===== SITE FOOTER ===== */
.site-footer { background: var(--navy); padding: 36px 0; text-align: center; }
.site-footer-logo {
  font-family: 'Fraunces', 'Syne', serif;
  font-size: 1.35rem; font-weight: 800; color: var(--pink); margin-bottom: 8px;
}
.site-footer p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ===== PAGE 2: WAITLIST ===== */
.waitlist-page {
  min-height: 100vh;
  background: linear-gradient(160deg, #FFF0F3 0%, #FFF5F7 50%, #FFF9F5 100%);
  display: flex; flex-direction: column;
}
.waitlist-page .nav { background: rgba(255,240,243,0.93); }
.waitlist-body {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px 24px;
}
.waitlist-page-logo {
  text-align: center;
  margin-bottom: 28px;
}
.waitlist-page-logo a {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Fraunces', 'Syne', serif;
  font-size: 1.6rem; font-weight: 800; color: var(--pink);
}
.waitlist-card {
  width: 100%; max-width: 540px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.waitlist-illo { font-size: 5rem; text-align: center; display: block; margin-bottom: 18px; animation: phonefloat 4s ease-in-out infinite; }
.waitlist-card h1 {
  font-family: 'Fraunces', 'Syne', serif;
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 800; color: var(--navy);
  text-align: center; line-height: 1.2; margin-bottom: 10px;
}
.waitlist-card .subtitle {
  text-align: center; font-size: 0.92rem; color: var(--charcoal);
  margin-bottom: 30px; line-height: 1.65;
}
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.84rem; font-weight: 700; color: var(--charcoal); margin-bottom: 7px; }
.form-input {
  width: 100%; padding: 12px 15px;
  border: 2px solid var(--pink-mid); border-radius: var(--radius-sm);
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem;
  color: var(--navy); background: var(--blush);
  transition: border-color 0.15s, box-shadow 0.15s; outline: none;
}
.form-input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(232,103,124,0.14); background: white; }
.form-input::placeholder { color: var(--muted); }

.kids-selector { display: flex; gap: 10px; }
.kids-btn {
  flex: 1; padding: 11px 6px;
  border: 2px solid var(--pink-mid); border-radius: var(--radius-sm);
  background: var(--blush);
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem; font-weight: 700; color: var(--charcoal);
  cursor: pointer; transition: all 0.15s; text-align: center;
}
.kids-btn:hover { border-color: var(--pink); color: var(--pink); }
.kids-btn.selected { background: var(--pink); border-color: var(--pink); color: var(--white); box-shadow: var(--shadow-sm); }

.form-submit { width: 100%; margin-top: 10px; padding: 15px; font-size: 1rem; }
.form-privacy {
  text-align: center; font-size: 0.79rem; color: var(--muted);
  margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 5px;
}
.form-error {
  display: none; color: #C0392B; font-size: 0.82rem; font-weight: 600;
  margin-top: 8px; padding: 8px 12px;
  background: #FFF5F4; border: 1px solid #FFCCC7; border-radius: var(--radius-sm);
}
.form-error.show { display: block; }

.testimonial-card {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--pink-light), var(--cream));
  border-radius: var(--radius); padding: 20px 22px;
  border: 1px solid var(--pink-mid);
}
.testimonial-stars { font-size: 1rem; margin-bottom: 8px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.86rem; color: var(--charcoal); font-style: italic; line-height: 1.6; margin-bottom: 10px; }
.testimonial-author { font-size: 0.79rem; font-weight: 700; color: var(--pink-dark); display: flex; align-items: center; gap: 6px; }

/* ===== PAGE 3: THANK YOU ===== */
.thankyou-page {
  min-height: 100vh;
  background: linear-gradient(160deg, #FFF0F3 0%, #FFF5F7 50%, #FFF9F5 100%);
}
.thankyou-page .nav { background: rgba(255,240,243,0.93); }
.thankyou-body { padding: 60px 24px 80px; }
.thankyou-card { max-width: 640px; margin: 0 auto; text-align: center; }
.ty-illo { font-size: 5.5rem; line-height: 1; margin-bottom: 22px; animation: phonefloat 4s ease-in-out infinite; }
.thankyou-card h1 {
  font-family: 'Fraunces', 'Syne', serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em; margin-bottom: 14px;
}
.thankyou-card > .subtitle {
  font-size: 1rem; color: var(--charcoal); line-height: 1.7;
  max-width: 460px; margin: 0 auto 44px;
}
.whats-next {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 32px; box-shadow: var(--shadow-soft); margin-bottom: 24px;
  border: 1px solid var(--pink-mid);
}
.whats-next h2 {
  font-family: 'Fraunces', 'Syne', serif;
  font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 10px;
}
.whats-next p { font-size: 0.88rem; color: var(--charcoal); margin-bottom: 22px; line-height: 1.65; }
.community-btns { display: flex; flex-direction: column; gap: 12px; }
.community-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--radius-pill);
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 0.92rem; cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  text-decoration: none; border: none;
}
.community-btn:hover { transform: translateY(-2px); }

.feedback-section {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 32px; box-shadow: var(--shadow-soft);
  border: 1px solid var(--pink-mid); margin-bottom: 36px;
  text-align: left;
}
.feedback-section h2 {
  font-family: 'Fraunces', 'Syne', serif;
  font-size: 1.1rem; font-weight: 800; color: var(--navy);
  margin-bottom: 8px; text-align: center;
}
.feedback-q { font-size: 0.88rem; color: var(--charcoal); margin-bottom: 14px; text-align: center; }
.feedback-textarea {
  width: 100%; min-height: 96px; padding: 12px 14px;
  border: 2px solid var(--pink-mid); border-radius: var(--radius-sm);
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem;
  color: var(--navy); background: var(--blush); resize: vertical; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.feedback-textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(232,103,124,0.14); background: white; }
.feedback-textarea::placeholder { color: var(--muted); }
.feedback-submit { width: 100%; margin-top: 12px; }
.feedback-done {
  display: none; text-align: center; padding: 11px;
  background: #F0FFF4; border: 1px solid #C6F6D5; border-radius: var(--radius-sm);
  color: #27AE60; font-weight: 700; font-size: 0.88rem; margin-top: 12px;
}

.ty-footer-note { font-size: 0.88rem; color: var(--charcoal); line-height: 1.7; max-width: 440px; margin: 0 auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .pain-grid     { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }

  .hero-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-cta-group { align-items: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-phone-wrap { order: -1; }
  .phone-mockup { width: 220px; }

  .waitlist-card { padding: 30px 22px; }
  .waitlist-body { padding: 36px 16px; }
  .whats-next, .feedback-section { padding: 26px 20px; }
  .thankyou-body { padding: 40px 16px 60px; }
}

@media (max-width: 480px) {
  .pain-grid { grid-template-columns: 1fr; }
  .phone-mockup { width: 195px; }
  .hero { padding: 52px 0 56px; }
}
