:root {
  color-scheme: light;
  --ink: #0c172b;
  --ink-soft: #26354c;
  --muted: #59677a;
  --faint: #7b8797;
  --paper: #ffffff;
  --paper-soft: #f7f9f6;
  --green: #075c39;
  --green-2: #0f7a4b;
  --green-soft: #eaf4ec;
  --blue: #2f6fd4;
  --amber: #b97918;
  --red: #bc3636;
  --line: #dfe6dc;
  --line-strong: #c9d6c8;
  --shadow: 0 24px 70px rgba(12, 23, 43, 0.12);
  --max: 1280px;
  --radius: 8px;
  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);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul,
dl,
dd {
  margin: 0;
}

ul {
  padding: 0;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(12, 23, 43, 0.08);
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 16px max(24px, calc((100vw - var(--max)) / 2));
  position: sticky;
  right: 0;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 21px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: var(--green);
  border-radius: var(--radius);
  color: #ffffff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.site-nav {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 28px;
  justify-content: center;
  letter-spacing: 0;
}

.site-nav a,
.text-link {
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--green);
}

.site-nav a[aria-current="page"] {
  color: var(--green);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 16px;
}

.text-link {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  min-height: 48px;
  padding: 0 20px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
  white-space: nowrap;
}

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

.button-primary {
  background: var(--green);
  border: 1px solid var(--green);
  box-shadow: 0 14px 30px rgba(7, 92, 57, 0.22);
  color: #ffffff;
}

.button-primary:hover {
  background: #064f31;
  border-color: #064f31;
}

.button-secondary {
  background: #ffffff;
  border: 1px solid var(--line-strong);
  color: var(--green);
}

.button-secondary:hover {
  border-color: var(--green);
  box-shadow: 0 12px 28px rgba(12, 23, 43, 0.08);
}

.button-small {
  min-height: 42px;
  padding-inline: 16px;
}

.hero {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 48px 24px 46px;
}

.hero-copy {
  align-self: center;
}

.hero h1 {
  color: var(--ink);
  font-size: 56px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  max-width: 610px;
}

.hero-copy > p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
  margin-top: 20px;
  max-width: 610px;
}

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

.hero-points {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  padding-top: 18px;
}

.hero-points div {
  min-width: 0;
}

