@import url('/marketing-fonts.css');

:root {
  color-scheme: light;
  --legal-accent: #dc6739;
  --legal-accent-soft: #fff1eb;
  --legal-ink: #171918;
  --legal-muted: #5f625f;
  --legal-border: rgba(23, 25, 24, 0.09);
  --legal-wrap: 1180px;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--legal-ink);
  background: #fff;
}

* { box-sizing: border-box; }

html { background: #fff; }

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 5% 20%, rgba(220, 103, 57, 0.08), transparent 26rem),
    radial-gradient(circle at 95% 72%, rgba(23, 25, 24, 0.045), transparent 30rem),
    #fff;
}

.legal-header {
  width: min(calc(100% - 40px), var(--legal-wrap));
  min-height: 72px;
  margin: 18px auto 0;
  padding: 12px 16px 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--legal-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(23, 25, 24, 0.06);
  backdrop-filter: blur(16px);
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--legal-ink);
  text-decoration: none;
}

.legal-brand img { width: 34px; height: 34px; object-fit: contain; }

.legal-brand span {
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.legal-home {
  min-height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--legal-border);
  border-radius: 999px;
  color: var(--legal-ink);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.legal-home:hover {
  color: var(--legal-accent);
  border-color: rgba(220, 103, 57, 0.36);
  transform: translateY(-1px);
}

.legal-shell {
  width: min(calc(100% - 40px), 860px);
  margin: 72px auto 100px;
}

main {
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid var(--legal-border);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(23, 25, 24, 0.075);
}

h1 {
  max-width: 680px;
  margin: 0 0 14px;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

h2 {
  margin: 42px 0 14px;
  font-size: clamp(20px, 2.5vw, 25px);
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0;
}

p, li {
  color: var(--legal-muted);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 450;
}

p { margin: 0 0 16px; }

.updated {
  margin: 0 0 30px;
  color: var(--legal-accent);
  font-size: 13px;
  font-weight: 650;
}

ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 26px;
}

li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--legal-accent);
  content: '';
}

a { color: var(--legal-accent); text-underline-offset: 3px; }

.legal-footer {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--legal-muted);
  font-size: 12px;
}

.legal-footer a { color: var(--legal-muted); text-decoration: none; }
.legal-footer a:hover { color: var(--legal-accent); }

@media (max-width: 640px) {
  .legal-header { width: calc(100% - 24px); min-height: 64px; margin-top: 12px; }
  .legal-home { min-height: 36px; padding: 0 14px; }
  .legal-shell { width: calc(100% - 24px); margin: 34px auto 52px; }
  main { padding: 26px 22px 30px; border-radius: 25px; }
  h1 { font-size: 31px; }
  h2 { margin-top: 34px; }
  p, li { font-size: 15px; line-height: 1.68; }
  .legal-footer { flex-wrap: wrap; gap: 10px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
