/* =============================================
   BabyOS Landing Page v5 — Full Selling Points
   Brand: Purple/Teal gradient + warm pastels
   ============================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:        #BF5AF2;
  --purple-dark:   #A845D9;
  --purple-light:  #E8D5F5;
  --purple-rgb:    191, 90, 242;
  --teal:          #5AC8FA;
  --teal-rgb:      90, 200, 250;
  --pink:          #FF6B9D;
  --orange:        #FF9F40;
  --gold:          #FFD60A;
  --green:         #30D158;
  --primary:       var(--purple);
  --primary-dark:  var(--purple-dark);
  --primary-light: var(--purple-light);
  --primary-rgb:   var(--purple-rgb);
  --gradient:      linear-gradient(135deg, var(--purple), var(--teal));
  --gradient-h:    linear-gradient(90deg, var(--purple), var(--teal));

  --bg:            #F7F6F4;
  --bg-soft:       #FAF8F3;
  --bg-card:       #FFFFFF;
  --text:          #1C1C1E;
  --text-soft:     #6B6B6B;
  --text-faint:    #9B9B9B;
  --border:        rgba(0,0,0,0.06);

  --pastel-pink:   #FAF5F5;
  --pastel-blue:   #F5F8FA;
  --pastel-purple: #F8F6FA;
  --pastel-warm:   #FAF8F3;
  --pastel-green:  #F5F8F5;

  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  28px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.05);
  --shadow-md:  0 6px 28px rgba(0,0,0,0.08);
  --shadow-lg:  0 16px 56px rgba(0,0,0,0.12);

  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Nunito', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}

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

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-h);
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ---------- Container ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 16px 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(247, 246, 244, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link { display: flex; align-items: center; }
.logo-image { height: 52px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-menu a:hover {
  color: var(--text);
  background: rgba(191, 90, 242, 0.06);
}

.nav-cta {
  background: var(--gradient) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
  padding: 9px 20px !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  opacity: 0.9 !important;
  color: #fff !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(var(--purple-rgb), 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--purple-rgb), 0.4);
}

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

.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: rgba(191, 90, 242, 0.04);
}

.btn-white {
  background: #fff;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background: linear-gradient(160deg, #F0E6FF 0%, #E8F6FF 50%, var(--bg) 100%);
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

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

.blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #E8D5F5, var(--purple));
  top: -160px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}

.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #B3E5FC, var(--teal));
  bottom: -80px; left: -80px;
  animation: blobFloat 10s ease-in-out infinite 2s;
}

.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #FFDDE8, var(--pink));
  top: 40%; left: 30%;
  animation: blobFloat 12s ease-in-out infinite 4s;
}

@keyframes blobFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.04); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(191, 90, 242, 0.2);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.badge-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(48,209,88,0.2);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(48,209,88,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(48,209,88,0.1); }
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-title-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-tags span {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(191, 90, 242, 0.15);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  backdrop-filter: blur(4px);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-stat { display: flex; flex-direction: column; align-items: flex-start; }
.snum { font-family: 'Nunito', sans-serif; font-size: 22px; font-weight: 900; color: var(--text); }
.slabel { font-size: 12px; color: var(--text-soft); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.sdiv { width: 1px; height: 32px; background: var(--border); }

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: #fff;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-item { font-size: 13px; font-weight: 600; color: var(--text-soft); }
.trust-sep { color: var(--border); font-size: 18px; line-height: 1; }

/* ---------- Section Shared ---------- */
section { padding: 96px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-pill {
  display: inline-block;
  background: rgba(191, 90, 242, 0.1);
  color: var(--purple);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ---------- Shared Components ---------- */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.check-list li {
  font-size: 14px;
  color: var(--text-soft);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.feat-emoji {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.feat-tags span {
  background: rgba(191, 90, 242, 0.08);
  color: var(--purple);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}

.feat-tags .tag-highlight {
  background: var(--gradient);
  color: #fff;
}

.feat-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.feat-categories span {
  background: var(--pastel-pink);
  border: 1px solid rgba(255,107,157,0.15);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 12px;
}

.feature-quote {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(191, 90, 242, 0.06);
  border-left: 3px solid var(--purple);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  color: var(--text-soft);
  font-style: italic;
  line-height: 1.6;
}

/* ---------- Life Stages ---------- */
.stages-section { background: #fff; }

.stages-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
}

.stage-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  flex: 1;
  max-width: 340px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.stage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stage-card-featured {
  background: linear-gradient(135deg, rgba(191,90,242,0.04), rgba(90,200,250,0.04));
  border-color: rgba(191, 90, 242, 0.2);
  box-shadow: var(--shadow-sm);
}

.stage-emoji {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.stage-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.stage-arrow {
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--purple);
  opacity: 0.4;
  flex-shrink: 0;
}

.stage-transition {
  text-align: center;
  margin-top: 40px;
  padding: 20px 32px;
  background: rgba(191, 90, 242, 0.05);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ---------- Quote Blocks ---------- */
.quote-section {
  padding: 72px 0;
  background: var(--pastel-purple);
}

.quote-section.quote-alt {
  background: var(--pastel-pink);
}

.pull-quote {
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--text);
  text-align: center;
  font-style: italic;
  position: relative;
  padding: 0 32px;
}

.pull-quote::before {
  content: '\201C';
  position: absolute;
  left: -8px;
  top: -16px;
  font-size: 64px;
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
}

/* ---------- AI Section ---------- */
.ai-section {
  background: #fff;
}

.ai-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.ai-spotlight-text h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.ai-spotlight-text p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}

.ai-context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ai-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--pastel-purple);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
}

.ai-tag span { font-size: 16px; }

/* Chat mockup */
.chat-mockup {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.chat-avatar {
  width: 40px; height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.chat-head strong { font-size: 14px; color: var(--text); }
.chat-status { font-size: 12px; color: var(--text-faint); }

.chat-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  margin-bottom: 10px;
  max-width: 88%;
  font-size: 13px;
  line-height: 1.55;
}

.chat-user {
  background: var(--gradient);
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.chat-ai {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}

.ai-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mock-predictions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.mock-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-sm);
}

.mock-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); font-weight: 600; }
.mock-val { font-family: 'Nunito', sans-serif; font-size: 20px; font-weight: 900; color: var(--text); }
.mock-sub { font-size: 13px; color: var(--text-soft); }

