/* === DumpLogic legal pages (privacy / terms) ===
   Industrial theme borrowed from the home page (index.html), re-laid-out for
   long-form reading: a single centered column instead of the centered hero. */
:root {
  --red: #CC1111;
  --darker: #070605;
  --text: #d4c9b8;
  --muted: #7a6e62;
  --rule: rgba(204, 17, 17, 0.25);
}

@media (prefers-color-scheme: light) {
  :root {
    --darker: #f2f1ef;
    --text: #201c14;
    --muted: #6b6058;
    --rule: rgba(204, 17, 17, 0.32);
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  color: var(--text);
  background: var(--darker);
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  line-height: 1.7;
  padding: clamp(28px, 6vw, 72px) 20px;
  /* Industrial grain + scanline texture, lifted from the home page */
  background-image:
    url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 4 4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='1' height='1' fill='%23ffffff' opacity='0.015'/%3E%3C/svg%3E"),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.05) 2px, rgba(0,0,0,0.05) 4px);
  background-attachment: fixed;
}

@media (prefers-color-scheme: light) {
  body {
    background-image:
      url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 4 4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='1' height='1' fill='%23000000' opacity='0.025'/%3E%3C/svg%3E"),
      repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.04) 2px, rgba(0,0,0,0.04) 4px);
  }
}

.legal { max-width: 760px; margin: 0 auto; }

/* Header: wordmark links home, section nav on the right */
.legal-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 18px;
  margin-bottom: 32px;
}

.brand {
  font-family: 'Bebas Neue', 'Share Tech Mono', sans-serif;
  font-size: clamp(26px, 5vw, 34px);
  letter-spacing: 4px;
  line-height: 1;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s;
}
.brand:hover,
.brand:focus-visible { color: var(--red); outline: none; }
.brand .accent { color: var(--red); }

.legal-nav {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.legal-nav a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.legal-nav a:hover,
.legal-nav a:focus-visible { color: var(--red); border-bottom-color: var(--red); outline: none; }

h1 {
  font-family: 'Bebas Neue', 'Share Tech Mono', sans-serif;
  font-size: clamp(36px, 8vw, 58px);
  letter-spacing: 2px;
  line-height: 1.04;
  color: var(--text);
  margin: 0 0 8px;
}

.legal-meta {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 36px;
}

h2 {
  font-size: clamp(17px, 3.6vw, 20px);
  letter-spacing: 0.5px;
  color: var(--red);
  margin: 36px 0 10px;
}

p, li {
  font-size: clamp(14px, 2.4vw, 15.5px);
  color: var(--text);
}

p { margin: 0 0 14px; }

ul { padding-left: 22px; margin: 0 0 14px; }
li { margin-bottom: 9px; }

a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:hover, a:focus-visible { color: var(--text); }

strong { font-weight: 700; color: var(--text); }

.legal-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--rule);
  margin-top: 48px;
  padding-top: 18px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1px;
}
.legal-footer a { color: var(--muted); text-decoration: none; }
.legal-footer a:hover { color: var(--red); }
