/* Minimal — Monochrome, whitespace-driven */
:root {
  --text: #111;
  --text-secondary: #666;
  --bg: #fff;
  --bg-alt: #fafafa;
  --border: #e0e0e0;
  --accent: #111;
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --max-w: 720px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
.nav-logo {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { color: var(--text-secondary); font-size: 0.9rem; }
.nav-links a:hover { color: var(--text); }

/* Hero */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 540px;
}

/* Sections */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.section h2 {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section p, .section li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}
.section ul { padding-left: 1.25rem; }

/* Features grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}
.feature h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.feature p { font-size: 0.95rem; }

/* Divider */
.divider {
  max-width: var(--max-w);
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--border);
}

/* CTA */
.cta {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}
.cta h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.cta p { color: var(--text-secondary); margin-bottom: 1.5rem; }
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; text-decoration: none; }

/* Footer */
.footer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.85rem; color: var(--text-secondary); }
.footer-links { display: flex; gap: 1.25rem; list-style: none; }
.footer-links a { font-size: 0.85rem; color: var(--text-secondary); }
.footer-links a:hover { color: var(--text); }

/* Legal pages */
.legal {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.legal h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.legal .updated {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.legal h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.legal p { color: var(--text-secondary); margin-bottom: 1rem; }

/* Legal header + section (standalone class usage) */
.legal-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem 0;
}
.legal-header h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.legal-date {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}
.legal-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.legal-section:first-of-type {
  padding-top: 1.5rem;
}
.legal-section:last-of-type {
  padding-bottom: 4rem;
}
.legal-section h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.legal-section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.legal-section ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.legal-section li {
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

/* Support page */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.support-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}
.support-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.support-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* Responsive */
@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .hero { padding-top: 4rem; }
  .nav { padding: 1.25rem 1rem; }
  .footer { flex-direction: column; text-align: center; }
}
