/* PollenPal Landing Page */

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

:root {
  --green:      #1D9E75;
  --green-dark: #156B50;
  --green-bg:   #EAF3DE;
  --bg:         #F8F7F4;
  --card:       #FFFFFF;
  --text:       #2C2C2A;
  --muted:      #888780;
  --border:     #D3D1C7;
  --radius:     16px;
}

html { scroll-behavior: smooth; }

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--text);
  color: #FFFFFF;
}
.btn-primary:hover { background: #444; transform: translateY(-1px); }
.btn-small {
  background: var(--green);
  color: #FFFFFF;
  padding: 8px 18px;
  font-size: 14px;
}
.btn-small:hover { background: var(--green-dark); }

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-inner { max-width: 520px; }
.badge {
  display: inline-block;
  background: var(--green-bg);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}
h1 {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}
.subtitle {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}
.hero-actions { margin-bottom: 16px; }
.hero-note { font-size: 13px; color: var(--muted); }

/* PHONE MOCKUP */
.hero-visual { display: flex; justify-content: center; }
.phone-mockup {
  width: 280px;
  background: #1A1A1A;
  border-radius: 44px;
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-screen {
  background: var(--bg);
  border-radius: 32px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 480px;
}
.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.mock-title { font-size: 18px; font-weight: 600; color: var(--text); }
.mock-location { font-size: 12px; color: var(--muted); }
.mock-card {
  border-radius: 14px;
  padding: 14px;
  border: 0.5px solid var(--border);
}
.mock-green { background: var(--green-bg); border-color: #C2DFB4; }
.mock-white { background: var(--card); }
.mock-label { font-size: 10px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.mock-value { font-size: 32px; font-weight: 500; color: #156B50; line-height: 1; }
.mock-sub { font-size: 11px; color: #156B50; margin-bottom: 8px; }
.mock-go { font-size: 12px; font-weight: 500; color: #156B50; }
.mock-season-bar { height: 6px; background: #E8E6DF; border-radius: 3px; margin: 8px 0; overflow: hidden; }
.mock-season-fill { width: 35%; height: 100%; background: var(--green); border-radius: 3px; }
.mock-season-info { font-size: 11px; color: var(--muted); }
.mock-bars { display: flex; align-items: flex-end; gap: 5px; height: 40px; margin-top: 8px; }
.mock-bar { flex: 1; background: #E8E6DF; border-radius: 2px; }
.mock-bar.active { background: var(--green); }

/* FEATURES */
.features {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.features h2, .how h2, .cta-inner h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.feature-icon { font-size: 28px; margin-bottom: 12px; }
.feature-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* HOW IT WORKS */
.how { padding: 80px 0; }
.steps { display: flex; flex-direction: column; gap: 24px; max-width: 600px; margin: 0 auto; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.step p { font-size: 14px; color: var(--muted); }

/* PRIVACY STRIP */
.privacy-strip {
  background: var(--green);
  padding: 48px 0;
}
.privacy-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.privacy-strip h3 { font-size: 22px; font-weight: 600; color: white; margin-bottom: 8px; }
.privacy-strip p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.privacy-icons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.privacy-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: white;
  font-weight: 500;
}
.privacy-item span { font-size: 13px; }

/* CTA */
.cta { padding: 80px 0; text-align: center; }
.cta-inner p { font-size: 18px; color: var(--muted); margin-bottom: 32px; }

/* FOOTER */
footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 4px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 13px; color: var(--border); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 60px;
    gap: 48px;
    text-align: center;
  }
  .hero-inner { max-width: 100%; }
  .hero-visual { order: -1; }
  .phone-mockup { width: 240px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .privacy-strip-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 12px; }
}

/* LEGAL PAGES */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.legal-page h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.legal-page .legal-meta {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-page h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 36px 0 12px;
  color: var(--text);
}
.legal-page h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 24px 0 8px;
}
.legal-page p { font-size: 15px; color: #3A3A38; line-height: 1.8; margin-bottom: 12px; }
.legal-page ul { margin: 8px 0 16px 20px; }
.legal-page li { font-size: 15px; color: #3A3A38; line-height: 1.8; margin-bottom: 4px; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.legal-page th { background: var(--bg); text-align: left; padding: 10px 14px; font-weight: 600; border: 1px solid var(--border); }
.legal-page td { padding: 10px 14px; border: 1px solid var(--border); color: #3A3A38; vertical-align: top; }
.legal-page a { color: var(--green); }
