:root {
  --bg: #faf9f6;
  --surface: #fffdf8;
  --ink: #151515;
  --muted: #66615a;
  --line: #ded8cd;
  --green: #214d3b;
  --green-dark: #153528;
  --shadow: 0 18px 48px rgba(30, 25, 18, 0.09);
  --radius: 22px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  zoom: 1.25;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.background-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 125vw;
  height: 125vh;
  transform: scale(0.8);
  transform-origin: top left;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

h1, h2, h3 {
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 4.7vw, 4.75rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 800;
}

.site-header,
.hero,
.intro-card,
.section,
.pricing-section,
.contact-section,
.footer {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(33, 77, 59, 0.18);
  border-radius: 50%;
  background: var(--surface);
  color: var(--green);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.nav a,
.header-link {
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 700;
}

.nav a {
  padding: 9px 12px;
  color: var(--muted);
}

.nav a:hover,
.nav a:focus-visible {
  background: #eee8dc;
  color: var(--ink);
}

.header-link {
  justify-self: end;
  padding: 11px 15px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.header-link:hover,
.header-link:focus-visible {
  border-color: var(--green);
  color: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  min-height: auto;
  padding: clamp(14px, 2.4vw, 30px) 0 clamp(34px, 5vw, 70px);
}

.hero-copy { padding-top: clamp(8px, 1.4vw, 18px); }

.site-preview { margin-top: clamp(4px, 1vw, 12px); }

.eyebrow {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-1px); }

.button.primary {
  border: 1px solid var(--green);
  background: var(--green);
  color: #fffdf8;
}

.button.primary:hover,
.button.primary:focus-visible {
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.site-preview {
  position: relative;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.preview-top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 12px 14px;
  color: var(--muted);
  font-size: 0.78rem;
}

.preview-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c7bdaa;
}

.preview-top strong {
  margin-left: auto;
  font-weight: 800;
}

.graph-card {
  min-height: 350px;
  padding: 26px;
  border: 1px solid rgba(33, 77, 59, 0.11);
  border-radius: 24px;
  background: #fff;
}

.graph-heading { margin-bottom: 24px; }

.graph-heading h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.25rem);
}

.graph {
  position: relative;
  height: 205px;
  border-left: 1px solid rgba(33, 77, 59, 0.16);
  border-bottom: 1px solid rgba(33, 77, 59, 0.16);
}

.grid-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(33, 77, 59, 0.1);
}

.grid-line:nth-child(1) { top: 25%; }
.grid-line:nth-child(2) { top: 50%; }
.grid-line:nth-child(3) { top: 75%; }

.graph svg {
  position: absolute;
  inset: 10px 0 0;
  width: 100%;
  height: calc(100% - 10px);
  overflow: visible;
}

.graph .area { fill: url(#graphFill); }

.graph .line {
  fill: none;
  stroke: var(--green);
  stroke-width: 7;
  stroke-linecap: round;
}

.graph circle {
  fill: #fff;
  stroke: var(--green);
  stroke-width: 6;
}

.graph-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.intro-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.intro-card p {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1.18rem, 2.2vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.section {
  padding: clamp(64px, 9vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}

.split-section,
.proof-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

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

.section-heading.center {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.feature-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.feature-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list span,
.steps span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-list p,
.steps p,
.pricing-copy p,
.pricing-card li,
.contact-section p {
  color: var(--muted);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.business-grid span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  font-weight: 800;
}

.process-section { border-bottom: 0; }

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

.steps article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 42px;
  border: 1px solid rgba(33, 77, 59, 0.24);
  border-radius: 50%;
}

.pricing-section {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 34px;
  background: var(--green-dark);
  color: #fffdf8;
}

.pricing-copy p,
.pricing-section .eyebrow { color: rgba(255, 253, 248, 0.72); }

.pricing-card {
  padding: 26px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.08);
}

.pricing-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 253, 248, 0.82);
  font-weight: 600;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 7px;
  border-left: 2px solid #fffdf8;
  border-bottom: 2px solid #fffdf8;
  transform: rotate(-45deg);
}

.pricing-card .button.primary {
  width: 100%;
  background: #fffdf8;
  color: var(--green-dark);
}

.contact-section {
  padding: clamp(70px, 10vw, 110px) 0;
  text-align: center;
}

.contact-section h2 {
  max-width: 760px;
  margin-inline: auto;
}

.contact-section p {
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer span:first-child,
.footer a {
  color: var(--ink);
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid rgba(33, 77, 59, 0.3);
  outline-offset: 3px;
}

@media (max-width: 920px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .hero,
  .split-section,
  .proof-section,
  .pricing-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 24px; }
  .site-preview { max-width: 560px; }
  .steps { grid-template-columns: 1fr; }
  .steps article { min-height: auto; }
  .steps span { margin-bottom: 28px; }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .intro-card,
  .section,
  .pricing-section,
  .contact-section,
  .footer {
    width: calc(100% - 28px);
  }

  .site-header { padding: 18px 0; }
  .brand-mark { width: 34px; height: 34px; }
  .header-link { padding: 10px 12px; font-size: 0.86rem; }

  h1 { font-size: clamp(2.55rem, 11vw, 3.55rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button { width: 100%; }
  .business-grid { grid-template-columns: 1fr; }

  .site-preview {
    padding: 9px;
    border-radius: 24px;
  }

  .graph-card {
    min-height: auto;
    padding: 22px;
  }

  .graph { height: 200px; }

  .feature-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pricing-section {
    padding: 28px;
    border-radius: 24px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
