:root {
  --bg-ink: #05080b;
  --bg-surface: #0b1218;
  --bg-mist: #132333;
  --text-high: #eef5f8;
  --text-mid: #c5d6df;
  --text-low: #8da2af;
  --line: rgba(188, 214, 227, 0.22);
  --accent: #8ddc6f;
  --accent-ink: #0e1a10;
  --max-content: 860px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text-high);
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 16%, rgba(73, 131, 186, 0.18), transparent 40%),
    radial-gradient(circle at 86% 5%, rgba(141, 220, 111, 0.12), transparent 44%),
    linear-gradient(180deg, #030507 0%, #071016 48%, #05080b 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.shell {
  width: min(var(--max-content), calc(100vw - 2rem));
  margin: 0 auto;
  padding: 2.2rem 0 3rem;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}

.brand-text {
  font-weight: 700;
  color: #f8fbff;
}

.back-link {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--text-mid);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 27, 36, 0.92), rgba(8, 15, 21, 0.92));
  box-shadow: 0 22px 46px -34px rgba(0, 0, 0, 0.85);
  padding: clamp(1.2rem, 2.5vw, 2rem);
}

h1,
h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(1.95rem, 4.6vw, 3rem);
}

h2 {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  margin-top: 1.55rem;
}

p {
  margin: 0.72rem 0 0;
  color: var(--text-mid);
}

.effective-date {
  margin-top: 0.42rem;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

ul {
  margin: 0.72rem 0 0;
  padding-left: 1.15rem;
  color: var(--text-mid);
}

li + li {
  margin-top: 0.42rem;
}

.contact {
  margin-top: 1.7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--text-low);
  font-size: 0.9rem;
}

@media (max-width: 680px) {
  .top-nav {
    flex-wrap: wrap;
  }
}
