@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("./fonts/manrope-latin-ext-variable.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("./fonts/manrope-latin-variable.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  color-scheme: light;
  --canvas: #fafcfa;
  --surface: #fff;
  --ink: #1f2521;
  --muted: #58635c;
  --line: #dfe5df;
  --sage: #eef3ee;
  --green: #173e2c;
  --green-hover: #24583f;
  --radius: 8px;
  --focus: #377450;
}
* {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font:
    400 16px/1.65 Manrope,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.04em;
}
h1 {
  font-size: clamp(36px, 4.1vw, 58px);
  font-weight: 700;
}
h2 {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 650;
}
h3 {
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.025em;
}
p {
  color: var(--muted);
}
p a {
  color: var(--green);
  text-underline-offset: 4px;
}
a {
  color: inherit;
}
button {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
summary {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 5px;
}
main:focus {
  outline: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  display: inline-block;
  flex: none;
  vertical-align: middle;
  width: 24px;
  height: 24px;
}
button[disabled] {
  cursor: not-allowed;
}
[hidden] {
  display: none !important;
}
.shell {
  width: calc(100% - 64px);
  max-width: 1248px;
  margin-inline: auto;
}
.section {
  padding-block: 96px;
}
.section-heading {
  max-width: 740px;
  margin-bottom: 40px;
}
.section-heading p {
  margin-top: 18px;
  max-width: 650px;
  font-size: 18px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  background: var(--green);
  color: #fff;
  padding: 12px 18px;
  border-radius: 4px;
  transform: translateY(-160%);
  z-index: 30;
}
.skip-link:focus {
  transform: translateY(0);
}
/* Layers: header/menu 10; skip link 30. */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
  position: relative;
  z-index: 10;
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.05em;
  white-space: nowrap;
  line-height: 1.2;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
}
.brand-mark svg {
  width: 20px;
  height: 20px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav > a:not(.button) {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding-block: 12px;
  position: relative;
}
.site-nav > a:not(.button):hover {
  color: var(--green);
}
.site-nav > [aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
}
.language-link {
  padding-inline: 8px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 12px 24px;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
  white-space: nowrap;
  transition:
    background-color 0.16s,
    border-color 0.16s,
    transform 0.16s;
}
.button svg {
  width: 18px;
  height: 18px;
}
.button:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
}
.button:active {
  transform: translateY(1px);
}
.button-secondary {
  background: transparent;
  color: var(--green);
}
.button-secondary:hover {
  background: var(--sage);
}
.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 13px;
}
.button-disabled {
  background: #e2e7e2;
  color: #617066;
  border-color: #d3dcd4;
}
.button-disabled:hover {
  background: #e2e7e2;
  border-color: #d3dcd4;
}
.button-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 5px;
  font-size: 15px;
  font-weight: 600;
}
.text-link svg {
  width: 18px;
  height: 18px;
}
.nav-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  width: 44px;
  height: 44px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
}
.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  height: 2px;
  width: 18px;
  background: currentColor;
  position: relative;
  transition: transform 0.15s;
}
.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-lines::before {
  top: -6px;
}
.menu-lines::after {
  top: 6px;
}
[aria-expanded="true"] .menu-lines {
  background: transparent;
}
[aria-expanded="true"] .menu-lines::before {
  transform: translateY(6px) rotate(45deg);
}
[aria-expanded="true"] .menu-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}
.hero {
  padding-block: 36px 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  min-height: 508px;
}
.hero-copy h1 {
  font-size: clamp(42px, 4.05vw, 57px);
  line-height: 1.15;
  letter-spacing: -0.045em;
}
.hero-copy h1 span {
  color: var(--green);
}
.hero-lead {
  font-size: 17px;
  line-height: 1.75;
  max-width: 535px;
  margin-top: 26px;
  margin-bottom: 30px;
}
.hero-figure {
  padding: 20px;
  background: var(--sage);
  border-radius: var(--radius);
  min-width: 0;
  width: 100%;
  max-width: 544px;
  justify-self: end;
}
.hero-media {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  aspect-ratio: 530/495;
  position: relative;
}
.hero-media img {
  width: 271.7%;
  max-width: none;
  position: absolute;
  left: -50.94%;
  top: -34.34%;
  height: auto;
}
.hero-figure figcaption {
  font-size: 11px;
  line-height: 1.5;
  padding-top: 11px;
  color: var(--muted);
}
.product-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-block: 25px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-facts p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
}
.product-facts p + p {
  border-left: 1px solid var(--line);
}
.product-facts svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}
.page-hero {
  padding-block: 66px 44px;
}
.page-hero h1 {
  max-width: 860px;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.08;
}
.page-hero p {
  margin-top: 22px;
  font-size: 19px;
  max-width: 770px;
}
.pricing-band {
  background: var(--sage);
  padding-block: 40px;
}
.price-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}
.price-includes {
  padding-block: 25px;
}
.price-includes h2 {
  font-size: 38px;
}
.included-grid {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 24px;
}
.included-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
}
.included-grid svg {
  color: var(--green);
  width: 21px;
  height: 21px;
}
.license-scope {
  max-width: 465px;
  font-size: 14px;
  margin-top: 38px;
}
.price-purchase {
  border-left: 1px solid #cfdacf;
  padding: 12px 0 12px 64px;
}
.price-region {
  color: var(--ink);
  font-size: 18px;
}
.price-amount {
  color: var(--green);
  font-size: clamp(50px, 6.1vw, 80px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-top: 12px;
  white-space: nowrap;
}
.price-amount span {
  font-size: 0.74em;
}
.price-tax {
  margin-top: 10px;
}
.price-other {
  margin-block: 24px 20px;
  color: var(--ink);
}
.price-purchase .button {
  width: 100%;
}
.terms-link {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.checkout-language {
  text-align: center;
  font-size: 12px;
  margin-top: 14px;
}
.refund-note {
  padding-top: 28px;
}
.refund-note p {
  font-size: 13px;
  max-width: 1010px;
}
.purchase-guide {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}
.purchase-guide > div p {
  margin-top: 18px;
  max-width: 330px;
}
.guide-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.guide-list li {
  position: relative;
  padding-left: 48px;
  margin-bottom: 30px;
}
.guide-list li:last-child {
  margin-bottom: 0;
}
.guide-number {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  color: var(--green);
  border: 1px solid #bbcdbf;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 650;
}
.guide-list h3 {
  font-size: 18px;
  line-height: 1.45;
}
.guide-list p {
  margin-top: 8px;
  font-size: 14px;
}
.faq-section {
  border-top: 1px solid var(--line);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}
.faq-layout > div > p {
  max-width: 325px;
  margin-top: 20px;
  margin-bottom: 24px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  padding: 21px 34px 21px 0;
  position: relative;
  list-style: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1px;
  top: 18px;
  font-size: 24px;
  font-weight: 400;
  color: var(--green);
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details p {
  padding: 0 30px 24px 0;
  font-size: 14px;
  line-height: 1.85;
}
.faq-list details:first-child summary {
  padding-top: 0;
}
.faq-list details:first-child summary::after {
  top: -3px;
}
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.not-found h1 {
  max-width: 800px;
}
.not-found p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 30px;
}
.site-footer {
  background: var(--sage);
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.85fr 1.15fr;
  gap: 46px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: 13px;
  max-width: 300px;
  margin-top: 18px;
}
.footer-brand .maker {
  font-size: 11px;
  margin-top: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  min-width: 0;
}
.footer-links h2 {
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.5;
  margin-bottom: 5px;
  font-weight: 750;
}
.footer-links a {
  font-size: 12px;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-links p {
  font-size: 12px;
  max-width: 260px;
}
.footer-contact > a {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-wrap: anywhere;
}
.footer-contact svg {
  width: 14px;
  height: 14px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 21px;
  border-top: 1px solid #d7e1d7;
  font-size: 11px;
  color: var(--muted);
}
@media (min-width: 1100px) {
  .nav-toggle {
    display: none !important;
  }
}
@media (max-width: 1099px) {
  .site-nav {
    gap: 22px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 22px;
  }
  .hero-copy {
    max-width: 740px;
  }
  .hero-copy h1 {
    font-size: clamp(40px, 5.5vw, 58px);
  }
  .hero-figure {
    justify-self: center;
    max-width: 540px;
  }
  .hero-lead {
    max-width: 620px;
  }
  .hero {
    padding-bottom: 40px;
  }
  .product-facts p {
    font-size: 12px;
    gap: 8px;
  }
  .price-grid {
    gap: 34px;
  }
  .price-purchase {
    padding-left: 34px;
  }
  .included-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .purchase-guide,
  .faq-layout {
    gap: 50px;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.9fr;
    gap: 35px;
  }
  .footer-contact {
    grid-column: 1/-1;
  }
  .footer-contact p {
    max-width: none;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 20px;
  }
  .shell {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 64px;
  }
  h2 {
    font-size: 31px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-heading p {
    font-size: 16px;
  }
  .header-inner {
    min-height: 68px;
    flex-wrap: wrap;
    gap: 0;
  }
  .brand {
    font-size: 20px;
  }
  .nav-toggle:not([hidden]) {
    display: flex;
  }
  .site-nav {
    width: 100%;
    padding-block: 12px 22px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .site-nav > a:not(.button) {
    padding: 11px 0;
  }
  .site-nav .language-link {
    padding-inline: 0;
  }
  .site-nav > .button {
    margin-top: 12px;
  }
  .site-nav > [aria-current="page"]::after {
    right: auto;
    width: 24px;
    bottom: 4px;
  }
  .site-nav[data-enhanced]:not(.open) {
    display: none;
  }
  .hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .hero-grid {
    padding-top: 0;
    gap: 36px;
    min-height: 0;
  }
  .hero-copy h1 {
    font-size: clamp(30px, 7.8vw, 48px);
    line-height: 1.18;
    letter-spacing: -0.046em;
  }
  .hero-lead {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 25px;
  }
  .hero-copy .button-row {
    gap: 10px;
  }
  .button {
    font-size: 14px;
    padding-inline: 19px;
    min-height: 48px;
  }
  .hero-figure {
    padding: 12px;
    max-width: 500px;
  }
  .hero-figure figcaption {
    font-size: 10px;
  }
  .product-facts {
    grid-template-columns: 1fr;
    padding-block: 18px;
    gap: 15px;
  }
  .product-facts p {
    justify-content: flex-start;
    font-size: 13px;
  }
  .product-facts p + p {
    border-left: 0;
  }
  .page-hero {
    padding-top: 42px;
    padding-bottom: 30px;
  }
  .page-hero h1 {
    font-size: 40px;
  }
  .page-hero p {
    font-size: 16px;
    margin-top: 20px;
  }
  .pricing-band {
    padding-block: 26px;
  }
  .price-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .price-includes {
    padding-top: 4px;
    padding-bottom: 0;
  }
  .price-includes h2 {
    font-size: 29px;
  }
  .included-grid {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 25px;
  }
  .included-grid li {
    font-size: 14px;
  }
  .license-scope {
    font-size: 13px;
    margin-top: 25px;
  }
  .price-purchase {
    border-left: 0;
    border-top: 1px solid #cfdacf;
    padding: 26px 0 0;
  }
  .price-amount {
    font-size: 62px;
  }
  .price-other {
    font-size: 14px;
  }
  .price-tax {
    font-size: 14px;
  }
  .refund-note {
    padding-top: 22px;
  }
  .purchase-guide,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .purchase-guide > div p,
  .faq-layout > div > p {
    max-width: none;
    font-size: 15px;
  }
  .faq-list summary {
    font-size: 15px;
  }
  .faq-list details p {
    font-size: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
    padding-bottom: 35px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand p {
    max-width: 340px;
  }
  .footer-contact {
    grid-column: 1/-1;
  }
  .footer-links a {
    font-size: 13px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    font-size: 10px;
    padding-block: 20px;
  }
  .site-footer {
    padding-top: 40px;
  }
  .not-found {
    min-height: 58vh;
  }
  .not-found h1 {
    font-size: 38px;
  }
  .not-found p:not(.eyebrow) {
    font-size: 15px;
  }
  .eyebrow {
    margin-bottom: 14px;
  }
}
@media (max-width: 359px) {
  .shell {
    width: calc(100% - 32px);
  }
  .brand {
    font-size: 18px;
    gap: 8px;
  }
  .brand-mark {
    width: 30px;
    height: 30px;
  }
  .hero-copy h1 {
    font-size: 28px;
  }
  .hero-copy .button {
    padding-inline: 15px;
    font-size: 13px;
  }
  .button-row {
    gap: 8px;
  }
  .hero-figure figcaption {
    font-size: 9px;
  }
  .page-hero h1 {
    font-size: 35px;
  }
  .price-amount {
    font-size: 53px;
  }
  .footer-grid {
    gap: 28px 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 0;
  }
  .nav-toggle:not([hidden]) {
    display: flex;
  }
  .site-nav {
    width: 100%;
    padding-block: 12px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .site-nav > a:not(.button) {
    padding: 11px 0;
  }
  .site-nav > .button {
    margin-top: 12px;
    align-self: flex-start;
  }
  .site-nav[data-enhanced]:not(.open) {
    display: none;
  }
  .site-nav > [aria-current="page"]::after {
    right: auto;
    width: 24px;
    bottom: 4px;
  }
}
.gallery-tabs {
  display: flex;
  gap: 50px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.gallery-tabs button {
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 0 5px 15px;
  background: none;
  text-align: left;
  color: var(--muted);
  min-height: 64px;
}
.gallery-tabs strong,
.gallery-tabs span {
  display: block;
}
.gallery-tabs strong {
  font-size: 15px;
  font-weight: 650;
  margin-bottom: 5px;
}
.gallery-tabs span {
  font-size: 13px;
}
.gallery-tabs [aria-selected="true"] {
  border-color: var(--green);
  color: var(--green);
}
.gallery-tabs button:nth-child(2) {
  order: -1;
}
.gallery-media {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}
.gallery-media img {
  width: 100%;
}
.product-gallery figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  padding-top: 17px;
  color: var(--muted);
}
.product-gallery figcaption a {
  color: var(--green);
  text-underline-offset: 4px;
  white-space: nowrap;
}
.product-gallery figcaption svg {
  width: 15px;
  height: 15px;
}
.benefits-section {
  padding-top: 0;
}
.benefits-section h2 {
  color: var(--green);
}
.benefit-slices {
  border-top: 1px solid var(--line);
}
.benefit-slices details {
  border-bottom: 1px solid var(--line);
}
.benefit-slices summary {
  list-style: none;
  position: relative;
  padding: 26px 40px 26px 0;
  font-size: 22px;
  line-height: 1.4;
  color: var(--green);
  font-weight: 650;
  letter-spacing: -0.03em;
}
.benefit-slices summary::-webkit-details-marker {
  display: none;
}
.benefit-slices summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 23px;
  font-size: 28px;
  font-weight: 400;
}
.benefit-slices [open] > summary::after {
  content: "−";
}
.benefit-body {
  display: grid;
  grid-template-columns: 0.65fr 1.65fr;
  gap: 50px;
  padding-bottom: 30px;
}
.benefit-body > p {
  font-size: 15px;
  max-width: 270px;
}
.benefit-body figcaption {
  font-size: 11px;
  color: var(--muted);
  padding-top: 12px;
}
.saved-crop {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1055/358;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.saved-crop img {
  max-width: none;
  width: 136.49%;
  position: absolute;
  left: -25.59%;
  top: -57.26%;
  height: auto;
}
.benefit-explanation {
  padding: 24px 28px;
  background: var(--sage);
  border-radius: 6px;
}
.benefit-explanation h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.benefit-explanation p {
  font-size: 14px;
  max-width: 640px;
}
.home-pricing {
  background: var(--sage);
}
.home-price-intro {
  max-width: 720px;
}
.home-price-intro p {
  font-size: 17px;
  margin-top: 20px;
}
.home-price-line {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr auto;
  align-items: center;
  gap: 45px;
  margin-top: 42px;
}
.home-price-line > div > p {
  font-size: 14px;
}
.home-price-line > div > strong {
  display: block;
  font-size: 65px;
  letter-spacing: -0.06em;
  line-height: 1.1;
  margin-block: 10px;
  color: var(--green);
  font-weight: 700;
}
.home-price-line > div > strong > span {
  font-size: 0.6em;
}
.home-price-context {
  border-left: 1px solid #cfdbd0;
  padding: 16px 0 16px 42px;
}
.home-price-context .text-link {
  margin-top: 15px;
}
.reading-width {
  max-width: 920px;
}
.centered {
  text-align: center;
  margin: 0 auto 45px;
}
.centered p {
  margin-inline: auto;
}
.home-faq .faq-list summary {
  padding-block: 24px;
  font-size: 18px;
}
.home-faq .faq-list summary::after {
  top: 20px;
}
.home-faq .faq-list details p {
  font-size: 15px;
}
.faq-support {
  text-align: center;
  font-size: 14px;
  margin-top: 30px;
}
.faq-support a {
  margin-left: 12px;
}
@media (max-width: 1099px) {
  .gallery-tabs {
    gap: 38px;
  }
  .benefit-body {
    gap: 30px;
  }
  .home-price-line {
    gap: 24px;
  }
  .home-price-context {
    padding-left: 26px;
  }
  .home-price-line > div > strong {
    font-size: 57px;
  }
}
@media (max-width: 767px) {
  .gallery-tabs {
    gap: 0;
    justify-content: space-between;
    margin-bottom: 14px;
  }
  .gallery-tabs button {
    min-width: 0;
    padding: 0 4px 12px;
    min-height: 48px;
  }
  .gallery-tabs strong {
    font-size: 13px;
    margin: 0;
  }
  .gallery-tabs span {
    display: none;
  }
  .gallery-media {
    border-radius: 5px;
  }
  .product-gallery figcaption {
    font-size: 10px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
  }
  .product-gallery figcaption a {
    font-size: 12px;
  }
  .benefits-section {
    padding-top: 0;
  }
  .benefit-slices summary {
    font-size: 18px;
    padding-block: 21px;
  }
  .benefit-slices summary::after {
    top: 17px;
  }
  .benefit-body {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 22px;
  }
  .benefit-body > p {
    max-width: none;
    font-size: 14px;
  }
  .benefit-explanation {
    padding: 21px;
  }
  .benefit-explanation h3 {
    font-size: 18px;
  }
  .home-price-intro p {
    font-size: 15px;
  }
  .home-price-line {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
  }
  .home-price-line > div > strong {
    font-size: 58px;
  }
  .home-price-context {
    border-left: 0;
    padding: 0;
  }
  .home-price-line > .button {
    justify-self: start;
  }
  .centered {
    text-align: left;
    margin-bottom: 27px;
  }
  .home-faq .faq-list summary {
    font-size: 16px;
    padding-block: 21px;
  }
  .home-faq .faq-list summary::after {
    top: 17px;
  }
  .home-faq .faq-list details p {
    font-size: 14px;
  }
  .faq-support {
    text-align: left;
    font-size: 13px;
  }
  .faq-support a {
    margin-left: 6px;
  }
}
.download-section {
  padding-bottom: 10px;
}
.release-status {
  background: var(--sage);
  padding: 24px 28px;
  border-radius: 7px;
  margin-bottom: 24px;
}
.release-status h2,
.signature-note h2 {
  font-size: 19px;
  letter-spacing: -0.02em;
  line-height: 1.5;
}
.release-status p {
  font-size: 14px;
  margin-top: 7px;
  max-width: 900px;
}
.signature-note {
  border-left: 3px solid var(--green);
  padding: 8px 0 8px 20px;
  margin: 25px 0;
}
.signature-note p {
  font-size: 13px;
  max-width: 940px;
  margin-top: 8px;
}
.download-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr auto;
  align-items: center;
  gap: 30px;
  padding: 29px 8px;
  border-bottom: 1px solid var(--line);
}
.platform-heading {
  display: flex;
  align-items: center;
  gap: 20px;
}
.platform-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--green);
}
.platform-icon svg {
  width: 33px;
  height: 33px;
}
.platform-heading h2 {
  font-size: 23px;
}
.platform-heading p {
  font-size: 13px;
  margin-top: 5px;
}
.platform-detail p {
  font-size: 14px;
}
.platform-detail .minimum-os {
  font-size: 12px;
  margin-top: 4px;
}
.artifact-size {
  font-size: 12px;
  color: var(--muted);
}
.platform-action .button {
  min-width: 155px;
}
.platform-integrity {
  grid-column: 2/-1;
  margin-top: -10px;
}
.integrity summary {
  font-size: 12px;
  color: var(--green);
  text-underline-offset: 3px;
  padding-block: 5px;
}
.integrity dl {
  margin-top: 15px;
  font-size: 12px;
}
.integrity dl > div {
  display: grid;
  grid-template-columns: 75px minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 9px;
}
.integrity dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--muted);
}
.integrity code {
  font-size: 11px;
}
.download-help {
  font-size: 12px;
  margin-top: 25px;
}
.requirements-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}
.requirements-layout > div > p {
  max-width: 335px;
  margin-top: 18px;
  font-size: 15px;
}
.requirements-list {
  display: grid;
  gap: 26px;
}
.requirements-list h3 {
  font-size: 17px;
  display: flex;
  gap: 11px;
  align-items: center;
}
.requirements-list h3 svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}
.requirements-list p {
  font-size: 14px;
  margin-top: 10px;
}
.help-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-block: 26px;
  border-top: 1px solid var(--line);
  margin-bottom: 58px;
}
.help-band p {
  font-size: 15px;
}
.gallery-media {
  aspect-ratio: 2;
  position: relative;
}
.gallery-media img {
  height: auto;
}
.gallery-tabs button:nth-child(2) {
  order: initial;
}
@media (max-width: 1099px) {
  .download-row {
    grid-template-columns: 0.8fr 1fr auto;
    gap: 20px;
  }
  .platform-heading {
    gap: 10px;
  }
  .requirements-layout {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .release-status {
    padding: 20px;
    margin-bottom: 10px;
  }
  .release-status h2 {
    font-size: 17px;
  }
  .release-status p {
    font-size: 13px;
  }
  .download-row {
    grid-template-columns: 1fr auto;
    gap: 16px 20px;
    padding: 24px 0;
  }
  .platform-heading {
    grid-column: 1/-1;
    gap: 13px;
  }
  .platform-heading h2 {
    font-size: 22px;
  }
  .platform-icon {
    width: 32px;
    height: 38px;
  }
  .platform-icon svg {
    width: 28px;
    height: 28px;
  }
  .platform-detail p {
    font-size: 12px;
  }
  .platform-action .button {
    font-size: 12px;
    min-width: 0;
    padding-inline: 12px;
    gap: 7px;
  }
  .platform-action .button svg {
    width: 15px;
    height: 15px;
  }
  .platform-integrity {
    grid-column: 1/-1;
    margin-top: 0;
  }
  .download-help {
    font-size: 11px;
  }
  .requirements-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .requirements-layout > div > p {
    max-width: none;
  }
  .help-band {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 14px;
  }
  .help-band p {
    font-size: 14px;
  }
  .signature-note {
    padding-left: 16px;
  }
  .signature-note h2 {
    font-size: 17px;
  }
  .signature-note p {
    font-size: 12px;
  }
}
.support-section {
  padding-bottom: 10px;
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
}
.contact-panel {
  background: var(--sage);
  border-radius: 8px;
  padding: 38px;
}
.contact-icon {
  display: grid;
  place-items: center;
  color: var(--green);
  width: 44px;
  height: 44px;
  margin-bottom: 25px;
}
.contact-icon svg {
  width: 36px;
  height: 36px;
}
.contact-panel h2 {
  font-size: 32px;
}
.support-email {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 21px;
  font-weight: 650;
  color: var(--green);
  letter-spacing: -0.03em;
  text-decoration: underline;
  text-underline-offset: 6px;
  overflow-wrap: anywhere;
}
.support-email svg {
  width: 20px;
  height: 20px;
}
.contact-panel p {
  font-size: 14px;
  margin-top: 25px;
  max-width: 450px;
}
.support-checklist {
  padding-block: 20px;
}
.support-checklist h2 {
  font-size: 25px;
}
.support-items {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 21px;
}
.support-items li {
  display: flex;
  gap: 13px;
  font-size: 14px;
}
.support-items svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}
.support-privacy {
  font-size: 12px;
  margin-top: 28px;
  max-width: 460px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}
