:root {
  --legal-ink: #111;
  --legal-muted: #6e6e73;
  --legal-soft: #f5f5f7;
  --legal-paper: #fbfaf8;
  --legal-line: #e5e5e7;
  --legal-accent: #b96532;
  --legal-accent-dark: #8f4725;
  --legal-max: 780px;
  --legal-shell: 1280px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--legal-ink);
  font-family: Manrope, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.c {
  width: min(var(--legal-max), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
  border-bottom: 1px solid var(--legal-line);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(20px);
}

.nav-inner {
  width: min(var(--legal-shell), calc(100% - 48px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 46px;
  padding: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn,
.btn-ghost {
  min-height: 46px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 100px;
  background: var(--legal-ink);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover,
.btn-ghost:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(17, 17, 17, .16);
}

.page-hero {
  padding: 86px 0 70px;
  border-bottom: 1px solid var(--legal-line);
  background: linear-gradient(180deg, #fff 0%, var(--legal-paper) 100%);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--legal-accent);
  font: 500 11px/1 "DM Mono", monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 20px;
  height: 1px;
  border-radius: 0;
  background: var(--legal-accent);
  box-shadow: none;
}

.page-hero h1 {
  margin: 0 0 18px;
  color: var(--legal-ink);
  font-size: clamp(46px, 5.4vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.055em;
}

.page-hero p {
  margin: 0;
  color: var(--legal-muted);
  font-size: 14px;
  line-height: 1.65;
}

.content {
  padding: 72px 0 110px;
}

.content h2 {
  margin: 48px 0 13px;
  color: var(--legal-ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.025em;
}

.content h2:first-child {
  margin-top: 0;
}

.content p,
.content ul {
  margin: 0 0 16px;
  color: var(--legal-muted);
  font-size: 15px;
  line-height: 1.82;
}

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

.content ul li {
  margin-bottom: 7px;
  padding-left: 3px;
}

.content strong {
  color: #343437;
  font-weight: 600;
}

.content a {
  color: var(--legal-accent-dark);
  text-decoration: underline;
  text-decoration-color: rgba(143, 71, 37, .32);
  text-underline-offset: 3px;
}

.content a:hover {
  text-decoration-color: currentColor;
}

.highlight-box,
.warning-box {
  margin: 0 0 46px;
  padding: 24px 26px;
  border: 1px solid #e7e1da;
  border-left: 3px solid var(--legal-accent);
  border-radius: 18px;
  background: var(--legal-paper);
}

.highlight-box p,
.warning-box p {
  margin: 0;
  color: #55555a;
  font-size: 14px;
  line-height: 1.75;
}

.divider {
  margin: 48px 0 28px;
  border: 0;
  border-top: 1px solid var(--legal-line);
}

footer {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #111;
  color: #8e8e93;
  font-size: 12px;
}

footer .c {
  width: min(var(--legal-shell), calc(100% - 48px));
}

.footer-inner {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: #8e8e93;
}

.footer-legal-links a:hover {
  color: #fff;
}

:focus-visible {
  outline: 3px solid #c27446;
  outline-offset: 4px;
  border-radius: 8px;
}

@media (max-width: 700px) {
  .c,
  .nav-inner,
  footer .c {
    width: calc(100% - 28px);
  }

  .nav-inner {
    height: 68px;
    gap: 12px;
  }

  .brand-logo {
    height: 38px;
  }

  .nav-actions {
    gap: 10px;
  }

  .btn,
  .btn-ghost {
    min-height: 40px;
    padding: 0 13px;
    font-size: 12px;
  }

  .nav-inner .btn,
  .nav-inner .btn-ghost {
    display: inline-flex;
  }

  .page-hero {
    padding: 62px 0 50px;
  }

  .page-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .content {
    padding: 52px 0 80px;
  }

  .highlight-box,
  .warning-box {
    padding: 21px 20px;
    border-radius: 15px;
  }

  .footer-inner {
    display: block;
  }

  .footer-legal-links {
    margin-top: 14px;
  }
}

@media (max-width: 430px) {
  .back-label {
    display: none;
  }

  .btn,
  .btn-ghost {
    width: 40px;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