.hero-points dt {
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.hero-points dd {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-product {
  align-self: center;
  margin: 0;
  min-width: 0;
}

.product-window {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.window-bar {
  align-items: center;
  background: #f6f8f5;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 7px;
  height: 34px;
  padding: 0 14px;
}

.window-bar span {
  background: #cbd5c8;
  border-radius: 50%;
  display: block;
  height: 9px;
  width: 9px;
}

.window-bar span:nth-child(1) {
  background: #d87474;
}

.window-bar span:nth-child(2) {
  background: #d7b65d;
}

.window-bar span:nth-child(3) {
  background: #71b982;
}

.product-window img {
  aspect-ratio: 1602 / 982;
  object-fit: cover;
  object-position: left top;
}

.signal-section,
.value-section,
.workflow-section,
.outcomes-section,
.free-section,
.pilot-section {
  margin: 0 auto;
  max-width: var(--max);
  padding: 76px 24px;
}

.signal-section,
.workflow-section {
  background: linear-gradient(180deg, #f8fbf7 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
  max-width: none;
}

.signal-section > *,
.workflow-section > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
}

.section-heading {
  margin-bottom: 38px;
  text-align: center;
}

.section-heading.compact {
  max-width: 790px;
}

.section-heading h2,
.outcomes-copy h2,
.free-copy h2,
.pilot-copy h2 {
  color: var(--ink);
  font-size: 42px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.12;
}

.section-heading p,
.outcomes-copy p,
.free-copy p,
.pilot-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 16px auto 0;
  max-width: 760px;
}

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

.compare-panel,
.value-grid article,
.workflow-grid article,
.outcome-lists article,
.free-grid article,
.pilot-checklist {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.compare-panel {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
}

.panel-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.compare-panel h3,
.value-grid h3,
.workflow-grid h3,
.outcome-lists h3,
.free-grid h3,
.pilot-checklist h3 {
  color: var(--ink);
  font-size: 24px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
}

.compare-panel ul,
.outcome-lists ul,
.pilot-checklist ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin-top: 24px;
}

.compare-panel li,
.outcome-lists li,
.pilot-checklist li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  padding-left: 28px;
  position: relative;
}

.compare-panel li::before,
.outcome-lists li::before,
.pilot-checklist li::before {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  font-size: 11px;
  font-weight: 850;
  height: 18px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 3px;
  width: 18px;
}

.compare-before li::before {
  background: #f9e8e8;
  color: var(--red);
  content: "x";
}

.compare-after li::before,
.outcome-lists li::before,
.pilot-checklist li::before {
  background: var(--green-soft);
  color: var(--green);
  content: "";
}

.compare-after li::after,
.outcome-lists li::after,
.pilot-checklist li::after {
  background: var(--green);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 6px;
  position: absolute;
  top: 9px;
  width: 6px;
}

.panel-note {
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  margin-top: auto;
  padding-top: 22px;
}

.compare-before .panel-note {
  color: var(--red);
}

.compare-after .panel-note {
  color: var(--green);
}

.compare-arrow {
  align-self: center;
  background: var(--ink);
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  height: 48px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 48px;
  width: 48px;
}

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

.value-grid article {
  padding: 26px;
}

.value-number {
  color: var(--blue);
  display: inline-block;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.value-grid p,
.workflow-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 14px;
}

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

.workflow-grid article {
  padding: 24px;
  position: relative;
}

.step-number {
  align-items: center;
  background: var(--green);
  border-radius: var(--radius);
  color: #ffffff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  height: 34px;
  justify-content: center;
  letter-spacing: 0;
  margin-bottom: 28px;
  width: 34px;
}

.outcomes-section {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.outcomes-copy {
  position: sticky;
  top: 104px;
}

.outcomes-copy p {
  margin-left: 0;
}

.outcome-lists {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.outcome-lists article {
  padding: 28px;
}

.free-section {
  background: #f7faf6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  margin-bottom: 24px;
  padding: 42px;
}

.free-copy p {
  margin-left: 0;
}

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

.free-grid article {
  padding: 22px;
}

.free-grid h3 {
  color: var(--green);
  font-size: 18px;
}

.free-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin-top: 12px;
}

.pilot-section {
  align-items: center;
  background: var(--ink);
  border-radius: var(--radius);
  color: #ffffff;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.6fr);
  margin-bottom: 24px;
  padding: 54px;
}

.pilot-copy h2 {
  color: #ffffff;
}

.pilot-copy p {
  color: #d5deea;
  margin-left: 0;
}

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

.pilot-section .button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.pilot-section .button-secondary:hover {
  border-color: #ffffff;
  box-shadow: none;
}

.pilot-checklist {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  padding: 28px;
}

.pilot-checklist h3 {
  color: #ffffff;
}

.pilot-checklist li {
  color: #e7edf5;
}

.pilot-checklist li::before {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.pilot-checklist li::after {
  background: #ffffff;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: var(--max);
  padding: 28px 24px 36px;
}

.site-footer p {
  font-size: 14px;
  justify-self: center;
}

.footer-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--green);
}

.page-hero {
  margin: 0 auto;
  max-width: 920px;
  padding: 86px 24px 58px;
  text-align: center;
}

.page-hero h1 {
  color: var(--ink);
  font-size: 58px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.04;
}

.page-hero p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
  margin: 20px auto 0;
  max-width: 760px;
}

.hero-actions.centered {
  justify-content: center;
}

.pricing-grid,
.docs-grid,
.support-grid,
.faq-grid,
.split-section,
.note-section,
.legal-section {
  margin: 0 auto;
  max-width: var(--max);
  padding: 56px 24px;
}

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 20px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.pricing-card.featured {
  border-color: rgba(7, 92, 57, 0.34);
  box-shadow: var(--shadow);
}

.plan-title {
  color: var(--green);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0;
}

.plan-price {
  color: var(--ink);
  font-size: 36px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.05;
  margin-top: 16px;
}

.plan-price span {
  color: var(--muted);
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-top: 8px;
}

.pricing-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 18px;
}

.pricing-card ul,
.feature-list,
.docs-grid,
.support-grid,
.faq-grid {
  list-style: none;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}

.pricing-card li {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}

