:root {
  --forest: #1a3d2b;
  --leaf:   #2D6A4F;
  --mint:   #52B788;
  --pale:   #95D5B2;
  --sage:   #b7e4c7;
  --cream:  #f7f3ec;
  --warm:   #e8dfd0;
  --text:   #1a1a18;
  --muted:  #5a6b5e;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html, body { height: 100%; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── BACKGROUND DECORATION ─── */
.bg-circle-1 {
  position: fixed; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(82,183,136,0.1) 0%, transparent 68%);
  border-radius: 50%; pointer-events: none; z-index: 0;
}
.bg-circle-2 {
  position: fixed; bottom: -250px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,106,79,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; z-index: 0;
}
.bg-leaf-pattern {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.bg-leaf-pattern span {
  position: absolute;
  font-size: 2rem;
  opacity: 0.045;
  animation: drift linear infinite;
}

@keyframes drift {
  0%   { transform: translateY(110vh) rotate(0deg); }
  100% { transform: translateY(-10vh) rotate(360deg); }
}

/* ─── NAV ─── */
nav {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 3rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--forest); letter-spacing: 1px; text-decoration: none;
}
.nav-logo span { color: var(--mint); }

/* ─── MAIN ─── */
main {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 2rem 2rem 4rem;
  position: relative; z-index: 5; text-align: center;
}

/* status pill */
.status-pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(82,183,136,0.13); color: var(--leaf);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  padding: 0.42rem 1.1rem; border-radius: 100px;
  border: 1px solid rgba(82,183,136,0.3);
  margin-bottom: 2.2rem;
  animation: fadeSlideDown 0.7s ease both;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

/* headline */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05; color: var(--forest);
  margin-bottom: 1.4rem;
  animation: fadeSlideDown 0.7s 0.1s ease both;
}
h1 em { font-style: italic; color: var(--mint); }

.tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted); line-height: 1.8;
  max-width: 520px; margin: 0 auto 3rem;
  font-weight: 300;
  animation: fadeSlideDown 0.7s 0.2s ease both;
}

/* progress bar area */
.build-status {
  width: 100%; max-width: 520px;
  margin: 0 auto 3.5rem;
  animation: fadeSlideDown 0.7s 0.3s ease both;
}
.build-label {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.6rem;
  font-size: 0.82rem; color: var(--muted); font-weight: 400;
}
.build-label strong { color: var(--leaf); }
.build-track {
  height: 8px; background: rgba(82,183,136,0.15);
  border-radius: 100px; overflow: hidden;
}
.build-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--leaf), var(--mint), var(--leaf));
  background-size: 200% 100%;
  border-radius: 100px;
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 12px var(--mint);
  animation: 
    shimmer 3s linear infinite,
    pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 8px var(--mint); }
  100% { box-shadow: 0 0 20px var(--mint), 0 0 10px rgba(82,183,136,0.6); }
}

