:root {
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #07111e;
  color: #f7fbff;
  line-height: 1.65;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(13, 125, 178, 0.22), transparent 34rem),
    #07111e;
}

a {
  color: #59d9ff;
}

.home {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 32px;
  text-align: center;
}

.home h1 {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 1.05;
}

.home > p:not(.eyebrow) {
  max-width: 42rem;
  color: #b6c8d9;
}

.eyebrow {
  margin: 0 0 12px;
  color: #59d9ff;
  font-weight: 800;
  letter-spacing: 0.14em;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

nav a {
  padding: 11px 18px;
  border: 1px solid #285069;
  border-radius: 999px;
  background: rgba(13, 35, 53, 0.78);
  color: #f7fbff;
  font-weight: 700;
  text-decoration: none;
}

.legal {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.legal header,
.legal section,
.legal footer {
  padding: 24px clamp(20px, 5vw, 44px);
  border: 1px solid rgba(107, 166, 200, 0.2);
  background: rgba(11, 27, 42, 0.86);
}

.legal header {
  border-radius: 20px 20px 0 0;
}

.legal section {
  border-top: 0;
}

.legal footer {
  border-top: 0;
  border-radius: 0 0 20px 20px;
  color: #9db1c4;
}

.legal h1 {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 4.25rem);
  line-height: 1.08;
}

.legal h2 {
  margin: 0 0 12px;
  color: #79e0ff;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.legal p,
.legal li {
  color: #d6e1eb;
}

.legal ul {
  padding-left: 22px;
}

.updated {
  color: #9db1c4;
}

.back {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
}

@media (max-width: 600px) {
  .legal {
    width: min(100% - 20px, 900px);
    padding-top: 28px;
  }
}
