/* Legal pages. Same world as the landing page, but built to be read:
   a single measured column on the deep ground, quiet teal for structure. */
:root {
  --teal: #0EA5A0;
  --teal-bright: #35C8BA;
  --teal-glow: #5FDBCD;
  --deep: #00070C;
  --ink: #FFFFFF;
  --ink-soft: rgba(255, 255, 255, .78);
  --ink-quiet: rgba(255, 255, 255, .5);
  --pad: clamp(20px, 5vw, 56px);
  --font: "Plus Jakarta Sans", ui-sans-serif, -apple-system, "Segoe UI",
    system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(120% 70% at 50% -10%, #04222C 0%, rgba(0,7,12,0) 60%),
    var(--deep);
  background-attachment: fixed;
  color: var(--ink-soft);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal-glow); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ── Chrome ─────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(0,7,12,.94), rgba(0,7,12,.72) 70%, rgba(0,7,12,0));
  backdrop-filter: blur(6px);
}
.nav { display: flex; align-items: center; gap: 12px; max-width: 980px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand svg { width: 24px; height: 28px; flex: none; }
.brand span { font-size: 17px; font-weight: 500; letter-spacing: -.02em; }
.back {
  margin-left: auto;
  font-size: 14px;
  color: var(--ink-quiet);
  white-space: nowrap;
}
.back:hover { color: var(--teal-glow); text-decoration: none; }

/* ── Document ───────────────────────────────────────────── */
.doc { padding-block: clamp(28px, 6vw, 56px) clamp(64px, 10vw, 110px); }

.eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal-bright);
}
.doc h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 6vw, 46px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--ink);
}
.stamp { margin: 0; font-size: 14px; color: var(--ink-quiet); }
.rule {
  height: 1px;
  margin: clamp(26px, 4vw, 40px) 0 clamp(22px, 3vw, 34px);
  background: linear-gradient(to right,
    rgba(46,196,182,.5), rgba(46,196,182,.14) 45%, rgba(46,196,182,0));
}

.doc h2 {
  margin: clamp(38px, 5vw, 56px) 0 12px;
  font-size: clamp(19px, 2.6vw, 23px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--ink);
}
.doc h3 {
  margin: clamp(26px, 3.4vw, 34px) 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-glow);
}
.doc p { margin: 0 0 16px; max-width: 68ch; }
.doc ul { margin: 0 0 18px; padding-left: 0; list-style: none; max-width: 68ch; }
.doc li { position: relative; margin-bottom: 9px; padding-left: 22px; }
.doc li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

/* ── Footer ─────────────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 26px 0 40px;
  font-size: 13px;
  color: var(--ink-quiet);
}
.foot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  max-width: 980px;
}
footer a { color: var(--ink-quiet); }
footer a:hover { color: var(--teal-glow); }
.tagline { margin-left: auto; }

@media (max-width: 560px) {
  body { font-size: 15.5px; }
  .doc p, .doc ul { max-width: none; }
  .tagline { margin-left: 0; width: 100%; }
}
