/* legal.css — shared styling for the offer / privacy pages.
 * Long-form legal text, so the priorities here are line length and contrast,
 * not visual flourish. Colour variables are declared locally because these
 * pages do not carry the per-page :root block the marketing pages use. */

:root {
  --bg-dark: #0a0a0c;
  --card-bg: rgba(22, 22, 27, 0.7);
  --border-color: rgba(255, 255, 255, 0.08);
  --accent: #7c4dff;
  --text-main: #e2e8f0;
  --text-gray: #a8b0bd;
  --text-muted: #8b93a1;
  --font-outfit: 'Outfit', sans-serif;
  --font-inter: 'Inter', sans-serif;
}

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

body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-inter);
  line-height: 1.7;
  padding: 40px 20px 0;
}

.glow {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(124, 77, 255, .12) 0%, rgba(9, 10, 15, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* ~70 characters per line: the readable range for continuous prose. */
.wrap {
  max-width: 760px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 24px;
}
.back-link:hover { color: var(--text-main); }

h1 {
  font-family: var(--font-outfit);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 8px;
}

h2 {
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 40px 0 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.sub {
  color: var(--text-gray);
  margin-bottom: 32px;
}

p { margin-bottom: 14px; }

ul {
  margin: 0 0 14px 22px;
}
li { margin-bottom: 8px; }

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

.muted {
  color: var(--text-muted);
  font-size: 14px;
}

.requisites {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 18px;
}
.requisites p { margin-bottom: 6px; }

/* Clauses a user must not skim past: consent to immediate performance, and the
   ban-risk disclaimer. Given visual weight deliberately — a term this material
   being easy to miss is itself an argument against its enforceability. */
.highlight {
  background: rgba(124, 77, 255, 0.07);
  border: 1px solid rgba(124, 77, 255, 0.28);
  border-radius: 12px;
  padding: 20px 20px 8px;
  margin: 18px 0;
}
.highlight ul { margin-bottom: 14px; }

/* Editorial note for the draft stage — remove the element before publishing. */
.notice {
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.35);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 14px;
  color: #ffd27a;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  font-size: 15px;
  display: block;
  overflow-x: auto;
}
th, td {
  border: 1px solid var(--border-color);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
th {
  background: rgba(255, 255, 255, 0.03);
  font-weight: 600;
}

@media (max-width: 600px) {
  body { padding: 24px 16px 0; }
  h1 { font-size: 1.5rem; }
}