/* ---------- Timeline ---------- */
.moments-section { background: var(--bg-soft); }

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient);
  transform: translateX(-50%);
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  margin-bottom: 32px;
  position: relative;
}

.tl-left { justify-content: flex-start; padding-right: calc(50% + 32px); }
.tl-right { justify-content: flex-end; padding-left: calc(50% + 32px); }

.tl-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--gradient);
  border-radius: 50%;
  border: 3px solid var(--bg-soft);
  z-index: 2;
}

.tl-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.tl-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tl-card-accent {
  background: linear-gradient(135deg, rgba(191,90,242,0.04), rgba(90,200,250,0.04));
  border-color: rgba(191, 90, 242, 0.15);
}

.tl-time {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(191, 90, 242, 0.08);
  color: var(--purple);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tl-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.tl-card p { font-size: 14px; color: var(--text-soft); line-height: 1.6; }

/* ---------- Safety Section ---------- */
.safety-section { background: var(--pastel-pink); }

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

/* ---------- Daily Life Section ---------- */
.daily-section { background: #fff; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row-reverse .feature-row-text { order: 2; }
.feature-row-reverse .feature-row-visual { order: 1; }

.feature-row-text h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-row-text p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 8px;
}

.feature-row-visual {
  display: flex;
  justify-content: center;
}

/* Activity feed mock */
.activity-feed-mock {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 360px;
  box-shadow: var(--shadow-sm);
}

.af-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 13px;
}

