/* motionapp.app — shared styling for the legal pages.
   Dark, in MOTION's palette, and readable on a phone since that's where most
   people will meet these (tapped from inside the app or from the App Store). */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #0A0A0A;
  --card: #141414;
  --border: #242424;
  --green: #22C55E;
  --text: #FFFFFF;
  --sub: #A0A0A0;
  --micro: #6E6E6E;
}

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

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

.wrap { max-width: 720px; margin: 0 auto; padding: 56px 22px 90px; }

/* ---------- header ---------- */
.brand { display: flex; align-items: center; gap: 12px; margin-bottom: 44px; }
.brand svg { width: 40px; height: 40px; }
.brandName { font-size: 17px; font-weight: 600; letter-spacing: -0.3px; }

h1 { font-size: 31px; font-weight: 600; letter-spacing: -0.8px; line-height: 1.2; }
.updated { font-size: 13px; color: var(--micro); margin-top: 10px; }

/* ---------- body ---------- */
h2 {
  font-size: 18px; font-weight: 600; letter-spacing: -0.3px;
  margin-top: 44px; margin-bottom: 12px;
}
h3 { font-size: 15px; font-weight: 600; margin-top: 26px; margin-bottom: 8px; }

p { font-size: 15px; color: var(--sub); margin-bottom: 14px; }
li { font-size: 15px; color: var(--sub); margin-bottom: 9px; }
ul, ol { padding-left: 22px; margin-bottom: 16px; }

strong { color: var(--text); font-weight: 500; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* a boxed aside — used for the things that matter most, so they can't be
   skimmed past in a wall of text */
.callout {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 24px 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout.warn { border-left-color: #FBBF24; }

hr { border: none; border-top: 1px solid var(--border); margin: 44px 0; }

footer {
  margin-top: 60px; padding-top: 26px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--micro);
}
footer a { color: var(--sub); }
footer .links { margin-top: 12px; display: flex; gap: 18px; flex-wrap: wrap; }
