@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/website/b3839303-70c3-4c9f-b5ec-7322f46744cf.woff2") format("woff2");
}

:root {
  --lt: #f1f2ed;
  --dk: #0e100e;
  --card: #fff;
  --tint: #e3eae3;
  --green: #166534;
  --green-dark: #0f4a28;
  --em: #2e9e63;
  --em2: #4ade80;
  --ink: #1a1d1a;
  --wht: #f4f5f1;
  --mut: #687068;
  --line: #dfe4db;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--lt);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "cv11", "ss01", "ss03";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.wrap { width: min(1180px, calc(100% - 56px)); margin: 0 auto; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.btn:hover { transform: scale(1.02); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-ghost { border-color: rgba(244,245,241,.22); color: var(--wht); }
.btn-ghost:hover { border-color: rgba(244,245,241,.5); }
.btn-sm { padding: 11px 20px; font-size: 14px; }

.nav {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 10px 12px 10px 22px;
  border: 1px solid rgba(244,245,241,.09);
  border-radius: 999px;
  background: rgba(14,16,14,.55);
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .3s ease, border-color .3s ease;
}
.nav-logo img { width: auto; height: 15px; }
.nav-logo .logo-dark { display: none; }
.nav-links { display: flex; gap: 22px; }
.nav-links a { color: rgba(244,245,241,.72); font-size: 14px; font-weight: 500; transition: color .15s ease; }
.nav-links a:hover { color: #fff; }
.nav-menu {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--wht);
  cursor: pointer;
  place-items: center;
}
.nav-menu span,
.nav-menu::before,
.nav-menu::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-menu span { margin: 4px 0; }
.nav-inner.menu-open .nav-menu::before { transform: translateY(6px) rotate(45deg); }
.nav-inner.menu-open .nav-menu span { opacity: 0; }
.nav-inner.menu-open .nav-menu::after { transform: translateY(-6px) rotate(-45deg); }
.nav.nav-light .nav-inner { background: rgba(241,242,237,.82); border-color: rgba(16,18,16,.08); }
.nav.nav-light .logo-light { display: none; }
.nav.nav-light .logo-dark { display: block; }
.nav.nav-light .nav-links a { color: rgba(26,29,26,.7); }
.nav.nav-light .nav-links a:hover { color: var(--ink); }
.nav.nav-light .nav-menu { color: var(--ink); }

.legal-hero {
  position: relative;
  min-height: 530px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 96px;
  background: var(--dk);
  color: var(--wht);
}
.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 32%, rgba(46,158,99,.2), transparent 30%),
    radial-gradient(circle at 20% 100%, rgba(74,222,128,.06), transparent 40%);
  pointer-events: none;
}
.legal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image: radial-gradient(rgba(244,245,241,.55) .7px, transparent .7px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 45%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000 82%, transparent);
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 1; max-width: 820px; }
.micro {
  display: inline-block;
  color: var(--em2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.legal-hero h1 {
  max-width: 900px;
  margin: 22px 0 0;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1;
}
.legal-hero .lead {
  max-width: 66ch;
  margin: 26px 0 0;
  color: rgba(244,245,241,.65);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}
.legal-hero .lead strong { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 34px; }
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 45px;
  padding: 10px 16px;
  border: 1px solid rgba(74,222,128,.2);
  border-radius: 999px;
  background: rgba(74,222,128,.07);
  color: var(--em2);
  font-size: 13px;
  font-weight: 600;
}
.hero-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--em2); }

