:root {
  --forest: #0d4b39;
  --forest-dark: #082f25;
  --lime: #c9ee58;
  --sage: #dfe8d6;
  --paper: #f7f3e8;
  --ink: #12251f;
  --muted: #64716b;
  --line: rgba(13, 75, 57, 0.14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgba(201, 238, 88, 0.22), transparent 24rem),
    radial-gradient(circle at 3% 96%, rgba(13, 75, 57, 0.10), transparent 28rem),
    var(--paper);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.65;
  min-height: 100vh;
}

a { color: inherit; }

.shell {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(8, 47, 37, 0.18);
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible { color: var(--forest); }

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  min-height: 560px;
  margin: 28px 0 70px;
  padding: clamp(34px, 7vw, 78px);
  border-radius: 42px;
  color: #f8f5ea;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.05), transparent 45%),
    var(--forest-dark);
  box-shadow: 0 28px 80px rgba(8, 47, 37, 0.18);
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  top: -150px;
  border: 1px solid rgba(201, 238, 88, 0.26);
  border-radius: 48% 52% 36% 64%;
  transform: rotate(28deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

h1 {
  margin: 0;
  font-size: clamp(50px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(248, 245, 234, 0.76);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-mark {
  justify-self: end;
  width: min(250px, 70%);
  aspect-ratio: 1;
  padding: 18px;
  border-radius: 34%;
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  transform: rotate(4deg);
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero:hover .hero-mark { transform: rotate(0deg) translateY(-6px); }
.hero-mark img { width: 100%; border-radius: 28%; display: block; }

.section {
  padding: 40px 0 72px;
}

.section h2,
.legal h1 {
  margin: 0 0 18px;
  color: var(--forest-dark);
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.section-intro {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.card {
  min-height: 200px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 14px 40px rgba(8, 47, 37, 0.05);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 240ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(8, 47, 37, 0.10);
}

.card .number {
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.card h3 {
  margin: 25px 0 8px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.card p { margin: 0; color: var(--muted); font-size: 15px; }

.privacy-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 24px 0 88px;
  padding: 34px;
  border-radius: 28px;
  color: white;
  background: var(--forest);
}

.privacy-callout h2 { margin: 0 0 6px; font-size: 28px; }
.privacy-callout p { margin: 0; color: rgba(255,255,255,0.72); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--forest-dark);
  background: var(--lime);
  text-decoration: none;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 150ms cubic-bezier(0.2, 0, 0, 1), filter 150ms ease;
}

.button:hover { transform: translateY(-2px); filter: brightness(1.03); }
.button:active { transform: translateY(0) scale(0.98); }

.legal {
  max-width: 780px;
  margin: 40px auto 100px;
  padding: clamp(28px, 6vw, 62px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,255,255,0.62);
  box-shadow: 0 24px 70px rgba(8,47,37,0.08);
}

.legal .updated {
  margin: -5px 0 36px;
  color: var(--muted);
  font-size: 14px;
}

.legal section {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.legal h2 {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 21px;
  letter-spacing: -0.02em;
}

.legal p,
.legal li { color: #46544f; }

.legal ul { padding-left: 22px; }
.legal strong { color: var(--ink); }

.cn {
  margin-top: 9px;
  color: var(--muted) !important;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
footer a { text-decoration: none; }
footer a:hover { color: var(--forest); }

@media (max-width: 760px) {
  .nav-links { gap: 14px; font-size: 13px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-mark { display: none; }
  .grid { grid-template-columns: 1fr; }
  .privacy-callout { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}

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