/* checklist */
.checklist {
  list-style: none; max-width: 420px; margin: 0 auto 3.5rem;
  text-align: left;
  animation: fadeSlideDown 0.7s 0.4s ease both;
}
.checklist li {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.55rem 0;
  font-size: 0.9rem; color: var(--muted); font-weight: 300;
  border-bottom: 1px solid rgba(82,183,136,0.1);
}
.checklist li:last-child { border-bottom: none; }
.check-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.check-done   { background: rgba(82,183,136,0.15); color: var(--mint); }
.check-active { background: rgba(212,175,55,0.15); color: #b8862a; animation: activePulse 2s ease-in-out infinite; }
.check-todo   { background: rgba(90,107,94,0.1); color: var(--muted); }
@keyframes activePulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.check-label-done   { color: var(--leaf); font-weight: 400; }
.check-label-active { color: var(--text); font-weight: 500; }
.check-label-todo   { color: var(--muted); }

/* email signup */
.signup-block {
  width: 100%; max-width: 460px; margin: 0 auto 1.5rem;
  animation: fadeSlideDown 0.7s 0.5s ease both;
}
.signup-label {
  font-size: 0.85rem; color: var(--muted); font-weight: 300;
  margin-bottom: 0.9rem; line-height: 1.6;
}
.signup-label strong { color: var(--leaf); font-weight: 500; }
.signup-form {
  display: flex; gap: 0.6rem;
}
.signup-input {
  flex: 1; padding: 0.82rem 1.2rem;
  border-radius: 100px;
  border: 1.5px solid rgba(82,183,136,0.25);
  background: #fff; color: var(--text);
  font-family: inherit; font-size: 0.92rem;
  outline: none; transition: border-color 0.2s;
}
.signup-input::placeholder { color: rgba(90,107,94,0.5); }
.signup-input:focus { border-color: var(--mint); }
.signup-btn {
  padding: 0.82rem 1.6rem;
  background: var(--leaf); color: #fff;
  border: none; border-radius: 100px;
  font-family: inherit; font-size: 0.92rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.signup-btn:hover { background: var(--forest); transform: translateY(-1px); }
.signup-confirm {
  display: none;
  align-items: center; justify-content: center; gap: 0.5rem;
  color: var(--mint); font-size: 0.88rem; font-weight: 400;
  margin-top: 0.8rem;
}
.signup-confirm.show { display: flex; animation: fadeSlideDown 0.4s ease both; }

/* social links */
.socials {
  display: flex; gap: 1.2rem; justify-content: center;
  animation: fadeSlideDown 0.7s 0.6s ease both;
}
.social-link {
  display: flex; align-items: center; gap: 0.4rem;
  color: var(--muted); font-size: 0.82rem; text-decoration: none;
  padding: 0.4rem 0.9rem; border-radius: 100px;
  border: 1px solid rgba(82,183,136,0.2);
  transition: all 0.2s;
}
.social-link:hover { color: var(--leaf); border-color: var(--mint); background: rgba(82,183,136,0.06); }

/* ─── FOOTER ─── */
footer {
  position: relative; z-index: 5;
  padding: 1.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(82,183,136,0.12);
}
.footer-copy { color: rgba(26,61,43,0.35); font-size: 0.8rem; }
.footer-link { color: var(--muted); font-size: 0.8rem; text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--leaf); }

/* phone mini */
.phone-mini-wrap {
  position: fixed; bottom: 3rem; right: 3rem; z-index: 10;
  animation: fadeSlideUp 0.8s 0.8s ease both;
  display: block;
}
@media (max-width: 760px) { .phone-mini-wrap { display: none; } }
.phone-mini {
  width: 130px; height: 260px;
  background: var(--forest);
  border-radius: 24px; padding: 7px;
  box-shadow: 0 24px 56px rgba(26,61,43,0.32);
  animation: phoneBob 4s ease-in-out infinite;
}
@keyframes phoneBob { 0%,100%{transform:translateY(0) rotate(2deg)} 50%{transform:translateY(-8px) rotate(2deg)} }
.pm-screen {
  background: #0d2619; border-radius: 18px;
  width: 100%; height: 100%; overflow: hidden;
  display: flex; flex-direction: column;
}
.pm-notch { width: 42px; height: 10px; background: var(--forest); border-radius: 0 0 7px 7px; margin: 0 auto; }
.pm-body { padding: 0.4rem 0.5rem; display: flex; flex-direction: column; gap: 0.35rem; }
.pm-row  { background: rgba(82,183,136,0.12); border-radius: 7px; padding: 0.35rem 0.45rem; }
.pm-row-label { color: rgba(255,255,255,0.4); font-size: 5.5px; letter-spacing: 0.8px; text-transform: uppercase; }
.pm-row-val   { color: #fff; font-size: 7px; font-weight: 500; margin-top: 1px; }
.pm-plants { display: flex; gap: 0.25rem; }
.pm-plant  { flex: 1; background: rgba(255,255,255,0.05); border-radius: 6px; padding: 0.3rem 0.2rem; text-align: center; font-size: 10px; }
.pm-ai { background: linear-gradient(135deg, rgba(82,183,136,0.2), rgba(45,106,79,0.28)); border-radius: 7px; padding: 0.35rem 0.45rem; }
.pm-ai-label { color: var(--pale); font-size: 5px; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 2px; }
.pm-ai-text  { color: rgba(255,255,255,0.75); font-size: 6px; line-height: 1.5; }

/* ─── ANIMATIONS ─── */
@keyframes fadeSlideDown {
  from { opacity:0; transform:translateY(-16px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}

@media (max-width: 600px) {
  nav { padding: 1.5rem; }
  .signup-form { flex-direction: column; }
  .signup-btn { border-radius: 100px; }
  footer { flex-direction: column; gap: 0.8rem; text-align: center; }
  .checklist { padding: 0 1rem; }
}
