:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #132c26;
  background: #f7faf8;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --ink: #132c26;
  --muted: #5c6d67;
  --green: #177a56;
  --green-dark: #0d4538;
  --green-soft: #e7f3ed;
  --gold: #d79722;
  --gold-soft: #fff4dc;
  --coral: #cc5a4d;
  --coral-soft: #fdeae6;
  --plum: #765179;
  --plum-soft: #f1e8f2;
  --cyan: #31869a;
  --line: #cad8d2;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #f7faf8;
  color: var(--ink);
  line-height: 1.55;
}

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

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

a {
  color: inherit;
}

p,
li,
a,
span,
strong,
h1,
h2,
h3,
summary {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 64px;
  font-weight: 830;
}

h2 {
  margin-bottom: 20px;
  font-size: 46px;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 780;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border: 2px solid var(--green-dark);
  border-radius: 4px;
  background: #ffffff;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 10px max(24px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid rgba(19, 44, 38, 0.12);
  background: rgba(255, 255, 255, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
}

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

.nav-link,
.text-action {
  color: var(--green-dark);
  font-weight: 720;
  text-underline-offset: 4px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 2px solid var(--green);
  border-radius: 6px;
  background: var(--green);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.button:focus-visible,
.nav-link:focus-visible,
.text-action:focus-visible,
summary:focus-visible,
footer a:focus-visible {
  outline: 3px solid #e9a72d;
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 9px 15px;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(720px, 78svh);
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(19, 44, 38, 0.14);
  background: #f4f8f6;
}

.hero-image,
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image img {
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(640px, 48vw);
  margin-left: max(24px, calc((100vw - 1280px) / 2));
  padding: 56px 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 820;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 510px;
  margin-bottom: 28px;
  color: #38514a;
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 16px;
}

.trust-line {
  margin: 0;
  color: #526761;
  font-size: 14px;
  font-weight: 650;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  background: var(--green-dark);
  color: #ffffff;
}

.proof-item {
  display: flex;
  min-height: 124px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  margin-bottom: 4px;
  font-size: 20px;
}

.proof-item span {
  color: #cfe2dc;
  font-size: 14px;
}

.section-band {
  padding: 104px max(24px, calc((100vw - 1280px) / 2));
}

.section-intro {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-intro > p:last-child,
.limits-copy > p:last-child {
  color: var(--muted);
  font-size: 19px;
}

.product-section {
  background: #ffffff;
}

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

figure {
  min-width: 0;
  margin: 0;
}

.screenshot-frame {
  width: min(100%, 330px);
  aspect-ratio: 644 / 1400;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 1px solid #b9ccc4;
  border-radius: 8px;
  background: #edf5f1;
  box-shadow: 0 24px 50px rgba(20, 56, 45, 0.12);
}

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

figcaption {
  display: flex;
  max-width: 330px;
  flex-direction: column;
  gap: 5px;
  margin: 0 auto;
  color: var(--muted);
}

figcaption strong {
  color: var(--ink);
  font-size: 19px;
}

.signal-section {
  background: #eef5f2;
}

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

.signal {
  padding: 28px 0 0;
  border-top: 6px solid;
}

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

.signal-green {
  border-color: var(--green);
}

.signal-gold {
  border-color: var(--gold);
}

.signal-coral {
  border-color: var(--coral);
}

.signal-plum {
  border-color: var(--plum);
}

.limits-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  background: #fff9eb;
}

.limits-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.limits-columns > div {
  padding-top: 24px;
  border-top: 5px solid var(--gold);
}

.limits-columns > div:last-child {
  border-color: var(--coral);
}

.limits-columns ul {
  margin: 0;
  padding-left: 20px;
  color: #445850;
}

.limits-columns li + li {
  margin-top: 10px;
}

.faq-section {
  background: #ffffff;
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 24px 46px 24px 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 770;
  cursor: pointer;
}

details p {
  max-width: 760px;
  padding: 0 0 26px;
  margin-bottom: 0;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 58px max(24px, calc((100vw - 1280px) / 2));
  background: var(--green-dark);
  color: #ffffff;
}

.final-cta img {
  border-radius: 8px;
}

.final-cta .eyebrow {
  color: #9ed8c3;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: 36px;
}

.final-cta p:last-child {
  margin-bottom: 0;
  color: #cfe2dc;
}

.button-light {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--green-dark);
}

.button-light:hover {
  border-color: #f6c86d;
  background: #f6c86d;
  color: #322512;
}

footer {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 30px max(24px, calc((100vw - 1280px) / 2));
  background: #102720;
  color: #d2e1dc;
  font-size: 14px;
}

footer > span {
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
}

footer nav {
  display: flex;
  gap: 20px;
}

footer p {
  justify-self: end;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 40px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: min(590px, 58vw);
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:first-child,
  .proof-item:nth-child(3) {
    padding-left: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .limits-section {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding: 9px 16px;
  }

  .brand {
    font-size: 21px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .site-header nav {
    gap: 10px;
  }

  .nav-link {
    display: none;
  }

  .site-header .button-small {
    min-height: 40px;
    padding: 8px 12px;
  }

  .hero {
    min-height: calc(100svh - 210px);
    align-items: start;
  }

  .hero::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(247, 250, 248, 0.84);
    content: "";
  }

  .hero-image img {
    object-position: center;
  }

  .hero-content {
    width: auto;
    max-width: 560px;
    margin: 0;
    padding: 42px 20px 50px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy {
    max-width: 510px;
    margin-bottom: 22px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .proof-band {
    padding: 0 20px;
  }

  .proof-item {
    min-height: 108px;
    padding: 20px 18px;
  }

  .proof-item strong {
    font-size: 17px;
  }

  .section-band {
    padding: 74px 20px;
  }

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

  .section-intro > p:last-child,
  .limits-copy > p:last-child {
    font-size: 17px;
  }

  .screenshot-row {
    grid-template-columns: repeat(3, 270px);
    gap: 20px;
    margin-right: -20px;
    padding-right: 20px;
    padding-bottom: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .screenshot-row figure {
    scroll-snap-align: start;
  }

  .screenshot-frame {
    width: 270px;
  }

  .signal-grid {
    gap: 34px 22px;
  }

  .limits-columns {
    gap: 24px;
  }

  .final-cta {
    grid-template-columns: auto 1fr;
    padding: 44px 20px;
  }

  .final-cta .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .final-cta h2 {
    font-size: 29px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 30px 20px;
  }

  footer p {
    justify-self: start;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-content {
    padding-top: 42px;
    padding-bottom: 48px;
  }

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

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

  .proof-item,
  .proof-item:first-child,
  .proof-item:nth-child(3) {
    min-height: 88px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .signal-grid,
  .limits-columns {
    grid-template-columns: 1fr;
  }

  .final-cta img {
    width: 62px;
    height: 62px;
  }

  .final-cta h2 {
    font-size: 26px;
  }
}

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