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

:root {
  --cream:       #F5F2ED;
  --deep-teal:   #2E6358;
  --mid-teal:    #4A9080;
  --soft-mist:   #A8D4C8;
  --pale-sage:   #E0F0EB;
  --lavender:    #D4C5E2;
  --peach:       #F2D9C8;
  --sky:         #C8DFF0;
  --sand:        #F0E8D4;
  --white:       #ffffff;
  --text-dark:   #1E2E2A;
  --text-mid:    #4A6560;
  --text-light:  #7A9C96;

  --radius-card: 24px;
  --shadow-sm:   0 2px 10px rgba(46,99,88,0.06);
  --shadow-md:   0 8px 28px rgba(46,99,88,0.10);
  --shadow-lg:   0 24px 64px rgba(46,99,88,0.13);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible          { opacity: 1; transform: translateY(0); }
.reveal-delay-1          { transition-delay: 0.10s; }
.reveal-delay-2          { transition-delay: 0.20s; }
.reveal-delay-3          { transition-delay: 0.30s; }
.reveal-delay-4          { transition-delay: 0.40s; }
.reveal-delay-5          { transition-delay: 0.50s; }

/* ─── TYPOGRAPHY ────────────────────────────────────── */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-teal);
  text-align: center;
  margin-bottom: 1rem;
  display: block;
}
.headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--deep-teal);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  text-align: center;
}
.headline em         { font-style: italic; color: var(--mid-teal); }
.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--deep-teal);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-headline em { font-style: italic; color: var(--mid-teal); }
.subhead {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  text-align: center;
}
.section-body {
  font-size: 1rem;
  color: var(--text-mid);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
}
.text-left { text-align: left !important; }

/* ─── LAYOUT ────────────────────────────────────────── */
.section       { padding: 6rem 1.5rem; }
.section-inner { max-width: 960px; margin: 0 auto; }

/* ─── NAV ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(245,242,237,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(46,99,88,0.08);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo img   { width: 36px; height: 36px; object-fit: contain; }
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400;
  color: var(--deep-teal); letter-spacing: 0.02em;
}
.btn-outline {
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--deep-teal); text-decoration: none;
  border: 1px solid var(--deep-teal);
  padding: 0.45rem 1.1rem; border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--deep-teal); color: var(--cream); }

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.18;
}
.orb-1 {
  width: 580px; height: 580px;
  background: radial-gradient(circle, var(--soft-mist), transparent 70%);
  top: -160px; left: -160px;
  animation: drift1 22s ease-in-out infinite;
}
.orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--lavender), transparent 70%);
  bottom: -100px; right: -120px;
  animation: drift2 28s ease-in-out infinite;
}
.orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--peach), transparent 70%);
  top: 35%; left: 55%;
  animation: drift3 20s ease-in-out infinite;
}
@keyframes drift1 {
  0%,100% { transform: translate(0,0); }
  33%     { transform: translate(50px,40px); }
  66%     { transform: translate(-30px,70px); }
}
@keyframes drift2 {
  0%,100% { transform: translate(0,0); }
  33%     { transform: translate(-60px,-40px); }
  66%     { transform: translate(30px,-70px); }
}
@keyframes drift3 {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(-40px,50px); }
}
.hero-content { position: relative; z-index: 1; max-width: 640px; }
.hero-logo {
  width: 140px; height: 140px; object-fit: contain;
  margin-bottom: 2rem;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
.hero-note {
  font-size: 0.78rem; color: var(--text-light);
  letter-spacing: 0.03em; margin-top: 0.75rem;
}

/* ─── WAITLIST FORM ─────────────────────────────────── */
.waitlist-form {
  display: flex; gap: 0;
  max-width: 420px; width: 100%; margin: 0 auto;
  border: 1px solid var(--soft-mist); border-radius: 100px;
  overflow: hidden; background: var(--white);
  box-shadow: var(--shadow-md);
}
.waitlist-form input {
  flex: 1; border: none; outline: none;
  padding: 0.9rem 1.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 300;
  color: var(--text-dark); background: transparent;
}
.waitlist-form input::placeholder { color: var(--text-light); }
.waitlist-form input.shake        { animation: shake 0.4s ease; }
.waitlist-form button {
  background: var(--deep-teal); color: var(--cream);
  border: none; padding: 0.9rem 1.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; border-radius: 0 100px 100px 0;
  transition: background 0.2s; white-space: nowrap;
}
.waitlist-form button:hover    { background: var(--mid-teal); }
.waitlist-form button:disabled { opacity: 0.65; cursor: wait; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%     { transform: translateX(-6px); }
  40%     { transform: translateX(6px); }
  60%     { transform: translateX(-4px); }
  80%     { transform: translateX(4px); }
}
.form-feedback {
  font-size: 0.9rem; color: var(--deep-teal);
  font-weight: 400; padding: 0.8rem 1.5rem;
  background: var(--pale-sage); border-radius: 100px;
  max-width: 420px; margin: 1rem auto 0; text-align: center;
}
.form-feedback.error { background: #fef0ed; color: #c0553a; }

/* ─── TRUST BAR ─────────────────────────────────────── */
.trust-bar {
  background: var(--deep-teal);
  color: rgba(245,242,237,0.65);
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.06em; text-align: center;
  padding: 0.85rem 1.5rem;
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0.5rem 1.1rem;
}
.trust-bar .dot { opacity: 0.35; }

/* ─── ACTIVITY CARDS ────────────────────────────────── */
.what-section { background: var(--cream); }

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 14px;
}
.activity-card {
  border-radius: var(--radius-card);
  padding: 1.8rem 1.4rem;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.activity-card:nth-child(1) { background: var(--lavender); }
.activity-card:nth-child(2) { background: var(--peach); }
.activity-card:nth-child(3) { background: var(--sand); }
.activity-card:nth-child(4) { background: var(--sky); }
.activity-card:nth-child(5) { background: var(--pale-sage); }
.activity-icon-wrap {
  width: 52px; height: 52px; border-radius: 16px;
  background: rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.activity-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400; color: var(--deep-teal);
}
.activity-desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }

