:root {
  color-scheme: light;
  --bg: #f5f2ea;
  --surface: #ffffff;
  --text: #14211d;
  --muted: #64716a;
  --line: #d6ded7;
  --brand: #123c32;
  --brand-2: #2d6a55;
  --accent: #d58a58;
  --shadow: 0 16px 46px rgb(18 38 32 / 10%);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
}

body {
  min-height: 100%;
}

a {
  color: inherit;
}

.landing-hero {
  position: relative;
  min-height: min(760px, 92vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 22px clamp(16px, 5vw, 56px) 64px;
  color: #fff;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgb(18 37 32 / 88%) 0%, rgb(18 37 32 / 72%) 40%, rgb(18 37 32 / 22%) 100%),
    linear-gradient(0deg, rgb(18 37 32 / 55%) 0%, transparent 45%);
}

.landing-nav,
.hero-content {
  position: relative;
  z-index: 2;
}

.landing-nav {
  position: absolute;
  top: 18px;
  left: clamp(16px, 5vw, 56px);
  right: clamp(16px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.landing-nav img {
  width: min(230px, 54vw);
  height: auto;
  filter: drop-shadow(0 8px 24px rgb(0 0 0 / 22%));
}

.landing-nav a,
.primary-link,
.secondary-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
}

.landing-nav a {
  padding: 10px 14px;
  color: var(--brand);
  background: #fff;
}

.hero-content {
  max-width: 710px;
  padding-top: 84px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #dff0e7;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 8vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 620px;
  color: #ecf5f0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-link {
  padding: 12px 18px;
  color: var(--brand);
  background: #fff;
}

.secondary-link {
  padding: 12px 18px;
  border: 1px solid rgb(255 255 255 / 58%);
  color: #fff;
  background: rgb(255 255 255 / 8%);
}

main {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 18px clamp(14px, 4vw, 32px) 48px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: -54px;
  position: relative;
  z-index: 3;
}

.proof-strip div,
.steps article,
.feature-grid article,
.decision-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.proof-strip div {
  display: grid;
  gap: 6px;
  padding: 16px;
}

.proof-strip strong {
  color: var(--brand);
  font-size: 1.05rem;
}

.proof-strip span,
p {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(20px, 5vw, 56px);
  align-items: start;
  padding: clamp(46px, 8vw, 76px) 0 0;
}

.section.compact {
  grid-template-columns: 1fr;
}

.section-copy {
  max-width: 520px;
}

.section-copy .eyebrow {
  color: var(--brand-2);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 5vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.steps,
.feature-grid {
  display: grid;
  gap: 12px;
}

.steps article,
.feature-grid article {
  padding: 18px;
}

.steps span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

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

.decision-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: clamp(46px, 8vw, 76px);
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(90deg, rgb(18 60 50 / 5%), rgb(213 138 88 / 10%)),
    #fff;
}

.decision-band div {
  max-width: 680px;
}

.decision-band .eyebrow {
  color: var(--brand-2);
}

.decision-band .primary-link {
  flex: 0 0 auto;
  color: #fff;
  background: var(--brand);
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-footer {
  display: flex;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 22px clamp(14px, 4vw, 32px) 36px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.landing-footer img {
  width: 174px;
  height: auto;
}

@media (max-width: 820px) {
  .landing-hero {
    min-height: 780px;
  }

  .landing-hero::after {
    background: linear-gradient(0deg, rgb(18 37 32 / 92%) 0%, rgb(18 37 32 / 72%) 58%, rgb(18 37 32 / 24%) 100%);
  }

  .hero-content {
    align-self: end;
  }

  .proof-strip,
  .section,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .decision-band,
  .landing-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .landing-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions > * {
    width: 100%;
  }

  .proof-strip {
    margin-top: -36px;
  }
}