.doc-section { padding: 92px 0 120px; }
.doc-layout { display: grid; grid-template-columns: 236px minmax(0, 820px); gap: 56px; justify-content: center; align-items: start; }
.doc-side { position: sticky; top: 106px; display: grid; gap: 18px; }
.side-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.65);
  box-shadow: 0 20px 44px -38px rgba(16,18,16,.3);
}
.side-label { display: block; padding: 18px 18px 10px; color: var(--mut); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.page-switch { display: grid; gap: 3px; padding: 6px; }
.page-switch a { padding: 11px 12px; border-radius: 14px; color: #555c55; font-size: 14px; font-weight: 650; }
.page-switch a:hover { background: var(--tint); color: var(--ink); }
.page-switch a[aria-current="page"] { background: var(--green); color: #fff; }
.toc { display: grid; padding: 2px 18px 18px; }
.toc a { padding: 7px 0; border-bottom: 1px solid rgba(223,228,219,.72); color: var(--mut); font-size: 12.5px; line-height: 1.35; }
.toc a:last-child { border-bottom: 0; }
.toc a:hover { color: var(--green); }

.doc-card {
  counter-reset: legal-section;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--card);
  box-shadow: 0 30px 70px -54px rgba(16,18,16,.4);
}
.doc-card h2 {
  counter-increment: legal-section;
  scroll-margin-top: 112px;
  margin: 58px 0 17px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.2;
}
.doc-card h2::before {
  content: counter(legal-section, decimal-leading-zero) " — ";
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}
.doc-card h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.doc-card h3 { margin: 28px 0 9px; font-size: 17px; font-weight: 750; letter-spacing: -.01em; }
.doc-card p,
.doc-card ul,
.doc-card li { color: #4a514a; font-size: 15.5px; line-height: 1.78; }
.doc-card p { margin: 11px 0; }
.doc-card ul { margin: 14px 0; padding-left: 23px; }
.doc-card li { margin: 6px 0; }
.doc-card strong { color: var(--ink); font-weight: 700; }
.doc-card a { color: var(--green); font-weight: 650; text-decoration: underline; text-decoration-color: rgba(22,101,52,.32); text-underline-offset: 3px; }
.doc-card a:hover { color: var(--green-dark); text-decoration-color: currentColor; }
.address {
  margin: 18px 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--lt);
  color: #4a514a;
  font-size: 15px;
  line-height: 1.7;
}
.address strong { display: block; margin-bottom: 4px; font-size: 16px; }
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding: 24px;
  border: 1px solid #cddccc;
  border-radius: 22px;
  background: var(--tint);
}
.contact-card h3 { margin: 0 0 5px; font-size: 18px; }
.contact-card p { margin: 0; font-size: 14px; line-height: 1.5; }
.contact-card .btn { flex: none; color: #fff; text-decoration: none; }
.footnote { margin-top: 48px !important; padding-top: 22px; border-top: 1px solid var(--line); color: var(--mut) !important; font-size: 12.5px !important; font-style: italic; }

.footer { padding: 54px 0 44px; border-top: 1px solid var(--line); background: var(--lt); }
.footer-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.footer-logo { width: auto; height: 15px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-links a { color: var(--ink); font-size: 14px; font-weight: 500; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--mut); font-size: 12.5px; }

@media (max-width: 940px) {
  .doc-layout { grid-template-columns: minmax(0, 820px); gap: 28px; }
  .doc-side { position: static; grid-template-columns: 1fr; }
  .toc-card { display: none; }
  .page-switch { grid-template-columns: repeat(3, 1fr); }
  .page-switch a { text-align: center; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 44px, 1180px); }
  .nav { top: 10px; }
  .nav-inner { position: relative; width: calc(100% - 28px); justify-content: space-between; gap: 10px; padding: 9px 10px 9px 18px; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(244,245,241,.12);
    border-radius: 20px;
    background: rgba(14,16,14,.98);
    box-shadow: 0 18px 42px rgba(0,0,0,.28);
  }
  .nav-links a { padding: 12px 14px; border-radius: 12px; }
  .nav-links a:hover { background: rgba(255,255,255,.06); }
  .nav-inner.menu-open .nav-links { display: flex; }
  .nav-menu { display: grid; }
  .nav.nav-light .nav-links { border-color: rgba(16,18,16,.1); background: rgba(241,242,237,.98); box-shadow: 0 18px 42px rgba(16,18,16,.16); }
  .nav.nav-light .nav-links a:hover { background: rgba(16,18,16,.05); }
  .nav .btn-sm { padding: 11px 16px; }
  .legal-hero { min-height: 500px; padding-top: 130px; }
  .doc-section { padding: 54px 0 84px; }
  .doc-card { border-radius: 24px; }
  .contact-card { align-items: stretch; flex-direction: column; }
  .contact-card .btn { width: 100%; }
  .footer-row { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .wrap { width: min(100% - 32px, 1180px); }
  .nav-inner { width: calc(100% - 20px); }
  .nav-logo img { height: 13px; }
  .nav .btn-sm { padding: 11px 13px; font-size: 13px; }
  .legal-hero { min-height: 480px; padding: 116px 0 74px; }
  .legal-hero h1 { font-size: clamp(42px, 15vw, 62px); }
  .legal-hero .lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-chip, .hero-actions .btn { width: 100%; justify-content: center; }
  .page-switch a { padding: 10px 6px; font-size: 12.5px; }
  .doc-card { padding: 30px 22px; }
  .doc-card h2 { margin-top: 44px; padding-top: 26px; font-size: 23px; }
  .doc-card p, .doc-card ul, .doc-card li { font-size: 15px; }
  .footer-links { gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
  .btn:hover { transform: none; }
}
