:root {
  --ink: #16201d;
  --ink-soft: #41514c;
  --muted: #6a7973;
  --line: #d8e2df;
  --panel: #ffffff;
  --panel-strong: #f4f8f6;
  --page: #fbfcf9;
  --green: #2f8068;
  --green-dark: #17624e;
  --blue: #315f8f;
  --amber: #b06b28;
  --red: #a24a43;
  --aqua: #dff2ed;
  --shadow: 0 22px 60px rgba(25, 42, 37, 0.12);
  --radius: 8px;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 252, 249, 0.92);
  border-bottom: 1px solid rgba(216, 226, 223, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-name,
.brand-line {
  display: block;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0;
}

.brand-line {
  color: var(--muted);
  font-size: 0.79rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--panel-strong);
  color: var(--ink);
  outline: none;
}

.nav-links .nav-cta {
  margin-left: 8px;
  background: var(--green);
  color: #fff;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: var(--green-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.nav-toggle-bars::before {
  transform: translateY(-6px);
}

.nav-toggle-bars::after {
  transform: translateY(4px);
}

.hero {
  min-height: calc(100svh - 74px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(223, 242, 237, 0.74), rgba(251, 252, 249, 0.4) 52%, rgba(251, 252, 249, 1)),
    var(--page);
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 780px;
  font-size: 5.1rem;
}

h2 {
  font-size: 3.45rem;
}

h3 {
  font-size: 1.28rem;
}

.hero-lede {
  max-width: 710px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.2rem;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 12px 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--green);
  color: #fff;
}

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

.button-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #b8c8c3;
  background: var(--panel-strong);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
}

.proof-row div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(216, 226, 223, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.proof-row dt {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.proof-row dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual,
.workflow-visual {
  margin: 0;
}

.hero-visual img,
.workflow-visual img {
  border: 1px solid rgba(155, 176, 169, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.section {
  border-bottom: 1px solid var(--line);
}

.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p,
.split-heading p,
.workflow-layout > div > p,
.trust-layout > div > p,
.final-cta p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-heading h2 + p,
.workflow-layout h2 + p,
.trust-layout h2 + p,
.final-cta h2 + p {
  margin-top: 18px;
}

.section-heading.compact {
  max-width: 710px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pain-grid,
.system-grid,
.pricing-grid {
  display: grid;
  gap: 14px;
}

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

.pain-grid article,
.system-grid article,
.price-card,
.offer-card,
.trust-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.pain-grid article,
.system-grid article {
  padding: 22px;
}

.pain-grid p,
.system-grid p,
.offer-card p,
.price-card p,
.faq-list p {
  color: var(--ink-soft);
}

.icon-dot {
  width: 13px;
  height: 13px;
  display: inline-block;
  margin-bottom: 18px;
  border-radius: 999px;
}

.icon-red {
  background: var(--red);
}

.icon-amber {
  background: var(--amber);
}

.icon-blue {
  background: var(--blue);
}

.icon-green {
  background: var(--green);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.split-heading > p {
  margin: 0 0 4px;
}

.offer-list {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 14px;
}

.offer-card {
  padding: 24px;
}

.primary-offer {
  background: #f8fbfa;
  border-color: #b8d5ca;
}

.offer-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.offer-topline span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: var(--aqua);
  color: var(--green-dark);
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.offer-card p {
  margin: 14px 0 0;
}

.offer-card ul,
.check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.offer-card li,
.check-list li {
  position: relative;
  padding-left: 23px;
  color: var(--ink-soft);
}

.offer-card li + li,
.check-list li + li {
  margin-top: 10px;
}

.offer-card li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.workflow-section {
  background: #f5f8f7;
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 46px;
  align-items: center;
}

.process-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #fff;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.process-list p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

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

.pricing-section {
  background: #eef6f3;
}

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

.price-card {
  padding: 26px;
}

.price-card.highlighted {
  background: var(--ink);
  color: #fff;
}

.price-card.highlighted p {
  color: rgba(255, 255, 255, 0.78);
}

.price-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 2.8rem;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1fr);
  gap: 44px;
  align-items: start;
}

.trust-panel {
  padding: 28px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

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

.final-cta-inner {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
  text-align: center;
}

.final-cta .eyebrow {
  color: #9ed8ca;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .button {
  margin-top: 16px;
}

.site-footer {
  background: #111816;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner p:first-child {
  color: #fff;
  font-weight: 850;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero-inner,
  .workflow-layout,
  .trust-layout,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 44px;
  }

  h1 {
    font-size: 4.05rem;
  }

  h2 {
    font-size: 2.9rem;
  }

  .proof-row,
  .pain-grid,
  .offer-list,
  .system-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .hero-inner,
  .section-inner,
  .footer-inner,
  .final-cta-inner {
    width: min(100% - 24px, var(--max));
  }

  .brand-line {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  h3 {
    font-size: 1.12rem;
  }

  .hero-lede,
  .section-heading p,
  .split-heading p,
  .workflow-layout > div > p,
  .trust-layout > div > p,
  .final-cta p {
    font-size: 1rem;
  }

  .price-card h3 {
    font-size: 2.15rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .proof-row,
  .pain-grid,
  .offer-list,
  .system-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section-inner,
  .final-cta-inner {
    padding: 58px 0;
  }

  .footer-inner {
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .process-list li {
    grid-template-columns: 40px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
