:root {
  --bg: #eef2eb;
  --surface: #f9faf7;
  --ink: #142117;
  --ink-soft: #4a5b4d;
  --brand: #1f5f3b;
  --brand-strong: #13442a;
  --accent: #cda86a;
  --dark: #0d1710;
  --light: #ffffff;
  --ring: rgba(205, 168, 106, 0.35);
  --shadow: 0 12px 32px rgba(13, 23, 16, 0.14);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Trebuchet MS", Verdana, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, #f6f8f2 0, #eef2eb 45%, #e8ede4 100%);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(249, 250, 247, 0.88);
  border-bottom: 1px solid rgba(20, 33, 23, 0.1);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: clamp(145px, 18vw, 200px);
  height: auto;
  display: block;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text small {
  color: var(--ink-soft);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.site-nav a {
  transition: color 180ms ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-weight: 600;
  font-size: 0.93rem;
  transition: transform 180ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.btn-nav {
  color: var(--light);
  background: var(--brand-strong);
}

.btn-nav:hover,
.btn-nav:focus-visible {
  background: #0f361f;
}

.btn-primary {
  color: var(--light);
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 8px 20px rgba(19, 68, 42, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 12px 24px rgba(19, 68, 42, 0.44);
}

.btn-ghost {
  border: 1px solid rgba(20, 33, 23, 0.2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
}

.btn-contrast {
  color: var(--dark);
  background: var(--accent);
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 8vw, 5rem);
}

.hero-bg-shape {
  position: absolute;
  pointer-events: none;
}

.hero-bg-shape-1 {
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(31, 95, 59, 0.22), rgba(31, 95, 59, 0));
  top: -8rem;
  right: -5rem;
}

.hero-bg-shape-2 {
  width: 28rem;
  height: 12rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(205, 168, 106, 0.14), rgba(205, 168, 106, 0));
  bottom: -3rem;
  left: -5rem;
  transform: rotate(-6deg);
}

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

.eyebrow,
.section-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--brand);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 3.45rem);
  max-width: 20ch;
  letter-spacing: -0.01em;
}

.lead {
  margin: 0;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-panel {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(249, 250, 247, 0.86));
  border: 1px solid rgba(20, 33, 23, 0.1);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
  animation: fadeUp 700ms ease 110ms both;
}

.hero-copy {
  animation: fadeUp 700ms ease both;
}

.hero-logo {
  width: clamp(210px, 34vw, 345px);
  height: auto;
  display: block;
  margin: 0.55rem 0 1rem;
}

.hero-panel h2 {
  font-size: 1.08rem;
  margin-bottom: 0.9rem;
}

.hero-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.78rem;
}

.hero-panel li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
}

.section {
  padding: clamp(3.2rem, 7vw, 5rem) 0;
}

.section-title {
  margin: 0.45rem 0 0.9rem;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.section-intro {
  margin: 0;
  max-width: 68ch;
  color: var(--ink-soft);
}

.section-light {
  background: rgba(249, 250, 247, 0.64);
}

.cards {
  margin-top: 1.7rem;
  display: grid;
  gap: 1rem;
}

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

.card {
  border-radius: var(--radius);
  padding: 1.2rem 1.1rem;
  background: var(--light);
  border: 1px solid rgba(20, 33, 23, 0.09);
  box-shadow: 0 8px 24px rgba(13, 23, 16, 0.08);
}

.card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
}

.section-dark {
  background: linear-gradient(180deg, #122016, #0d1710);
  color: #eef2eb;
}

.section-dark .section-kicker {
  color: var(--accent);
}

.section-dark .section-intro,
.section-dark p {
  color: #c4d0c8;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
  align-items: start;
}

.asset-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 0.5rem 0.65rem;
  margin: 0.6rem 0 0.85rem;
}

.asset-logo {
  width: clamp(180px, 30vw, 300px);
  height: auto;
  display: block;
}

.feature-list-wrap {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.feature-list li:last-child {
  border-bottom: 0;
}

.feature-list h3 {
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}

.feature-list p {
  margin: 0;
}

.narrow {
  max-width: 60ch;
}

.section-cta {
  background:
    linear-gradient(150deg, rgba(31, 95, 59, 0.9), rgba(19, 68, 42, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 12px, transparent 12px, transparent 24px);
  color: var(--light);
}

.section-cta .section-kicker {
  color: #f3d9ae;
}

.section-cta .section-intro {
  color: #e4ece7;
}

.cta-wrap {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
}

.site-footer {
  padding: 1rem 0 1.3rem;
  background: #e4eadd;
  border-top: 1px solid rgba(20, 33, 23, 0.1);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .hero-grid,
  .feature-grid,
  .three-up,
  .cta-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cta-wrap {
    gap: 1.4rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .brand-logo {
    width: min(62vw, 220px);
  }

  .hero-logo {
    width: min(76vw, 330px);
  }

  .asset-logo {
    width: min(74vw, 290px);
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}