:root {
  --green: #126b47;
  --green-deep: #062b1d;
  --green-soft: #b9f4d3;
  --green-mid: #14513a;
  --ink: #171d19;
  --muted: #4e5952;
  --line: #c5cec8;
  --bg: #f4f7f4;
  --surface: #ffffff;
  --radius: 28px;
  --radius-lg: 44px;
  --shadow: 0 24px 60px rgba(6, 43, 29, 0.12);
  --font-display: "Syne", sans-serif;
  --font-body: "Outfit", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(185, 244, 211, 0.55), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(18, 107, 71, 0.12), transparent 50%),
    linear-gradient(180deg, #eef5f0 0%, var(--bg) 40%, #e8f0ea 100%);
  min-height: 100vh;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--green);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--green-deep);
}

.wrap {
  width: min(1080px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* —— Nav —— */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(244, 247, 244, 0.78);
  border-bottom: 1px solid rgba(197, 206, 200, 0.55);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(18, 107, 71, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 560;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(18, 107, 71, 0.1);
  color: var(--green-deep);
}

/* —— Hero —— */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% -10% auto auto;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  border-radius: 40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(185, 244, 211, 0.9), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(18, 107, 71, 0.35), transparent 60%);
  filter: blur(8px);
  z-index: -1;
  animation: drift 12s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate(-4%, 2%) scale(1); }
  to { transform: translate(3%, -3%) scale(1.06); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.045em;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.98;
  color: var(--green-deep);
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: 1.15rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(18, 107, 71, 0.28);
}

.btn-primary:hover {
  background: var(--green-mid);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-deep);
  border: 1.5px solid rgba(18, 107, 71, 0.2);
}

.hero-visual {
  display: grid;
  place-items: center;
}

.logo-orb {
  width: min(320px, 78vw);
  aspect-ratio: 1;
  border-radius: 36%;
  background:
    linear-gradient(145deg, #1a8a5a, var(--green-deep));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  animation: float 5.5s ease-in-out infinite;
}

.logo-orb-flat {
  background: transparent;
  border-radius: 28%;
  box-shadow: none;
}

.logo-orb-flat img {
  width: 100%;
  height: 100%;
  border-radius: 28%;
  box-shadow: var(--shadow);
}

.logo-orb img {
  width: 62%;
  height: 62%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.logo-orb-flat img {
  width: 100%;
  height: 100%;
  filter: none;
  object-fit: cover;
}

.logo-caption {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-lead-secondary {
  margin-top: -0.75rem;
  font-size: 1rem !important;
}

.hero-lead-secondary code {
  font-size: 0.92em;
  background: rgba(18, 107, 71, 0.1);
  padding: 0.15rem 0.45rem;
  border-radius: 8px;
}

.purpose-box {
  margin: 0 0 1.25rem;
  padding: 1.35rem 1.4rem 1.45rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(197, 206, 200, 0.75);
}

.purpose-box h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--green-deep);
}

.purpose-box ul {
  margin: 0;
  padding-left: 1.2rem;
}

.purpose-box li + li {
  margin-top: 0.4rem;
}

.purpose-highlight {
  border-color: rgba(18, 107, 71, 0.35);
  background: linear-gradient(180deg, rgba(185, 244, 211, 0.45), rgba(255, 255, 255, 0.85));
}

.purpose-highlight p + p {
  margin-top: 0.85rem;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.identity-grid > div {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(18, 107, 71, 0.08);
  border: 1px solid rgba(18, 107, 71, 0.14);
}

.mini-title {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 700;
}

.mono-line {
  margin: 0;
  font-weight: 700;
  color: var(--green-deep);
  word-break: break-word;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* —— Sections —— */
section {
  padding: 1.5rem 0 4rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  margin: 0 0 0.5rem;
  color: var(--green-deep);
}

.section-lead {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 36rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature {
  padding: 1.4rem 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(197, 206, 200, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(6, 43, 29, 0.08);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.feature h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.band {
  margin: 1rem 0 3rem;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(18, 107, 71, 0.95), #0d4a32 55%, #163a4a);
  color: #f2f7f3;
  box-shadow: var(--shadow);
}

.band h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.band p {
  margin: 0;
  max-width: 40rem;
  opacity: 0.92;
}

.band a {
  color: #b9f4d3;
}

/* —— Privacy —— */
.page-head {
  padding: 3rem 0 1.5rem;
}

.page-head h1 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--green-deep);
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.prose {
  max-width: 720px;
  padding-bottom: 4rem;
}

.prose h2 {
  margin: 2.2rem 0 0.7rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-size: 1.35rem;
  color: var(--green-deep);
}

.prose p,
.prose li {
  color: #2a332e;
}

.prose ul {
  padding-left: 1.2rem;
}

.prose li + li {
  margin-top: 0.35rem;
}

.note {
  margin: 1.5rem 0;
  padding: 1.1rem 1.2rem;
  border-radius: 20px;
  background: rgba(185, 244, 211, 0.35);
  border: 1px solid rgba(18, 107, 71, 0.18);
}

/* —— Footer —— */
.footer {
  border-top: 1px solid rgba(197, 206, 200, 0.7);
  padding: 1.5rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer a {
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 860px) {
  .hero-grid,
  .features,
  .identity-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .logo-orb {
    width: min(220px, 58vw);
  }
}

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