/* Minimal hand-scoped styling for privacy.html — replaces Tailwind Play CDN.
   Covers only the utility classes actually used on this page. Colors match
   Tailwind's default palette. This file is intentionally small and static. */

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 1rem;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background-color: #f3f4f6;
  color: #1f2937;
  line-height: 1.6;
}
@media (min-width: 640px) {
  body { padding: 2rem; }
}

/* ---------- Color text helpers ---------- */
.text-blue-500 { color: #3b82f6; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-green-600 { color: #16a34a; }
.text-red-600 { color: #dc2626; }

/* ---------- Font weights ---------- */
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }

/* ---------- Font sizes ---------- */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-4xl { font-size: 2.25rem; }

/* ---------- Text decoration ---------- */
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.underline { text-decoration: underline; }
.tracking-wider { letter-spacing: 0.05em; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.whitespace-nowrap { white-space: nowrap; }

/* ---------- Page container ---------- */
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-lg { border-radius: 0.5rem; }
.bg-white { background-color: #ffffff; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-gray-100 { background-color: #f3f4f6; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }

/* ---------- Padding ---------- */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
@media (min-width: 768px) {
  .p-6 { padding: 2.5rem; }
}
@media (min-width: 1024px) {
  .p-6 { padding: 3rem; }
}

/* ---------- Margins ---------- */
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.ml-4 { margin-left: 1rem; }
.mr-3 { margin-right: 0.75rem; }

/* ---------- Headings ---------- */
h1 { font-size: 2.25rem; font-weight: 800; color: #1d4ed8; margin: 0 0 0.5rem; line-height: 1.2; }
h2 { font-size: 1.5rem; font-weight: 700; color: #1f2937; margin: 0 0 0.75rem; line-height: 1.3; }
h3 { font-size: 1.25rem; font-weight: 600; color: #374151; margin: 0 0 0.5rem; }
h4 { font-size: 1.125rem; font-weight: 600; color: #374151; margin: 1rem 0 0.5rem; }
p { margin: 0.5rem 0; }
strong { font-weight: 600; }
hr { border: 0; border-top: 1px solid #e5e7eb; margin: 1.5rem 0; }

/* ---------- Borders ---------- */
.border-b { border-bottom: 1px solid #e5e7eb; }
.border-t { border-top: 1px solid #e5e7eb; }
.border-gray-200 { border-color: #e5e7eb; }
.border-blue-200 { border-color: #bfdbfe; }
.border { border: 1px solid #e5e7eb; }

/* ---------- Lists ---------- */
ul { margin: 0.5rem 0; padding-left: 0; }
li { margin: 0.25rem 0; }
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }
.list-disc.list-inside { padding-left: 1rem; }
li > ul { margin-top: 0.25rem; }

/* ---------- Links ---------- */
a { color: #2563eb; text-decoration: underline; }
a:hover { color: #1e40af; }
.transition { transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out; }
.duration-150 { transition-duration: 150ms; }

/* ---------- Flexbox ---------- */
.flex { display: flex; }
.items-start { align-items: flex-start; }

/* ---------- Grid ---------- */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: minmax(0, 1fr); }
.gap-4 { gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-y-2 { row-gap: 0.5rem; }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- Vertical rhythm (space-y-*) ---------- */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }

/* ---------- Summary callout box ---------- */
section.mb-10.p-6 { padding: 1.5rem; }

/* ---------- Table ---------- */
.overflow-x-auto { overflow-x: auto; }
.min-w-full { min-width: 100%; }
.divide-y > * + * { border-top: 1px solid #e5e7eb; }
.divide-gray-200 > * + * { border-color: #e5e7eb; }
table { border-collapse: collapse; width: 100%; }
thead { background-color: #dbeafe; }
th, td { padding: 0.75rem 1.5rem; text-align: left; vertical-align: top; }
thead th { font-size: 0.75rem; font-weight: 500; color: #4b5563; text-transform: uppercase; letter-spacing: 0.05em; }
tbody { background-color: #ffffff; }
tbody td { font-size: 0.875rem; }
tbody tr { border-top: 1px solid #e5e7eb; }

/* ---------- Code ---------- */
code { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; background-color: #f3f4f6; padding: 0.125rem 0.25rem; border-radius: 0.25rem; font-size: 0.875em; }

/* ---------- Footer ---------- */
footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #e5e7eb; text-align: center; font-size: 0.875rem; color: #6b7280; }
