:root {
  --background: oklch(99.5% .002 120);
  --foreground: #141414;
  --muted-foreground: oklch(52% .005 145);
  --border: oklch(93% .003 145);
  --primary: #70a83b;
  --primary-dark: #70a83b;
  --primary-glow: #70a83b;
  --secondary: oklch(97% .005 145);
  --ink: #141414;
  --gradient-primary: linear-gradient(135deg, #70a83b, #70a83b);
  --gradient-hero: radial-gradient(1200px 600px at 80% 0%, rgb(112 168 59 / .18), transparent 60%), radial-gradient(800px 500px at 10% 90%, rgb(112 168 59 / .1), transparent 60%);
  --shadow-soft: 0 1px 2px oklch(0% 0 0 / .04), 0 8px 24px oklch(0% 0 0 / .06);
  --shadow-float: 0 10px 40px -10px oklch(18% .01 240 / .18);
  --shadow-glow: 0 30px 80px -20px rgb(112 168 59 / .45);
}

@font-face {
  font-family: CameraPlainVariable;
  src: url("fonts/camera-plain-variable.woff2") format("woff2");
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-family: CameraPlainVariable, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
}

.site-shell {
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding-right: 0;
  padding-left: 0;
}

.site-nav {
  display: flex;
  width: 100%;
  max-width: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--border);
  border-top-width: 0;
  border-right-width: 0;
  border-left-width: 0;
  border-radius: 0;
  background: rgb(255 255 255 / .85);
  padding: .5rem .75rem;
  padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.nav-brand {
  position: relative;
  display: inline-flex;
  flex: 0 0 102px;
  width: 102px;
  height: 34px;
  align-items: center;
  gap: 0;
  margin-left: 0;
  overflow: hidden;
  padding-left: 0;
}

.nav-brand img {
  position: absolute;
  top: -6px;
  left: -7px;
  width: auto;
  max-width: none;
  height: 42px;
  object-fit: initial;
}

.nav-brand-fallback {
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .5rem 1rem;
  color: var(--muted-foreground);
  font-size: .875rem;
  font-weight: 500;
  transition: background .15s ease, color .15s ease;
}

.nav-list a:hover {
  background: var(--secondary);
  color: var(--foreground);
}

.nav-cta {
  display: inline-flex;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gradient-primary);
  padding: 0 1.25rem;
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  box-shadow: var(--shadow-glow);
  transition: transform .15s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .nav-brand {
    flex-basis: 145px;
    width: 145px;
    height: 38px;
  }

  .nav-brand img {
    top: -8px;
    left: -10px;
    height: 56px;
  }
}

.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 10rem 0 6rem;
  background-image: var(--gradient-hero);
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .75fr);
  align-items: center;
  gap: 3rem;
}

.legal-hero h1 {
  max-width: 46rem;
  margin-top: 0;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.025em;
}

.legal-hero h1 span {
  background: var(--gradient-primary);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.legal-hero p {
  max-width: 42rem;
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-top: 2rem;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 12px;
  padding: 0 1.5rem;
  font-size: .875rem;
  font-weight: 600;
  transition: background .15s ease, transform .15s ease;
}

.primary-button {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.secondary-button {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--foreground);
  box-shadow: var(--shadow-soft);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.legal-hero .updated {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  font-size: .8rem;
  font-weight: 600;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: #fff;
  padding: 2rem;
  box-shadow: var(--shadow-float);
}

.hero-card-icon {
  position: relative;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 1rem;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.hero-card h2 {
  position: relative;
  margin-top: 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-card ul {
  position: relative;
  display: grid;
  gap: .85rem;
  margin-top: 1.25rem;
  list-style: none;
}

.hero-card li {
  display: flex;
  gap: .7rem;
  color: var(--muted-foreground);
  font-size: .95rem;
  line-height: 1.55;
}

.check {
  display: grid;
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border-radius: 999px;
  background: rgb(112 168 59 / .12);
  color: var(--primary);
  margin-top: .05rem;
}

.legal-content {
  padding: 6rem 0;
}

.legal-content-grid {
  max-width: 64rem;
}

.legal-document {
  display: grid;
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  background: #fff;
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.document-section {
  padding: 0;
}

.document-section + .document-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.document-section h2 {
  color: var(--foreground);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.document-section p,
.document-section li {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.75;
}

.document-section p,
.document-section ul {
  margin-top: 1rem;
}

.document-section ul {
  display: grid;
  gap: .65rem;
  padding-left: 1.2rem;
}

.document-section strong {
  color: var(--foreground);
}

.notice {
  border: 1px solid rgb(112 168 59 / .25);
  border-radius: 1.25rem;
  background: rgb(112 168 59 / .08);
  padding: 1rem 1.1rem;
  color: #31541d !important;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid rgb(112 168 59 / .5);
  background: var(--primary);
  color: #fff;
}

.site-footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, .85fr) minmax(0, .9fr);
  gap: 4rem;
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.site-footer-brand-logo {
  width: 132px;
  max-width: 100%;
  height: auto;
}

.site-footer-description {
  max-width: 34rem;
  margin-top: 1.25rem;
  color: rgb(255 255 255 / .84);
  font-size: .95rem;
  line-height: 1.8;
}

.site-footer-title {
  margin-bottom: 1.1rem;
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-footer-links {
  display: grid;
  gap: .75rem;
}

.site-footer-links a,
.site-footer-legal a {
  width: fit-content;
  color: rgb(255 255 255 / .84);
  font-size: .95rem;
  transition: color .15s ease;
}

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

.site-footer-socials {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}

.site-footer-socials a {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / .35);
  border-radius: 999px;
  background: rgb(255 255 255 / .08);
  color: #fff;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}

.site-footer-socials a:hover {
  border-color: #fff;
  background: rgb(255 255 255 / .16);
  color: #fff;
  transform: translateY(-1px);
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / .22);
  color: rgb(255 255 255 / .78);
  font-size: .8rem;
}

.site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .5rem 1rem;
}

@media (max-width: 767px) {
  .nav-list {
    display: none;
  }
}

@media (max-width: 900px) {
  .legal-hero-grid,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .legal-hero {
    padding: 8rem 0 4rem;
  }

  .legal-content {
    padding: 4rem 0;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .site-footer-inner {
    padding-top: 3rem;
  }

  .site-footer-grid {
    gap: 2rem;
  }

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

  .site-footer-legal {
    justify-content: flex-start;
  }
}
