:root {
  color: #1f2521;
  background: #fff;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-synthesis: none;
  --forest: #173e2c;
  --forest-hover: #214f39;
  --forest-soft: #eef3ee;
  --ink: #1f2521;
  --muted: #677069;
  --line: #dfe2dc;
  --paper: #fff;
  --sand: #f6f5f0;
  --shell: min(1160px, calc(100vw - 44px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #8aae97;
  outline-offset: 3px;
}

svg {
  width: 1.25rem;
  height: 1.25rem;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 780px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 7px;
  background: var(--forest);
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(223, 226, 220, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #181d19;
  font-size: 20px;
  font-weight: 780;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: var(--forest);
  color: #fff;
  font-size: 21px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav > a:not(.button) {
  color: #4d554f;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav > a:not(.button):hover {
  color: var(--forest);
}

.language-link {
  padding-inline-start: 20px;
  border-left: 1px solid var(--line);
}

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

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid var(--forest);
  border-radius: 8px;
  background: var(--forest);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

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

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

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

.button-secondary:hover {
  border-color: #c6d0c7;
  background: var(--forest-soft);
}

.button-disabled,
.button-disabled:hover {
  border-color: var(--line);
  background: #f1f2ef;
  color: #838a84;
  cursor: not-allowed;
  transform: none;
}

.hero {
  overflow: hidden;
  padding: 98px 0 92px;
  background:
    radial-gradient(circle at 83% 22%, rgba(23, 62, 44, 0.09), transparent 31%),
    linear-gradient(180deg, #fff 0%, #fbfcfa 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
  align-items: center;
  gap: 76px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: #171b18;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 25px;
  font-size: clamp(46px, 5.6vw, 73px);
  font-weight: 790;
}

h1 em {
  color: var(--forest);
  font-style: normal;
}

h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 760;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 730;
}

.hero-lead,
.page-hero p,
.section > .shell > p,
.split > div > p,
.pricing-callout p {
  color: var(--muted);
  font-size: 18px;
}

.hero-lead {
  max-width: 670px;
  margin: 0 0 31px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.microcopy {
  margin: 15px 0 0;
  color: #757c76;
  font-size: 12px;
  font-weight: 650;
}

.product-preview {
  position: relative;
  border: 1px solid #d7ddd6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(23, 62, 44, 0.14);
  transform: rotate(1.2deg);
}

.product-preview::before {
  position: absolute;
  inset: 14px -16px -18px 18px;
  z-index: -1;
  border-radius: 18px;
  background: #dfe9df;
  content: "";
}

.preview-top {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

.preview-brand b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: #fff;
}

.preview-status {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--forest-soft);
  color: var(--forest);
  font-size: 11px;
  font-weight: 780;
}

.preview-body {
  padding: 24px;
}

.preview-field {
  min-height: 88px;
  padding: 15px 17px;
  border: 1px solid #b8c8bb;
  border-radius: 8px;
}

.preview-body small,
.metric-panel small,
.price-card > p,
.download-card p,
.support-card p {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.preview-body strong {
  display: block;
  margin-top: 8px;
}

.preview-location {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 18px 0 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.preview-location > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-soft);
  color: var(--forest);
}

.preview-progress {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.preview-progress > span {
  color: var(--forest);
  font-size: 30px;
  font-weight: 790;
}

.progress-track {
  height: 8px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4e7e2;
}

.progress-track i {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: var(--forest);
}

.preview-actions {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.preview-actions span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #565e58;
  font-size: 10px;
  font-weight: 780;
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 25px 30px;
}

.proof-grid > div + div {
  border-left: 1px solid var(--line);
}

.proof-grid svg {
  flex: none;
  color: var(--forest);
}

.proof-grid span {
  display: flex;
  flex-direction: column;
}

.proof-grid strong {
  font-size: 14px;
}

.proof-grid small {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 104px 0;
}

.section-tint {
  border-block: 1px solid var(--line);
  background: var(--sand);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.step-grid article {
  position: relative;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.step-grid article > span {
  position: absolute;
  top: 24px;
  right: 25px;
  color: #a2aaa3;
  font-size: 12px;
  font-weight: 780;
}

.step-grid article > svg {
  width: 30px;
  height: 30px;
  margin-bottom: 43px;
  color: var(--forest);
}

.step-grid p,
.faq p,
.policy-note p,
.download-card p,
.support-card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.8fr);
  align-items: center;
  gap: 86px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list svg {
  width: 17px;
  height: 17px;
  flex: none;
  margin-top: 4px;
  color: var(--forest);
}

.metric-panel {
  padding: 30px;
  border: 1px solid #cad3ca;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(31, 37, 33, 0.08);
}

.metric-panel > div:first-child {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.metric-panel > div:first-child strong {
  color: var(--forest);
  font-size: 26px;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.metric-grid span {
  padding: 24px 15px 5px 0;
}

.metric-grid span:nth-child(even) {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.metric-grid b {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

.pricing-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 50px;
  border-radius: 16px;
  background: var(--forest);
  color: #fff;
}

.pricing-callout h2,
.pricing-callout .eyebrow {
  color: #fff;
}

.pricing-callout h2 {
  margin-bottom: 12px;
}

.pricing-callout p {
  max-width: 720px;
  margin-bottom: 0;
  color: #dce8df;
}

.pricing-callout .button {
  flex: none;
  border-color: #fff;
  background: #fff;
  color: var(--forest);
}

.faq {
  padding-top: 20px;
}

.faq details {
  max-width: 860px;
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  padding: 24px 36px 24px 0;
  color: #202521;
  font-size: 17px;
  font-weight: 720;
}

.faq details p {
  margin: -8px 0 24px;
}

.page-hero {
  padding: 92px 0 68px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8faf7);
}

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

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 22px;
}

.price-card {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.price-card.featured {
  border-color: #aebeb1;
  box-shadow: 0 20px 60px rgba(23, 62, 44, 0.1);
}

.price-region {
  margin: 0;
  color: var(--forest) !important;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 12px 0 2px;
}

.price strong {
  color: #161b17;
  font-size: clamp(48px, 6vw, 70px);
  line-height: 1;
  letter-spacing: -0.065em;
}

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

.price-card .check-list {
  min-height: 172px;
  margin: 28px 0;
}

.price-card .button {
  width: 100%;
}

.policy-note {
  margin-top: 78px;
}

.policy-note ol {
  display: grid;
  gap: 16px;
  padding-left: 24px;
}

.download-grid,
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.download-card,
.support-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.platform-icon,
.support-card > span {
  display: grid;
  width: 54px;
  height: 54px;
  flex: none;
  place-items: center;
  border-radius: 12px;
  background: var(--forest-soft);
  color: var(--forest);
  font-size: 23px;
  font-weight: 820;
}

.download-card h2,
.support-card h2 {
  margin-bottom: 10px;
  font-size: 25px;
}

.download-card .button {
  margin-top: 10px;
}

.download-card > div:last-child {
  min-width: 0;
  flex: 1;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.download-integrity {
  display: grid !important;
  gap: 3px;
  margin: 14px 0 0;
}

.download-integrity span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 680;
}

.download-integrity code {
  overflow-wrap: anywhere;
  color: #4c554f;
  font-size: 10px;
}

.requirements {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  margin-top: 76px;
  padding: 45px;
  border-radius: 14px;
  background: var(--sand);
}

.support-card {
  color: inherit;
  text-decoration: none;
}

.support-card > svg {
  align-self: center;
  margin-left: auto;
  color: var(--forest);
}

.support-card:not(.static):hover {
  border-color: #b7c4b8;
  background: #fbfcfa;
}

.support-steps {
  margin-top: 76px;
}

.not-found {
  min-height: 62vh;
}

.site-footer {
  padding-top: 62px;
  border-top: 1px solid var(--line);
  background: #f8f9f6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 1fr 1.2fr;
  gap: 48px;
}

.footer-grid > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-grid p {
  max-width: 330px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-grid strong {
  margin-bottom: 5px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div > a:not(.brand) {
  color: #555d57;
  font-size: 13px;
  text-decoration: none;
}

.footer-grid > div > a:hover {
  color: var(--forest);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 50px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: #737b75;
  font-size: 11px;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px 22px 22px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > a:not(.button) {
    padding: 13px 2px;
  }

  .language-link {
    border-left: 0;
  }

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

  .hero-grid {
    gap: 65px;
  }

  .product-preview {
    max-width: 600px;
    margin-inline: auto;
  }

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

  .proof-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .step-grid article {
    min-height: 220px;
  }

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

  .price-grid,
  .download-grid,
  .support-grid,
  .requirements {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  :root {
    --shell: min(100% - 30px, 1160px);
  }

  .header-inner {
    min-height: 64px;
  }

  .site-nav {
    top: 64px;
  }

  .hero {
    padding: 67px 0 70px;
  }

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

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lead,
  .page-hero p,
  .section > .shell > p,
  .split > div > p,
  .pricing-callout p {
    font-size: 16px;
  }

  .button-row .button {
    width: 100%;
  }

  .product-preview {
    transform: none;
  }

  .product-preview::before {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .preview-body,
  .step-grid article,
  .metric-panel,
  .price-card,
  .download-card,
  .support-card,
  .requirements {
    padding: 24px;
  }

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

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

  .metric-grid span:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .pricing-callout {
    padding: 32px 24px;
  }

  .pricing-callout .button {
    width: 100%;
  }

  .page-hero {
    padding: 70px 0 50px;
  }

  .download-card,
  .support-card {
    flex-direction: column;
  }

  .support-card > svg {
    display: none;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
