:root {
  color-scheme: dark;
  --background: #050505;
  --panel: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.14);
  --muted: rgba(255, 255, 255, 0.62);
}

* { box-sizing: border-box; }

html { background: var(--background); }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 5%, rgba(255, 255, 255, 0.14), transparent 34rem),
    radial-gradient(circle at 5% 70%, rgba(255, 255, 255, 0.07), transparent 38rem),
    var(--background);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

a { color: inherit; }

.legal-shell {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 96px;
}

.legal-nav {
  position: sticky;
  z-index: 10;
  top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.78);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
}

.brand {
  font-size: 18px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-decoration: none;
}

.back-link {
  padding: 11px 17px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.legal-hero { padding: 112px 4px 54px; }

.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.intro {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.legal-card {
  margin-top: 18px;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 42px;
  background: var(--panel);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.09), 0 24px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.legal-card section + section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0 0 14px;
  font-size: 25px;
  letter-spacing: -0.025em;
}

p, li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

p { margin: 0; }
p + p { margin-top: 14px; }
ul { margin: 12px 0 0; padding-left: 22px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.contact-button {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.contact-button:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.13); }
.contact-button span:last-child { color: var(--muted); }

.legal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 34px 8px 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.legal-footer nav { display: flex; gap: 18px; }
.legal-footer a { text-decoration: none; }

@media (max-width: 640px) {
  .legal-shell { width: min(100% - 24px, 920px); padding-top: 12px; }
  .legal-nav { top: 8px; }
  .legal-hero { padding: 78px 8px 38px; }
  .intro { font-size: 18px; }
  .legal-card { border-radius: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
}
