/* Legal pages shared styles */
@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --orange: #ff8000;
  --orange-dark: #e66e00;
  --orange-soft: rgba(255, 128, 0, 0.14);
  --ink: #1f1f1f;
  --ink-soft: #424242;
  --ink-mute: #8c8c8c;
  --bg: #ffffff;
  --bg-2: #fafaf7;
  --bg-3: #f1efe9;
  --line: #e8e5dd;
  --radius-pill: 999px;
  --f-display: "Bowlby One SC", "Arial Black", system-ui, sans-serif;
  --f-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: min(800px, 100% - 48px); margin: 0 auto; }

/* Nav */
body { padding-top: 80px; }



/* Hero */
.legal-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 64px 24px 56px;
  text-align: center;
}
.legal-hero .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--orange-soft);
  color: var(--orange);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.legal-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 14px;
}
.legal-hero .meta {
  font-size: 14px;
  color: var(--ink-mute);
}

/* Content */
.legal-content {
  padding: 64px 24px 80px;
}
.legal-content h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin: 40px 0 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.legal-content h2:first-child { margin-top: 0; border-top: none; }
.legal-content p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.legal-content ul {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-content ul li {
  font-size: 15px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.legal-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.legal-content a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.legal-footer {
  background: var(--bg-3);
  border-top: 1px solid var(--line);
  padding: 32px 24px;
}
.legal-footer-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.legal-footer .copy {
  font-size: 13px;
  color: var(--ink-mute);
}
.legal-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.legal-footer-links a {
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 500;
  transition: color 0.2s;
}
.legal-footer-links a:hover { color: var(--orange); }
.legal-footer-links a.active { color: var(--orange); font-weight: 700; }
