:root {
  --background: #fbfaf7;
  --background-soft: #f4f1ea;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.72);
  --text: #17191c;
  --muted: #5d6470;
  --muted-soft: #7d857d;
  --green: #527c55;
  --green-dark: #406643;
  --green-soft: #eef4ed;
  --border: #e9e6dd;
  --shadow-soft: 0 20px 60px rgba(22, 27, 25, 0.08);
  --shadow-card: 0 24px 70px rgba(22, 27, 25, 0.06);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.92), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(82, 124, 85, 0.08), transparent 28%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

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

li + li {
  margin-top: 0.45rem;
}

li::marker {
  color: var(--green);
}

img,
svg {
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(255, 253, 249, 0.72));
  backdrop-filter: blur(20px);
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 36px 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.brand-mark {
  width: 44px;
  height: 54px;
  display: inline-grid;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nav-links {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
}

.nav-links a {
  position: relative;
  padding: 10px 0 12px;
  color: #111316;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.download-btn {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  background: linear-gradient(180deg, #5e8a61, var(--green));
  color: #ffffff;
  font-weight: 760;
  box-shadow: 0 14px 28px rgba(82, 124, 85, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.download-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #557f58, var(--green-dark));
  box-shadow: 0 18px 34px rgba(82, 124, 85, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background:
    radial-gradient(circle at 88% 42%, rgba(82, 124, 85, 0.17) 0 16%, transparent 16.5%),
    radial-gradient(circle at 74% 60%, rgba(82, 124, 85, 0.09) 0 18%, transparent 18.5%),
    linear-gradient(180deg, #fffdf9 0%, #f6f2e9 100%);
  border-bottom: 1px solid rgba(226, 221, 211, 0.85);
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(236, 231, 220, 0), rgba(226, 219, 207, 0.8));
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 34px 36px 30px;
  display: grid;
  grid-template-columns: 0.92fr 1.3fr;
  align-items: center;
  gap: 38px;
  min-height: inherit;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: 0 0 20px;
  max-width: 540px;
  font-size: clamp(44px, 5.3vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.065em;
  font-weight: 850;
}

.hero-copy .accent {
  display: block;
  color: var(--green);
}

.hero-copy p {
  margin: 0;
  max-width: 430px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.hero-art {
  position: relative;
  z-index: 1;
  min-height: 285px;
}

.hero-art svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 25px 38px rgba(30, 35, 32, 0.09));
}

.cloud,
.bird,
.route {
  opacity: 0.72;
}

.page-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 46px 36px 92px;
}

.content-layout {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.side-nav {
  position: sticky;
  top: 28px;
  padding: 15px;
  border: 1px solid rgba(226, 223, 214, 0.88);
  border-radius: 24px;
  background: var(--surface-glass);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(26, 30, 27, 0.05);
}

.side-nav a {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 14px;
  color: #1a1d20;
  font-weight: 680;
  transition: background 0.2s ease, color 0.2s ease;
}

.side-nav a + a {
  margin-top: 8px;
}

.side-nav a.active,
.side-nav a:hover {
  background: linear-gradient(90deg, var(--green-soft), rgba(255, 255, 255, 0.74));
  color: var(--green-dark);
}

.side-nav a.active::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 999px;
  background: var(--green);
}

.side-nav svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  stroke-width: 1.9;
}

.content-card {
  max-width: 780px;
  background: transparent;
  border-radius: var(--radius-lg);
}

.content-card.home-card {
  max-width: 850px;
}

.eyebrow,
.last-updated {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.content-card h1 {
  margin: 0 0 14px;
  color: #111316;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 830;
}

.content-card h2 {
  margin: 38px 0 12px;
  color: #15171a;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.22;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.content-card h3 {
  margin: 26px 0 8px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.content-card p,
.content-card li {
  color: #454b53;
  font-size: 18px;
  line-height: 1.78;
  letter-spacing: -0.012em;
}

.content-card p {
  margin: 0 0 18px;
}

.content-card section,
.info-panel {
  padding: 0 0 4px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.info-tile {
  position: relative;
  min-height: 168px;
  padding: 28px;
  border: 1px solid rgba(226, 223, 214, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(26, 30, 27, 0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(26, 30, 27, 0.07);
}

.feature-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 21px;
}

.info-tile h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.info-tile p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--muted);
}

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

.secondary-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 13px;
  font-weight: 720;
}

.button {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(82, 124, 85, 0.2);
}

.secondary-link {
  background: var(--green-soft);
  color: var(--green-dark);
}

.email-link {
  display: inline-flex;
  padding: 3px 0;
  color: var(--green-dark);
  font-weight: 750;
  border-bottom: 2px solid rgba(82, 124, 85, 0.24);
}

.footer {
  padding: 34px 36px 42px;
  text-align: center;
  color: var(--muted-soft);
  border-top: 1px solid rgba(226, 223, 214, 0.75);
  background: rgba(255, 253, 249, 0.76);
}

@media (max-width: 980px) {
  .navbar {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-inline: 24px;
  }

  .nav-links {
    justify-self: start;
    flex-wrap: wrap;
    gap: 22px;
  }

  .download-btn {
    justify-self: start;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 38px 24px 26px;
  }

  .hero-art {
    min-height: auto;
    max-height: 300px;
    opacity: 0.92;
    overflow: hidden;
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .side-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-nav a.active::before {
    display: none;
  }

  .content-card {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 32px;
  }

  .brand-mark {
    width: 38px;
    height: 47px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 32px 20px 24px;
  }

  .hero-copy h1 {
    font-size: 45px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .page-wrap {
    padding: 34px 20px 68px;
  }

  .side-nav {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .content-card h1 {
    font-size: 36px;
  }

  .content-card p,
  .content-card li {
    font-size: 16.5px;
  }
}


.brand-logo{
width:48px;
height:48px;
border-radius:12px;
object-fit:cover;
box-shadow:0 4px 12px rgba(0,0,0,.12);
}
.brand-mark{display:none!important;}

.no-wrap {
  white-space: nowrap;
}