* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  color: #222;
  min-height: 100vh; display: flex; flex-direction: column;
  padding: 0;
}

.page {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px 40px; flex: 1; display: flex; flex-direction: column;
}

/* ─── Nav ──────────────────────────────────────────────── */
.nav {
  margin-bottom: 48px;
}

.logo {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
}

/* ─── Hero ─────────────────────────────────────────────── */
.hero {
  margin-bottom: 56px;
}

.hero h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #222;
}

.subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.cta-row {
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #2563eb;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-primary:hover {
  background: #1d4ed8;
}

/* ─── Sections ─────────────────────────────────────────── */
.section {
  margin-bottom: 48px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.section-intro {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ─── CTA Section ──────────────────────────────────────── */
.cta-section {
  padding: 32px 0;
  border-top: 1px solid #eee;
}

/* ─── Features ─────────────────────────────────────────── */
.features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.feature p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* ─── Footer ──────────────────────────────────────────── */
.footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.footer-links a {
  font-size: 13px;
  color: #888;
  text-decoration: none;
}

.footer-links a:hover {
  color: #222;
  text-decoration: underline;
}

.footer-links .sep {
  font-size: 10px;
  color: #ccc;
}

.footer-copy {
  margin: 0;
  font-size: 13px;
  color: #888;
}

.footer-copy a {
  color: #888;
  text-decoration: none;
}

.footer-copy a:hover {
  color: #222;
  text-decoration: underline;
}

/* ─── Legal pages ─────────────────────────────────────── */
.legal-content h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #222;
}

.legal-content p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content p strong {
  color: #222;
}

.legal-content ul {
  margin: -4px 0 14px;
  padding-left: 20px;
}

.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 4px;
}

.legal-content a {
  color: #2563eb;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ─── Mobile ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .page {
    padding: 24px 16px 60px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: 26px;
  }

  .subtitle br {
    display: none;
  }
}

html, body {
  overflow-x: hidden;
}

/* ─── Focus & Accessibility ───────────────────────────── */
a:focus-visible,
button:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
