:root {
  --ink: #172033;
  --muted: #687086;
  --paper: #f4f7fb;
  --card: #fff;
  --line: #e7ebf2;
  --accent: #6756e8;
}
* { box-sizing: border-box; }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 88% 0,#eeeafd 0,transparent 28%),var(--paper);
  font: 15px/1.7 Manrope,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
.legal-shell {
  width: min(920px,calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 70px;
}
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-weight: 900;
  text-decoration: none;
}
.legal-brand img {
  width: 70px;
  height: 34px;
  object-fit: contain;
}
.legal-card {
  padding: clamp(24px,4vw,46px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(37,48,74,.10);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1 {
  margin: 0 0 18px;
  font-size: clamp(34px,5vw,52px);
  line-height: 1.06;
  letter-spacing: -.06em;
}
h2 {
  margin: 30px 0 10px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.03em;
}
p,li { color: #424b60; }
.lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
}
.notice {
  margin: 24px 0;
  padding: 16px 18px;
  border: 1px solid #ded9ff;
  border-radius: 18px;
  background: #f4f2ff;
  color: #4d43a2;
  font-weight: 700;
}
ul,ol { padding-left: 22px; }
a { color: var(--accent); font-weight: 800; text-decoration: none; }
a:hover { text-decoration: underline; }
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.legal-nav a {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #4f5b73;
  font-size: 12px;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  margin: 28px 0 10px;
}
.legal-tile {
  display: flex;
  min-height: 154px;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg,#fff,#fbfcff);
  box-shadow: 0 10px 28px rgba(37,48,74,.06);
  color: inherit;
  text-decoration: none;
}
.legal-tile:hover {
  border-color: #d8d2ff;
  box-shadow: 0 16px 36px rgba(103,86,232,.10);
  text-decoration: none;
}
.legal-tile span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.legal-tile strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.16;
}
.legal-tile small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.meta {
  color: var(--muted);
  font-size: 13px;
}
@media(max-width:640px) {
  .legal-header { align-items: flex-start; flex-direction: column; }
  .legal-card { border-radius: 22px; }
  .legal-grid { grid-template-columns: 1fr; }
}
