:root {
  color-scheme: light;
  --forest-950: #173b34;
  --forest-800: #235b4e;
  --forest-600: #34836b;
  --mint-100: #eaf8e9;
  --cream: #fffaf0;
  --paper: rgba(255, 253, 246, 0.94);
  --ink: #3d352a;
  --muted: #756b5b;
  --gold: #f6aa2b;
  --gold-dark: #c56d16;
  --line: rgba(74, 96, 72, 0.18);
  --shadow: 0 24px 70px rgba(17, 59, 50, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 4%, rgba(255, 239, 158, 0.74), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(83, 205, 179, 0.3), transparent 32rem),
    linear-gradient(155deg, #eef8dd 0%, #ddf3e8 46%, #cce9df 100%);
  font-family: ui-rounded, "SF Pro Rounded", "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  width: 18rem;
  height: 18rem;
  border-radius: 52% 48% 65% 35%;
  content: "";
  filter: blur(2px);
  opacity: 0.24;
}

body::before {
  top: -7rem;
  left: -6rem;
  background: #4a9d72;
  transform: rotate(22deg);
}

body::after {
  right: -8rem;
  bottom: -8rem;
  background: #f5bd4e;
  transform: rotate(-18deg);
}

a {
  color: var(--forest-800);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gold-dark);
}

.site-shell {
  width: min(100% - 32px, 940px);
  margin: 0 auto;
  padding: 34px 0 52px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-950);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 52% 48% 54% 46%;
  color: #16493e;
  background: linear-gradient(145deg, #a8f3cd, #50d7bd);
  box-shadow: 0 8px 20px rgba(24, 101, 84, 0.24);
  font-size: 24px;
}

.brand-mark::after {
  position: absolute;
  top: -8px;
  right: 2px;
  width: 14px;
  height: 20px;
  border-radius: 90% 10% 90% 10%;
  background: #6cbf43;
  content: "";
  transform: rotate(28deg);
}

.legal-nav {
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

.legal-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--forest-950);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.legal-nav a[aria-current="page"] {
  color: #fff;
  background: var(--forest-800);
  box-shadow: 0 5px 12px rgba(20, 78, 66, 0.2);
}

.document {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 64px);
  color: #fff;
  background:
    radial-gradient(circle at 80% 22%, rgba(255, 235, 150, 0.32), transparent 12rem),
    linear-gradient(135deg, var(--forest-950), var(--forest-600));
}

.hero::after {
  position: absolute;
  right: clamp(20px, 7vw, 68px);
  bottom: -54px;
  width: 164px;
  height: 164px;
  border: 5px solid rgba(255, 255, 255, 0.5);
  border-radius: 54% 46% 50% 50%;
  background:
    radial-gradient(circle at 35% 38%, #153c39 0 6px, #fff 7px 14px, transparent 15px),
    radial-gradient(circle at 65% 38%, #153c39 0 6px, #fff 7px 14px, transparent 15px),
    radial-gradient(ellipse at 50% 62%, #f58a78 0 16px, transparent 17px),
    linear-gradient(145deg, #baf6c7, #4dd6bd);
  box-shadow: inset 0 -20px 0 rgba(28, 149, 122, 0.18), 0 20px 40px rgba(4, 48, 42, 0.28);
  content: "";
  transform: rotate(-4deg);
}

.eyebrow {
  margin: 0 0 10px;
  color: #ffdf86;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.1rem, 6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-copy {
  max-width: 590px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.updated {
  display: inline-flex;
  margin-top: 24px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(12, 55, 49, 0.28);
  font-size: 0.84rem;
  font-weight: 700;
}

.content {
  padding: clamp(28px, 6vw, 58px);
}

.summary-card {
  margin: 0 0 38px;
  padding: 20px 22px;
  border: 1px solid rgba(57, 132, 103, 0.2);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--mint-100), #fff8da);
}

.summary-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--forest-950);
  font-size: 1.06rem;
}

section + section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0 0 10px;
  color: var(--forest-950);
  font-size: clamp(1.28rem, 3vw, 1.65rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

p,
li {
  color: var(--muted);
}

p {
  margin: 0.65rem 0 0;
}

ul {
  margin: 12px 0 0;
  padding-left: 1.25rem;
}

li + li {
  margin-top: 7px;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(240, 163, 38, 0.24);
  border-radius: 18px;
  background: #fff7de;
}

.contact-card a {
  font-weight: 900;
}

.footer {
  padding: 22px 12px 0;
  color: rgba(37, 78, 68, 0.7);
  text-align: center;
  font-size: 0.84rem;
}

@media (max-width: 680px) {
  .site-shell {
    width: min(100% - 20px, 940px);
    padding-top: 16px;
  }

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

  .legal-nav {
    width: 100%;
  }

  .legal-nav a {
    flex: 1;
    text-align: center;
  }

  .document {
    border-radius: 22px;
  }

  .hero::after {
    right: -36px;
    bottom: -82px;
    opacity: 0.72;
  }

  .hero-copy {
    max-width: 80%;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

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