:root {
  color-scheme: light;
  --bg: #edf5ff;
  --panel: #ffffff;
  --text: #091426;
  --muted: #3e536d;
  --line: rgba(12, 42, 84, 0.14);
  --accent: #0057ff;
  --accent-deep: #003fc4;
  --shadow: 0 22px 70px rgba(7, 17, 32, 0.09);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 8%, rgba(0, 87, 255, 0.1), transparent 30%),
    linear-gradient(180deg, var(--bg), #dcecff);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
  width: min(760px, calc(100vw - 28px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(20px, 5vw, 38px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--accent);
  padding: 5px;
  box-shadow: 0 12px 30px rgba(0, 87, 255, 0.2);
}

h1 {
  margin: 22px 0 8px;
  font-size: clamp(2rem, 7vw, 3.45rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

h2 {
  margin: 30px 0 8px;
  font-size: 1.02rem;
}

p,
li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

ul {
  padding-left: 1.2rem;
}

a {
  color: var(--accent-deep);
  font-weight: 800;
}

.updated {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  min-height: 42px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 87, 255, 0.22);
}

.button.secondary {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  box-shadow: none;
}
