/* Dwellet marketing site — tokens from /design/DESIGN_SYSTEM.md ("The Pro").
   Kept intentionally simple; safe to revisit and extend. */

:root {
  --ink: #14201C;
  --spruce: #1F4D3F;
  --spruce-2: #2F6B57;
  --sage-bg: #E9F0EB;
  --paper: #F7F6F1;
  --card: #FFFFFF;
  --line: #E6E4DB;
  --muted: #6F7A72;
  --muted-2: #7C867E;

  --maxw: 960px;
  --radius-card: 16px;
  --radius-btn: 14px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

h1, h2, h3, .wordmark {
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
}

a { color: var(--spruce); }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-size: 22px;
  font-weight: 700;
  color: var(--spruce);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-support {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

/* Hero */
.hero {
  padding: 72px 0 56px;
  text-align: center;
}
.hero h1 {
  font-size: 40px;
  font-weight: 700;
  max-width: 16ch;
  margin: 0 auto 18px;
}
.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 32px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--spruce);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  box-shadow: 0 6px 16px rgba(31, 77, 63, 0.28);
}
.btn:hover { background: var(--spruce-2); }

/* Features */
.features { padding: 32px 0 64px; }
.features h2 {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 36px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 22px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
}

/* Payments note */
.payments {
  background: var(--sage-bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  text-align: center;
}
.payments p {
  font-size: 16px;
  color: var(--ink);
  max-width: 60ch;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  padding: 40px 0 56px;
  color: var(--muted-2);
  font-size: 14px;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-links a {
  margin-left: 18px;
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:first-child { margin-left: 0; }

/* Legal pages */
.legal {
  padding: 56px 0 72px;
}
.legal h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}
.legal .updated {
  color: var(--muted-2);
  font-size: 14px;
  margin-bottom: 32px;
}
.legal h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 10px;
}
.legal p, .legal li {
  color: var(--ink);
  font-size: 15.5px;
}
.legal a { word-break: break-word; }
.placeholder {
  background: #FBECEC;
  border-radius: 4px;
  padding: 0 4px;
  color: #8A3B3B;
  font-weight: 600;
}

@media (max-width: 600px) {
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
}
