:root {
  --green-950: #062f27;
  --green-900: #0b4337;
  --green-800: #145345;
  --green-100: #e7efec;
  --orange-700: #b84d25;
  --orange-600: #c95f31;
  --orange-100: #f7e7df;
  --cream: #fbf4e8;
  --paper: #fffdf9;
  --white: #ffffff;
  --ink: #15352e;
  --muted: #60736e;
  --line: #dbe2df;
  --shadow: 0 18px 48px rgba(5, 49, 40, 0.13);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body,
button {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.13;
  letter-spacing: 0;
  text-wrap: balance;
}

[id] {
  scroll-margin-top: 104px;
}

h1 {
  margin-bottom: 24px;
  font-size: 3.8rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.8rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.38rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--orange-700);
  border-radius: 6px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(6, 47, 39, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  width: fit-content;
}

.brand img,
.footer-brand img {
  width: 96px;
  height: auto;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.main-nav a,
.footer-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #ffb18e;
}

.nav-toggle {
  display: none;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  touch-action: manipulation;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-accent {
  color: var(--white);
  background: var(--orange-700);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  background: #9f3e1c;
}

.btn-primary {
  color: var(--white);
  background: var(--green-900);
}

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

.btn-secondary {
  color: var(--green-900);
  background: transparent;
  border-color: var(--green-900);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--green-100);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--orange-700);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  min-height: 710px;
  display: flex;
  align-items: center;
  padding-block: 80px;
  background: var(--cream);
}

.hero-layout {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  align-items: center;
  gap: 58px;
}

.product-name {
  margin-bottom: 16px;
  color: var(--orange-700);
  font-size: 1.3rem;
  font-weight: 900;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-copy > p:not(.eyebrow, .product-name, .hero-lead) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.hero-lead {
  margin-bottom: 10px;
  color: var(--green-800);
  font-size: 1.2rem;
  line-height: 1.5;
}

.hero-price,
.offer-price {
  display: grid;
  justify-items: start;
  margin-block: 28px 22px;
}

.hero-price span,
.offer-price span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-price strong,
.offer-price strong {
  color: var(--orange-700);
  font-size: 2.25rem;
  line-height: 1.2;
}

.hero-price del,
.offer-price del {
  margin-top: 2px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration-thickness: 2px;
}

.hero-price .price-label,
.offer-price .price-label {
  color: var(--green-800);
  font-weight: 800;
}

.purchase-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: -8px 0 18px;
  padding: 10px 14px;
  color: var(--green-900);
  background: var(--green-100);
  border-left: 3px solid var(--green-900);
  border-radius: 6px;
  font-size: 0.94rem;
  line-height: 1.4;
}

.purchase-guarantee::before {
  min-width: 24px;
  min-height: 24px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--green-900);
  border-radius: 50%;
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

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

.hero-copy small,
.offer-copy small,
.demo-copy small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  padding-bottom: 28px;
}

.mockup-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 0;
  background: #e5e7e2;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mockup-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.included-badge {
  position: absolute;
  right: 9%;
  bottom: 0;
  display: grid;
  min-width: 270px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(5, 49, 40, 0.2);
}

.included-badge span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.benefit-strip {
  padding-block: 28px;
  color: var(--white);
  background: var(--green-900);
}

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

.benefit-grid p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.benefit-grid span {
  min-width: 34px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--orange-700);
  border-radius: 6px;
  font-size: 0.74rem;
}

.section {
  padding-block: 105px;
}

