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

:root {
  --tomato:   #D22D1E;
  --leaf:     #326E1C;
  --foliage:  #164108;
  --bokeh:    #0E2C06;
  --white:    #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bokeh);
  color: var(--white);
  overflow-x: hidden;
}

/* ── Footer ── */
footer {
  background: #000;
  text-align: center;
  padding: 28px 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
footer a:hover { color: rgba(255,255,255,0.7); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 80px;
  background: linear-gradient(160deg, var(--foliage) 0%, var(--bokeh) 60%);
  overflow: hidden;
}

.hero-logo {
  width: 140px;
  height: 140px;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  margin-bottom: 28px;
}

.hero-badge {
  display: inline-block;
  background: var(--tomato);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span { color: var(--tomato); }

.hero p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 40px;
  font-style: italic;
}

/* ── App Store button ── */
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: #000;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.15s, opacity 0.15s;
}

.app-store-btn:hover { transform: scale(1.04); opacity: 0.92; }
.app-store-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

.app-store-btn-sub {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.app-store-btn-sub small {
  font-size: 10px;
  font-weight: 400;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Section shared ── */
section { padding: 80px 24px; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tomato);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 520px;
}

/* ── Tagline strip ── */
.tagline-strip {
  background: var(--tomato);
  text-align: center;
  padding: 28px 24px;
}

.tagline-strip p {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: -0.3px;
}

.tagline-strip p em { font-style: italic; font-weight: 400; opacity: 0.85; }

/* ── Features grid ── */
.features {
  background: var(--foliage);
  text-align: center;
}

.features .section-sub { margin: 0 auto 60px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: left;
  transition: transform 0.15s;
}

.feature-card:hover { transform: translateY(-4px); }

.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

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

.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── Plants marquee ── */
.plants-section {
  background: var(--bokeh);
  text-align: center;
  overflow: hidden;
}

.marquee-wrap {
  margin-top: 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.plant-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--foliage);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Stats ── */
.stats {
  background: var(--foliage);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
  max-width: 700px;
  margin: 48px auto 0;
  background: rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
}

.stat-item {
  background: var(--foliage);
  padding: 32px 20px;
  text-align: center;
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--tomato);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, var(--foliage), var(--bokeh));
  text-align: center;
}

.cta .section-title { font-size: clamp(32px, 5vw, 52px); margin-bottom: 24px; }
.cta .section-sub   { margin: 0 auto 40px; }

/* ── Legal pages (privacy & terms) ── */
body.legal { line-height: 1.7; }

.legal-header {
  background: var(--foliage);
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.legal-header a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
}

.legal-header a:hover { color: var(--white); }

.legal-header h1 {
  font-size: 28px;
  font-weight: 900;
  margin-top: 8px;
}

.legal-header h1 span { color: var(--tomato); }

.content {
  max-width: 680px;
  margin: 60px auto;
  padding: 0 24px 80px;
}

.updated {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 48px;
}

.content h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin: 40px 0 10px;
}

.content p, .content li {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
}

.content ul {
  padding-left: 20px;
  margin-top: 8px;
}

.content ul li { margin-bottom: 6px; }

.content a { color: var(--leaf); }
.content a:hover { color: var(--white); }

.highlight-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 16px;
}

.highlight-box p { margin-bottom: 8px; }
.highlight-box p:last-child { margin-bottom: 0; }