.support-faq {
  padding-top: 82px;
}
@media (max-width: 1099px) {
  .support-grid {
    gap: 35px;
  }
  .contact-panel {
    padding: 28px;
  }
  .support-email {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .support-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .contact-panel {
    padding: 25px 22px;
  }
  .contact-panel h2 {
    font-size: 29px;
  }
  .support-email {
    font-size: clamp(15px, 4.5vw, 20px);
    gap: 7px;
  }
  .support-email svg {
    width: 17px;
    height: 17px;
  }
  .contact-panel p {
    font-size: 13px;
  }
  .contact-icon {
    margin-bottom: 20px;
  }
  .support-checklist {
    padding-block: 8px;
  }
  .support-checklist h2 {
    font-size: 23px;
  }
  .support-items {
    gap: 18px;
    margin-top: 23px;
  }
  .support-items li {
    font-size: 13px;
  }
  .support-faq {
    padding-top: 56px;
  }
}
.website-crop {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1100/330;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.website-crop img {
  max-width: none;
  width: 130.91%;
  position: absolute;
  left: -24.55%;
  top: -81.82%;
  height: auto;
}
.final-cta {
  background: var(--sage);
  border-bottom: 1px solid var(--line);
}
.final-cta-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr;
  gap: 70px;
  align-items: end;
}
.final-cta h2 {
  font-size: clamp(38px, 4vw, 56px);
}
.final-cta-grid > div > p {
  margin-top: 22px;
  margin-bottom: 27px;
  font-size: 16px;
  color: var(--ink);
}
.license-statement {
  font-size: 28px;
  line-height: 1.55;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: var(--green);
}
.site-footer {
  background: var(--canvas);
}
.contact-panel {
  background: none;
  padding: 25px 0;
}
.contact-panel h2 {
  font-size: 23px;
}
.contact-panel .text-link {
  margin-top: 24px;
}
.support-email {
  font-size: clamp(19px, 2vw, 27px);
}
.support-checklist {
  background: var(--sage);
  padding: 32px;
  border-radius: 7px;
}
.support-grid {
  gap: 58px;
}
@media (max-width: 767px) {
  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .final-cta h2 {
    font-size: 36px;
  }
  .final-cta-grid > div > p {
    font-size: 14px;
  }
  .license-statement {
    font-size: 21px;
  }
  .contact-panel {
    padding-top: 4px;
  }
  .support-checklist {
    padding: 25px 22px;
  }
  .support-email {
    font-size: clamp(15px, 4.9vw, 24px);
  }
  .support-grid {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .hero-media {
    aspect-ratio: 490/260;
  }
  .hero-media img {
    width: 293.88%;
    left: -58.16%;
    top: -151.92%;
  }
  .hero-copy h1 {
    font-size: 34px;
  }
  .hero-figure figcaption {
    font-size: 11px;
  }
  .hero {
    padding-top: 35px;
  }
  .gallery-tabs strong {
    font-size: 12px;
  }
}
@media (max-width: 359px) {
  .hero-copy h1 {
    font-size: 29px;
  }
  .hero-figure figcaption {
    font-size: 10px;
  }
}
.hero-checkout-language {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 15px;
}
.legal-language {
  font-size: 11px !important;
  margin-top: 4px;
}
.button,
.nav-toggle {
  border-radius: 8px;
}
.brand-mark svg {
  width: 18px;
  height: 18px;
}
.benefit-body figcaption a {
  display: inline-block;
  margin-left: 10px;
  text-underline-offset: 3px;
  color: var(--green);
}
.page-hero h1 {
  font-size: 48px;
}
.button-disabled {
  color: #58635c;
  background: #e2e8e2;
}
.hero-figure figcaption {
  font-size: 12px;
}
@media (max-width: 767px) {
  .page-hero h1 {
    font-size: 34px;
  }
  .price-purchase {
    order: -1;
    border-top: 0;
    border-bottom: 1px solid #cfdacf;
    padding: 0 0 26px;
  }
  .price-includes {
    padding-top: 0;
  }
  .benefit-slices summary {
    font-size: 20px;
  }
  .hero-figure figcaption {
    font-size: 11px;
  }
  .hero-checkout-language {
    font-size: 14px;
  }
  .benefit-body figcaption a {
    margin-left: 0;
    margin-top: 6px;
    display: block;
    font-size: 12px;
  }
}
.price-includes {
  grid-column: 1;
  grid-row: 1;
}
.price-purchase {
  grid-column: 2;
  grid-row: 1;
}
.website-crop {
  aspect-ratio: 665/350;
}
.website-crop img {
  width: 216.54%;
  left: -40.6%;
  top: -77.14%;
}
@media (max-width: 767px) {
  .price-includes,
  .price-purchase {
    grid-column: auto;
    grid-row: auto;
  }
  .price-purchase {
    order: initial;
  }
  .product-facts p {
    font-size: 13px;
  }
  .benefit-body figcaption {
    font-size: 12px;
  }
}
