/* legal.css — shared styles for the static legal pages (/privacy, /terms,
   /support). Mirrors web/src/app/{privacy,terms}/page.tsx in the iOS repo
   (LR-004/LR-005): cream page, Anton display, Inter/Tajawal body, mono meta.
   Self-hosted fonts only (CSP font-src 'self'). */

@font-face {
  font-family: "Anton";
  src: url("/fonts/anton-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/jetbrains-mono-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("/fonts/cairo-arabic-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Tajawal";
  src: url("/fonts/tajawal-arabic-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Tajawal";
  src: url("/fonts/tajawal-arabic-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #FBF7EE;
  color: #101828;
  min-height: 100vh;
}
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}
.h1-latin {
  font-family: Anton, Inter, system-ui, sans-serif;
  font-size: 44px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 4px;
}
.h1-arabic {
  font-family: Cairo, Tajawal, system-ui, sans-serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  margin: 48px 0 4px;
}
.meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #475467;
  margin: 0 0 24px;
}
.meta-arabic {
  font-family: Tajawal, system-ui, sans-serif;
  font-size: 11px;
  color: #475467;
  margin: 0 0 24px;
}
.h2-latin {
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 28px 0 6px;
}
.h2-arabic {
  font-family: Tajawal, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 28px 0 6px;
}
.body-latin {
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.body-arabic {
  font-family: Tajawal, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}
a { color: #101828; }