.af-item:last-child { border-bottom: none; }

.af-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.af-text { flex: 1; color: var(--text); font-weight: 500; }
.af-time { color: var(--text-faint); font-size: 12px; flex-shrink: 0; }

/* Meal mock */
.meal-mock {
  background: var(--pastel-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 360px;
}

.meal-title {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.meal-items { display: flex; flex-direction: column; gap: 8px; }

.meal-item {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

/* Milestone mock */
.milestone-mock {
  background: linear-gradient(135deg, var(--pastel-purple), var(--pastel-pink));
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 320px;
  width: 100%;
}

.ms-icon { font-size: 56px; margin-bottom: 8px; }
.ms-title { font-family: 'Nunito', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.ms-sub { font-size: 14px; color: var(--text-soft); margin-bottom: 16px; }

.ms-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--gradient);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

/* Checklist mock */
.checklist-mock {
  background: var(--pastel-green);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 300px;
  width: 100%;
}

.cl-title {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cl-progress {
  background: rgba(48,209,88,0.15);
  height: 8px;
  border-radius: 4px;
  margin-bottom: 16px;
  overflow: hidden;
}

.cl-bar {
  background: var(--green);
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}

.cl-item {
  font-size: 14px;
  padding: 5px 0;
  color: var(--text);
}

.cl-item.done { color: var(--text-soft); }

/* ---------- Emotional Section ---------- */
.emotional-section { background: var(--pastel-green); }

.emotional-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.wrapped-card {
  background: linear-gradient(135deg, #BF5AF2, #FF6B9D, #FF9F40);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.wrapped-card h3 { font-size: 26px; color: #fff; margin-bottom: 12px; }
.wrapped-card p { font-size: 15px; opacity: 0.9; line-height: 1.6; }

.wrapped-stats {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.ws { text-align: center; }
.ws-num { font-family: 'Nunito', sans-serif; font-size: 28px; font-weight: 900; }
.ws-label { font-size: 12px; opacity: 0.8; }

.emotional-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---------- Personas ---------- */
.personas-section { background: #fff; }

.personas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.persona-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  border-top: 4px solid var(--purple);
  transition: transform var(--transition), box-shadow var(--transition);
}

.persona-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pc-purple { border-top-color: var(--purple); }
.pc-teal { border-top-color: var(--teal); }
.pc-gold { border-top-color: var(--orange); }
.pc-pink { border-top-color: var(--pink); }
.pc-green { border-top-color: var(--green); }

.persona-emoji { font-size: 40px; margin-bottom: 12px; }
.persona-card h4 { font-size: 16px; margin-bottom: 4px; }
.persona-role { font-size: 13px; color: var(--text-faint); margin-bottom: 14px; }
.persona-card ul { list-style: none; }
.persona-card li { font-size: 13px; color: var(--text-soft); padding: 3px 0; line-height: 1.4; }

/* ---------- Comparison Tables ---------- */
.compare-section { background: var(--pastel-blue); }

.tab-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border: 2px solid var(--border);
  background: #fff;
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-soft);
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn:hover { border-color: var(--purple); color: var(--purple); }

.tab-btn.active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table th {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  border-bottom: 2px solid var(--border);
  background: #fff;
}

.compare-table th:last-child {
  background: rgba(191, 90, 242, 0.05);
}

.compare-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  color: var(--text-soft);
}

.compare-table td:last-child {
  background: rgba(191, 90, 242, 0.03);
  font-weight: 600;
  color: var(--text);
}

.compare-table tr:last-child td { border-bottom: none; }

/* ---------- CTA Strip ---------- */
.cta-strip {
  background: var(--gradient);
  padding: 72px 0;
  text-align: center;
}

.cta-strip h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #fff;
  margin-bottom: 12px;
}

.cta-strip p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

/* ---------- Moat Section ---------- */
.moat-section { background: linear-gradient(180deg, var(--pastel-purple), var(--pastel-pink)); }

.moat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.moat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.moat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.moat-num {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 14px;
}

.moat-card h4 { font-size: 17px; margin-bottom: 8px; }
.moat-card p { font-size: 14px; color: var(--text-soft); line-height: 1.6; }

/* ---------- Trust Section ---------- */
.trust-section { background: #fff; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}

.trust-card {
  text-align: center;
  padding: 24px 16px;
}

.trust-icon { font-size: 40px; margin-bottom: 14px; }
.trust-card h4 { font-size: 16px; margin-bottom: 8px; }
.trust-card p { font-size: 14px; color: var(--text-soft); line-height: 1.6; }

.trust-footer-text {
  text-align: center;
  font-size: 14px;
  color: var(--text-faint);
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.trust-footer-text a { color: var(--purple); font-weight: 600; }
.trust-footer-text a:hover { text-decoration: underline; }

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--bg-soft); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.tcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.tcard-featured {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(191, 90, 242, 0.3);
}

.tcard-featured p { color: rgba(255,255,255,0.92); }
.tcard-featured .tcard-name { color: #fff; }
.tcard-featured .tcard-role { color: rgba(255,255,255,0.75); }

.tcard-stars { font-size: 16px; margin-bottom: 16px; letter-spacing: 1px; }

.tcard p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.tcard-author { display: flex; align-items: center; gap: 12px; }

.tcard-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--purple-light);
  color: var(--purple);
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tcard-name { font-weight: 800; font-size: 15px; color: var(--text); }
.tcard-role { font-size: 13px; color: var(--text-soft); margin-top: 2px; }

/* ---------- Download ---------- */
.download-section { background: #fff; }

.download-box {
  background: linear-gradient(155deg, #F0E6FF 0%, #E8F6FF 100%);
  border: 1px solid rgba(191, 90, 242, 0.15);
  border-radius: var(--radius-xl);
  padding: 72px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.dl-eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.download-box h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 16px; }

.download-box h2 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-box p {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto 24px;
}

.waitlist-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}

.waitlist-form input:focus { border-color: var(--purple); }

.dl-perks {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.dl-perks span { font-size: 13px; color: var(--text-soft); font-weight: 600; }

/* ---------- Footer ---------- */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin-top: 16px;
}

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

.footer-social { display: flex; gap: 12px; margin-top: 20px; }

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all var(--transition);
}

.footer-social a:hover { background: var(--purple); color: #fff; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { color: #fff; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--purple-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--purple-light); }

/* ---------- Fade-in ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .personas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .features-grid { grid-template-columns: 1fr; }
  .ai-spotlight { grid-template-columns: 1fr; }
  .ai-sub-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row-reverse .feature-row-text { order: 1; }
  .feature-row-reverse .feature-row-visual { order: 2; }
  .emotional-grid { grid-template-columns: 1fr; }
  .moat-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 899;
  }

  .nav-menu.open { display: flex; }
  .mobile-toggle { display: flex; }

  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero-stats { gap: 16px; }
  .stages-grid { flex-direction: column; align-items: center; }
  .stage-card { max-width: 100%; }
  .stage-arrow { transform: rotate(90deg); padding: 8px 0; }
  .personas-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .download-box { padding: 40px 28px; }
  .waitlist-form { flex-direction: column; }

  /* Timeline mobile */
  .timeline-line { left: 16px; }
  .tl-dot { left: 16px !important; }
  .tl-left, .tl-right { padding-left: 48px !important; padding-right: 0 !important; justify-content: flex-start !important; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .personas-grid { grid-template-columns: 1fr; }
  .moat-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .trust-items { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .tab-buttons { gap: 6px; }
  .tab-btn { padding: 8px 14px; font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 13px; }
  .pull-quote { font-size: 1.1rem; padding: 0 16px; }
}
