:root {
  color-scheme: light dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f7f7f4;
  color: #1f2423;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: #0b6f6b;
  font-weight: 650;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.shell {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 36px 0 34px;
  border-bottom: 1px solid rgba(31, 36, 35, 0.14);
}

.hero.compact {
  padding-bottom: 28px;
}

.app-icon {
  border-radius: 22px;
  box-shadow:
    0 18px 45px rgba(18, 36, 34, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.eyebrow {
  margin: 0 0 8px;
  color: #6a7471;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 78px);
  line-height: 0.94;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin: 18px 0 0;
  color: #3b4441;
  font-size: 20px;
  line-height: 1.55;
}

.lede.secondary {
  margin-top: 8px;
  color: #60707a;
  font-size: 16px;
}

.section {
  padding: 30px 0;
  border-bottom: 1px solid rgba(31, 36, 35, 0.1);
}

h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  max-width: 720px;
  margin: 0 0 14px;
  color: #3b4441;
  font-size: 17px;
  line-height: 1.65;
}

p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 880px);
    padding: 32px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 18px;
  }

  .app-icon {
    width: 76px;
    height: 76px;
    border-radius: 18px;
  }

  .lede {
    font-size: 18px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    background: #151816;
    color: #eef2ed;
  }

  a {
    color: #67d5c7;
  }

  .hero,
  .section {
    border-color: rgba(238, 242, 237, 0.14);
  }

  .eyebrow {
    color: #a1aaa6;
  }

  .lede,
  p {
    color: #c7cfca;
  }

  .app-icon {
    box-shadow:
      0 18px 45px rgba(0, 0, 0, 0.34),
      0 1px 0 rgba(255, 255, 255, 0.16) inset;
  }
}
