:root {
  color-scheme: light;
  --ink: #10221c;
  --muted: #5d6a64;
  --paper: #fbfaf4;
  --surface: #ffffff;
  --line: #e4dfd2;
  --green: #0f6b4f;
  --green-dark: #0a4c38;
  --green-soft: #dcefe6;
  --mint: #eef8f2;
  --gold: #c78c1d;
  --shadow: 0 24px 70px rgba(28, 45, 38, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body,
button,
input,
select {
  font: inherit;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 12px 14px;
  color: #ffffff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  border: 1px solid rgba(16, 34, 28, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(16, 34, 28, 0.12);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #ffffff;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 650;
}

.header-cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: 760px;
  isolation: isolate;
  overflow: hidden;
  background: #21342d;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 25, 19, 0.86) 0%, rgba(7, 25, 19, 0.64) 42%, rgba(7, 25, 19, 0.16) 82%),
    linear-gradient(180deg, rgba(7, 25, 19, 0.42) 0%, rgba(7, 25, 19, 0.1) 45%, rgba(7, 25, 19, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 174px 0 72px;
  color: #ffffff;
}

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

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 1.7vw, 1.32rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  cursor: pointer;
  font-weight: 800;
}

.button.primary {
  background: var(--green);
  color: #ffffff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.hero-stats {
  display: grid;
  width: min(720px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 58px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-stats div {
  padding: 20px;
  background: rgba(8, 24, 19, 0.5);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  font-size: 1.65rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

p {
  line-height: 1.65;
}

.intro {
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.intro-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.flow {
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-card,
.ecosystem-grid article,
.benefit-panel,
.customer-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(28, 45, 38, 0.06);
}

.step-card {
  min-height: 255px;
  padding: 24px;
}

.step-number {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--green);
  font-weight: 900;
}

.step-card p,
.ecosystem-grid p,
.customer-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.benefits {
  width: 100%;
  background: var(--mint);
}

.benefits > * {
  width: min(1180px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.benefit-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
}

.benefit-panel {
  padding: 34px;
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: var(--green-soft);
  content: "";
}

.check-list li::after {
  position: absolute;
  top: 8px;
  left: 7px;
  width: 7px;
  height: 11px;
  border: solid var(--green);
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.customer-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background: var(--green-dark);
  color: #ffffff;
}

.customer-card p {
  color: rgba(255, 255, 255, 0.76);
}

.card-label {
  margin-bottom: 72px;
  color: #a8dbc6;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ecosystem {
  border-bottom: 1px solid var(--line);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ecosystem-grid article {
  padding: 24px;
}

.truths {
  padding-top: 74px;
}

.truth-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.truth-list div {
  border-left: 4px solid var(--green);
  padding: 18px 20px;
  background: #ffffff;
  color: var(--muted);
  line-height: 1.55;
}

.cta-band {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  grid-template-columns: 1fr 460px;
  gap: 52px;
  align-items: center;
  margin: 22px auto 96px;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  padding: 44px;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 620px;
}

.cta-band p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.74);
}

.lead-form {
  display: grid;
  gap: 14px;
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
  color: var(--ink);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  width: 100%;
  border: 1px solid #d8d4c8;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 13px 12px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 107, 79, 0.14);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 28px 0 38px;
  color: var(--muted);
}

.site-footer .brand {
  color: var(--ink);
}

@media (max-width: 920px) {
  .site-header {
    width: calc(100% - 20px);
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 138px;
  }

  .hero h1 {
    max-width: 560px;
  }

  .section-heading,
  .intro-grid,
  .benefit-layout,
  .cta-band {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .steps,
  .ecosystem-grid,
  .truth-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .header-cta {
    display: none;
  }

  .site-header {
    margin-top: 10px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 25, 19, 0.92) 0%, rgba(7, 25, 19, 0.64) 52%, rgba(7, 25, 19, 0.5) 100%);
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding-top: 128px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .section-pad {
    width: min(100% - 28px, 1180px);
    padding: 70px 0;
  }

  .steps,
  .ecosystem-grid,
  .truth-list {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 0;
  }

  .step-number,
  .card-label {
    margin-bottom: 28px;
  }

  .benefit-panel,
  .customer-card,
  .cta-band {
    padding: 24px;
  }

  .cta-band {
    width: min(100% - 28px, 1180px);
    margin-bottom: 70px;
  }

  .site-footer {
    width: min(100% - 28px, 1180px);
    flex-direction: column;
    align-items: flex-start;
  }
}