/* ─── APP PREVIEW ───────────────────────────────────── */
.preview-section { background: var(--white); }

.preview-inner {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 5rem;
  align-items: center;
}
.preview-list {
  list-style: none;
  margin-top: 2rem;
  display: flex; flex-direction: column; gap: 1.4rem;
}
.preview-list li {
  display: flex; gap: 1rem; align-items: flex-start;
}
.preview-icon {
  color: var(--mid-teal); font-size: 0.9rem;
  margin-top: 3px; flex-shrink: 0;
}
.preview-list strong {
  display: block; font-weight: 500; color: var(--text-dark);
  margin-bottom: 0.25rem; font-size: 0.95rem;
}
.preview-list p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

/* Phone mockup */
.phone-wrap { position: relative; flex-shrink: 0; }
.phone-outer {
  width: 220px; height: 456px;
  background: linear-gradient(145deg, #2d2d2d, #0f0f0f);
  border-radius: 44px; padding: 12px;
  box-shadow:
    0 60px 120px rgba(0,0,0,0.22),
    0 20px 40px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -1px 0 rgba(255,255,255,0.04);
  position: relative;
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 72px; height: 18px;
  background: #0f0f0f; border-radius: 0 0 12px 12px; z-index: 10;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--cream); border-radius: 34px;
  overflow: hidden; display: flex; flex-direction: column;
}
.phone-status-bar {
  display: flex; justify-content: space-between;
  padding: 28px 16px 0;
  font-size: 0.6rem; font-weight: 500;
  color: var(--text-dark); letter-spacing: 0.02em;
}
.phone-app {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 1rem 1.2rem 1.6rem; gap: 1rem;
}
.phone-app-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--deep-teal); letter-spacing: 0.03em;
}
.phone-question {
  font-size: 0.82rem; font-weight: 400;
  color: var(--text-mid); text-align: center; line-height: 1.5;
}
.phone-moods {
  display: flex; gap: 5px; justify-content: center;
}
.mood-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid transparent; background: transparent;
  font-size: 1.1rem; cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.mood-btn:hover        { transform: scale(1.1); }
