/* Shared styling for the standalone legal + support pages.
   These are plain static files served from public/, deliberately independent of
   the React bundle: App Review and users must be able to open them even if the
   app fails to boot, and Apple fetches them from a browser with no session. */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #070708;
  color: #e4e4e7;
  line-height: 1.65;
  padding: 2.5rem 1.25rem 4rem;
  max-width: 680px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}

.brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  display: inline-block;
  text-decoration: none;
  color: #fff;
}
.brand span { color: #7B5CF6; }

h1 { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.35rem; }
.updated { color: #8b8b94; font-size: 0.85rem; margin-bottom: 2.25rem; }

h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

p, li { font-size: 0.95rem; color: #c9c9d1; }
p + p { margin-top: 0.75rem; }
ul { padding-left: 1.15rem; margin-top: 0.5rem; }
li { margin-bottom: 0.4rem; }
strong { color: #e9e9ee; font-weight: 600; }

a { color: #a78bfa; }
a:hover { color: #c4b5fd; }

.callout {
  border: 1px solid rgba(123, 92, 246, 0.32);
  background: rgba(123, 92, 246, 0.09);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  margin-top: 1.25rem;
}
.callout p { color: #ddd8f5; }

footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #8b8b94;
}
footer a { margin-right: 1rem; }
