/* === BASE === */
:root {
  --green-dark:  #4E6A40;
  --cream:       #EEEAE1;
  --sage:        #C4DDB4;
  --amber:       #D4A843;
  --rust:        #C05940;
  --pink-light:  #F5DDD5;
  --green-light: #C4DDB4;
  --text:        #1A1A1A;
  --text-muted:  #6B7260;
  --white:       #FFFFFF;
  --radius:      16px;
  --shadow:      0 4px 24px rgba(78, 106, 64, 0.12);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

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

/* === TYPOGRAPHY === */
h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-dark);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

p { color: var(--text-muted); font-size: 1rem; }

/* === LAYOUT === */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-white { background: var(--white); }
.section-title { text-align: center; margin-bottom: 16px; }
.section-lead {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* === FADE IN === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238, 234, 225, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(78, 106, 64, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-icon { border-radius: 10px; }
.nav-wordmark {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.15s;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-green { background: var(--green-dark); color: var(--white); }
.btn-rust { background: var(--rust); color: var(--white); }

/* === STORE BADGES === */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}
.store-badges-center { justify-content: center; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px;
  border-radius: 12px;
  background: var(--green-dark);
  color: var(--white);
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.badge:hover { opacity: 0.88; transform: translateY(-2px); }

.badge-icon { width: 22px; height: 22px; flex-shrink: 0; }

.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 1rem;
  font-weight: 600;
}
.badge-text small { font-size: 0.68rem; font-weight: 400; opacity: 0.75; }

/* === HERO === */
.hero { padding: 64px 0 80px; overflow: hidden; }

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.hero-text { max-width: 560px; text-align: center; }

.hero-subhead {
  font-size: 1.12rem;
  margin-top: 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-image {
  max-width: 260px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(78, 106, 64, 0.22);
}

/* === HOW IT WORKS === */
.steps-grid { display: grid; gap: 24px; margin-bottom: 56px; }

.step {
  text-align: center;
  padding: 36px 24px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon svg { width: 28px; height: 28px; }

.step h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--green-dark); }

/* === PHONE FRAMES === */
.screenshot-row,
.screenshots-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.screenshot-row::-webkit-scrollbar,
.screenshots-scroll::-webkit-scrollbar { display: none; }
.screenshot-row { justify-content: center; }

.phone-frame {
  flex: 0 0 185px;
  border-radius: 26px;
  border: 2px solid rgba(78, 106, 64, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--white);
}
.phone-frame img { width: 100%; height: 100%; object-fit: cover; }

/* === ACTIVE EFFECTS === */
.effects-grid { display: grid; gap: 16px; margin-bottom: 20px; }

.effect-card {
  padding: 22px;
  border-radius: var(--radius);
  transition: transform 0.2s;
}
.effect-card:hover { transform: translateY(-2px); }
.effect-card.setback { background: var(--pink-light); }
.effect-card.perk    { background: var(--green-light); }

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.card-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.setback-dot { background: var(--rust); }
.perk-dot    { background: var(--green-dark); }

.card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--rust);
}
.perk-tag { color: var(--green-dark); }

.effect-card h3 { color: var(--text); margin-bottom: 8px; }

.clears-in {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rust);
  background: rgba(192, 89, 64, 0.1);
  padding: 4px 11px;
  border-radius: 100px;
}
.perk-active { color: var(--green-dark); background: rgba(78, 106, 64, 0.1); }

.effects-teaser {
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px dashed rgba(78, 106, 64, 0.25);
  margin-top: 8px;
}

.effects-teaser .teaser-count {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-dark);
  display: block;
  margin-bottom: 6px;
}

.effects-teaser p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* === MILESTONES === */
.milestone-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.milestone-scroll::-webkit-scrollbar { display: none; }

.milestone-card {
  flex: 0 0 155px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.milestone-locked {
  background: transparent;
  border: 2px dashed rgba(78, 106, 64, 0.3);
  justify-content: center;
}
.milestone-locked p { color: var(--text-muted); }

.m-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.m-icon svg { width: 18px; height: 18px; }

.m-lock-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green-dark);
  opacity: 0.4;
}

.m-day {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.m-label { font-size: 0.9rem; font-weight: 700; }
.milestone-card p { font-size: 0.76rem; color: rgba(255,255,255,0.68); line-height: 1.4; }

.milestone-locked .m-day  { color: var(--text-muted); opacity: 1; }
.milestone-locked .m-label { color: var(--text); }

.milestone-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-muted);
}

/* === WHO IT'S FOR === */
.who-grid { display: grid; gap: 20px; }

.who-card {
  padding: 32px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(78, 106, 64, 0.1);
}

.who-icon {
  width: 48px;
  height: 48px;
  background: var(--sage);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.who-icon svg { width: 24px; height: 24px; color: var(--green-dark); }

.who-card h3 { color: var(--green-dark); margin-bottom: 8px; }

/* === DOWNLOAD CTA === */
.download-section { background: var(--green-dark); padding: 100px 0; }
.download-inner { text-align: center; }
.download-section h2 { color: var(--white); margin-bottom: 14px; }
.download-section p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

.download-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.download-section .badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.download-section .badge:hover { background: rgba(255,255,255,0.2); }

/* === FOOTER === */
.footer { background: #111; padding: 40px 0; }

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.footer-brand img { border-radius: 6px; }

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { color: rgba(255,255,255,0.28); font-size: 0.82rem; }

/* === RESPONSIVE === */
@media (min-width: 640px) {
  .effects-grid { grid-template-columns: repeat(3, 1fr); }
  .who-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .hero-inner { flex-direction: row; justify-content: space-between; align-items: center; gap: 64px; }
  .hero-text { text-align: left; }
  .hero-text .store-badges { justify-content: flex-start; }
  .store-badges-center { justify-content: center; }
  .hero-image { max-width: 280px; flex-shrink: 0; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }

  .milestone-scroll {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow-x: visible;
    padding-bottom: 0;
  }
  .milestone-card { flex: none; }

  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer-links { justify-content: flex-start; }
}

@media (min-width: 1024px) {
  .effects-grid { grid-template-columns: repeat(3, 1fr); }
}

/* === FAQ === */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(78, 106, 64, 0.1);
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--green-dark);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 24px 20px;
  line-height: 1.7;
  font-size: 0.97rem;
}
