/* Shared styles for NagMeLater legal pages */
:root {
  --paper: #FAF5EA;
  --ink: #122A1E;
  --ink-soft: #3D5447;
  --ink-faint: #6B7F72;
  --green: #0B5C44;
  --green-glow: #25D366;
  --line: rgba(18, 42, 30, .14);
}

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

body {
  font-family: 'Hanken Grotesk', -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  background-image: radial-gradient(rgba(18, 42, 30, .035) 1px, transparent 1px);
  background-size: 22px 22px;
}

nav {
  border-bottom: 1px solid var(--line);
  background: rgba(250, 245, 234, .85);
}

.nav-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.logo .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green-glow);
}

.nav-inner a.back {
  font-size: .9rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: .5rem;
}

.updated {
  color: var(--ink-faint);
  font-size: .9rem;
  margin-bottom: 2.5rem;
}

h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 2.2rem 0 .7rem;
}

p, li {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

p + p { margin-top: .8rem }

ul {
  padding-left: 1.3rem;
  margin: .6rem 0;
}

li { margin: .35rem 0 }

strong { color: var(--ink) }

a { color: var(--green); font-weight: 600 }

.note {
  background: rgba(37, 211, 102, .1);
  border: 1px solid rgba(11, 92, 68, .2);
  border-radius: 14px;
  padding: 1rem 1.3rem;
  margin: 1.5rem 0;
}

footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem 24px;
  text-align: center;
  color: var(--ink-faint);
  font-size: .88rem;
}

footer a { color: var(--ink-soft) }
