/* Moment — shared styles */

:root {
  --bg: #f8f7f4;
  --surface: #ffffff;
  --primary: #6b7f5c;
  --primary-dark: #566849;
  --primary-soft: rgba(107, 127, 92, 0.1);
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --text-subtle: #8a8a8a;
  --border: #e8e6e0;
  --max-width: 1100px;
}

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

html { scroll-behavior: smooth; }

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

a { color: var(--primary-dark); }

/* ---- Nav ---- */
.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.brand-name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  opacity: 0.85;
}

.nav-links a:hover { opacity: 1; }

.btn {
  display: inline-block;
  padding: 12px 22px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.btn:hover { background: var(--primary-dark); }

/* ---- Content (terms / privacy) ---- */
.content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 32px 96px;
}

.content h1 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.content .meta {
  color: var(--text-subtle);
  font-size: 14px;
  margin-bottom: 40px;
}

.content h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.content p,
.content ul {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.content ul {
  padding-left: 22px;
}

.content li { margin-bottom: 8px; }

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

.callout {
  background: var(--primary-soft);
  border-left: 3px solid var(--primary);
  padding: 18px 20px;
  border-radius: 6px;
  margin: 24px 0;
}

.callout p { margin: 0; color: var(--text); }

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 32px;
  text-align: center;
  color: var(--text-subtle);
  font-size: 13px;
}

.footer a {
  color: var(--text-subtle);
  text-decoration: none;
  margin: 0 10px;
}

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

@media (max-width: 720px) {
  .nav { padding: 18px 20px; }
  .nav-links { gap: 18px; }
  .nav-links li:not(:last-child) { display: none; }
  .content { padding: 24px 20px 64px; }
  .content h1 { font-size: 32px; }
  .content h2 { font-size: 20px; }
}
