:root {
  color-scheme: light;
  --ink: #16201b;
  --muted: #59655e;
  --line: #d8ded8;
  --paper: #faf8f2;
  --white: #ffffff;
  --green: #245c49;
  --green-2: #e4f1e7;
  --amber: #c77820;
  --amber-2: #fff0cf;
  --coral: #c54f3f;
  --blue: #2f5f95;
  --shadow: 0 18px 50px rgba(22, 32, 27, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(22, 32, 27, 0.12);
  background: rgba(250, 248, 242, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.button.secondary {
  border-color: rgba(22, 32, 27, 0.22);
  background: #fff;
  color: var(--ink);
}

.button.small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
}

.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 46px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(82vh - 64px);
  margin: 0 auto;
  padding: 58px 0 44px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(46px, 7vw, 86px);
}

h2 {
  font-size: clamp(32px, 4.5vw, 56px);
}

h3 {
  font-size: 21px;
}

.lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.trust-row li {
  border: 1px solid rgba(36, 92, 73, 0.25);
  border-radius: 8px;
  background: rgba(228, 241, 231, 0.65);
  padding: 8px 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
}

.hero-visual {
  min-width: 0;
}

.hero-visual img {
  width: 100%;
  border: 1px solid rgba(22, 32, 27, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metric-strip {
  background: var(--ink);
  color: #fff;
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.strip-item {
  min-height: 104px;
  padding: 24px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.strip-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.strip-number {
  display: block;
  font-size: 28px;
  font-weight: 850;
}

.strip-label {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.card.highlight {
  border-color: rgba(36, 92, 73, 0.35);
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 16px;
}

.price strong {
  font-size: 42px;
}

.price span {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
}

.proof-band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
}

.insight-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
}

.insight-table th,
.insight-table td {
  padding: 12px 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.insight-table th {
  background: #f2f4ee;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.negative {
  color: var(--coral);
  font-weight: 800;
}

.positive {
  color: var(--green);
  font-weight: 800;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.step {
  min-height: 188px;
  border-top: 3px solid var(--amber);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 28px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checklist .card {
  background: #fdfcf8;
}

.legal-note {
  border-left: 4px solid var(--coral);
  background: #fff7f5;
}

.footer {
  background: var(--ink);
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
}

.footer a,
.footer span {
  color: rgba(255, 255, 255, 0.78);
}

.legal-page {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.legal-page h1 {
  font-size: clamp(40px, 6vw, 68px);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 26px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.sample-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: start;
}

@media (max-width: 920px) {
  .hero,
  .proof-layout,
  .sample-grid,
  .checklist {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 42px;
  }

  .strip-inner,
  .grid-3,
  .workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 620px) {
  .nav,
  .hero,
  .section,
  .footer-inner,
  .legal-page {
    width: min(100% - 28px, 1180px);
  }

  .strip-inner,
  .grid-3,
  .workflow {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

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

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  h1 {
    font-size: clamp(40px, 14vw, 58px);
  }
}
