@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --emerald: #1f6b4d;
  --emerald-deep: #154d39;
  --emerald-muted: #5f8f79;
  --gold: #c8a44d;
  --orange-gold: #d9892b;
  --background: #f6f5ef;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --border: rgba(21, 77, 57, 0.12);
  --text: #1b1c1a;
  --text-muted: #444841;
  --shadow: 0 18px 45px rgba(15, 48, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(31, 107, 77, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at top right,
      rgba(217, 137, 43, 0.18),
      transparent 22%
    ),
    linear-gradient(180deg, #f7f6f1 0%, #eef3eb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 77, 57, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 77, 57, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 85%);
}

.page-shell {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 32px;
  position: relative;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
  opacity: 0.6;
}

.ambient-a {
  top: 90px;
  right: 4vw;
  width: 210px;
  height: 210px;
  background: rgba(31, 107, 77, 0.08);
}

.ambient-b {
  left: -40px;
  bottom: 80px;
  width: 240px;
  height: 240px;
  background: rgba(217, 137, 43, 0.08);
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(31, 107, 77, 0.96),
    rgba(21, 77, 57, 0.96)
  );
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 26px rgba(21, 77, 57, 0.25);
}

.eyebrow {
  margin: 0 0 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: var(--emerald-deep);
}

.section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.section-nav a {
  color: var(--emerald-deep);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(31, 107, 77, 0.1);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.section-nav a:hover,
.section-nav a.is-active {
  transform: translateY(-1px);
  background: rgba(31, 107, 77, 0.12);
  color: var(--emerald);
}

.card {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 24px;
  padding: 28px;
  align-items: stretch;
}

.hero-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.06;
  color: var(--emerald-deep);
  margin-bottom: 16px;
}

.hero-copy p {
  max-width: 64ch;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31, 107, 77, 0.08);
  color: var(--emerald);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--orange-gold), #e09a37);
  color: #fff;
  box-shadow: 0 10px 24px rgba(217, 137, 43, 0.32);
}

.button-secondary {
  background: rgba(31, 107, 77, 0.1);
  color: var(--emerald-deep);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.76);
  color: var(--emerald-deep);
  border: 1px solid rgba(31, 107, 77, 0.14);
}

.hero-panel {
  display: grid;
  gap: 14px;
  align-content: center;
}

.mini-stat {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(31, 107, 77, 0.08);
}

.mini-stat span {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.mini-stat strong {
  color: var(--emerald-deep);
  font-size: 1.1rem;
}

.summary-grid,
.policy-layout {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.summary-card,
.policy {
  padding: 24px;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.summary-card h3,
.policy h3 {
  color: var(--emerald-deep);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.summary-card p,
.policy p,
.policy li,
.footer p {
  color: var(--text-muted);
  line-height: 1.85;
}

.policy-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.policy ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.policy li + li {
  margin-top: 8px;
}

.contact-box {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(31, 107, 77, 0.08);
  border: 1px solid rgba(31, 107, 77, 0.08);
}

.contact-box strong {
  display: block;
  color: var(--emerald-deep);
  margin-bottom: 6px;
}

.inline-link-row {
  margin-top: 18px;
}

.inline-link-row .button {
  width: 100%;
}

.footer {
  padding: 22px 6px 0;
  text-align: center;
}

.footer p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

@media (max-width: 920px) {
  .hero,
  .summary-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .topbar {
    position: static;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100vw - 20px, 1160px);
    padding-top: 10px;
  }

  .topbar,
  .hero,
  .summary-card,
  .policy {
    border-radius: 24px;
  }

  .topbar,
  .hero {
    padding: 18px;
  }

  .section-nav {
    gap: 8px;
  }

  .section-nav a {
    font-size: 0.86rem;
    padding: 9px 12px;
  }

  .hero-actions,
  .inline-link-row {
    gap: 10px;
  }

  .hero-copy h2 {
    font-size: 1.9rem;
  }
}
