:root {
  --bg:        #0a1315;
  --bg-raised: #101c1f;
  --bg-band:   #0d1a1c;
  --line:      #1e3438;
  --line-soft: #16292c;
  --teal:      #16a3ba;
  --teal-deep: #0f7d91;
  --mint:      #c9e5e1;
  --text:      #eef5f4;
  --text-dim:  #a9c0be;
  --text-mute: #63807e;
}

* { box-sizing: border-box; }

html { background: var(--bg); }

body {
  margin: 0;
  background:
    radial-gradient(1100px 680px at 12% -8%, rgba(15,125,145,0.16), transparent 58%),
    radial-gradient(900px 620px at 102% 28%, rgba(22,163,186,0.09), transparent 55%),
    linear-gradient(178deg, #0a1315 0%, #0c1a1d 42%, #0a1416 72%, #080f11 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.mono-label {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}

.mono-label::before {
  content: "";
  width: 1.1em;
  height: 1px;
  background: var(--teal-deep);
}

header.top {
  border-bottom: 1px solid var(--line-soft);
}

.top-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-logo {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: var(--text);
  text-decoration: none;
}

.mini-logo span { color: var(--teal); }

.back-link {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 0.5rem 0.9rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.back-link:hover { color: var(--teal); border-color: var(--teal-deep); }

main {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem clamp(4rem, 8vw, 6rem);
}

h1 {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 2.6rem);
  margin: 0.9rem 0 0.4rem;
  color: var(--text);
}

.subtitle {
  font-size: 0.95rem;
  color: var(--text-mute);
  margin: 0 0 3rem;
}

.legal-section {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.legal-section h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  margin: 0 0 1.2rem;
}

.legal-section p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0 0 1rem;
}

.legal-section p:last-child { margin-bottom: 0; }

.fact-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.85rem;
  border: 1px solid var(--line);
  background: var(--bg-raised);
}

.fact-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  justify-content: space-between;
  padding: 0.75rem 1.1rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text-dim);
}

.fact-list li:last-child { border-bottom: none; }

.fact-list li span:first-child {
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.fact-list li span:last-child {
  color: var(--text);
  text-align: right;
}

.bullet-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.bullet-list li {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--text-dim);
  padding-left: 1.2rem;
  position: relative;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.5rem;
  height: 1px;
  background: var(--teal);
}

footer {
  border-top: 1px solid var(--line-soft);
}

.footer-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.2rem 1.5rem 2.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  line-height: 1.7;
  color: var(--text-mute);
}

footer a {
  color: var(--text-mute);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

footer a:hover { color: var(--teal); }

.footer-legal { max-width: 34em; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
}