.pricing-card li::before {
  background: var(--green);
  border-radius: 50%;
  content: "";
  height: 7px;
  left: 4px;
  position: absolute;
  top: 8px;
  width: 7px;
}

.pricing-card .button {
  margin-top: auto;
}

.faq-section {
  background: linear-gradient(180deg, #f8fbf7 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding: 70px 0;
}

.faq-grid,
.docs-grid,
.support-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 18px;
}

.faq-grid article,
.docs-grid article,
.support-grid article,
.feature-list article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.faq-grid h3,
.docs-grid h2,
.support-grid h2,
.feature-list h3,
.note-section h2,
.legal-section h2,
.split-section h2 {
  color: var(--ink);
  font-size: 24px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
}

.faq-grid p,
.docs-grid p,
.support-grid p,
.feature-list p,
.note-section p,
.legal-section p,
.split-section p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 12px;
}

.split-section {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.split-section.soft-band {
  background: #f7faf6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 24px;
  padding: 42px;
}

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

.docs-grid article {
  display: flex;
  flex-direction: column;
}

.inline-link {
  color: var(--green);
  font-size: 15px;
  font-weight: 850;
  margin-top: 20px;
}

.note-section {
  background: var(--ink);
  border-radius: var(--radius);
  color: #ffffff;
  margin-bottom: 24px;
  padding: 44px;
}

.note-section h2 {
  color: #ffffff;
}

.note-section p {
  color: #d5deea;
  max-width: 760px;
}

.note-section .button {
  margin-top: 26px;
}

.legal-hero {
  padding-bottom: 28px;
}

.legal-section {
  max-width: 880px;
  padding-top: 22px;
}

.legal-section h2 {
  font-size: 22px;
  margin-top: 34px;
}

.legal-section h2:first-child {
  margin-top: 0;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-product {
    max-width: 840px;
  }

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

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

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

  .free-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .faq-grid,
  .docs-grid,
  .support-grid,
  .split-section,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .outcomes-copy {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr;
    padding: 16px 20px;
  }

  .site-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .header-actions {
    justify-content: space-between;
  }

  .hero,
  .signal-section,
  .value-section,
  .workflow-section,
  .outcomes-section,
  .free-section,
  .pilot-section,
  .page-hero,
  .pricing-grid,
  .docs-grid,
  .support-grid,
  .faq-grid,
  .split-section,
  .note-section,
  .legal-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-copy > p,
  .section-heading p,
  .outcomes-copy p,
  .free-copy p,
  .pilot-copy p {
    font-size: 17px;
  }

  .hero-points,
  .signal-compare,
  .value-grid,
  .outcome-lists,
  .free-section,
  .pilot-section {
    grid-template-columns: 1fr;
  }

  .compare-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .section-heading h2,
  .outcomes-copy h2,
  .free-copy h2,
  .page-hero h1,
  .pilot-copy h2 {
    font-size: 34px;
  }

  .page-hero {
    padding-top: 58px;
  }

  .split-section.soft-band,
  .note-section {
    border-radius: 0;
    max-width: none;
  }

  .pilot-section {
    border-radius: 0;
    margin-bottom: 0;
    max-width: none;
    padding-bottom: 46px;
    padding-top: 46px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer p {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 18px;
    grid-column: 1 / -1;
    overflow-x: visible;
    row-gap: 8px;
  }

  .site-header {
    gap: 12px;
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .header-actions .text-link {
    display: none;
  }

  .header-actions .button {
    flex: 0 0 auto;
    min-height: 40px;
    width: auto;
  }

  .hero {
    gap: 20px;
    padding-bottom: 10px;
    padding-top: 36px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    flex-wrap: nowrap;
  }

  .hero-actions .button {
    flex: 1 1 0;
    font-size: 14px;
    padding-inline: 10px;
  }

  .hero-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-window img {
    height: 150px;
    object-position: left top;
  }

  .section-heading h2,
  .outcomes-copy h2,
  .free-copy h2,
  .page-hero h1,
  .pilot-copy h2 {
    font-size: 30px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .compare-panel,
  .value-grid article,
  .workflow-grid article,
  .outcome-lists article,
  .free-grid article,
  .pricing-card,
  .faq-grid article,
  .docs-grid article,
  .support-grid article,
  .feature-list article,
  .pilot-checklist {
    padding: 22px;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
  }
}
