:root {
  color-scheme: light;
  --ink: #15211d;
  --muted: #5e6964;
  --soft: #eef3f0;
  --line: #dce5df;
  --paper: #f8faf8;
  --panel: #ffffff;
  --green: #126b55;
  --green-deep: #0a3c31;
  --mint: #dceee7;
  --blue: #2f5f8e;
  --coral: #d16f4c;
  --shadow: 0 24px 80px rgba(21, 33, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.55;
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

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

a:hover {
  text-decoration: underline;
}

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

.site-header {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 22px 28px;
  position: relative;
  z-index: 2;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 18px;
  font-weight: 750;
  gap: 11px;
  letter-spacing: 0;
}

.brand-icon,
.hero-icon {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(21, 33, 29, 0.15);
}

.nav-links,
.footer-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.hero {
  align-items: stretch;
  background: #e9f0eb;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: min(760px, calc(100vh - 84px));
  overflow: hidden;
  position: relative;
}

.hero-media {
  inset: 0;
  position: absolute;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(248, 250, 248, 0.98) 0%, rgba(248, 250, 248, 0.88) 34%, rgba(248, 250, 248, 0.16) 68%),
    linear-gradient(180deg, rgba(248, 250, 248, 0) 70%, var(--paper) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  margin-left: auto;
  object-fit: cover;
  object-position: center right;
  width: min(72vw, 1180px);
}

.hero-copy {
  align-self: center;
  max-width: 1180px;
  padding: 76px 28px 104px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(48px, 8vw, 92px);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 22px 0 24px;
  max-width: 760px;
}

.hero-copy p {
  color: #394942;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.5;
  margin: 0;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
}

.button.primary {
  background: var(--green-deep);
  color: #ffffff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  color: var(--green-deep);
}

.intro,
.feature-band,
.privacy-callout {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: 28px;
  padding-right: 28px;
}

.intro {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  padding-bottom: 84px;
  padding-top: 82px;
}

.intro h2,
.privacy-callout h2 {
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 20px;
}

.intro p,
.privacy-callout p,
.feature p,
.document p,
.document li {
  color: var(--muted);
  font-size: 17px;
}

.intro p,
.privacy-callout p {
  max-width: 610px;
}

.device-pair {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: 0.52fr 1fr;
}

.phone-shot,
.tablet-shot {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: 100%;
}

.tablet-shot {
  align-self: center;
}

.feature-band {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 0;
  padding-top: 0;
}

.feature {
  background: var(--paper);
  min-height: 280px;
  padding: 42px 28px;
}

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

.feature-number {
  color: var(--coral);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 28px;
}

.feature h3,
.document h3 {
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 12px;
}

.privacy-callout {
  align-items: center;
  display: flex;
  gap: 36px;
  justify-content: space-between;
  padding-bottom: 84px;
  padding-top: 86px;
}

.text-link {
  border-bottom: 2px solid var(--green);
  color: var(--green-deep);
  flex: 0 0 auto;
  font-weight: 800;
  padding-bottom: 3px;
}

.document-page {
  margin: 0 auto;
  max-width: 900px;
  padding: 58px 28px 84px;
}

.document {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(21, 33, 29, 0.08);
  padding: clamp(28px, 6vw, 58px);
}

.document-date {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  margin-top: 0;
}

.document h1 {
  font-size: clamp(40px, 7vw, 68px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 24px;
}

.document h2 {
  border-top: 1px solid var(--line);
  font-size: 25px;
  letter-spacing: 0;
  line-height: 1.18;
  margin: 36px 0 12px;
  padding-top: 30px;
}

.document h3 {
  margin-top: 28px;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 14px;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 24px 28px 34px;
}

@media (max-width: 860px) {
  .hero {
    min-height: calc(100vh - 122px);
  }

  .hero-media {
    height: 100%;
    min-height: 0;
    opacity: 0.26;
    position: absolute;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(248, 250, 248, 0.78) 0%, rgba(248, 250, 248, 0.94) 48%, var(--paper) 100%),
      linear-gradient(90deg, var(--paper) 0%, rgba(248, 250, 248, 0.72) 100%);
  }

  .hero-media img {
    height: 100%;
    object-position: center;
    width: 100%;
  }

  .hero-copy {
    padding-bottom: 76px;
    padding-top: 42px;
  }

  .intro,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature + .feature {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .privacy-callout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    padding: 18px 20px;
  }

  .hero-copy,
  .intro,
  .feature-band,
  .privacy-callout,
  .document-page,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .device-pair {
    grid-template-columns: 0.64fr 1fr;
  }

  .intro,
  .privacy-callout {
    padding-bottom: 58px;
    padding-top: 58px;
  }
}