.mood-btn.active {
  border-color: var(--deep-teal);
  background: var(--pale-sage);
  transform: scale(1.15);
}
.phone-begin-btn {
  background: var(--deep-teal); color: var(--cream);
  border: none; border-radius: 100px;
  padding: 0.55rem 1.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.06em; cursor: pointer; width: 100%;
  transition: background 0.2s;
}
.phone-begin-btn:hover { background: var(--mid-teal); }
.phone-dots { display: flex; gap: 5px; justify-content: center; }
.pdot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--soft-mist);
}
.pdot.active { background: var(--deep-teal); width: 14px; border-radius: 3px; }

/* ─── HOW IT WORKS ──────────────────────────────────── */
.how-section { background: var(--cream); }

.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2.5rem; margin-top: 1rem;
}
.step { text-align: center; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: var(--soft-mist); line-height: 1; margin-bottom: 0.8rem;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400;
  color: var(--deep-teal); margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* ─── TESTIMONIALS ──────────────────────────────────── */
.testimonials-section { background: var(--white); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.testimonial-card {
  background: var(--cream); border-radius: var(--radius-card);
  padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-quote {
  font-size: 0.9rem; color: var(--text-mid);
  line-height: 1.8; font-style: italic; flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 0.9rem; flex-shrink: 0;
}
.testimonial-name  { font-weight: 500; font-size: 0.85rem; color: var(--text-dark); }
.testimonial-role  { font-size: 0.74rem; color: var(--text-light); }

/* ─── FOR YOU ───────────────────────────────────────── */
.for-you-section { background: var(--pale-sage); }

.pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 2rem;
}
.pill {
  background: var(--white); border: 1px solid var(--soft-mist);
  color: var(--text-mid); font-size: 0.85rem;
  padding: 0.5rem 1.2rem; border-radius: 100px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: default;
}
.pill:hover {
  background: var(--pale-sage);
  border-color: var(--mid-teal); color: var(--deep-teal);
}

/* ─── STATS ─────────────────────────────────────────── */
.stats-section { background: var(--deep-teal); }

.stats-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2.5rem; text-align: center;
}
.stat-row {
  display: flex; align-items: baseline;
  justify-content: center; gap: 0; margin-bottom: 0.5rem;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: var(--soft-mist); line-height: 1;
}
.stat-suffix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300;
  color: var(--soft-mist); line-height: 1;
}
.stat-label {
  font-size: 0.85rem; color: rgba(245,242,237,0.65); line-height: 1.55;
}
.stat-source { opacity: 0.45; font-size: 0.72rem; display: block; margin-top: 0.3rem; }

/* ─── BOTTOM CTA ────────────────────────────────────── */
.cta-section { padding: 7rem 1.5rem; text-align: center; }

/* ─── FOOTER ────────────────────────────────────────── */
footer {
  border-top: 0.5px solid rgba(46,99,88,0.15);
  padding: 2rem 2.5rem;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 8px; text-decoration: none;
}
.footer-logo img { width: 28px; height: 28px; object-fit: contain; }
.footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--deep-teal);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 0.8rem; color: var(--text-light);
  text-decoration: none; letter-spacing: 0.05em;
}
.footer-links a:hover { color: var(--deep-teal); }
.footer-copy { font-size: 0.75rem; color: var(--text-light); }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  .preview-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .phone-wrap   { margin: 0 auto; }
  .preview-text .section-headline { text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid        { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid        { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  nav              { padding: 1rem 1.2rem; }
  .hero            { padding: 7rem 1.2rem 4rem; }
  .hero-logo       { width: 100px; height: 100px; }
  .waitlist-form {
    flex-direction: column; border-radius: 16px;
    border: none; background: transparent; box-shadow: none; gap: 10px;
  }
  .waitlist-form input  {
    border: 1px solid var(--soft-mist);
    border-radius: 100px; background: var(--white);
  }
  .waitlist-form button { border-radius: 100px; }
  footer           { flex-direction: column; align-items: flex-start; }
  .activities-grid { grid-template-columns: repeat(2,1fr); }
  .trust-bar       { gap: 0.4rem 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo, .orb { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
