/* Shared theme for Rewire legal pages */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root { --yellow: #FFD600; --bg: #0a0a0a; --bg-2: #141414; --line: #2a2a2a; --text: #e0e0e0; --muted: #a0a0a0; }
html, body { background: var(--bg); color: var(--text); }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  padding: 24px 16px;
  max-width: 760px;
  margin: 0 auto;
}
.top-nav { display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 12px; margin-bottom: 12px; font-size: 13px; }
.top-nav a { color: var(--muted); text-decoration: none; }
.top-nav a:hover { color: var(--yellow); }
header { border-bottom: 2px solid var(--yellow); padding-bottom: 16px; margin-bottom: 32px; }
.brand { color: var(--yellow); font-size: 12px; font-weight: 900; letter-spacing: 4px; }
h1 { color: #fff; font-size: 28px; font-weight: 800; margin-top: 8px; }
.effective { color: #888; font-size: 14px; margin-top: 8px; }
h2 {
  color: #fff; font-size: 18px; font-weight: 700;
  margin-top: 32px; margin-bottom: 12px;
  border-left: 3px solid var(--yellow); padding-left: 12px;
}
h3 { color: #ccc; font-size: 15px; margin: 16px 0 8px; }
p { color: var(--muted); margin-bottom: 12px; }
ul { color: var(--muted); padding-left: 24px; margin-bottom: 12px; }
li { margin-bottom: 6px; }
a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: #fff; }
.contact-box {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  margin-top: 16px;
}
.callout {
  background: rgba(255, 214, 0, 0.06);
  border: 1px solid rgba(255, 214, 0, 0.25);
  border-radius: 12px; padding: 18px; margin: 20px 0;
}
.callout strong { color: var(--yellow); }
footer {
  margin-top: 48px; padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #555; font-size: 13px; text-align: center;
}
footer a { color: #888; margin: 0 8px; }
