:root {
  --ink: #111720;
  --muted: #5f6b78;
  --paper: #f5f1e8;
  --panel: #ffffff;
  --line: #dce3e7;
  --green: #1d7558;
  --green-dark: #134f3c;
  --blue: #2f5f91;
  --amber: #cb8e28;
  --rose: #aa4d55;
  --shadow: 0 24px 70px rgba(19, 28, 36, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(12px);
}

.brand,
nav,
.hero-actions,
.trust-strip,
.proof-band,
.final-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 8px;
  font-size: 0.78rem;
}

nav {
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

nav a {
  text-decoration: none;
}

.nav-button,
.primary-action,
.secondary-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 850;
}

.nav-button,
.primary-action {
  color: #fff;
  background: var(--green-dark);
  box-shadow: 0 10px 24px rgba(19, 79, 60, 0.22);
}

.secondary-action {
  color: var(--green-dark);
  background: #e8f2ed;
  border: 1px solid #c7ded4;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: min(680px, calc(82svh - 92px));
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 64px;
  color: #fff;
  background:
    linear-gradient(135deg, #111720 0%, #15231f 58%, #1b5b47 100%);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

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

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 5vw, 3.9rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
}

p,
li {
  color: var(--muted);
  line-height: 1.62;
}

.hero .eyebrow {
  color: #9fe3c7;
}

.lede {
  max-width: 620px;
  margin-bottom: 28px;
  color: #e6f0ed;
  font-size: 1.16rem;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.trust-strip {
  width: min(560px, 100%);
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
}

.trust-strip div {
  flex: 1;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

dd {
  margin-left: 0;
  margin-bottom: 0;
  font-weight: 850;
}

.trust-strip dd {
  color: var(--ink);
}

.product-showcase {
  margin-bottom: 24px;
  padding: 18px;
  background: #101720;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-showcase img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-band {
  justify-content: space-between;
  gap: 1px;
  margin: 0 0 92px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.proof-band div {
  flex: 1;
  min-height: 160px;
  padding: 24px;
  background: var(--panel);
}

.metric {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 54px;
  align-items: start;
  margin-bottom: 96px;
}

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

.feature-list article {
  min-height: 190px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.workflow-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  margin-bottom: 96px;
  padding: 40px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 23, 32, 0.96), rgba(47, 95, 145, 0.86)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 54px);
  border-radius: 8px;
}

.workflow-panel .eyebrow,
.workflow-panel p,
.workflow-panel li {
  color: #dcecf7;
}

.workflow-panel h2 {
  margin-bottom: 0;
}

.workflow-panel ol {
  margin: 0;
  padding-left: 22px;
}

.workflow-panel li + li {
  margin-top: 12px;
}

.buyer-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 96px;
}

.final-cta {
  gap: 36px;
  margin-bottom: 72px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.final-cta img {
  width: min(340px, 42vw);
  border-radius: 8px;
}

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

@media (max-width: 880px) {
  .site-header,
  nav,
  .hero,
  .proof-band,
  .section-grid,
  .workflow-panel,
  .buyer-band,
  .final-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  nav {
    justify-items: start;
  }

  .hero {
    min-height: auto;
    padding: 32px;
  }

  .proof-band div {
    min-height: auto;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .final-cta img {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 560px) {
  main,
  .site-header {
    width: min(100% - 20px, 1180px);
  }

  h1 {
    font-size: 2.08rem;
  }

  .trust-strip {
    display: grid;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-panel,
  .final-cta {
    padding: 22px;
  }

  .hero {
    padding: 28px;
  }

  .product-showcase {
    padding: 10px;
  }

  .lede {
    font-size: 1.02rem;
  }
}
