:root {
  color-scheme: light dark;
  --background: #f7f7fa;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-solid: #ffffff;
  --surface-muted: #f0f0f4;
  --text: #111114;
  --muted: #63636d;
  --separator: rgba(17, 17, 20, 0.1);
  --accent: #fa4714;
  --accent-strong: #cb2507;
  --accent-soft: rgba(250, 71, 20, 0.1);
  --accent-glow: rgba(250, 71, 20, 0.16);
  --success: #248a3d;
  --success-soft: rgba(36, 138, 61, 0.11);
  --shadow: 0 24px 70px rgba(34, 22, 18, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-synthesis: none;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0b0b0e;
    --surface: rgba(28, 28, 33, 0.92);
    --surface-solid: #1c1c21;
    --surface-muted: #27272d;
    --text: #f7f7f9;
    --muted: #a4a4ae;
    --separator: rgba(255, 255, 255, 0.1);
    --accent: #ff5a27;
    --accent-strong: #d72b09;
    --accent-soft: rgba(255, 90, 39, 0.13);
    --accent-glow: rgba(255, 90, 39, 0.2);
    --success: #35c759;
    --success-soft: rgba(53, 199, 89, 0.13);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  }
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--background);
  color: var(--text);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 78% -8%, var(--accent-glow), transparent 34rem),
    var(--background);
}

a {
  color: var(--accent);
  font-weight: 650;
  text-underline-offset: 0.18em;
}

a:focus-visible {
  border-radius: 5px;
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.site-header,
.page-shell,
.site-footer {
  width: min(100% - 40px, 920px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: max(22px, env(safe-area-inset-top)) 18px;
}

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

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--accent), var(--accent-strong));
  color: white;
  font-weight: 850;
  box-shadow: 0 7px 20px var(--accent-glow);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.header-nav a[aria-current="page"] {
  color: var(--text);
}

.page-shell {
  padding-block: 18px 34px;
}

.legal-hero,
.summary-card,
.legal-document {
  border: 1px solid var(--separator);
  background: var(--surface);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
}

.legal-hero {
  padding: clamp(30px, 7vw, 62px);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.13em;
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: break-word;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(40px, 8vw, 68px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.hero-summary {
  max-width: 700px;
  margin: 22px 0 18px;
  color: var(--muted);
  font-size: clamp(17px, 3vw, 20px);
  line-height: 1.55;
}

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

.summary-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  margin-block: 18px;
  padding: 24px;
  border-radius: 24px;
}

.summary-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  font-weight: 900;
}

.summary-card h2 {
  margin: 0;
  font-size: 18px;
}

.summary-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.legal-document {
  padding: clamp(26px, 6vw, 54px);
  border-radius: 30px;
}

.legal-section + .legal-section {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--separator);
}

.legal-section h2 {
  margin: 0 0 15px;
  font-size: clamp(22px, 4vw, 28px);
  letter-spacing: -0.022em;
}

.legal-section h3 {
  margin: 24px 0 10px;
  font-size: 17px;
}

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

.legal-section p {
  margin: 0;
}

.legal-section p + p,
.legal-section ul + p,
.legal-section p + ul {
  margin-top: 14px;
}

.legal-section ul {
  display: grid;
  gap: 10px;
  margin-block: 14px 0;
  padding-left: 22px;
}

.legal-section strong {
  color: var(--text);
}

.contact-card {
  margin-top: 38px;
  padding: 24px;
  border-radius: 22px;
  background: var(--accent-soft);
}

.contact-card h2 {
  margin: 0 0 8px;
  font-size: 19px;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 14px max(32px, env(safe-area-inset-bottom));
  color: var(--muted);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

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

.site-footer a:hover,
.header-nav a:hover {
  color: var(--text);
}

@media (max-width: 620px) {
  .site-header,
  .page-shell,
  .site-footer {
    width: min(100% - 28px, 920px);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-nav {
    width: 100%;
    justify-content: space-between;
  }

  .legal-hero {
    border-radius: 27px;
  }

  .legal-document {
    border-radius: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

@media (prefers-contrast: more) {
  :root {
    --separator: currentColor;
  }

  .legal-hero,
  .summary-card,
  .legal-document {
    border-width: 2px;
  }
}
