/* Shared styling for the legal / support pages.
   Kept as one file rather than inlined per page so the four documents cannot
   drift apart visually. No build step — Vercel serves web/ as static files. */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0E1B2C;
  --card: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.10);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --signal: #F97316;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.65;
  padding: 32px 24px 96px;
}

.wrap { max-width: 720px; margin: 0 auto; }

header { padding-bottom: 28px; border-bottom: 1px solid var(--border); margin-bottom: 32px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.brand span { font-size: 24px; }

h1 { font-size: 32px; letter-spacing: -0.6px; margin: 20px 0 6px; }
h2 { font-size: 20px; letter-spacing: -0.3px; margin: 36px 0 10px; }
h3 { font-size: 16px; margin: 24px 0 6px; }

p, li { color: var(--muted); font-size: 16px; }
p + p { margin-top: 12px; }

ul, ol { margin: 12px 0 12px 22px; }
li + li { margin-top: 6px; }

a { color: var(--signal); }

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

.updated {
  color: var(--muted);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 20px 0;
}

.card h2, .card h3 { margin-top: 0; }

/* Wide tables must scroll inside their own box rather than the page. */
.table-scroll { overflow-x: auto; margin: 16px 0; }

table { border-collapse: collapse; width: 100%; min-width: 520px; }

th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--muted);
  vertical-align: top;
}

th { color: var(--text); font-weight: 600; white-space: nowrap; }

.steps { counter-reset: step; list-style: none; margin-left: 0; }

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 40px;
  margin-top: 14px;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: var(--signal);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14px;
}

footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--signal); }

@media (max-width: 520px) {
  body { padding: 24px 18px 72px; }
  h1 { font-size: 26px; }
}
