@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@800&display=swap');

:root {
  --ink:#12351f;
  --deep:#083016;
  --muted:#607569;
  --bg:#f3fff5;
  --panel:#ffffff;
  --leaf:#0f8a3d;
  --leaf2:#17b95e;
  --lime:#e7ffe8;
  --gold:#d69a00;
  --line:#d8ebdc;
  --shadow:0 24px 70px rgba(12,78,35,.14);
  --container:min(1120px,calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(15,138,61,.20), transparent 28%),
    radial-gradient(circle at 88% 6%, rgba(214,154,0,.18), transparent 30%),
    radial-gradient(circle at 70% 94%, rgba(23,185,94,.16), transparent 34%),
    linear-gradient(135deg, #fbfff8, #effcf3 55%, #fffaf0);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(18,53,31,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,53,31,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: -2;
}

a { color: var(--leaf); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin: 0 auto; }

.blob {
  position: fixed;
  border-radius: 999px;
  filter: blur(54px);
  opacity: .32;
  z-index: -1;
  pointer-events: none;
  animation: blob 12s ease-in-out infinite;
}

.blob.one { width: 340px; height: 340px; background: #67d98e; left: -120px; top: 16%; }
.blob.two { width: 360px; height: 360px; background: #ffd86a; right: -130px; bottom: 7%; animation-direction: reverse; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  border-bottom: 1px solid rgba(216,235,220,.74);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  box-shadow: 0 16px 35px rgba(15,138,61,.22);
}

.brand strong {
  display: block;
  font-size: 15px;
  letter-spacing: -.02em;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.header-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 16px 30px rgba(8,48,22,.16);
}

.hero { padding: 46px 0 34px; }

.hero-card,
.policy-card,
.toc,
.summary-card {
  border: 1px solid rgba(255,255,255,.88);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 44px;
  padding: clamp(28px,5vw,58px);
  background: linear-gradient(135deg,rgba(255,255,255,.97),rgba(231,255,232,.84));
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: -90px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(214,154,0,.20), transparent 70%);
  pointer-events: none;
}

.eyebrow {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg,var(--leaf),var(--gold));
}

h1 {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  font-size: clamp(42px,6vw,78px);
  line-height: .95;
  letter-spacing: -.075em;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(24px,3vw,34px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

p { margin: 0; }

.lead,
.policy-block p,
.summary-card span,
.footer-inner span,
.footer-date {
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  position: relative;
  z-index: 2;
  max-width: 830px;
  font-size: 17px;
}

.summary-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 30px;
}

.summary-card {
  padding: 18px;
  border-radius: 22px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.summary-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(12,78,35,.15);
}

.summary-card strong {
  display: block;
  margin-bottom: 6px;
}

.policy-section { padding: 34px 0 74px; }

.policy-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 22px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 98px;
  border-radius: 24px;
  padding: 18px;
}

.toc span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 900;
  margin-bottom: 12px;
}

.toc a {
  display: block;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.toc a:last-child { border-bottom: 0; }

.policy-card {
  border-radius: 32px;
  padding: clamp(22px,4vw,38px);
  position: relative;
  overflow: hidden;
}

.policy-card::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(15,138,61,.16), transparent 70%);
  pointer-events: none;
}

.policy-block {
  position: relative;
  z-index: 2;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.policy-block:first-child { padding-top: 0; }
.policy-block:last-child { border-bottom: 0; padding-bottom: 0; }
.policy-block p + p { margin-top: 12px; }

.leaf-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 70% 0 70% 0;
  background: var(--leaf2);
  opacity: .65;
  animation: leafDrift 7s linear infinite;
}

.leaf-dot.l1 { left: 8%; top: 22%; }
.leaf-dot.l2 { left: 21%; top: 48%; animation-delay: 1.3s; }
.leaf-dot.l3 { left: 36%; top: 28%; animation-delay: 2.2s; }

.site-footer {
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes blob { 50% { transform: translate(30px,-25px) scale(1.08); } }
@keyframes leafDrift {
  0% { transform: translateY(40px) rotate(0deg) scale(.75); opacity: 0; }
  20%,80% { opacity: .65; }
  100% { transform: translateY(-120px) rotate(160deg) scale(1.15); opacity: 0; }
}

@media (max-width: 900px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .policy-grid {
    grid-template-columns: 1fr;
  }
  .toc {
    position: static;
  }
  .summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero, .policy-section { padding: 42px 0; }
  .container { width: min(100% - 24px,1120px); }
  h1 { font-size: 42px; }
  .header-pill { font-size: 12px; }
}
