:root {
  color-scheme: dark;
  --bg: #02040d;
  --panel: #0b1020;
  --text: #f3f7ff;
  --muted: #aab6cb;
  --cyan: #2edcff;
  --violet: #8c63ff;
  --border: rgba(139, 160, 190, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 68% 42%, rgba(46, 220, 255, 0.13), transparent 28rem),
    radial-gradient(circle at 22% 24%, rgba(140, 99, 255, 0.14), transparent 24rem),
    linear-gradient(180deg, #030614 0%, #060a19 52%, #02040d 100%);
}

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

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
}

.hero {
  width: min(720px, 100%);
}

.mark {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(46, 220, 255, 0.58);
  border-radius: 20px;
  color: var(--text);
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(145deg, rgba(46, 220, 255, 0.16), rgba(140, 99, 255, 0.20));
  box-shadow: 0 0 36px rgba(46, 220, 255, 0.22);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lede {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 34px;
  padding: 0 20px;
  border: 1px solid rgba(46, 220, 255, 0.52);
  border-radius: 8px;
  color: #001018;
  background: var(--cyan);
  font-weight: 800;
  text-decoration: none;
}

.legal {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 92px 24px 80px;
}

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

.legal h1 {
  font-size: 42px;
  line-height: 1.08;
}

.updated {
  margin: 10px 0 38px;
  color: var(--muted);
  font-size: 14px;
}

.legal h2 {
  margin: 38px 0 10px;
  font-size: 20px;
}

.legal p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.legal strong {
  color: var(--text);
}
