/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700&family=Lato:wght@400;700&display=swap');

/* Brand tokens */
:root {
  --color-leaf: #5FAF5F;
  --color-moss: #7A9E7E;
  --color-marigold: #C89A0E;
  --color-bg: #F3F6F1;
  --color-text: #2F3E2F;
  --color-white: #FFFFFF;
  --font-heading: 'Quicksand', sans-serif;
  --font-body: 'Lato', sans-serif;
  --max-width: 960px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Navigation ── */
.site-nav {
  background: var(--color-white);
  border-bottom: 2px solid var(--color-leaf);
  padding: 0.75rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
  text-decoration: none;
}

.nav-title:hover {
  color: var(--color-leaf);
}

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  background: linear-gradient(170deg, var(--color-white) 0%, var(--color-bg) 100%);
}

.hero-icon {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.hero .tagline {
  font-size: 1.25rem;
  color: var(--color-moss);
  margin-bottom: 1rem;
}

.hero .pitch {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Features ── */
.features {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.features h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 4px solid var(--color-leaf);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-leaf);
}

.feature-card p {
  font-size: 0.95rem;
}

/* ── Legal / content pages ── */
.content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  flex: 1;
}

.content h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.content .effective-date {
  color: var(--color-moss);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.content h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-leaf);
}

.content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.content p {
  margin-bottom: 0.75rem;
}

.content ul {
  margin: 0.5rem 0 1rem 1.5rem;
}

.content li {
  margin-bottom: 0.35rem;
}

.content strong {
  color: var(--color-text);
}

/* ── Footer ── */
.site-footer {
  background: var(--color-text);
  color: var(--color-bg);
  text-align: center;
  padding: 2rem 1.5rem;
  margin-top: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--color-bg);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-marigold);
}

.site-footer .copyright {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .hero h1 { font-size: 1.75rem; }
  .hero .tagline { font-size: 1.05rem; }
  .hero-icon { width: 90px; height: 90px; }
  .features h2 { font-size: 1.4rem; }
  .content h1 { font-size: 1.5rem; }
}
