/* Aevo – Legal pages stylesheet */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #0081bb;
  --blue-dark: #006a9a;
  --bg: #fafbfc;
  --text: #1a1a2e;
  --text-muted: #6b7280;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250,251,252,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.logo img { height: 36px; width: auto; display: block; }
.logo { display: flex; align-items: center; text-decoration: none; }
.nav-back {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--blue); }

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 32px 120px;
}

h1 {
  font-family: 'Geist', 'DM Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1.2px;
  margin-bottom: 14px;
  color: var(--text);
}

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 56px;
}

h2 {
  font-family: 'Geist', 'DM Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-top: 48px;
  margin-bottom: 14px;
  color: var(--text);
}

h3 {
  font-family: 'Geist', 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--text);
}

p, li {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 14px;
}

ul, ol { padding-left: 22px; margin-bottom: 14px; }
li { margin-bottom: 8px; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

footer {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.85rem;
}
footer .links { display: flex; gap: 24px; }

@media (max-width: 700px) {
  nav { padding: 14px 24px; }
  main { padding: 56px 24px 80px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px; }
}
