:root {
  color-scheme: light;
  --bg: #eef2ef;
  --ink: #14201a;
  --muted: #61706a;
  --line: #d3ddd8;
  --panel: #ffffff;
  --brand: #245f52;
  --brand-dark: #183f38;
  --gold: #d99a42;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 12px clamp(18px, 4vw, 44px);
  border-bottom: 1px solid rgba(20, 32, 26, 0.12);
  background: rgba(238, 242, 239, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  min-width: 0;
  text-decoration: none;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 36px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
}

nav a {
  color: var(--muted);
  font-size: 0.94rem;
  text-decoration: none;
}

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

.nav-button,
.primary-action {
  background: var(--brand);
  color: #fff;
}

.secondary-action {
  border: 1px solid rgba(20, 32, 26, 0.28);
  color: var(--ink);
}

.hero {
  min-height: 82vh;
  display: grid;
  align-items: end;
  padding: 110px clamp(20px, 6vw, 80px) 52px;
  background:
    linear-gradient(90deg, rgba(238, 242, 239, 0.98) 0%, rgba(238, 242, 239, 0.82) 44%, rgba(238, 242, 239, 0.18) 100%),
    url("assets/local-service-landing-page-generator-screenshot.png") center right / min(72vw, 1120px) auto no-repeat,
    #eef2ef;
}

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

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

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

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

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.lede {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.55;
}

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

.product-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-strip div {
  padding: 22px clamp(18px, 4vw, 42px);
  background: #ffffff;
}

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

dd {
  margin: 8px 0 0;
  font-size: clamp(1.08rem, 2.1vw, 1.45rem);
  font-weight: 900;
}

.product-view,
.workflow,
.buyer-band,
.final-cta {
  padding: clamp(56px, 9vw, 112px) clamp(20px, 6vw, 80px);
}

.product-view {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: #14201a;
  color: #fff;
}

.product-view p {
  color: #ccd7d1;
  font-size: 1.08rem;
  line-height: 1.65;
}

.product-view .eyebrow {
  color: #9ed8c6;
}

figure {
  margin: 0;
}

.product-view img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

figcaption {
  margin-top: 12px;
  color: #b7c5be;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.feature-band article {
  min-height: 280px;
  padding: clamp(28px, 5vw, 56px);
  background: #ffffff;
}

.feature-band p,
.workflow p,
.buyer-band p,
.final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.workflow {
  background: #e3ebe5;
}

.workflow ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(20, 32, 26, 0.12);
}

.workflow li {
  min-height: 190px;
  padding: 24px;
  background: #f8faf8;
}

.workflow span {
  display: block;
  margin-bottom: 36px;
  color: var(--brand);
  font-weight: 900;
}

.buyer-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background: #f0c986;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: #eef2ef;
}

.final-cta img {
  width: min(100%, 520px);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(20, 32, 26, 0.18);
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
    background:
      linear-gradient(180deg, rgba(238, 242, 239, 0.68), rgba(238, 242, 239, 0.98)),
      url("assets/local-service-landing-page-generator-screenshot.png") top center / 920px auto no-repeat,
      #eef2ef;
  }

  .product-strip,
  .feature-band,
  .workflow ol,
  .product-view,
  .buyer-band,
  .final-cta {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5.4rem);
  }
}
