:root {
  --ink: #17352d;
  --forest: #123c33;
  --moss: #dce9d8;
  --cream: #f7f5ef;
  --sand: #ebe4d7;
  --muted: #5f6963;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

.site-header, main, footer { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.site-header {
  min-height: 82px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(23, 53, 45, .14);
}
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-size: 1.03rem; font-weight: 720; text-decoration: none; letter-spacing: -.02em; }
.brand-mark { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 50%; background: var(--forest); color: #fff; font-family: Georgia, serif; font-size: 1.2rem; }
.header-link { color: var(--forest); font-size: .92rem; font-weight: 650; text-decoration: none; }
.header-link:hover { text-decoration: underline; }

.hero { padding: 128px 0 98px; max-width: 805px; }
.eyebrow { margin: 0 0 18px; color: #3d755c; font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.05em; line-height: .98; }
h1 { margin: 0; font-size: clamp(3.2rem, 7.4vw, 6.45rem); }
h1 em { color: #3d755c; font-weight: 400; }
.hero-copy { max-width: 600px; margin: 31px 0; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.22rem); }
.button { display: inline-flex; gap: 18px; align-items: center; padding: 14px 19px; border-radius: 4px; background: var(--forest); color: #fff; font-size: .96rem; font-weight: 700; text-decoration: none; transition: transform .16s ease, background .16s ease; }
.button:hover { background: #0b2f27; transform: translateY(-2px); }
.button span { font-size: 1.25rem; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(23, 53, 45, .17); border-bottom: 1px solid rgba(23, 53, 45, .17); }
.values article { padding: 38px 35px 42px 0; }
.values article + article { padding-left: 34px; border-left: 1px solid rgba(23, 53, 45, .17); }
.number { color: #4a876d; font-size: .78rem; font-weight: 800; letter-spacing: .1em; }
.values h2 { margin: 25px 0 11px; font-size: 1.75rem; }
.values p, .about p { margin: 0; color: var(--muted); font-size: .98rem; }

.apps { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding: 110px 0; background: var(--forest); color: #fff; }
.apps::before, .apps::after { content: ""; position: absolute; }
.apps { width: 100vw; margin-left: calc(50% - 50vw); padding-left: max(24px, calc((100vw - 1180px) / 2)); padding-right: max(24px, calc((100vw - 1180px) / 2)); }
.apps .eyebrow { color: #a9d8bf; }
.apps h2 { max-width: 460px; margin: 0; font-size: clamp(2.3rem, 4vw, 4.1rem); }
.apps-copy { max-width: 500px; padding-top: 31px; }
.apps-copy p { margin: 0; color: #d9e8df; font-size: 1rem; }
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.store-badge { min-width: 146px; padding: 9px 15px 10px; border: 1px solid rgba(255,255,255,.42); border-radius: 5px; color: #fff; }
.store-badge small { display: block; color: #cce1d3; font-size: .65rem; line-height: 1.2; }
.store-badge strong { display: block; margin-top: 2px; font-size: .97rem; }

.about { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding: 110px 0; }
.about h2 { max-width: 460px; margin: 0; font-size: clamp(2.3rem, 4vw, 4.1rem); }
.about-copy { max-width: 490px; padding-top: 36px; }
.about-copy p + p { margin-top: 20px; color: #778078; font-size: .84rem; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 27px 0 36px; border-top: 1px solid rgba(23, 53, 45, .14); color: #657068; font-size: .81rem; }

@media (max-width: 700px) {
  .site-header, main, footer { width: min(100% - 34px, 1180px); }
  .hero { padding: 82px 0 70px; }
  .values, .apps, .about { grid-template-columns: 1fr; }
  .apps { gap: 27px; padding-top: 77px; padding-bottom: 77px; }
  .apps-copy { padding-top: 0; }
  .values article, .values article + article { padding: 28px 0; border-left: 0; }
  .values article + article { border-top: 1px solid rgba(23, 53, 45, .17); }
  .about { gap: 27px; padding: 77px 0; }
  .about-copy { padding-top: 0; }
  footer { flex-direction: column; }
}