.section-cream {
  background: var(--cream);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.demo-section {
  background: var(--white);
}

.demo-panel {
  max-width: 910px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 36px;
  margin-inline: auto;
  padding: 36px;
  background: var(--cream);
  border: 1px solid #eadfce;
  border-radius: 8px;
}

.file-preview-image {
  width: 150px;
  height: auto;
  justify-self: center;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(5, 49, 40, 0.16);
}

.pill {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  color: var(--orange-700);
  background: var(--orange-100);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-copy p {
  color: var(--muted);
}

.demo-copy .btn {
  margin-block: 4px 14px;
}

.support-band {
  max-width: 910px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  margin: 24px auto 0;
  padding: 32px 36px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 8px;
}

.support-band .eyebrow {
  margin-bottom: 4px;
  color: #ff9d70;
}

.support-band h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 2rem;
}

.support-band p:not(.eyebrow) {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.support-band p:last-child {
  margin-bottom: 0;
}

.support-band a:not(.btn) {
  color: var(--white);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

.support-button {
  min-width: 182px;
  color: var(--green-900);
  background: var(--white);
}

.support-button:hover,
.support-button:focus-visible {
  color: var(--green-950);
  background: var(--cream);
}

.product-feature {
  display: grid;
  grid-template-columns: 1fr 0.94fr;
  align-items: center;
  gap: 56px;
  padding-block: 58px;
  border-top: 1px solid rgba(21, 53, 46, 0.11);
}

.product-feature-reverse {
  grid-template-columns: 0.94fr 1fr;
}

.number-title {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.number-title > span,
.difference-grid article > span {
  min-width: 38px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--orange-700);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 900;
}

.number-title h3 {
  margin: 5px 0 0;
  font-size: 1.55rem;
}

.feature-copy > p:not(.callout) {
  color: var(--muted);
}

.check-list,
.numbered-list,
.problem-grid,
.audience-grid,
.offer-list {
  padding: 0;
  list-style: none;
}

.two-columns {
  columns: 2;
  column-gap: 30px;
}

.check-list li,
.numbered-list li,
.offer-list li {
  position: relative;
  break-inside: avoid;
  margin-bottom: 8px;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before,
.offer-list li::before {
  position: absolute;
  left: 0;
  color: var(--orange-700);
  content: "✓";
  font-weight: 900;
}

.numbered-list {
  counter-reset: checklist;
}

.numbered-list li {
  counter-increment: checklist;
}

.numbered-list li::before {
  position: absolute;
  left: 0;
  color: var(--orange-700);
  content: counter(checklist) ".";
  font-size: 0.8rem;
  font-weight: 900;
}

.callout {
  margin-top: 24px;
  padding: 14px 16px;
  color: var(--green-800);
  background: rgba(184, 77, 37, 0.06);
  border-left: 3px solid var(--orange-700);
  font-size: 0.9rem;
  font-style: italic;
}

.section-cta {
  padding-top: 42px;
  text-align: center;
  border-top: 1px solid rgba(21, 53, 46, 0.11);
}

.section-cta p {
  color: var(--muted);
}

.problems-section {
  background: var(--white);
}

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

.problem-grid li {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 16px 18px 16px 46px;
  color: var(--muted);
  background: var(--cream);
  border: 1px solid #e5dacb;
  border-radius: 8px;
}

.problem-grid li::before {
  position: absolute;
  left: 18px;
  color: var(--orange-700);
  content: "!";
  font-weight: 900;
}

.dark-callout {
  margin: 38px 0 0;
  padding: 24px 30px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
}

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

.step-card {
  position: relative;
  min-height: 420px;
  padding: 34px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #edf1ef;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
}

.step-card h3 {
  position: relative;
  margin-top: 66px;
}

.step-card ul {
  padding-left: 20px;
  color: var(--muted);
}

.step-card li {
  margin-bottom: 8px;
}

.step-card li::marker {
  color: var(--orange-700);
}

.client-language {
  color: var(--white);
  background: var(--green-950);
}

.client-language .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.question-grid {
  max-width: 950px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-inline: auto;
}

.question-grid blockquote {
  min-height: 100px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding: 24px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-style: italic;
}

.language-callout {
  max-width: 950px;
  margin: 32px auto 0;
  padding: 24px 30px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  text-align: center;
}

.audience-section {
  background: var(--white);
}

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

.audience-grid li {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 18px;
  color: var(--green-800);
  background: var(--cream);
  border: 1px solid #e5dacb;
  border-radius: 8px;
  font-weight: 700;
}

.audience-grid span {
  min-width: 38px;
  min-height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green-900);
  border-radius: 6px;
  font-size: 0.75rem;
}

.audience-note {
  margin: 34px 0 0;
  padding: 24px 30px;
  color: var(--muted);
  background: var(--cream);
  border: 1px solid #e5dacb;
  border-radius: 8px;
  text-align: center;
}

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

.difference-grid article {
  min-height: 230px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.difference-grid article > span {
  margin-bottom: 36px;
}

.difference-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.responsibility-note {
  max-width: 850px;
  margin: 42px auto 0;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.responsibility-note p {
  margin: 6px 0 0;
  color: var(--muted);
}

.offer-section {
  padding-block: 96px;
  color: var(--white);
  background: var(--green-950);
}

.offer-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 68px;
}

.offer-copy {
  max-width: 560px;
}

.offer-copy h2 {
  font-size: 2.65rem;
}

.offer-list li {
  color: rgba(255, 255, 255, 0.84);
}

.offer-list li::before {
  color: #ff9d70;
}

.offer-price span,
.offer-copy small {
  color: rgba(255, 255, 255, 0.58);
}

.offer-price .price-label {
  color: rgba(255, 255, 255, 0.78);
}

.offer-price del {
  color: rgba(255, 255, 255, 0.68);
}

.offer-price strong {
  color: #ff9d70;
}

.offer-copy .btn {
  margin-bottom: 14px;
}

.crop-offer {
  min-height: 355px;
}

.faq-section {
  background: var(--cream);
}

.faq-container {
  max-width: 900px;
}

.faq-list {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list details {
  padding-inline: 28px;
}

.faq-list details + details {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 20px 48px 20px 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 4px;
  content: "+";
  color: var(--orange-700);
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  margin: -6px 0 22px;
  color: var(--muted);
}

.final-cta {
  padding-block: 100px;
  text-align: center;
  background: var(--white);
}

.final-cta h2 {
  max-width: 760px;
  margin-inline: auto;
}

.final-cta p {
  max-width: 780px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.final-cta .btn {
  margin-inline: auto;
}

.demo-text-link {
  display: block;
  width: fit-content;
  margin: 18px auto 0;
  color: var(--muted);
  text-underline-offset: 4px;
}

.site-footer {
  padding-top: 54px;
  color: var(--white);
  background: var(--green-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 60px;
  padding-bottom: 42px;
}

.footer-brand img {
  width: 118px;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-bottom {
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
}

:focus-visible {
  outline: 3px solid #ff9d70;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  h2 {
    font-size: 2.5rem;
  }

  .header-inner {
    grid-template-columns: 100px 1fr auto;
    gap: 18px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.84rem;
  }

  .hero-layout,
  .product-feature,
  .product-feature-reverse,
  .offer-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .offer-copy {
    max-width: 760px;
  }

  .hero-visual,
  .product-feature .mockup-frame,
  .offer-section .mockup-frame {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .product-feature-reverse .mockup-frame {
    order: 2;
  }

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

@media (max-width: 760px) {
  h2,
  .offer-copy h2 {
    font-size: 2.15rem;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 78px;
    grid-template-columns: 84px 1fr 46px;
  }

  .brand img {
    width: 76px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
    display: grid;
    place-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
  }

  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    display: block;
    background: currentColor;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 10px 14px 18px;
    background: var(--green-950);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding-inline: 10px;
    font-size: 0.96rem;
  }

  .hero {
    min-height: 0;
    padding-block: 64px;
  }

  .hero-layout {
    gap: 42px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .button-row {
    display: grid;
  }

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

  .included-badge {
    right: 14px;
    left: 14px;
    min-width: 0;
  }

  .benefit-grid,
  .problem-grid,
  .step-grid,
  .audience-grid,
  .difference-grid,
  .question-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 76px;
  }

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

  .demo-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .file-preview-image {
    width: min(180px, 58vw);
    margin-inline: auto;
  }

  .demo-copy .btn {
    width: 100%;
  }

  .support-band {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
  }

  .support-band h3 {
    font-size: 1.65rem;
  }

  .support-button {
    width: 100%;
  }

  .product-feature {
    gap: 34px;
    padding-block: 42px;
  }

  .two-columns {
    columns: 1;
  }

  .step-card {
    min-height: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 440px) {
  h2,
  .offer-copy h2 {
    font-size: 1.9rem;
  }

  .hero-price strong,
  .offer-price strong {
    font-size: 1.9rem;
  }

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

}

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

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