:root {
  color-scheme: light;
  --paper: #f7f9f7;
  --paper-strong: #fffdfa;
  --ink: #0b241c;
  --muted: #59655f;
  --quiet: #78817d;
  --line: color-mix(in oklch, #0f2a21 14%, transparent);
  --accent: #0b6b3b;
  --accent-deep: #064629;
  --accent-soft: #d9ede4;
  --blue: #1769b2;
  --amber: #c58717;
  --danger: #b34531;
  --shadow: 0 24px 70px rgba(12, 35, 27, 0.13);
  --radius: 8px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 3% 33%, rgba(141, 181, 169, 0.22), transparent 26rem),
    radial-gradient(circle at 80% 4%, rgba(211, 231, 226, 0.9), transparent 30rem),
    linear-gradient(180deg, #fbfdfb 0%, var(--paper) 46%, #f2f7f4 100%);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0;
}

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

svg {
  display: block;
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.section-shell,
.site-header {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0 16px;
  backdrop-filter: blur(16px);
}

.site-header::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 63px;
  height: 1px;
  background: rgba(18, 52, 42, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 130px;
  color: var(--accent-deep);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
}

.brand-mark {
  width: 13px;
  height: 30px;
  background: linear-gradient(180deg, var(--accent) 0%, #77af8f 100%);
  border-radius: 8px 8px 3px 3px;
  transform: skew(-11deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #28362f;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  border-radius: 6px;
  padding: 8px 2px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.header-cta {
  min-width: 132px;
  padding: 0 18px;
  background: linear-gradient(180deg, #0f7846, var(--accent));
  color: #fffdf8;
  box-shadow: 0 10px 22px rgba(15, 96, 58, 0.2);
  font-size: 14px;
}

.button {
  min-width: 184px;
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  background: linear-gradient(180deg, #11804b 0%, #08713f 100%);
  color: #fffdf8;
  box-shadow: 0 16px 34px rgba(7, 96, 55, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(28, 50, 42, 0.22);
  color: #14281f;
}

.button[aria-disabled="true"],
.header-cta[aria-disabled="true"] {
  opacity: 0.65;
  cursor: not-allowed;
}

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

.button:focus-visible,
.header-cta:focus-visible,
.nav-links a:focus-visible {
  outline: 3px solid rgba(22, 105, 178, 0.22);
  outline-offset: 3px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(460px, 0.82fr) minmax(540px, 1.18fr);
  gap: clamp(32px, 4.2vw, 70px);
  align-items: center;
  padding: clamp(58px, 7vw, 86px) 0 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(217, 237, 228, 0.86);
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 700;
}

.hero-copy {
  padding-bottom: 32px;
}

.hero h1 {
  margin: 18px 0 0;
  max-width: 680px;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 5.7vw, 5.9rem);
  font-weight: 700;
  line-height: 0.96;
  color: var(--accent-deep);
}

.hero-copy > p:first-of-type {
  max-width: 540px;
  margin: 26px 0 0;
  color: #4e5b57;
  font-size: 20px;
  line-height: 1.48;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(15, 42, 33, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.compatibility {
  margin: 18px 0 0;
  color: var(--quiet);
  font-size: 14px;
  font-weight: 620;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto 6% -7% 4%;
  height: 42%;
  background: linear-gradient(90deg, rgba(178, 219, 207, 0.66), rgba(224, 238, 233, 0.3));
  border-radius: 999px;
  filter: blur(30px);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 920px);
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 30px 48px rgba(11, 31, 24, 0.15));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: -10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 34px rgba(20, 55, 44, 0.05);
}

.trust-strip article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 24px 25px;
}

.trust-strip article + article {
  border-left: 1px solid var(--line);
}

.trust-strip svg,
.feature-icon {
  color: var(--accent-deep);
}

.trust-strip h2,
.feature-grid h3,
.steps h3,
.faq-list h3,
.pricing-card h3 {
  margin: 0;
  font-size: 16px;
}

.trust-strip p,
.feature-grid p,
.steps p,
.download p,
.section-intro p,
.faq-list p,
.pricing-fine-print {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.48;
}

.trust-strip p {
  font-size: 14px;
}

.features,
.workflow,
.download,
.pricing,
.faq,
.content-page {
  padding: clamp(70px, 9vw, 116px) 0 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(300px, 0.4fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 30px;
}

.section-intro.compact {
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

.section-intro h2,
.download h2,
.content-page h1 {
  margin: 0;
  max-width: 680px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.4vw, 4.9rem);
  line-height: 1.02;
  color: var(--accent-deep);
}

.section-intro.compact h2 {
  max-width: none;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.section-intro p {
  max-width: 470px;
  font-size: 17px;
}

.section-intro.compact p {
  max-width: none;
}

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

.feature-grid article,
.faq-list article {
  min-height: 190px;
  padding: 4px 8px;
}

.feature-large {
  grid-column: span 2;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border: 1px solid rgba(10, 70, 41, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.pricing-card,
.success-card,
.support-grid {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.92), rgba(231, 245, 238, 0.86)),
    radial-gradient(circle at 12% 100%, rgba(139, 191, 162, 0.22), transparent 17rem);
  box-shadow: var(--shadow);
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 38px;
  align-items: center;
  padding: 34px 36px;
}

.pricing-label {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 10px;
}

.price {
  font-family: var(--serif);
  font-size: clamp(3rem, 4vw, 4.5rem);
  line-height: 0.95;
  color: var(--accent-deep);
}

.price-note {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

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

.pricing-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-actions {
  display: grid;
  gap: 12px;
}

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

.pricing-fine-print {
  font-size: 13px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.steps article {
  position: relative;
  min-height: 158px;
  padding: 26px 26px 24px;
}

.steps article + article {
  border-left: 1px solid var(--line);
}

.steps article + article::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 43px;
  width: 27px;
  height: 1px;
  background: rgba(11, 43, 31, 0.28);
}

.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 800;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
}

.download {
  display: grid;
  grid-template-columns: 0.8fr 0.7fr;
  gap: 60px;
  align-items: center;
  margin-top: 82px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.86), rgba(231, 245, 238, 0.82)),
    radial-gradient(circle at 12% 100%, rgba(139, 191, 162, 0.32), transparent 17rem);
  box-shadow: var(--shadow);
}

.download h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.download-actions {
  display: grid;
  gap: 12px;
}

.download-actions .button {
  width: 100%;
}

.download-actions p {
  text-align: center;
  font-size: 13px;
}

.content-page {
  min-height: calc(100vh - 180px);
}

.content-page > p {
  max-width: 700px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.52;
}

.success-card,
.support-grid {
  margin-top: 34px;
  padding: 30px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(217, 237, 228, 0.86);
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 700;
}

.success-details {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.detail-row {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 52, 42, 0.12);
}

.detail-row span {
  color: var(--quiet);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.detail-row strong,
.detail-row code {
  color: var(--ink);
  font-size: 20px;
}

.detail-row code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.helper-copy,
.loading-copy,
.error-copy {
  color: var(--muted);
  line-height: 1.5;
}

.error-card {
  background: rgba(255, 243, 239, 0.9);
  border-color: rgba(179, 69, 49, 0.26);
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.support-grid article {
  padding: 2px 4px;
}

.support-grid ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.support-callout {
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(18, 52, 42, 0.12);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 44px;
  color: var(--quiet);
  font-size: 14px;
}

.site-footer span:first-child {
  color: var(--accent-deep);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .hero,
  .pricing-card,
  .download,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero-visual img {
    width: 100%;
  }

  .trust-strip,
  .steps,
  .feature-grid,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-large {
    grid-column: auto;
  }

  .trust-strip article:nth-child(3),
  .steps article:nth-child(3) {
    border-left: 0;
  }

  .trust-strip article:nth-child(n + 3),
  .steps article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .section-shell,
  .site-header {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding-top: 14px;
  }

  .site-header::after {
    top: 58px;
  }

  .brand {
    min-width: auto;
    font-size: 27px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    min-width: 112px;
    padding-inline: 14px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 4.4rem);
  }

  .hero-copy > p:first-of-type {
    font-size: 18px;
  }

  .hero-actions,
  .success-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    margin-inline: 0;
    overflow: visible;
  }

  .hero-visual img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .trust-strip,
  .feature-grid,
  .steps,
  .section-intro,
  .download,
  .faq-list,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip article,
  .trust-strip article + article,
  .steps article,
  .steps article + article {
    border-left: 0;
  }

  .trust-strip article + article,
  .steps article + article {
    border-top: 1px solid var(--line);
  }

  .steps article + article::before {
    display: none;
  }

  .download {
    gap: 28px;
    margin-top: 66px;
    padding: 28px 20px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
