:root {
  --paper: #f7f1e5;
  --paper-2: #fffaf1;
  --ink: #14241b;
  --muted: #58685f;
  --line: #d9d0bf;
  --green: #17492b;
  --green-2: #27633b;
  --leaf: #7cb069;
  --gold: #b99154;
  --white: #ffffff;
  --navy: #17283f;
  --shadow: 0 18px 42px rgba(20, 36, 27, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.nav {
  background: var(--green);
  color: white;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: white;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
}
.nav-links a:hover {
  color: white;
}
.hero {
  background: linear-gradient(135deg, var(--green), var(--navy));
  color: white;
  padding: 72px 0 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 48px;
  align-items: center;
}
.eyebrow {
  color: var(--leaf);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
}
h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}
h1 {
  font-size: clamp(42px, 7vw, 76px);
  max-width: 760px;
}
h2 {
  font-size: clamp(30px, 4.5vw, 50px);
}
h3 {
  font-size: 22px;
}
.lead {
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.78);
  margin: 22px 0 0;
  max-width: 680px;
}
.hero .lead strong {
  color: white;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}
.btn.primary {
  background: white;
  color: var(--green);
}
.btn.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
}
.btn.green {
  background: var(--green);
  color: white;
}
.btn.is-disabled {
  opacity: 0.78;
  cursor: not-allowed;
}
.note {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}
.device {
  width: min(340px, 100%);
  margin: 0 auto;
  padding: 12px;
  background: #111;
  border-radius: 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.device img {
  border-radius: 26px;
  aspect-ratio: 1290 / 2796;
  object-fit: cover;
}
.section {
  padding: 70px 0;
}
.section.white {
  background: var(--paper-2);
}
.section.green {
  background: var(--green);
  color: white;
}
.intro {
  max-width: 760px;
  margin-bottom: 32px;
}
.intro p,
.section p {
  color: var(--muted);
}
.section.green p {
  color: rgba(255, 255, 255, 0.78);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid.two {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  background: white;
  border: 1px solid rgba(20, 36, 27, 0.08);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 1px 0 rgba(20, 36, 27, 0.05);
}
.card p {
  margin-bottom: 0;
}
.section.green .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}
.section.green .card p {
  color: rgba(255, 255, 255, 0.78);
}
.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
}
.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  background: white;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(20, 36, 27, 0.08);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 800;
}
.screens {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: start;
}
.screen-card {
  background: white;
  border-radius: 8px;
  padding: 10px;
  border: 1px solid rgba(20, 36, 27, 0.08);
}
.screen-card img {
  border-radius: 6px;
  aspect-ratio: 1290 / 2796;
  object-fit: cover;
}
.screen-card figcaption {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}
.trust-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}
.trust-list li {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 14px 16px;
}
details.faq {
  background: white;
  border: 1px solid rgba(20, 36, 27, 0.1);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 10px;
}
details.faq summary {
  cursor: pointer;
  font-weight: 800;
}
details.faq p {
  margin-bottom: 0;
}
.breadcrumbs {
  font-size: 14px;
  color: var(--muted);
  padding: 18px 0 0;
}
.breadcrumbs a {
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
}
.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.link-list a {
  color: var(--green);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  text-decoration: none;
  font-weight: 700;
}
.footer {
  background: #101d16;
  color: rgba(255, 255, 255, 0.78);
  padding: 34px 0;
}
.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer a {
  color: white;
  text-decoration: none;
  margin-right: 14px;
}
.app-status {
  background: #fff6df;
  border: 1px solid #e2bf72;
  color: #5b4218;
  padding: 14px 16px;
  border-radius: 8px;
  margin-top: 18px;
}
@media (max-width: 860px) {
  .nav .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .nav-links {
    flex-wrap: wrap;
    gap: 10px 14px;
  }
  .hero-grid,
  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }
  .screens {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }
  .hero {
    padding-top: 46px;
  }
  .screens {
    grid-template-columns: 1fr;
  }
  .cta-row {
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
}
