.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 246, 241, 0.94);
  backdrop-filter: blur(12px);
}

.brand-mark,
.site-nav a,
.nav-cta,
.primary-button,
.secondary-button,
.inline-link {
  text-decoration: none;
}

.brand-mark {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.site-nav a,
.nav-cta {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:hover,
.nav-cta:hover,
.inline-link:hover {
  color: var(--brand);
}

.hero-section {
  width: min(1160px, 100%);
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  align-items: center;
  gap: 38px;
  padding: 58px 28px 36px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 72px 0 auto;
  height: 420px;
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(16, 107, 85, 0.1), transparent 36%),
    linear-gradient(250deg, rgba(217, 79, 48, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(255, 245, 216, 0.7), transparent 74%);
}

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

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 6.7vw, 5.3rem);
}

.hero-copy p:not(.eyebrow) {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.65;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-note {
  margin-top: 14px;
  font-size: 0.95rem !important;
}

.hero-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-mini-proof span {
  padding: 7px 10px;
  border: 1px solid rgba(16, 107, 85, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-demo {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.demo-topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.demo-topbar strong {
  color: var(--brand);
}

.demo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(23, 33, 28, 0.07);
}

.demo-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-card p {
  margin: 0;
  line-height: 1.45;
}

.green-card {
  background: #edf8f2;
  border-color: #b6dfc8;
}

.green-card span {
  color: #126b45;
}

.yellow-card {
  background: #fff5d8;
  border-color: #efd084;
}

.yellow-card span {
  color: #8a5c00;
}

.red-card {
  background: #fff0ea;
  border-color: #efb7a4;
}

.red-card span {
  color: #b13c20;
}

.trust-strip,
.content-section,
.cta-section,
.site-footer {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 44px 28px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.36);
}

.trust-strip strong {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}

.steps-section,
.tools-section,
.why-section {
  border-top: 1px solid var(--line);
}

.section-kicker {
  display: grid;
  gap: 8px;
  max-width: 720px;
  margin-bottom: 24px;
}

.section-kicker.centered {
  margin-inline: auto;
  text-align: center;
}

.section-kicker h2,
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.section-kicker p:not(.eyebrow),
.cta-section p {
  color: var(--muted);
  line-height: 1.58;
}

.steps-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 14px;
}

.step-card,
.tool-card,
.why-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow);
}

.step-card span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 950;
}

.step-card {
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--brand);
}

.step-card:nth-child(3)::after {
  background: #b77900;
}

.step-card:nth-child(5)::after {
  background: var(--accent);
}

.step-connector {
  align-self: center;
  color: var(--muted);
  font-size: 1.6rem;
  font-weight: 950;
}

.step-card:nth-child(3) span {
  background: #b77900;
}

.step-card:nth-child(5) span {
  background: var(--accent);
}

.step-card h3,
.tool-card h3,
.why-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.step-card p,
.tool-card p,
.why-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.tool-card.live {
  background: #edf8f2;
  border-color: #9fd8ba;
}

.tool-card {
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: #d9ded5;
}

.tool-card.live::before {
  background: var(--brand);
}

.tool-card:nth-child(2)::before,
.tool-card:nth-child(5)::before {
  background: #b77900;
}

.tool-card:nth-child(3)::before,
.tool-card:nth-child(6)::before {
  background: var(--accent);
}

.service-label {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inline-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--brand);
  font-weight: 900;
}

.tool-chip {
  display: inline-block;
  width: fit-content;
  margin-top: 14px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

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

.why-card:nth-child(1) {
  background: #edf8f2;
}

.why-card:nth-child(2) {
  background: #fff5d8;
}

.why-card:nth-child(3) {
  background: #fff0ea;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .tools-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-connector {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .hero-section,
  .trust-strip,
  .content-section,
  .cta-section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 38px;
  }

  .steps-grid,
  .tools-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}
