/* Pet Translator privacy policy — Neon theme (matches app tokens) */

:root {
  --bg: #0a0a0a;
  --surface: #1e1e1e;
  --surface-elevated: #2a2a2a;
  --primary: #ff2e63;
  --secondary: #08d9d6;
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --max-width: 42rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.site-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.site-header h1 {
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.meta {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

section {
  margin-bottom: 2.25rem;
}

section:last-child {
  margin-bottom: 0;
}

h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: var(--secondary);
}

p {
  margin-bottom: 0.85rem;
  color: #e8e8e8;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0.5rem 0 0.85rem 1.25rem;
  color: #e8e8e8;
}

li {
  margin-bottom: 0.4rem;
}

strong {
  color: var(--text);
  font-weight: 600;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

th,
td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th {
  background: var(--surface-elevated);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

tr:last-child td {
  border-bottom: none;
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}

@media (min-width: 640px) {
  .site-header,
  .content,
  .site-footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
